﻿/* Nilsa v2 – Modern Editorial Homepage */

:root {
  --font: 'Manrope', system-ui, sans-serif;
  /* Kurumsal tutarlılık: başlıklar Manrope; Syne yalnızca hero ve büyük sayılarda (--syne) */
  --display: 'Manrope', system-ui, sans-serif;
  --syne: 'Syne', system-ui, sans-serif;
  --red: #E32626;
  --red-glow: rgba(227, 38, 38, .35);
  --ink: #0c0c0c;
  --ink-2: #1a1a1a;
  --text: #1c1c1c;
  --muted: #6e6e73;
  --line: rgba(0,0,0,.08);
  --surface: #ffffff;
  --cream: #f6f5f2;
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --bp-sm: 640px;
  --bp-md: 768px;
  --bp-lg: 992px;
  --bp-xl: 1100px;
}

.home-page {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.sub-page {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.home-page .topbar { display: none; }

/* ── Announce bar ── */
.announce {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  font-size: .75rem;
  font-weight: 600;
  z-index: 110;
  position: relative;
}
.announce-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: .55rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  text-align: center;
}
.announce-pulse {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--red-glow); }
  50% { opacity: .7; box-shadow: 0 0 0 6px transparent; }
}
.announce a { color: #fff; font-weight: 700; }
.announce a:hover { color: var(--red); }
.announce-contact {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.announce-sep {
  color: rgba(255,255,255,.35);
  font-weight: 400;
  user-select: none;
}
.announce-ekatalog {
  color: #ffb4b4 !important;
  margin-left: .25rem;
}
.announce-ekatalog:hover { color: #fff !important; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s;
}
.site-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-header .logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}
.site-header .logo img { height: 34px; width: auto; display: block; }

.site-header:not(.scrolled) {
  background: linear-gradient(180deg, rgba(8,8,8,.82) 0%, rgba(8,8,8,.55) 72%, rgba(8,8,8,0) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-top: -52px;
  padding-top: calc(.75rem + 52px);
}
.site-header:not(.scrolled) .logo img {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.45));
}
.site-header:not(.scrolled) .site-nav > a,
.site-header:not(.scrolled) .site-nav .nav-item > a,
.site-header:not(.scrolled) .icon-btn {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.35);
}
.site-header:not(.scrolled) .site-nav > a,
.site-header:not(.scrolled) .site-nav .nav-item > a {
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .01em;
}
.site-header:not(.scrolled) .site-nav > a:hover,
.site-header:not(.scrolled) .site-nav .nav-item > a:hover {
  color: #fff;
  background: rgba(255,255,255,.12);
}
.site-header:not(.scrolled) .site-nav > a.active,
.site-header:not(.scrolled) .site-nav .nav-item > a.active {
  color: #fff;
  background: rgba(227,38,38,.35);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15);
}
.site-header:not(.scrolled) .search-pill {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.site-header:not(.scrolled) .search-pill input { color: #fff; }
.site-header:not(.scrolled) .search-pill input::placeholder { color: rgba(255,255,255,.65); }
.site-header:not(.scrolled) .search-pill svg { color: rgba(255,255,255,.85); }
.site-header:not(.scrolled) .icon-btn {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
}

.site-header.scrolled {
  margin-top: 0;
  padding-top: .75rem;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 8px 32px rgba(0,0,0,.06);
}

.site-nav { display: none; gap: .25rem; flex: 1; }
.site-nav > a, .site-nav .nav-item > a {
  padding: .5rem .75rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.site-nav > a:hover, .site-nav .nav-item > a:hover { color: var(--red); }
.site-header.scrolled .site-nav > a:hover { background: rgba(227,38,38,.06); }

.nav-item { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: var(--red);
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 48px rgba(227,38,38,.35);
  padding: .5rem 0 .75rem;
  z-index: 50;
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-item.is-open .nav-dropdown,
.nav-item:focus-within .nav-dropdown { display: block; }
.nav-dropdown-title {
  display: block;
  padding: .65rem 1.25rem .5rem;
  font-size: .6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.15);
  margin-bottom: .35rem;
}
.nav-dropdown a {
  display: block;
  padding: .6rem 1.25rem;
  font-size: .8125rem;
  font-weight: 600;
  color: #fff;
  border-radius: 0;
}
.nav-dropdown a:hover {
  background: rgba(0,0,0,.12);
  color: #fff;
}
.nav-dropdown-ekatalog {
  margin-top: .35rem;
  border-top: 1px solid rgba(255,255,255,.15);
  font-weight: 700 !important;
  color: #ffb4b4 !important;
}
.nav-dropdown-ekatalog:hover {
  background: rgba(227,38,38,.25) !important;
  color: #fff !important;
}

.header-actions { display: flex; align-items: center; gap: .5rem; margin-left: auto; }
.search-pill {
  display: none;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--surface);
  min-width: 180px;
  transition: border-color .2s;
}
.search-pill:focus-within { border-color: var(--red); }
.search-pill input {
  border: none; outline: none;
  font-size: .8125rem; font-family: inherit;
  width: 100%; background: transparent;
}
.btn-pill {
  display: none;
  padding: .55rem 1.25rem;
  background: var(--red);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: .02em;
  transition: transform .2s, box-shadow .2s;
}
.btn-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--red-glow);
}
.btn-pill-ghost {
  display: none;
  padding: .55rem 1.1rem;
  background: transparent;
  color: var(--text);
  font-size: .75rem;
  font-weight: 700;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  letter-spacing: .02em;
  transition: transform .2s, border-color .2s, color .2s, background .2s;
}
.btn-pill-ghost:hover {
  transform: translateY(-1px);
  border-color: var(--red);
  color: var(--red);
  box-shadow: none;
}
.site-header:not(.scrolled) .btn-pill-ghost {
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.28);
}
.site-header:not(.scrolled) .btn-pill-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.08);
}
.site-nav .nav-ekatalog {
  color: var(--red);
}
.site-header:not(.scrolled) .site-nav .nav-ekatalog {
  color: #ffb4b4;
}
.site-header:not(.scrolled) .site-nav .nav-ekatalog:hover {
  color: #fff;
}

@media (min-width: 992px) {
  .site-nav { display: flex; align-items: center; }
  .search-pill { display: flex; }
  .btn-pill { display: inline-flex; }
  .btn-pill-ghost { display: inline-flex; }
  .menu-toggle { display: none; }
}

.mobile-nav-label {
  display: block;
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin: 1rem 0 .25rem;
}
.mobile-nav-admin { color: var(--red) !important; font-weight: 700 !important; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.75rem;
  background: var(--red);
  color: #fff;
  font-size: .8125rem;
  font-weight: 700;
  border-radius: 100px;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--red-glow);
}
.btn-primary.small { padding: .65rem 1.25rem; font-size: .75rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .9rem 1.5rem;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--text);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  background: transparent;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--text); }
.btn-ghost.light { color: #fff; border-color: rgba(255,255,255,.25); }
.btn-ghost.light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ── Hero v2 ── */
.hero-v2 {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  margin-top: -76px;
  padding-top: 76px;
}
/* 1080p ve benzeri — slider + marka şeridi tek ekranda */
@media (min-width: 1024px) and (max-height: 1100px) {
  .home-page .hero-v2 {
    min-height: calc(100vh - 4.25rem);
    max-height: calc(100vh - 4.25rem);
  }
  .home-page .hero-cards-bar {
    padding-top: 1rem;
    padding-bottom: .35rem;
    margin-bottom: .75rem;
  }
  .home-page .hero-thumbs {
    padding-bottom: .75rem;
  }
  .home-page .hero-card {
    padding: .65rem .9rem;
    gap: .75rem;
  }
  .home-page .hero-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .home-page .hero-card-text strong {
    font-size: .8125rem;
  }
  .home-page .hero-card-text span {
    font-size: .6875rem;
  }
  .home-page .brand-tape {
    padding: .5rem 0 .6rem;
  }
  .home-page .brand-tape-track {
    gap: .65rem;
    padding: .1rem 0;
  }
  .home-page .brand-tape-item {
    min-width: 72px;
    height: 38px;
    padding: .3rem .65rem;
    border-radius: 6px;
  }
  .home-page .brand-tape-item img {
    height: 22px;
    max-width: 76px;
  }
}
@media (max-width: 767px) {
  .hero-v2 { min-height: 62vh; }
  .hero-cards-bar {
    padding-top: 1.25rem;
    padding-bottom: .65rem;
    margin-bottom: .55rem;
  }
  .hero-cards { gap: .4rem; }
  .hero-card {
    padding: .5rem .55rem;
    gap: .45rem;
    border-radius: 10px;
  }
  .hero-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  .hero-card-icon svg {
    width: 15px;
    height: 15px;
  }
  .hero-card-text strong {
    font-size: .6875rem;
    font-weight: 800;
    margin-bottom: .05rem;
    line-height: 1.25;
  }
  .hero-card-text span {
    font-size: .5625rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-card-arrow { display: none; }
  .hero-thumbs { padding-bottom: 1rem; }
}

.hero-cards-bar {
  position: relative;
  z-index: 4;
  padding-top: 2rem;
  padding-bottom: 1rem;
  margin-top: auto;
  margin-bottom: .65rem;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
}
@media (min-width: 640px) {
  .hero-cards { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
}
@media (min-width: 1100px) {
  .hero-cards { grid-template-columns: repeat(4, 1fr); }
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg .hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  transform: scale(1.05);
}
.hero-bg .hero-slide.active {
  opacity: 1;
  animation: kenburns 8s ease forwards;
}
.hero-bg .hero-slide.pos-top { background-position: center top; }
@keyframes kenburns {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

.hero-mesh {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.48) 0%, rgba(8,8,8,.12) 38%, rgba(8,8,8,.05) 55%, rgba(8,8,8,.5) 100%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 2;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Slider_1 — sahada maksimum koruma (öne çıkan) */
.hero-koruma-badge {
  position: absolute;
  left: clamp(1.5rem, 8vw, 5rem);
  top: 50%;
  z-index: 4;
  max-width: min(46rem, 62vw);
  transform: translateY(calc(-50% + 16px)) scale(.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  text-align: left;
  transition: opacity .55s ease, transform .55s var(--ease), visibility .55s;
}
.hero-koruma-badge.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}
.hero-koruma-badge-inner {
  position: relative;
  padding: clamp(1.35rem, 2.8vw, 2.25rem) clamp(1.5rem, 3.2vw, 2.75rem);
  background: linear-gradient(120deg, rgba(8, 8, 10, .82) 0%, rgba(8, 8, 10, .5) 100%);
  border: 1px solid rgba(255, 255, 255, .14);
  border-left: 6px solid var(--red);
  border-radius: 0 16px 16px 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, .42),
    0 0 0 1px rgba(227, 38, 38, .12),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}
.hero-koruma-badge-line {
  margin: 0;
  line-height: 1.15;
}
.hero-koruma-badge-line--title {
  font-family: var(--syne, 'Syne', var(--font));
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .5);
  animation: koruma-line-in-left .8s var(--ease) both;
}
.hero-koruma-badge-line--lead {
  margin-top: .9rem;
  font-family: var(--font, 'Manrope', system-ui, sans-serif);
  font-size: clamp(1.05rem, 2.1vw, 1.4rem);
  font-weight: 600;
  color: rgba(255, 255, 255, .95);
  text-shadow: 0 1px 12px rgba(0, 0, 0, .5);
  animation: koruma-line-in-left .8s var(--ease) .18s both;
}
.hero-koruma-badge-line--tag {
  display: inline-block;
  margin-top: .8rem;
  padding: .42rem .95rem .48rem;
  font-family: var(--font, 'Manrope', system-ui, sans-serif);
  font-size: clamp(0.95rem, 1.9vw, 1.25rem);
  font-weight: 800;
  letter-spacing: .04em;
  color: #1a1a1a;
  background: linear-gradient(180deg, #FFE066 0%, #FFD24A 45%, #F5B800 100%);
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .35), 0 0 24px rgba(255, 210, 74, .3);
  animation: koruma-line-in-left .8s var(--ease) .36s both;
}
@keyframes koruma-line-in-left {
  from { opacity: 0; transform: translateX(-4rem); }
  to { opacity: 1; transform: translateX(0); }
}

/* Slider_2 — sektör lideri ekipmanlar (öne çıkan) */
.hero-sektor-badge {
  position: absolute;
  right: clamp(2.5rem, 30vw, 22rem);
  left: auto;
  top: 50%;
  z-index: 4;
  max-width: min(42rem, 56vw);
  transform: translateY(calc(-50% + 16px)) scale(.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  text-align: right;
  transition: opacity .55s ease, transform .55s var(--ease), visibility .55s;
}
.hero-sektor-badge.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}
.hero-sektor-badge-inner {
  position: relative;
  padding: clamp(1.35rem, 2.8vw, 2.25rem) clamp(1.5rem, 3.2vw, 2.75rem);
  background: linear-gradient(240deg, rgba(8, 8, 10, .82) 0%, rgba(8, 8, 10, .5) 100%);
  border: 1px solid rgba(255, 255, 255, .14);
  border-right: 6px solid var(--red);
  border-radius: 16px 0 0 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, .42),
    0 0 0 1px rgba(227, 38, 38, .12),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}
.hero-sektor-badge-line {
  margin: 0;
  line-height: 1.15;
}
.hero-sektor-badge-line--title {
  font-family: var(--syne, 'Syne', var(--font));
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .5);
  animation: sektor-line-in-right .8s var(--ease) both;
}
.hero-sektor-badge-line--lead {
  display: inline-block;
  margin-top: .8rem;
  padding: .42rem .95rem .48rem;
  font-family: var(--font, 'Manrope', system-ui, sans-serif);
  font-size: clamp(0.95rem, 1.9vw, 1.25rem);
  font-weight: 800;
  letter-spacing: .04em;
  color: #1a1a1a;
  background: linear-gradient(180deg, #FFE066 0%, #FFD24A 45%, #F5B800 100%);
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .35), 0 0 24px rgba(255, 210, 74, .3);
  animation: sektor-line-in-right .8s var(--ease) .2s both;
}
@keyframes sektor-line-in-right {
  from { opacity: 0; transform: translateX(4rem); }
  to { opacity: 1; transform: translateX(0); }
}

/* Slider_3 — BURSA yetkili bayi (öne çıkan) */
.hero-buras-badge {
  position: absolute;
  left: clamp(1.5rem, 8vw, 5rem);
  top: 50%;
  z-index: 4;
  max-width: min(46rem, 62vw);
  transform: translateY(calc(-50% + 16px)) scale(.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  text-align: left;
  transition: opacity .55s ease, transform .55s var(--ease), visibility .55s;
}
.hero-buras-badge.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}
.hero-buras-badge-inner {
  position: relative;
  padding: clamp(1.35rem, 2.8vw, 2.25rem) clamp(1.5rem, 3.2vw, 2.75rem);
  background: linear-gradient(120deg, rgba(8, 8, 10, .82) 0%, rgba(8, 8, 10, .52) 100%);
  border: 1px solid rgba(255, 255, 255, .14);
  border-left: 6px solid var(--red);
  border-radius: 0 16px 16px 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, .42),
    0 0 0 1px rgba(227, 38, 38, .12),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}
.hero-buras-badge-line {
  margin: 0;
  line-height: 1.05;
}
.hero-buras-badge-line--main {
  font-family: var(--syne, 'Syne', var(--font));
  font-size: clamp(2.75rem, 7.5vw, 5.25rem);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 3px 24px rgba(0, 0, 0, .55),
    0 0 36px rgba(227, 38, 38, .35);
  animation: bursa-line-in-right .85s var(--ease) both, bursa-main-glow 2.6s ease-in-out 1s infinite;
}
.hero-buras-badge-line--sub {
  margin-top: clamp(0.75rem, 1.6vw, 1.1rem);
  animation: bursa-line-in-right .85s var(--ease) .22s both;
}
.hero-buras-badge-sub-pill {
  display: inline-block;
  padding: .45rem 1rem .5rem;
  font-family: var(--font, 'Manrope', system-ui, sans-serif);
  font-size: clamp(1.05rem, 2.4vw, 1.65rem);
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: linear-gradient(180deg, #FFE066 0%, #FFD24A 45%, #F5B800 100%);
  border-radius: 6px;
  box-shadow:
    0 4px 18px rgba(0, 0, 0, .35),
    0 0 24px rgba(255, 210, 74, .35);
  animation: bursa-sub-pulse 2.2s ease-in-out 1.1s infinite;
}
@keyframes bursa-line-in-right {
  from { opacity: 0; transform: translateX(5rem); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes bursa-main-glow {
  0%, 100% {
    text-shadow: 0 3px 24px rgba(0, 0, 0, .55), 0 0 28px rgba(227, 38, 38, .28);
  }
  50% {
    text-shadow: 0 4px 28px rgba(0, 0, 0, .6), 0 0 52px rgba(227, 38, 38, .5);
  }
}
@keyframes bursa-sub-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 18px rgba(0, 0, 0, .35), 0 0 24px rgba(255, 210, 74, .35);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 6px 22px rgba(0, 0, 0, .4), 0 0 36px rgba(255, 210, 74, .55);
  }
}
@media (max-width: 767px) {
  .hero-koruma-badge,
  .hero-sektor-badge,
  .hero-buras-badge {
    display: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-koruma-badge-line--title,
  .hero-koruma-badge-line--lead,
  .hero-koruma-badge-line--tag,
  .hero-sektor-badge-line--title,
  .hero-sektor-badge-line--lead,
  .hero-buras-badge-line--main,
  .hero-buras-badge-line--sub,
  .hero-buras-badge-sub-pill { animation: none !important; }
}

.hero-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  transition: transform .25s var(--ease), background .25s, border-color .25s, box-shadow .25s;
}
.hero-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.3);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.hero-card-primary {
  background: rgba(227,38,38,.2);
  border-color: rgba(227,38,38,.45);
}
.hero-card-primary:hover {
  background: rgba(227,38,38,.3);
  border-color: var(--red);
  box-shadow: 0 12px 40px var(--red-glow);
}
.hero-card-primary .hero-card-icon {
  background: var(--red);
  color: #fff;
}
.hero-card-wa {
  background: rgba(37, 211, 102, .15);
  border-color: rgba(37, 211, 102, .4);
}
.hero-card-wa:hover {
  background: rgba(37, 211, 102, .25);
  border-color: #25D366;
  box-shadow: 0 12px 40px rgba(37, 211, 102, .25);
}
.hero-card-wa .hero-card-icon {
  background: #25D366;
  color: #fff;
}

.hero-card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,.9);
}
.hero-card-text { flex: 1; min-width: 0; }
.hero-card-text strong {
  display: block;
  font-size: .9375rem;
  font-weight: 800;
  margin-bottom: .15rem;
}
.hero-card-text span {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
}
.hero-card-arrow {
  flex-shrink: 0;
  color: rgba(255,255,255,.35);
  transition: transform .2s, color .2s;
}
.hero-card:hover .hero-card-arrow {
  color: #fff;
  transform: translateX(4px);
}

.hero-card-ekatalog {
  background: rgba(245, 158, 11, .18);
  border-color: rgba(245, 158, 11, .45);
}
.hero-card-ekatalog:hover {
  background: rgba(245, 158, 11, .28);
  border-color: #F59E0B;
  box-shadow: 0 12px 40px rgba(245, 158, 11, .28);
}
.hero-card-ekatalog .hero-card-icon {
  background: #F59E0B;
  color: #fff;
}

.hero-card-tour {
  background: rgba(99, 102, 241, .18);
  border-color: rgba(99, 102, 241, .45);
  cursor: pointer;
}
.hero-card-tour:hover {
  background: rgba(99, 102, 241, .28);
  border-color: #6366F1;
  box-shadow: 0 12px 40px rgba(99, 102, 241, .28);
}
.hero-card-tour .hero-card-icon {
  background: #6366F1;
  color: #fff;
}

/* Thumbnail nav */
.hero-thumbs {
  position: relative; z-index: 4;
  display: flex;
  gap: .5rem;
  justify-content: center;
  padding: 0 1.25rem 1.75rem;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero-thumb {
  flex: 1;
  max-width: 140px;
  height: 12px;
  padding: 6px 0;
  border-radius: 4px;
  background: rgba(255,255,255,.2);
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: background .2s;
}
.hero-thumb span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--red);
  border-radius: 4px;
  transition: width .1s linear;
}
.hero-thumb.active { background: rgba(255,255,255,.3); }
.hero-thumb.active span { width: 100%; transition: width 5s linear; }

/* ── Brand tape ── */
.brand-tape {
  position: relative;
  background: var(--ink);
  padding: 2rem 0 2.25rem;
  overflow: hidden;
}
.brand-tape::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(227,38,38,.4) 45%, transparent 100%);
  z-index: 1;
}
.brand-tape::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 36px,
    rgba(255,255,255,.018) 36px,
    rgba(255,255,255,.018) 37px
  );
  pointer-events: none;
}

.brand-tape-inner { position: relative; z-index: 2; }

.brand-tape-scroll {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brand-tape-scroll:hover .brand-tape-track { animation-play-state: paused; }

.brand-tape-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: tape 50s linear infinite;
  width: max-content;
  padding: .35rem 0;
}
.brand-tape-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 52px;
  padding: .5rem 1rem;
  background: #e8e8ec;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.22);
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
/* Parlak beyazı kır — hafif gri film */
.brand-tape-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 20, 26, .14);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}
.brand-tape-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 8px 20px rgba(0,0,0,.28);
}
.brand-tape-item:hover::after {
  background: rgba(18, 20, 26, .08);
}
.brand-tape-item img {
  position: relative;
  z-index: 2;
  display: block;
  height: 28px;
  width: auto;
  max-width: 96px;
  object-fit: contain;
  opacity: 0;
  filter: saturate(.92) contrast(.96);
  transition: opacity .25s var(--ease), filter .25s var(--ease);
}
.brand-tape-item:hover img {
  filter: saturate(1) contrast(1);
}
.brand-tape-item img.is-loaded {
  opacity: 1;
}
@media (max-width: 767px) {
  .brand-tape-item {
    min-width: 76px;
    height: 44px;
    padding: .4rem .75rem;
  }
  .brand-tape-item img {
    height: 22px;
    max-width: 72px;
  }
  .brand-tape-track { gap: .75rem; }
}

@keyframes tape {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-tape-fade {
  display: none;
}

/* ── Sections ── */
.section { padding: 5rem 0; }
.section.cat-section { padding: 3rem 0; }
@media (min-width: 768px) {
  .section.cat-section { padding: 3.5rem 0; }
}

.section-intro {
  margin-bottom: 2.5rem;
}
.section-intro.row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.section-intro.center { text-align: center; }
.section-intro p {
  font-size: .9375rem;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.65;
  margin-top: .5rem;
}
.section-intro.center p { margin: .5rem auto 0; }
.section-intro.row p { margin-top: 0; text-align: right; }

.label {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--red);
  margin-bottom: .6rem;
}
.label.light { color: rgba(255,255,255,.55); }

.section-intro h2,
.cta-v2-content h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--ink);
}

.link-arrow {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.link-arrow::after { content: '→'; transition: transform .2s; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ── Kategoriler — kompakt grid + kapak alternatifi ── */
.cat-section {
  position: relative;
  background: var(--cream);
  color: var(--text);
  overflow: hidden;
}

.cat-bg-deco {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      -42deg,
      transparent 0px, transparent 28px,
      rgba(227,38,38,.025) 28px, rgba(227,38,38,.025) 30px,
      transparent 30px, transparent 58px,
      rgba(0,0,0,.018) 58px, rgba(0,0,0,.018) 60px
    ),
    radial-gradient(ellipse at 95% 10%, rgba(227,38,38,.07) 0%, transparent 45%),
    radial-gradient(ellipse at 5% 90%, rgba(0,0,0,.03) 0%, transparent 40%);
}
.cat-bg-deco::after {
  content: 'KKE';
  position: absolute;
  right: 3%;
  top: 8%;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: rgba(227,38,38,.05);
  line-height: 1;
  user-select: none;
}

.cat-section .container { position: relative; z-index: 1; }

.cat-section .label { color: var(--red); }
.cat-section h2 {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.cat-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  align-items: end;
}
@media (min-width: 768px) {
  .cat-header { grid-template-columns: 1.2fr 1fr; gap: 1.5rem; }
}

.cat-header-text p {
  font-size: .8125rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: .5rem;
  max-width: 420px;
}

.cat-header-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
}
@media (min-width: 768px) {
  .cat-header-meta { justify-content: flex-end; }
}

.cat-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  min-width: 88px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.cat-badge.accent {
  background: #fff;
  border-color: rgba(227,38,38,.25);
  box-shadow: 0 4px 16px rgba(227,38,38,.08);
}
.cat-badge strong {
  font-family: var(--font);
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
}
.cat-badge.accent strong { color: var(--red); }
.cat-badge span {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  margin-top: .35rem;
  line-height: 1.2;
}

.cat-all-link {
  font-size: .75rem;
  font-weight: 700;
  color: var(--ink);
  padding: .55rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
  white-space: nowrap;
}

.cat-all-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-1px);
}

/* Kategori mask — tam görsel + alt overlay (referans tasarım) */
.cat-bento-wrap { position: relative; }

.cat-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}
@media (min-width: 640px) {
  .cat-bento { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (min-width: 900px) {
  .cat-bento { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .cat-bento { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
}

@media (max-width: 639px) {
  .cat-bento-wrap {
    margin: 0 -1.25rem;
    padding: 0 1.25rem;
    overflow: hidden;
  }
  .cat-bento {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: .875rem;
    padding-bottom: .5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .cat-bento::-webkit-scrollbar { display: none; }
  .cat-card-mask {
    flex: 0 0 72vw;
    max-width: 260px;
    scroll-snap-align: center;
  }
}

.cat-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin-top: 1.25rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
}
@media (min-width: 768px) { .cat-scroll-hint { display: none; } }

.cat-card-mask {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.cat-card-mask:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 36px rgba(0,0,0,.2);
}
.cat-card-mask-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s var(--ease);
}
.cat-card-mask:hover .cat-card-mask-bg { transform: scale(1.06); }

.cat-card-mask-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1rem 1.1rem;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.55) 70%, rgba(0,0,0,.82) 100%);
  color: #fff;
}
.cat-card-mask-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: .5625rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red, #E32626);
  padding: .28rem .5rem;
  border-radius: 4px;
  margin-bottom: .55rem;
  line-height: 1.2;
}
.cat-card-mask-head {
  display: block;
  font-family: var(--display);
  font-size: clamp(.875rem, 2.2vw, 1.0625rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}
.cat-card-mask-sub {
  font-size: .6875rem;
  font-weight: 500;
  line-height: 1.35;
  opacity: .92;
}

.cat-card-mask.reveal { opacity: 1; transform: none; }
html.has-reveal-js .cat-card-mask.reveal:not(.visible) {
  opacity: 0;
  transform: translateY(20px) scale(.97);
  transition: none;
}
.cat-card-mask.reveal.visible {
  animation: catIn .6s var(--ease) both;
  animation-delay: var(--delay, 0s);
}
@keyframes catIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Trust strip ── */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

.trust-item {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.trust-icon {
  width: 44px; height: 44px;
  border: 2px solid var(--red);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: .625rem;
  font-weight: 800;
  color: var(--red);
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--ink);
}
.trust-item span {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── Products scroll ── */
.products-section { background: var(--cream); overflow: hidden; }

.scroll-controls {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.scroll-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  color: var(--text);
  transition: border-color .2s, background .2s, color .2s;
}
.scroll-btn:hover {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.product-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: .5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.product-scroll::-webkit-scrollbar { display: none; }

.product-scroll .product-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s;
}
@media (min-width: 640px) { .product-scroll .product-card { flex: 0 0 260px; } }
.product-scroll .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}
.product-scroll .card-image {
  aspect-ratio: 1;
  background: #fff;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.product-scroll .card-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform .4s;
}
.product-scroll .product-card:hover .card-image img { transform: scale(1.05); }
.product-scroll .card-title {
  padding: 1rem;
  font-size: .8125rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
}

/* ── Sectors ── */
.sectors-section { background: var(--surface); }

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

.sector-card-v2 {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.sector-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
}
.sector-card-v2-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s var(--ease);
}
.sector-card-v2:hover .sector-card-v2-bg { transform: scale(1.06); }

.sector-card-v2-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1rem 1.1rem;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.55) 70%, rgba(0,0,0,.82) 100%);
  color: #fff;
}
.sector-card-v2-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: .5625rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red, #E32626);
  padding: .28rem .5rem;
  border-radius: 4px;
  margin-bottom: .55rem;
  line-height: 1.2;
}
.sector-card-v2-head {
  display: block;
  font-family: var(--display);
  font-size: clamp(.8125rem, 2vw, 1rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}
.sector-card-v2-sub {
  font-size: .6875rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255,255,255,.78);
}

.sector-card-v2.reveal { opacity: 1; transform: none; }
html.has-reveal-js .sector-card-v2.reveal:not(.visible) {
  opacity: 0;
  transform: translateY(20px) scale(.97);
  transition: none;
}
.sector-card-v2.reveal.visible {
  animation: catIn .6s var(--ease) both;
  animation-delay: var(--delay, 0s);
}

/* ── Neden Nilsa — kompakt güven bandı ── */
.why-band {
  background: var(--ink);
  padding: 2.25rem 0;
  position: relative;
  overflow: hidden;
}
.why-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(227,38,38,.4) 45%, transparent 100%);
}
.why-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.why-band-text .label { margin-bottom: .35rem; color: var(--red); }
.why-band-text strong {
  display: block;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
  max-width: 300px;
  line-height: 1.3;
}
.why-band-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.5rem 2.75rem;
}
.why-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .4rem;
  min-width: 5.5rem;
}
.why-stat strong {
  font-family: var(--font);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.why-stat span {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.35;
  color: rgba(255,255,255,.55);
  max-width: 7rem;
}
.why-band-link {
  font-size: .8125rem;
  font-weight: 700;
  color: #fff;
  padding: .6rem 1.2rem;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 100px;
  transition: border-color .2s, background .2s;
  white-space: nowrap;
}
.why-band-link:hover {
  border-color: var(--red);
  background: rgba(227,38,38,.15);
}
@media (max-width: 767px) {
  .why-band-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .why-band-stats { gap: 1.25rem 2rem; }
  .why-stat strong { font-size: 1.5rem; }
  .why-stat span { font-size: .6875rem; max-width: none; }
}

/* ── Blog (ana sayfa — kompakt) ── */
.blog-v2 {
  background: var(--surface);
  padding: 2.75rem 0;
}
.blog-v2 .section-intro { margin-bottom: 1.5rem; }

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

.blog-compact-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.blog-compact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
  border-color: rgba(227,38,38,.2);
}
@media (min-width: 768px) {
  .blog-compact-card {
    flex-direction: column;
  }
}

.blog-compact-thumb {
  flex: 0 0 88px;
  width: 88px;
  min-height: 88px;
  background: #fff;
  overflow: hidden;
}
@media (min-width: 768px) {
  .blog-compact-thumb {
    flex: none;
    width: 100%;
    height: 110px;
    min-height: 110px;
  }
}
.blog-compact-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s var(--ease);
}
.blog-compact-card:hover .blog-compact-thumb img { transform: scale(1.04); }

.blog-compact-body {
  flex: 1;
  min-width: 0;
  padding: .75rem .875rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
@media (min-width: 768px) {
  .blog-compact-body { padding: .875rem 1rem 1rem; }
}
.blog-compact-body time {
  font-size: .625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--red);
}
.blog-compact-body h3 {
  font-family: var(--display);
  font-size: .8125rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .blog-compact-body h3 { font-size: .875rem; }
}
.blog-compact-body p {
  font-size: .75rem;
  line-height: 1.45;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: .15rem;
}
@media (max-width: 767px) {
  .blog-compact-body p { display: none; }
}

/* ── CTA v2 ── */
.cta-v2 {
  padding: 5rem 0;
  background: var(--cream);
}
.cta-v2-card {
  background: var(--ink);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.cta-v2-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(227,38,38,.35) 50%, transparent 100%);
}
.cta-v2-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem 2rem;
  color: #fff;
}
@media (min-width: 800px) {
  .cta-v2-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 3.5rem;
  }
}
.cta-v2-main {
  flex: 1;
  min-width: 0;
}
.cta-v2-main h2 {
  color: #fff;
  margin-bottom: .75rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.cta-v2-main p {
  color: rgba(255,255,255,.55);
  font-size: .9375rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 520px;
}
.cta-v2-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.cta-v2-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .65rem;
  flex-shrink: 0;
}
@media (min-width: 800px) {
  .cta-v2-contact {
    align-items: flex-end;
    text-align: right;
    padding-left: 2.5rem;
    border-left: 1px solid rgba(255,255,255,.12);
  }
}
.cta-v2-phone {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
  transition: color .2s;
}
.cta-v2-phone:hover { color: var(--red); }
.cta-v2-hours {
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  margin-bottom: .5rem;
}
@media (max-width: 799px) {
  .cta-v2-contact {
    width: 100%;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.1);
  }
}

/* ── Footer v2 ── */
.footer-v2 {
  background: var(--ink);
  color: rgba(255,255,255,.6);
}
.footer-v2 .footer-logo {
  height: 34px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-v2 .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  margin-top: 2.5rem;
  font-size: .75rem;
}
.footer-credit {
  font-size: .6875rem;
  color: rgba(255,255,255,.42);
  letter-spacing: .03em;
}
.footer-heart {
  color: var(--red);
  display: inline-block;
  margin: 0 .2em;
}

/* ── Katalogdan seçmeler — eşit hizalı kart grid ── */
.home-picks {
  background: var(--bg-soft, #f7f7f7);
}
.home-picks-title {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin: .35rem 0 0;
}
.home-picks-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .home-picks-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .home-picks-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
}

.home-pick-card {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.home-pick-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.1);
  border-color: rgba(227,38,38,.18);
}

.home-pick-img {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
}
.home-pick-img img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.home-pick-cert {
  position: absolute;
  top: .5rem;
  right: .5rem;
  z-index: 2;
  background: var(--ink);
  color: #fff;
  font-size: .5625rem;
  font-weight: 800;
  padding: .22rem .45rem;
  border-radius: 5px;
  letter-spacing: .03em;
  line-height: 1;
}

.home-pick-body {
  display: grid;
  grid-template-rows: 1.125rem 2.7em 1.375rem;
  align-content: start;
  gap: .35rem;
  padding: .8rem .85rem .85rem;
  min-height: 7.25rem;
}
.home-pick-cat {
  font-size: .5625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--red, #E32626);
  line-height: 1.125rem;
  height: 1.125rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-pick-body h3 {
  font-size: .75rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  height: 2.7em;
  min-height: 2.7em;
  max-height: 2.7em;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-pick-brand {
  font-size: .6875rem;
  font-weight: 600;
  color: var(--muted, #666);
  line-height: 1.125rem;
  height: 1.125rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-pick-brand-logo {
  display: flex;
  align-items: center;
  height: 1.375rem;
  overflow: hidden;
}
.home-pick-brand-logo img {
  display: block;
  max-height: 1.25rem;
  max-width: 5.5rem;
  width: auto;
  object-fit: contain;
  object-position: left center;
  opacity: .92;
}
@media (max-width: 700px) {
  .home-pick-img { padding: .75rem; }
  .home-pick-body {
    padding: .7rem .75rem .75rem;
    min-height: 6.75rem;
    grid-template-rows: 1rem 2.5em 1rem;
    gap: .3rem;
  }
  .home-pick-cat { font-size: .5rem; height: 1rem; line-height: 1rem; }
  .home-pick-body h3 { font-size: .6875rem; height: 2.5em; min-height: 2.5em; max-height: 2.5em; }
  .home-pick-brand { font-size: .625rem; height: 1rem; line-height: 1rem; }
}

/* ── Reveal ── */
.reveal {
  opacity: 1;
  transform: none;
}
html.has-reveal-js .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
