/* ─── 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);

    --bs-primary: var(--accent);
    --bs-body-bg: var(--bg);
    --bs-body-color: var(--text);
    /* Frontend varsayılan fontu: Poppins (kullanıcı tercihi) */
    --bs-font-sans-serif: 'Poppins', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
    --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(--bs-font-sans-serif);
    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);
}

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 ───────────────────────────────────── */

section {
    padding: 0;
}

.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 {
    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);
    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;
    }
}

/* ─── Floating Header ────────────────────────────────────────────────── */

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

.site-header-float {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    padding-top: 8px;
}

.site-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    border-radius: 24px;
    border: 1px solid transparent;
    transition: background .35s cubic-bezier(.4,0,.2,1), border-color .35s, backdrop-filter .35s;
}

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

.site-header-float.scrolled .site-header-inner {
    background: rgba(255,255,255,.6);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-color: var(--border);
}

[data-theme="dark"] .site-header-float.scrolled .site-header-inner {
    background: rgba(0,0,0,.6);
}

.site-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .75rem 0;
    transition: padding .2s cubic-bezier(.4,0,.2,1);
}

@media (min-width: 992px) {
    .site-header-row { padding: 1.375rem 0; gap: 1.5rem; }
    .site-header-float.scrolled .site-header-row { padding: .875rem 0; }
}

.site-header-logo { flex-shrink: 0; text-decoration: none !important; }

.site-header-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.site-header-link {
    font-size: .875rem;
    color: var(--muted);
    text-decoration: none !important;
    white-space: nowrap;
    transition: color .15s;
}
.site-header-link:hover { color: var(--text); opacity: 1; }

.site-header-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
}

.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; }

/* ─── 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: 5rem;
    min-height: 100vh;
}

@media (min-width: 768px)  { .hero-v2 { padding-top: calc(var(--header-h) + 5rem); padding-bottom: 7rem; } }
@media (min-width: 992px)  { .hero-v2 { padding-top: calc(var(--header-h) + 10rem); padding-bottom: 9rem; } }

.hero-v2-bg {
    position: absolute;
    inset: 4px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,.08);
}
@media (min-width: 992px) { .hero-v2-bg { border-radius: 48px; } }
[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;
    opacity: .5; filter: invert(1);
}
[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; opacity: .3;
}
[data-theme="dark"] .hero-v2-bg img { opacity: .2; }

.hero-v2-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    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 2rem;
    color: var(--text);
}
@media (min-width: 992px) { .hero-v2-h1 { margin: 0 0 2rem; } }

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

.hero-v2-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    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; } }

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

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

.logo-slider-wrap {
    max-width: 1280px;
    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;
}

/* ═══════════════════════════════════════════════════════════════════════
   AUDI F1 ESİNLİ TEMA — Header + Hero "dashboard"
   (Bootstrap + custom CSS; Tailwind kullanılmadı. f1-* namespace ile izole.)
   ═══════════════════════════════════════════════════════════════════════ */
:root {
    --f1-black: #000;
    --f1-white: #fff;
    --f1-deepcharcoal: #131313;
    --f1-midcharcoal: #1b1b1b;
    --f1-charcoal: #3e3e3e;
    --f1-darkgrey: #707582;
    --f1-midgrey: #c2c2c2;
    --f1-lightgrey: #ecedee;
    --f1-red: #24703b;
    --f1-red-40: #24703b66;
    --f1-white-20: #ffffff33;
    --f1-black-60: #000000cc;
    --f1-black-0009: #0009;
    --f1-radius: .5rem;
    --f1-ease: cubic-bezier(.4, 0, .2, 1);
    --f1-maxw: 1920px;
    --f1-gap: 12px;
}

/* ── Ortak tipografi yardımcıları ── */
.f1-header .mono-micro,
.f1-overlay .mono-micro,
.f1-hero .mono-micro {
    letter-spacing: 1px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
}

/* ── Circle icon ── */
.f1-circle-icon {
    border: 1px solid;
    border-radius: 50%;
    flex: none;
    width: 41px;
    height: 41px;
    position: relative;
    display: block;
    transition: rotate .6s var(--f1-ease), background-color .3s, color .3s;
}
.f1-circle-icon svg { width: 24px; height: 24px; position: absolute; top: 8px; left: 8px; }
.f1-circle-icon--arrow { rotate: -45deg; }

/* ── Buton ── */
.f1-btn {
    background: var(--f1-red);
    border: 1px solid var(--f1-red);
    color: var(--f1-white);
    text-transform: uppercase;
    font-weight: 700;
    font-size: .75rem;
    cursor: pointer;
    border-radius: 999px;
    padding: 6px;
    display: inline-flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    transition: all .3s var(--f1-ease);
    text-decoration: none;
}
.f1-btn:hover { background: var(--f1-black); border-color: var(--f1-red-40); color: var(--f1-red); }
.f1-btn .f1-circle-icon--arrow { rotate: -45deg; }
.f1-btn:hover .f1-circle-icon--arrow { rotate: 0deg; }
.f1-btn__text { padding: 6px 12px; }
.f1-btn--large { font-size: .875rem; }
.f1-btn--large .f1-circle-icon { width: 44px; height: 44px; }
.f1-btn--large .f1-circle-icon svg { width: 26px; height: 26px; top: 9px; left: 9px; }
.f1-btn--ghost {
    background: transparent;
    border-color: var(--f1-white-20);
    color: var(--f1-white);
    padding: 8px 18px;
}
.f1-btn--ghost:hover { background: var(--f1-white); border-color: var(--f1-white); color: var(--f1-black); }

/* ═════════════ HEADER ═════════════ */
.f1-header {
    position: sticky;
    top: 0;
    z-index: 50; /* overlay (40) üstünde kalır → açık menüde toggle/cross tıklanabilir */
    width: 100%;
}
.f1-header__inner {
    max-width: var(--f1-maxw);
    margin: 0 auto;
    padding: 5px var(--f1-gap);
    background-color: var(--f1-deepcharcoal);
}
.f1-header__bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--f1-white-20);
    background: var(--f1-black);
    color: var(--f1-white);
    border-radius: var(--f1-radius);
    padding: 14px 20px;
}
.f1-header__logo { display: inline-flex; align-items: center; color: var(--f1-white); }
.f1-header__logo img { height: 50px; width: auto; display: block; }
.f1-header__brand { font-weight: 700; letter-spacing: .5px; color: var(--f1-white); }

/* Hamburger butonu */
.f1-nav-toggle {
    position: relative;
    width: 40px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--f1-white);
    cursor: pointer;
}
.f1-nav-toggle__hamburger,
.f1-nav-toggle__cross {
    position: absolute;
    top: 50%;
    right: 2px;
    width: 16px;
    height: 16px;
    translate: 0 -50%;
    display: flex;
    flex-direction: column;
}
.f1-nav-toggle__hamburger { justify-content: center; align-items: flex-end; gap: 4px; }
.f1-nav-toggle__cross { justify-content: space-between; align-items: flex-start; }
.f1-nav-toggle__hamburger span,
.f1-nav-toggle__cross span {
    display: block;
    width: 16px;
    border-top: 1px solid currentColor;
    transition: width .5s var(--f1-ease);
}
.f1-nav-toggle__hamburger span:nth-of-type(3) { width: 10px; }
.f1-nav-toggle__cross span { width: 0; }
.f1-nav-toggle.open .f1-nav-toggle__hamburger span { width: 0; }
.f1-nav-toggle.open .f1-nav-toggle__cross span { width: 20.5px; }
.f1-nav-toggle__cross span:first-of-type { transform-origin: 0 0; rotate: 45deg; }
.f1-nav-toggle__cross span:nth-of-type(2) { transform-origin: 0 100%; rotate: -45deg; }

/* ═════════════ OVERLAY (tam ekran menü) ═════════════ */
.f1-noscroll { overflow: hidden; }
/* ═══════════ TAM EKRAN MENÜ (3 bölüm, tonsürton) ═══════════ */
.f1-overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s var(--f1-ease), visibility .35s var(--f1-ease);
}
.f1-overlay.is-open { opacity: 1; visibility: visible; }

.f1-overlay__panel {
    position: absolute; inset: 0;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(0, 1.5fr) minmax(360px, 480px);
    background: #0a0a0a;
    color: #fff;
    overflow: hidden;
    transform: scale(1.02);
    transition: transform .4s var(--f1-ease);
}
.f1-overlay.is-open .f1-overlay__panel { transform: scale(1); }

/* Tonsürton 3 bölüm — #0a0a0a'dan başlayıp hafif açılır */
.f1-ov-menu, .f1-ov-cats, .f1-ov-info {
    padding: clamp(28px, 5vh, 64px) clamp(24px, 3vw, 56px);
    overflow-y: auto;
}
.f1-ov-menu { background: #0a0a0a; }
.f1-ov-cats { background: #171717; }
.f1-ov-info { background: #242424; border-left: 1px solid rgba(255, 255, 255, .05); position: relative; }

/* ── SOL: menü ── */
.f1-ov-menu { display: flex; flex-direction: column; justify-content: center; gap: clamp(8px, 1.8vh, 20px); }
.f1-ov-menu__link {
    color: #fff; text-decoration: none; font-weight: 100;
    font-size: clamp(1.35rem, 2.3vw, 2.1rem); line-height: 1.12; letter-spacing: -.01em;
    width: max-content; max-width: 100%;
    transition: color .2s ease, transform .2s ease;
}
.f1-ov-menu__link:hover { color: var(--f1-accent, #24703b); transform: translateX(6px); }

/* ── ORTA: ana kategoriler ── */
.f1-ov-cats { display: flex; flex-direction: column; justify-content: center; }
.f1-ov-cats__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 18px; }
.f1-ov-cat { text-decoration: none; color: #fff; display: flex; flex-direction: column; gap: 10px; }
.f1-ov-cat__media {
    position: relative; aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden;
    background: #161616; border: 1px solid rgba(255, 255, 255, .07);
    display: flex; align-items: center; justify-content: center;
}
.f1-ov-cat__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--f1-ease); }
.f1-ov-cat:hover .f1-ov-cat__media img { transform: scale(1.06); }
.f1-ov-cat__media i { font-size: 1.6rem; color: rgba(255, 255, 255, .25); }
.f1-ov-cat__title { font-weight: 100; font-size: .95rem; line-height: 1.25; transition: color .2s ease; }
.f1-ov-cat:hover .f1-ov-cat__title { color: var(--f1-accent, #24703b); }

/* ── SAĞ: bilgi sütunu ── */
/* Sağ sütun 3 dikey bölge: logo (üst) · iletişim (orta) · yasal+telif (alt) */
.f1-ov-info { display: flex; flex-direction: column; gap: 20px; }
.f1-overlay__topbar {
    position: absolute; top: clamp(18px, 3vh, 34px); right: clamp(20px, 3vw, 48px); z-index: 5;
    display: flex; align-items: center; gap: 14px;
}
.f1-ov-langs { display: flex; align-items: center; }
.f1-ov-lang {
    color: rgba(255, 255, 255, .5); text-decoration: none; font-size: .82rem; font-weight: 600;
    padding: 2px 12px; position: relative; transition: color .2s ease;
}
.f1-ov-lang:hover, .f1-ov-lang.is-active { color: #fff; }
.f1-ov-lang:not(:last-child)::after {
    content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    height: 12px; width: 1px; background: rgba(255, 255, 255, .2);
}
.f1-ov-close {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .18); background: transparent; color: #fff;
    display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .3s ease;
}
.f1-ov-close:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .4); transform: rotate(90deg); }

.f1-ov-logo { flex: 0 0 auto; display: inline-flex; align-items: center; text-decoration: none; color: #fff; margin-top: clamp(36px, 6vh, 64px); }
.f1-ov-logo img { max-height: 60px; width: auto; object-fit: contain; }
.f1-ov-logo .f1-header__brand { font-size: 1.6rem; font-weight: 700; letter-spacing: .02em; }

/* Orta blok dikeyde ortalanır (logo ile alt blok arasındaki boşluğu kaplar) */
.f1-ov-info__body { flex: 1 1 auto; display: flex; flex-direction: column; justify-content: center; gap: 18px; }
/* Alt blok: yasal + telif */
.f1-ov-bottom { flex: 0 0 auto; display: flex; flex-direction: column; gap: 10px; }
.f1-ov-field { display: flex; flex-direction: column; gap: 6px; }
.f1-ov-field__label { color: var(--f1-red); font-size: .8rem; font-weight: 600; letter-spacing: .02em; }
.f1-ov-field__val {
    color: rgba(255, 255, 255, .85); text-decoration: none; font-size: .92rem; line-height: 1.5;
    display: flex; align-items: flex-start; gap: 9px; transition: color .2s ease;
}
.f1-ov-field__val i { color: rgba(255, 255, 255, .55); margin-top: 3px; flex-shrink: 0; }
a.f1-ov-field__val:hover { color: #fff; }

.f1-ov-social { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2px; }
.f1-ov-social__link {
    width: 42px; height: 42px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255, 255, 255, .18); color: rgba(255, 255, 255, .8);
    font-size: 1.1rem; text-decoration: none;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.f1-ov-social__link:hover {
    color: #fff; background: var(--f1-accent, #24703b);
    border-color: var(--f1-accent, #24703b); transform: translateY(-2px);
}

.f1-ov-legal { display: flex; flex-direction: column; gap: 8px; }
.f1-ov-legal__link { color: rgba(255, 255, 255, .7); text-decoration: none; font-size: .85rem; transition: color .2s ease; }
.f1-ov-legal__link:hover { color: #fff; }
.f1-ov-copyright { color: rgba(255, 255, 255, .4); font-size: .78rem; line-height: 1.5; padding-top: 6px; border-top: 1px solid rgba(255, 255, 255, .06); }

/* Responsive — 3 bölüm alt alta yığılır */
@media (max-width: 991.98px) {
    .f1-overlay__panel {
        grid-template-columns: 1fr;
        grid-auto-rows: max-content;
        overflow-y: auto;
    }
    .f1-ov-menu { justify-content: flex-start; padding-top: clamp(76px, 12vh, 110px); gap: 12px; }
    .f1-ov-cats, .f1-ov-info { justify-content: flex-start; }
    .f1-ov-info { border-left: none; border-top: 1px solid rgba(255, 255, 255, .05); }
    .f1-ov-logo { margin-top: 8px; }
    /* Panel mobilde kaydığı için üst bar viewport'a sabitlensin */
    .f1-overlay__topbar { position: fixed; }
}

/* ═════════════ HERO "DASHBOARD" ═════════════ */
.f1-hero {
    position: relative;
    background: var(--f1-deepcharcoal);
    color: var(--f1-white);
    overflow: hidden;
}
.f1-hero__bgwrap { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.f1-hero__bg { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.f1-dashboard {
    position: relative;
    z-index: 1;
    max-width: var(--f1-maxw);
    margin: 0 auto;
    padding: 12px var(--f1-gap);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.f1-col { display: flex; flex-direction: column; gap: 12px; }
.f1-subrow { display: flex; flex-direction: column; gap: 12px; }

/* Kart temeli */
.f1-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--f1-radius);
    background: var(--f1-black);
    color: var(--f1-white);
    text-decoration: none;
    display: flex;
}
.f1-card--bordered { border: 1px solid var(--f1-white-20); }
.f1-card__media { position: absolute; inset: 0; z-index: 0; }
.f1-card__video, .f1-card__img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.f1-card__body {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 16px;
    display: flex;
    flex-direction: column;
}
.f1-card__body--between { justify-content: space-between; gap: 12px; }
/* Ortalı kart gövdesi: dikeyde merkezde dururdu; içeriği biraz yukarı çekmek için
   alt boşluğu artırıyoruz → ilk açılışta (fold üstünde) görünür kalır. */
.f1-card__body--center { justify-content: center; align-items: center; text-align: center; gap: 8px; padding-bottom: clamp(44px, 8vh, 80px); }
.f1-card__body--overlay {
    background: var(--f1-black-60);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: -webkit-backdrop-filter .3s, backdrop-filter .3s;
}
.f1-card--link:hover .f1-card__body--overlay { -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.f1-card__eyebrow { margin: 0 0 8px; }
.f1-card__desc { font-weight: 700; font-stretch: 125%; }
.f1-card--link .f1-circle-icon { color: var(--f1-black); background: var(--f1-red); border-color: var(--f1-red); }
.f1-card--link:hover .f1-circle-icon { color: var(--f1-red); background: var(--f1-black); }
.f1-card--link:hover .f1-circle-icon--arrow { rotate: 0deg; }

/* Headline (büyük başlık) */
.f1-headline {
    font-weight: 700;
    font-stretch: 150%;
    line-height: 1;
    word-break: break-word;
    text-transform: uppercase;
    font-size: 11vw;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.f1-headline__line { display: block; }
.f1-headline--date { font-size: 11vw; }

/* Bilgi tile */
.f1-card--info { min-height: 220px; }
.f1-info-cols { display: flex; flex-direction: row; justify-content: space-between; gap: 12px; }
.f1-info-col { flex: 0 1 50%; line-height: 1.6; }
.f1-bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.f1-bullet { display: flex; flex-direction: row; align-items: baseline; gap: 8px; }
.f1-bullet__mark { color: var(--f1-red); }
.f1-bullet__mark svg { width: 6px; height: 7px; display: inline-block; }

/* Geri sayım tile */
.f1-card--countdown { color: var(--f1-red); background: var(--f1-black); min-height: 140px; }
.f1-countdown { font-weight: 700; font-stretch: 150%; font-size: clamp(1.5rem, 6vw, 2.5rem); text-align: center; }
.f1-countdown__human { color: var(--f1-midgrey); font-size: .9rem; line-height: 1.4; text-align: center; }

/* ── Responsive: lg+ → iki kolon yan yana ── */
@media (min-width: 992px) {
    .f1-dashboard { flex-direction: row;}
    .f1-col--left  { flex: 0 1 60%; }
    .f1-col--right { flex: 0 1 40%; }
    .f1-subrow { flex-direction: row; }
    .f1-subrow > .f1-card { flex: 0 1 50%; }

    .f1-card--hero { aspect-ratio: 984 / 642; }
    .f1-card--info, .f1-card--countdown {
        aspect-ratio: 434 / 280;
        min-height: 0;
    }
    .f1-card--link { aspect-ratio: 584 / 280; }

    .f1-headline { font-size: 3rem; }
    .f1-headline--date { font-size: 3rem; }

    .f1-nav-card--menu { flex: 1 1 calc(50% - 6px); }
}
@media (min-width: 1280px) {
    .f1-headline, .f1-headline--date { font-size: 4rem; }
}
@media (min-width: 1536px) {
    .f1-headline, .f1-headline--date { font-size: 4.5rem; }
}

/* Mobilde hero kartlarına makul yükseklik */
@media (max-width: 991.98px) {
    .f1-card--hero { min-height: 460px; }
    .f1-card--link { min-height: 200px; }
}

@media (prefers-reduced-motion: reduce) {
    .f1-nav-card { transition: none; }
}

/* ═════════════ VIDEO SLIDER (hero v4) eklentileri ═════════════ */
/* Büyük tile içerik dikey akış: sub → h1 → açıklama → footer(buton+dots) */
.f1-hero__desc {
    margin: 10px 0 0;
    max-width: 52ch;
    font-stretch: 110%;
    line-height: 1.5;
    color: var(--f1-lightgrey);
}
.f1-card__footer {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

/* Dots (sayfalama) — sağ altta */
.f1-dots { display: flex; gap: 8px; align-items: center; }
.f1-dot {
    width: 10px; height: 10px;
    padding: 0;
    border: 1px solid var(--f1-white-20);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color .3s, border-color .3s, transform .3s;
}
.f1-dot:hover { border-color: var(--f1-white); }
.f1-dot.is-active { background: var(--f1-red); border-color: var(--f1-red); transform: scale(1.15); }

/* Bilgi tile metinleri */
.f1-info-title { font-weight: 700; font-stretch: 125%; margin: 0 0 4px; }
.f1-info-text { margin: 0; color: var(--f1-midgrey); font-size: .9rem; line-height: 1.4; }
.f1-info-alt { margin: 0; text-align: left; color: var(--f1-lightgrey); font-size: .9rem; line-height: 1.5; }

/* Geri sayım */
.f1-countdown__label { color: var(--f1-red); text-align: center; }
.f1-countdown__legend { color: var(--f1-midgrey); text-align: center; letter-spacing: .04em; }
.f1-countdown.is-bump { animation: f1Bump .35s var(--f1-ease); }
@keyframes f1Bump {
    0%   { transform: translateY(2px); opacity: .6; }
    100% { transform: translateY(0);   opacity: 1; }
}

/* Split-flap akışı sırasında hafif vurgulama */
.is-flapping { letter-spacing: .5px; opacity: .92; }
.f1-headline.is-flapping { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
    .f1-countdown.is-bump { animation: none; }
    .is-flapping { letter-spacing: normal; opacity: 1; }
}

/* ── Sadece büyük video tile (.f1-card--hero) için override'lar ── */
.f1-card--hero .f1-headline { color: #fff; font-size: 2.75rem; }
.f1-card--hero .f1-card__body--between { justify-content: end; }

/* ═════════════ SAĞ KOLON — full-bleed görsel + yarım blur metin paneli ═════════════ */
/* Görsel tüm kartı kaplar; metin paneli %50'yi kaplar ve arkasındaki görseli blur'lar.
   Görsel tarafı = panelin OLMADIĞI yarı. Kart 1,3 → görsel sol (panel sağ); Kart 2 → görsel sağ (panel sol). */
.f1-rc {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--f1-radius);
    background: var(--f1-midcharcoal);
    color: var(--f1-white);
    text-decoration: none;
    min-height: 200px;
}
.f1-rc__img { position: absolute; inset: 0; z-index: 0; }
.f1-rc__img picture { display: block; width: 100%; height: 100%; }
.f1-rc__img img,
.f1-rc__cover { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.f1-rc__placeholder { display: block; width: 100%; height: 100%; background: var(--f1-charcoal); }

.f1-rc__text {
    position: absolute;
    top: 0; bottom: 0; right: 0;     /* varsayılan: panel sağda (görsel solda) */
    width: 50%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    background: var(--f1-black-0009);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: -webkit-backdrop-filter .3s, backdrop-filter .3s;
}
.f1-rc--imgright .f1-rc__text { right: auto; left: 0; }  /* görsel sağ → panel sol */
.f1-rc:hover .f1-rc__text { -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.f1-rc__top { display: flex; flex-direction: row; align-items: flex-start; justify-content: space-between; gap: 12px; }
.f1-rc__desc { font-weight: 500; font-stretch: 125%; font-size: .85rem; line-height: 1.25; }
/* Metin hover'da maviye dönmesin (global a:hover override) — beyaz kalsın */
.f1-rc,
.f1-rc:hover,
.f1-rc:hover .f1-rc__desc,
.f1-rc:hover .mono-micro { color: var(--f1-white); opacity: 1; }
.f1-rc .f1-circle-icon { color: var(--f1-black); background: var(--f1-red); border-color: var(--f1-red); }
.f1-rc:hover .f1-circle-icon { color: var(--f1-red); background: var(--f1-black); }
.f1-rc:hover .f1-circle-icon--arrow { rotate: 0deg; }

@media (min-width: 992px) {
    .f1-rc { aspect-ratio: 584 / 280; min-height: 0; }
}
@media (max-width: 991.98px) {
    /* Mobil: görsel üstte (relative), metin paneli tam genişlik altta */
    .f1-rc { aspect-ratio: auto; }
    .f1-rc__img { position: relative; height: 180px; }
    .f1-rc__text,
    .f1-rc--imgright .f1-rc__text {
        position: relative; right: auto; left: auto; width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   YAKLAŞAN ETKİNLİKLER — başlık (squiggle) + yatay marquee
   ═══════════════════════════════════════════════════════════════════════ */
.ue-section {
    background: var(--f1-deepcharcoal);
    color: var(--f1-white);
    padding: 48px 0 56px;
    overflow: hidden;
}
.ue-inner { max-width: var(--f1-maxw); margin: 0 auto; padding: 0 24px; }

.ue-title {
    color: var(--f1-white);
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: -.02em;
    margin: 0 0 45px;
    max-width: 36ch;
}
.ue-highlight { position: relative; display: inline-block; white-space: nowrap; }
.ue-highlight .squiggle-underline {
    position: absolute;
    left: 0; bottom: -.34em;
    width: 100%; height: .55em;
    overflow: visible;
    pointer-events: none;
}
.ue-highlight .squiggle-underline path {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: ueDraw 1.8s ease .3s forwards;
}
@keyframes ueDraw { to { stroke-dashoffset: 0; } }

/* Marquee — kenarlarda yumuşak geçiş maskesi */
.ue-marquee {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.ue-track {
    display: flex;
    width: max-content;
    animation: ueScroll 50s linear infinite;
}
.ue-section:hover .ue-track { animation-play-state: paused; }
@keyframes ueScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Kart — kesintisiz döngü için flex-gap yerine margin-right (seam atlamasın) */
.ue-card {
    position: relative;
    flex: 0 0 auto;
    width: 380px;
    height: 520px;
    margin-right: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--f1-midcharcoal);
    color: var(--f1-white);
    text-decoration: none;
    display: block;
}
.ue-card__img { position: absolute; inset: 0; z-index: 0; }
.ue-card__img picture { display: block; width: 100%; height: 100%; }
.ue-card__img img,
.ue-card__cover {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
    transition: transform .5s var(--f1-ease);
}
.ue-card:hover .ue-card__cover { transform: scale(1.05); }
.ue-card__placeholder { display: block; width: 100%; height: 100%; background: var(--f1-charcoal); }
.ue-card__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,.40) 0%, rgba(0,0,0,0) 30%);
}
.ue-card__title {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 22px 22px 0;
    color: var(--f1-white);
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 1.15;
    letter-spacing: -.01em;
}
/* Alt bant — görselin altı frosted (blur) + pill chip'ler */
.ue-card__bottom {
    position: absolute; z-index: 2;
    left: 0; right: 0; bottom: 0;
    padding: 18px 16px 16px;
    /* Kategoriler üstte, geri sayım altta — sabit; rakam değişince zıplamaz */
    display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
    isolation: isolate;
}
.ue-card__cats { display: flex; flex-wrap: wrap; gap: 8px; }
/* Frosted katman — sadece görseli blur'lar (chip'ler net kalır) */
.ue-card__bottom::before {
    content: "";
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.32) 100%);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 45%);
    mask-image: linear-gradient(180deg, transparent, #000 45%);
}
.ue-chip {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .20);
    color: var(--f1-white);
    font-size: .7rem;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}
.ue-chip--date { background: rgba(0, 0, 0, .30); border-color: rgba(255, 255, 255, .25); }

/* Geri sayım chip'i — ikon + canlı sayaç (monospaced rakamlar) */
.ue-chip--cd {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(36, 112, 59, .92); border-color: rgba(36, 112, 59, .92);
    font-weight: 600; font-variant-numeric: tabular-nums;
}
.ue-chip--cd .ue-cd__ico { flex-shrink: 0; opacity: .9; }
.ue-chip--cd .ue-cd__txt { letter-spacing: .02em; }
/* Devam ediyor (başlangıç–bitiş arası) → mavi */
.ue-chip--cd.is-live {
    background: rgba(37, 99, 235, .95); border-color: rgba(37, 99, 235, .95);
}
/* Bitti (bitiş tarihi geçti) → kırmızı, statik */
.ue-chip--cd.is-ended {
    background: rgba(220, 38, 38, .95); border-color: rgba(220, 38, 38, .95);
}

@media (max-width: 768px) {
    .ue-card { width: 240px; height: 340px; margin-right: 14px; }
    .ue-card__title { font-size: 1.25rem; padding: 16px 16px 0; }
    .ue-card__bottom { padding: 12px; }
    .ue-chip { padding: 6px 13px; font-size: .76rem; }
}
@media (prefers-reduced-motion: reduce) {
    .ue-track { animation: none; }
    .ue-highlight .squiggle-underline path { animation: none; stroke-dashoffset: 0; }
}

/* ═══════════════════════════════════════════════════════════════════════
   MÜŞTERİ YORUMLARI — başlık + yatay kart slider
   ═══════════════════════════════════════════════════════════════════════ */
.ty-section {
    background: var(--f1-deepcharcoal);
    color: var(--f1-white);
    padding: 56px 0 48px;
    overflow: hidden;
}
.ty-head { text-align: center; max-width: var(--f1-maxw); margin: 0 auto 40px; padding: 0 24px; }
.ty-eyebrow {
    color: var(--f1-red);
    font-weight: 700;
    font-size: .95rem;
    margin: 0 0 14px;
}
.ty-title {
    color: var(--f1-white);
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: -.02em;
    letter-spacing: -.02em;
    margin: 0 auto 45px;
    max-width: 24ch;
}

/* Slider viewport — ortada 2 kart tam, yanlarda peek (gutter'larda komşular görünür) */
.ty-viewport {
    --ty-gap: 24px;
    --ty-peek: clamp(28px, 7vw, 140px);
    max-width: var(--f1-maxw);
    margin: 0 auto;
    padding-inline: var(--ty-peek);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--ty-peek);
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.ty-viewport::-webkit-scrollbar { display: none; }
.ty-track { display: flex; gap: var(--ty-gap); }

.ty-card {
    scroll-snap-align: start;
    /* 2 kart + 1 gap = içerik alanı (peek padding'leri hariç) */
    flex: 0 0 calc((100% - var(--ty-gap)) / 2);
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--f1-white-20);
    border-radius: 18px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.ty-card__head { display: flex; flex-direction: row; align-items: center; gap: 16px; }
.ty-card__avatar {
    flex: none;
    width: 56px; height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--f1-charcoal);
}
.ty-card__avatar picture, .ty-card__avimg {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.ty-card__avph { display: block; width: 100%; height: 100%; background: var(--f1-charcoal); }
.ty-card__name { font-weight: 700; font-size: 1.15rem; color: var(--f1-white); line-height: 1.2; }
.ty-card__role { color: var(--f1-darkgrey); font-size: .9rem; margin-top: 2px; }
.ty-card__quote {
    margin: 0;
    color: var(--f1-lightgrey);
    font-size: .9rem;
    line-height: 1.6;
    font-weight: 500;
}
.ty-card__quote::before { content: "\201C"; color: var(--f1-white); font-weight: 700; margin-right: 1px; }
.ty-card__quote::after  { content: "\201D"; color: var(--f1-white); font-weight: 700; margin-left: 1px; }

/* Navigasyon okları */
.ty-nav { display: flex; justify-content: center; gap: 18px; margin-top: 36px; }
.ty-arrow {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 0;
    background: var(--f1-white);
    color: var(--f1-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .25s var(--f1-ease), background-color .25s, color .25s;
}
.ty-arrow:hover { background: var(--f1-red); color: var(--f1-white); transform: scale(1.06); }

@media (max-width: 768px) {
    /* Mobil: 1 kart tam + yanlarda küçük peek */
    .ty-viewport { --ty-peek: 22px; }
    .ty-card { flex: 0 0 calc(100% - 36px); padding: 24px; }
    .ty-card__quote { font-size: 1rem; }
    .ty-arrow { width: 48px; height: 48px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   VİTRİN ÜRÜNLERİ (ProductGrid) — kelimeler + kategori + kart slider
   ═══════════════════════════════════════════════════════════════════════ */
.pg-section {
    position: relative;
    overflow: hidden;
    background: #000;
    padding: 60px 0;
}
/* Üst açık bant (kelimeler/butonlar burada) */
.pg-section::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 340px;
    background: #ececed;
    z-index: 0;
}
/* Sağ-alt magenta parıltı */
    .pg-section::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background: radial-gradient(120% 95% at 100% 100%, rgba(36, 112, 59, .55), rgba(0, 0, 0, 0) 60%);
    }

/* Arkaplan kelimeleri (soluk, outline) */
.pg-words {
    position: absolute; top: 75px; left: 0; right: 0;
    z-index: 0; overflow: hidden; pointer-events: none;
    display: flex; flex-direction: column; gap: 4px;
}
.pg-words__track {
    display: inline-flex; gap: 44px;
    white-space: nowrap; line-height: .92;
    will-change: transform;
}
.pg-word {
    font-size: clamp(48px, 9vw, 120px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.02em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0,0,0,.13);
}
/* Alt satır: içi dolu (faint), üst satırın tersine kayar */
.pg-words__track--fill .pg-word {
    color: rgba(0,0,0,.085);
    -webkit-text-stroke: 0;
}

/* Üst alan: kategori butonları sağda */
.pg-head {
    position: relative; z-index: 2;
    max-width: var(--f1-maxw); margin: 0 auto;
    padding: 30px 24px 26px;
    min-height: 130px;
    display: flex; align-items: flex-start; justify-content: flex-end;
}
.pg-cats { display: flex; flex-wrap: wrap; gap: 12px; }
.pg-cat {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.18);
    background: transparent;
    color: #111;
    font-weight: 600; font-size: .95rem;
    cursor: pointer;
    transition: background-color .25s, color .25s, border-color .25s;
}
.pg-cat:hover { border-color: #111; }
.pg-cat.is-active { background: var(--f1-red); border-color: var(--f1-red); color: #fff; }

/* Slider */
.pg-viewport {
    position: relative;
    z-index: 2;
    max-width: var(--f1-maxw);
    margin: 60px auto 0;
    padding: 0 60px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    /* İlk kartın solu boş kalsın + açılışta scrollLeft 0 olsun (snap padding'i yemesin) */
    scroll-padding-left: 60px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.pg-viewport::-webkit-scrollbar { display: none; }
.pg-track { display: flex; gap: 20px; }

.pg-card {
    position: relative;
    flex: 0 0 clamp(240px, 24%, 460px);
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background: #111;
    scroll-snap-align: start;
}
.pg-card__img { position: absolute; inset: 0; z-index: 0; }
.pg-card__img picture { display: block; width: 100%; height: 100%; }
.pg-card__img img, .pg-card__cover {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    display: block;
    filter: brightness(.9);
    transition: transform .5s var(--f1-ease), filter .5s var(--f1-ease);
}
.pg-card__placeholder { display: block; width: 100%; height: 100%; background: var(--f1-charcoal); }
/* Kart bir <a> — global a:hover{opacity:.8} kartı şeffaflaştırıyordu; engelle */
.pg-card, .pg-card:hover { opacity: 1; }
.pg-card:hover .pg-card__cover { transform: scale(1.05); filter: brightness(1.05); }
.pg-card::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 32%, rgba(0,0,0,.78) 100%);
}
.pg-card__pill {
    position: absolute; top: 18px; left: 18px; z-index: 2;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.55);
    background: rgba(0,0,0,.22);
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
    color: #fff; font-size: .8rem; font-weight: 600;
}
.pg-card__foot { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 24px; }
.pg-card__title {
    color: #fff; font-weight: 500;
    font-size: clamp(1.35rem, 2vw, 1rem); line-height: 1.12;
    letter-spacing: -.01em; margin: 0 0 16px;
}
.pg-card__cta {
    display: inline-block;
    color: #fff;     font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 1px; text-transform: uppercase;
    padding-bottom: 4px;
    /* Alt çizgi: background ile → hover'da sağdan sola kayarak kaybolur */
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 100% 2px;
    transition: background-size .45s var(--f1-ease);
}
.pg-card:hover .pg-card__cta { background-size: 0% 2px; }

/* Alt kontrol */
.pg-controls {
    position: relative; z-index: 2;
    max-width: 1080px; margin: 60px auto 0;
    padding: 0 24px;
    display: flex; align-items: center; gap: 28px;
}
.pg-arrows { display: flex; gap: 14px; flex: none; }
.pg-arrow {
    width: 54px; height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.30);
    background: transparent; color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background-color .25s, color .25s;
}
.pg-arrow:hover { background: #fff; color: #111; }
.pg-progress {
    position: relative; flex: 1 1 auto;
    height: 4px; border-radius: 999px;
    background: rgba(255,255,255,.16);
    cursor: pointer; touch-action: none;
}
.pg-progress__bar {
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 12%; border-radius: 999px;
    background: var(--f1-red);
}

@media (max-width: 768px) {
    .pg-section::before { height: 240px; }
    .pg-head { padding: 22px 16px; min-height: 0; }
    .pg-cat { padding: 10px 16px; font-size: .85rem; }
    .pg-viewport { padding: 0 16px; scroll-padding-left: 16px; }
    .pg-card { flex: 0 0 72%; }
    .pg-controls { padding: 0 16px; gap: 16px; }
    .pg-arrow { width: 46px; height: 46px; }
}
@media (prefers-reduced-motion: reduce) {
    .pg-words__track { transform: none !important; }
    .pg-card__cover { transition: none; }
}

/* ═══════════════════════════════════════════════════════════════════════
   ETKİ (IMPACT) BÖLÜMÜ — sol başlık+chip · merkez parallax · sağ kart
   ═══════════════════════════════════════════════════════════════════════ */
.im-section {
    position: relative;
    overflow: hidden;
    background: #fFF;
    padding: 80px 0;
}
.im-inner {
    position: relative;
    max-width: var(--f1-maxw);
    margin: 0 auto;
    padding: 0 24px;
}

/* Sol — başlık + chip görseller (merkez alan kaldırıldı → genişletildi) */
.im-left { position: relative; z-index: 2; max-width: 62%; }
.im-headline {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 10px 16px;
    margin: 0;
    color: #111;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.02;
    letter-spacing: -.01em;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
}
.im-seg { display: inline-block; }
.im-seg.is-ghost { color: transparent; -webkit-text-stroke: 2px rgba(0,0,0,.20); }
.im-chip { display: inline-flex; }
.im-chip .im-chip__img, .im-chip picture {
    display: block;
    width: clamp(70px, 7vw, 120px);
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    border-radius: 14px;
}

/* Sağ — kart */
.im-card {
    position: absolute; top: 50%; right: 24px;
    transform: translateY(-50%);
    z-index: 3;
    width: 360px; max-width: 38%;
    padding: 40px 36px;
    border-radius: 26px;
    background: #000;
    box-shadow: 0 24px 70px rgba(0,0,0,.10);
    text-align: center;
}
.im-card__logo { height: 64px; width: auto; margin: 0 auto 26px; object-fit: contain; }
.im-card__title {
    margin: 0 0 16px;
    color: #FFF;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.35rem;
    line-height: 1.25;
}
.im-card__text { margin: 0 0 26px; color: #FFF; font-size: 1rem; line-height: 1.6; }
/* Buton görünümü Hero ile aynı (.f1-btn / .f1-circle-icon) — burada sadece konum/hizalama */
.im-card__btn { margin-top: 4px; }

@media (max-width: 992px) {
    .im-section { padding: 56px 0; }
    .im-inner { min-height: 0; }
    .im-left { max-width: 100%; }
    .im-card {
        position: static; transform: none;
        width: 100%; max-width: 100%;
        margin-top: 36px;
    }
}

/* ════════════════════════════════════════════════════════════════════
   FOOTER (DCD tarzı) — 3 bölüm: üst (logo+bülten), orta (linkler+sosyal),
   alt (telif + referans carousel)
   ════════════════════════════════════════════════════════════════════ */
.ft { color: rgba(255,255,255,.7); background: #0a0a0a; }
.ft-wrap { max-width: 1680px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 72px); }

/* ── ÜST ── */
.ft-top {
    background-color: #0d0d0d;
    background-image: url(/themes/default/img/footer-pattern.png);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    background-repeat: no-repeat;
    background-size: cover;
}
.ft-top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 90px;
    padding-bottom: 90px;
}
.ft-brand { flex: 0 0 auto; }
.ft-brand__logo { max-height: 210px; width: auto; opacity: 1; display: block; }
.ft-brand__name { color: #fff; font-size: 1.6rem; font-weight: 800; letter-spacing: -.02em; }

.ft-sub { flex: 1 1 420px; max-width: 460px; }
.ft-sub__title {
    margin: 0 0 16px;
    color: #FFF;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.35rem;
    line-height: 1.25;
}
.ft-sub__lead {
    margin: 0 auto 25px;
    color: var(--f1-lightgrey);
    font-size: .9rem;
    line-height: 1.6;
    font-weight: 500;
}
.ft-sub__form {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,.25);
    background: #191919;
    border-radius: 2px;
}
.ft-sub__input {
    flex: 1 1 auto;
    background: transparent;
    border: 0;
    outline: none;
    color: #fff;
    font-size: 1rem;
    padding: 15px;
    font-size: .9rem;
    line-height: 1.6;
    font-weight: 500;
}
.ft-sub__input::placeholder { color: rgba(255,255,255,.45); }
.ft-sub__btn {
    flex: 0 0 auto;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: #fff;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 0 18px;
    font-size: .85rem;
    transition: color .2s ease;
    font-weight: 500;
}
.ft-sub__arrow {
    flex: 0 0 auto; width: 48px; border: 0; cursor: pointer;
    background: #fff; color: #000;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .25s ease, color .25s ease;
}
.ft-sub__arrow:hover { background: var(--f1-accent, #24703b); color: #fff; }
.ft-sub__result { margin-top: 12px; font-size: .85rem; }
.ft-sub__result.is-ok { color: #4ade80; }
.ft-sub__result.is-warn { color: #fbbf24; }
.ft-sub__result.is-err { color: #f87171; }

/* ── ORTA ── */
.ft-mid { border-bottom: 1px solid rgba(255,255,255,.06); }
.ft-mid__inner {
    display: flex; flex-direction: column; gap: 40px;
    padding-top: 56px; padding-bottom: 56px;
}
/* Üst satır: inline menü + sosyal */
.ft-mid__top {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px 40px; flex-wrap: wrap;
}
/* Inline link satırı (footer menü / yasal uyarılar) */
.ft-inline { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px; }
/* Alt menü (footer ana menü) — BÜYÜK harf, BEYAZ, aralarında biraz boşluk */
.ft-inline:not(.ft-inline--legal) { gap: 16px 36px; }
.ft-inline:not(.ft-inline--legal) .ft-link {
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .06em;
}
.ft-inline:not(.ft-inline--legal) .ft-link:hover { color: var(--f1-accent, #24703b); }
.ft-inline--legal { gap: 12px 24px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.06); }
.ft-inline--legal .ft-link { font-size: .8rem; color: rgba(255,255,255,.55); }

/* Kategori sütunları: başlık + alt kategori listesi.
   minmax(160px,.2fr): fr çözülen değer 160px'in altında kaldığı için sütunlar
   160px'e sabitlenir, tüm genişliğe yayılmaz → "çok açık" görünüm engellenir.
   justify-content:start: artan boşluk sona toplanır, sütunlar sola paketlenir. */
.ft-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, .3fr));
    gap: 28px 40px;
    justify-content: start;
}
.ft-col { display: flex; flex-direction: column; gap: 14px; }
.ft-col__head {
    color: #fff; font-weight: 700; font-size: .95rem; letter-spacing: .01em;
    text-decoration: none; text-transform: uppercase;
}
.ft-col__head:hover { color: var(--f1-accent, #24703b); }
.ft-col__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.ft-link {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    font-size: .85rem;
    transition: color .2s ease;
    font-weight: 500;
}
.ft-link:hover { color: #fff; }

/* Orta blok: sol = kategoriler · sağ = sosyal + yardım (sola dayalı) */
.ft-mid__grid {
    display: flex; flex-wrap: wrap; gap: 40px 56px;
    align-items: flex-start; justify-content: space-between;
}
.ft-mid__left  { flex: 1 1 520px; min-width: 0; display: flex; flex-direction: column; gap: 40px; }
.ft-mid__right { flex: 0 1 500px; display: flex; flex-direction: column; gap: 26px; align-items: stretch; }

.ft-social {
    background: #191919;
    border-radius: 2px;
    flex-shrink: 0;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 500px;
    height: 45px;
    margin: 0;
    padding: 0 18px;
    display: flex;
}
.ft-social__label {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    font-size: .85rem;
    transition: color .2s ease;
    font-weight: 500;
}
.ft-social__icons { display: inline-flex; align-items: center; gap: 18px; }
.ft-social__link {
    color: rgba(255,255,255,.65); font-size: 1.15rem; line-height: 1;
    text-decoration: none; transition: color .2s ease, transform .2s ease;
}
.ft-social__link:hover { color: #fff; transform: translateY(-2px); }

/* ── Footer Yardım & İletişim (3'lü alan) ── */
.ft-help { width: 100%; display: flex; flex-direction: column; gap: 22px; }
.ft-help__head { display: flex; align-items: center; gap: 14px; }
.ft-help__icon {
    flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--f1-accent, #24703b); font-size: 1.5rem;
    border: 1px solid rgba(36,112,59,.45); background: rgba(36,112,59,.10);
}
.ft-help__title { color: #fff; font-weight: 700; font-size: 1.02rem; line-height: 1.2; }
.ft-help__desc { color: rgba(255,255,255,.6); font-size: .82rem; margin-top: 3px; }
.ft-help__row { display: flex; flex-wrap: wrap; gap: 18px 32px; }
.ft-help__item {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; flex: 1 1 210px; min-width: 0;
}
.ft-help__item-icon {
    flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--f1-accent, #24703b); font-size: 1.1rem;
    border: 1px solid rgba(36,112,59,.45); background: rgba(36,112,59,.10);
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.ft-help__item-icon--wa { color: #25d366; border-color: rgba(37,211,102,.45); background: rgba(37,211,102,.10); }
.ft-help__item:hover .ft-help__item-icon { color: #fff; background: var(--f1-accent, #24703b); border-color: var(--f1-accent, #24703b); }
.ft-help__item:hover .ft-help__item-icon--wa { color: #fff; background: #25d366; border-color: #25d366; }
.ft-help__item-text { display: flex; flex-direction: column; min-width: 0; }
.ft-help__item-label { color: rgba(255,255,255,.55); font-size: .72rem; line-height: 1.25; white-space: nowrap; }
.ft-help__item-value { color: #fff; font-weight: 600; font-size: .9rem; line-height: 1.3; }
@media (max-width: 575.98px) {
    .ft-mid__right { width: 100%; }
    .ft-social, .ft-help { max-width: none; }
}

/* ── ALT ── */
.ft-bottom__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
    padding-top: 28px; padding-bottom: 28px;
}
.ft-copy {     color: rgba(255, 255, 255, .55);
    font-size: .9rem;
    line-height: 1.6;
    font-weight: 500; }
/* Aynı anda 3 logo görünür (slot genişliği × 3 + 2 boşluk) */
.ft-refs {
    --ft-ref-slot: 140px; --ft-ref-gap: 32px;
    flex: 0 0 auto;
    width: calc(var(--ft-ref-slot) * 3 + var(--ft-ref-gap) * 2);
    max-width: 100%; overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.ft-refs__track {
    display: flex; align-items: center; gap: var(--ft-ref-gap); width: max-content;
    animation: ftRefsScroll 28s linear infinite;
}
.ft-refs:hover .ft-refs__track { animation-play-state: paused; }
.ft-refs__item {
    flex: 0 0 var(--ft-ref-slot); width: var(--ft-ref-slot);
    display: flex; align-items: center; justify-content: center;
}
.ft-refs__item img {
    height: 70px; max-width: 100%; width: auto; object-fit: contain;
    opacity: .7; transition: opacity .25s ease;
}
.ft-refs__item img:hover { opacity: 1; }
@keyframes ftRefsScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .ft-refs__track { animation: none; }
}

@media (max-width: 992px) {
    .ft-top__inner { padding-top: 44px; padding-bottom: 44px; gap: 32px; }
    .ft-brand__logo { max-height: 96px; }
    .ft-mid__inner { padding-top: 40px; padding-bottom: 40px; }
    .ft-social { width: 100%; justify-content: center; }
}
@media (max-width: 575px) {
    .ft-cols { grid-template-columns: repeat(2, 1fr); }
    .ft-bottom__inner { flex-direction: column; align-items: flex-start; }
    .ft-refs { max-width: 100%; width: 100%; }
}

/* ════════════════════════════════════════════════════════════════════
   KURUMSAL "OUR MISSION" tanıtım bölümü
   ════════════════════════════════════════════════════════════════════ */
/* Zemin BEYAZ — metinler koyu, anasayfa bütünlüğü için CTA + telefon footer'ı */
.km-section { background: #fff; color: var(--f1-charcoal); padding: clamp(56px, 8vw, 160px) 0; overflow-x: clip; }
.km-inner {
    max-width: var(--f1-maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 72px);
    display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: clamp(32px, 6vw, 90px);
}
.km-text { width: 100%; }
.km-eyebrow {
    color: var(--f1-red, #24703b); font-weight: 700; font-size: 1rem;
    margin: 0 0 16px; letter-spacing: .01em;
}
.km-title {
    margin: 0 0 26px;
    color: var(--f1-deepcharcoal);
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
}
.km-circle { position: relative; display: inline-block; white-space: nowrap; }
.km-circle .km-scribble {
    position: absolute; left: -8%; top: -14%; width: 116%; height: 128%;
    pointer-events: none; overflow: visible;
}
.km-desc { color: rgba(0,0,0,.62); font-size: 1.05rem; line-height: 1.7; margin: 0 0 32px; }
/* Jodit zengin metin çıktısı — iç <p> boşluklarını düzenle */
.km-desc p, .sc-desc p, .ty-sub p { margin: 0 0 .6em; }
.km-desc p:last-child, .sc-desc p:last-child, .ty-sub p:last-child { margin-bottom: 0; }

/* CTA + telefon — anasayfa f1-card__footer hizasıyla aynı düzen */
.km-footer { flex-wrap: wrap; align-items: center; justify-content: flex-start; gap: 18px 28px; }
.km-btn { margin-top: 4px; }
.km-phone {
    display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--f1-deepcharcoal);
    font-weight: 700; font-size: 1.05rem; letter-spacing: .01em;
    transition: color .3s var(--f1-ease);
}
.km-phone__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 999px;
    background: var(--f1-red, #24703b); color: #fff; flex-shrink: 0;
    transition: transform .3s var(--f1-ease);
}
.km-phone:hover { color: var(--f1-red, #24703b); }
.km-phone:hover .km-phone__icon { transform: scale(1.08); }

/* Sağ — 2 görsel: büyük kare arka (sağ) + üste binen küçük portre (sol-alt) */
.km-media { position: relative; }
.km-media__back {
    display: block; width: 60%; margin-left: auto;
    aspect-ratio: 1 / 1; object-fit: cover; border-radius: 12px;
}
.km-media__front {
    position: absolute;
    left: 25%;
    bottom: -18%;
    width: 35%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

@media (max-width: 992px) {
    .km-inner { grid-template-columns: 1fr; gap: 56px; }
    .km-media { margin-bottom: 8%; }
    .km-media__back { width: 72%; }
    .km-media__front { width: 48%; bottom: -10%; }
}

/* ════════════════════════════════════════════════════════════════════
   SHOWCASE / CANLI YAYIN bölümü — sol medya · orta metin · sağ medya
   ════════════════════════════════════════════════════════════════════ */
.sc-section { background: #fFF; padding: clamp(40px, 6vw, 84px) 0; overflow: hidden; }
.sc-inner {
    max-width: var(--f1-maxw); margin: 0 auto; padding: 0 clamp(16px, 4vw, 64px);
    display: grid; grid-template-columns: 0.92fr 1.3fr 0.92fr;
    align-items: stretch; gap: clamp(12px, 1.8vw, 26px);
    /* Dikey olarak daha büyük medya — tüm kolonlar bu yüksekliğe uzar */
    min-height: clamp(480px, 66vh, 720px);
}
.sc-media { position: relative; display: flex; gap: clamp(10px, 1.4vw, 20px); height: 100%; }
.sc-media:empty { display: none; }
.sc-media__el {
    flex: 1 1 0; min-width: 0; display: block; width: 100%; height: 100%;
    object-fit: cover; border-radius: 18px; background: #e4e6ea;
}

/* Orta — silik border'lı katmanlı panel dekoru + dikeyde ortalanmış metin */
.sc-text {
    position: relative; text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: clamp(20px, 3.5vw, 56px) clamp(14px, 2.5vw, 40px);
}
.sc-deco {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    display: flex; gap: clamp(10px, 1.4vw, 20px);
}
.sc-deco__col {
    flex: 1; border: 1px solid rgba(0, 0, 0, .08); border-bottom: none;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0) 70%);
}
.sc-text > :not(.sc-deco) { position: relative; z-index: 1; }
.sc-eyebrow {
    color: var(--f1-red, #24703b); font-weight: 700; font-size: .95rem;
    letter-spacing: .08em; text-transform: uppercase; margin: 0 0 14px;
}
.sc-title {
    margin: 0 0 18px; color: var(--f1-deepcharcoal);
    font-weight: 800; font-size: clamp(2rem, 4.4vw, 3.4rem);
    line-height: 1.04; letter-spacing: -0.02em;
}
.sc-subtitle {
    display: inline-flex; align-items: center; gap: 10px;
    margin: 0 0 20px; color: var(--f1-deepcharcoal);
    font-weight: 600; font-size: clamp(1rem, 1.6vw, 1.25rem);
}
.sc-dot {
    width: 11px; height: 11px; border-radius: 50%;
    background: var(--f1-red, #24703b); flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(36, 112, 59, .55);
    animation: scPulse 2s var(--f1-ease) infinite;
}
@keyframes scPulse {
    0%   { box-shadow: 0 0 0 0 rgba(36, 112, 59, .5); }
    70%  { box-shadow: 0 0 0 12px rgba(36, 112, 59, 0); }
    100% { box-shadow: 0 0 0 0 rgba(36, 112, 59, 0); }
}
.sc-desc {
    color: rgba(0,0,0,.6); font-size: 1.02rem; line-height: 1.65;
    max-width: 46ch; margin: 0 auto 30px;
}
.sc-btn { display: inline-flex; }

@media (max-width: 992px) {
    .sc-inner { grid-template-columns: 1fr 1fr; gap: 22px; min-height: 0; align-items: start; }
    .sc-text { grid-column: 1 / -1; order: -1; padding: 12px 8px 8px; }
    .sc-media { height: auto; }
    .sc-media__el { height: auto; aspect-ratio: 3 / 4; }
}
@media (max-width: 576px) {
    .sc-inner { grid-template-columns: 1fr; }
    .sc-deco { display: none; }
    .sc-media--left { display: none; }
    .sc-media--right .sc-media__el:nth-child(2) { display: none; }
    .sc-media .sc-media__el { aspect-ratio: 16 / 10; }
}
@media (prefers-reduced-motion: reduce) {
    .sc-dot { animation: none; }
}

/* ════════════════════════════════════════════════════════════════════
   ETKİ bölümü — siyah zemin · ty-head · Instagram görsel grid · CTA
   ════════════════════════════════════════════════════════════════════ */
.ek-section { background: #0a0a0a; color: #fff; padding: clamp(56px, 8vw, 100px) 0; overflow: hidden; }
.ek-head { text-align: center; max-width: var(--f1-maxw); margin: 0 auto 48px; padding: 0 24px; }
.ek-head .ty-title { margin: 0 auto 16px; }
.ty-sub {
    color: rgba(255,255,255,.62); font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.7; max-width: 60ch; margin: 0 auto;
}
.ek-grid {
    max-width: var(--f1-maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 72px);
    display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(10px, 1.2vw, 18px);
}
.ek-item {
    position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden;
    border-radius: 10px; background: #161616; text-decoration: none;
}
.ek-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .5s var(--f1-ease, ease), filter .4s ease; filter: brightness(.92);
}
.ek-item:hover img { transform: scale(1.06); filter: brightness(1.02); }
.ek-item__icon {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.8rem; opacity: 0;
    background: rgba(0,0,0,.35); transition: opacity .25s ease;
}
.ek-item:hover .ek-item__icon { opacity: 1; }
.ek-cta { text-align: center; margin-top: 48px; }
.ek-cta .f1-btn { display: inline-flex; }

@media (max-width: 1100px) { .ek-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px)  { .ek-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .ek-grid { grid-template-columns: repeat(2, 1fr); } }

