﻿/* =============================================================================
   ALTERNATİF BARTER — ANA STİL DOSYASI
   updated: 2026-05-07
   
   İÇİNDEKİLER
   ─────────────────────────────────────────────────────────────────────────────
   1.  TOKENS & ROOT VARIABLES
   2.  RESET & BASE
   3.  TYPOGRAPHY
   4.  LAYOUT & CONTAINER
   5.  BUTTONS
   6.  PRELOADER
   7.  HEADER & TOP BAR
   8.  NAV & SUBMENU (tek yerde,
temiz)
   9.  HERO (eski marquee kaldırıldı; yeni home-hero eklenecek)
   10. SECTIONS & CARDS (genel)
   11. STATS STRIP
   12. SEKTÖRLER (sectors-v2,
industry tiles)
   13. BLOG & HABERLER
   14. FORMS
   15. FOOTER
   16. SAYFA ÖZEL STİLLER
       16a. Page Hero (Hakkımızda / Barter Nedir / İletişim)
       16b. Barter Nedir
       16c. İletişim
       16d. Referanslar
       16e. Üyelik
       16f. Nasıl Çalışır (process timeline)
   17. İLAN PANELİ (lp-* bileşenleri)
   18. YARDIMCI & GENEL
   19. RESPONSIVE — MASAÜSTÜ KISITLAMALARI (max-width)
   20. RESPONSIVE — MOBİL ÖNCE (min-width breakpoints)
   ============================================================================= */

/* =============================================================================
   1. TOKENS & ROOT VARIABLES
   ============================================================================= */

:root{
  /* ── Yeni tema paleti (mockup) ── */
  --ab-navy: #050c1c;
  --ab-blue: #0062ff;
  --ab-blue-hover: #316ff6; /* primary buton hover dolgu */
  --ab-blue-deep: #1e40af;
  --ab-green: #10b981;
  --ab-orange: #f59e0b;
  --ab-purple: #8b5cf6;
  --ab-teal: #06b6d4;
  --ab-white: #ffffff;
  --ab-surface: #f3f4f6;
  --ab-text: #111827;
  --ab-muted: #6b7280;
  --ab-border: rgba(17, 24, 39, 0.1);

  /* ── Legacy alias (eski class'lar kırılmasın) ── */
  --navy-950: var(--ab-navy);
  --navy-900: #0a1628;
  --navy-800: #122038;
  --navy-700: #1a2d4a;
  --navy-100: var(--ab-surface);
  --white: var(--ab-white);
  --gold: var(--ab-blue);          /* eski gold → yeni ana mavi */
  --gold-soft: var(--ab-blue-deep);
  --text: var(--ab-text);
  --muted: var(--ab-muted);
  --surface: var(--ab-surface);
  --border: var(--ab-border);

  /* Border radius */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --btn-radius: 8px;

  /* Buton neon hover (tüm .btn varyantları) */
  --btn-neon-border: #3b9eff;
  --btn-neon-shadow:
    0 0 0 1px rgba(59, 158, 255, 0.45),
    0 0 18px rgba(59, 158, 255, 0.55),
    0 0 36px rgba(59, 158, 255, 0.35),
    0 12px 32px rgba(0, 0, 0, 0.2);

  /* Gölgeler */
  --shadow-soft: 0 14px 30px rgba(5, 12, 28, 0.08);
  --shadow-card: 0 20px 40px rgba(5, 12, 28, 0.12);

  /* Layout */
  --container: 1220px;
  --container-fluid: min(100%, 1320px);

  /* Geçişler */
  --transition-fast: 0.22s ease;
  --transition-md: 0.3s ease;

  /* Header yükseklikleri */
  --header-main-height: 80px;

  /* Spacing tokens */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
}

/* =============================================================================
     2. RESET & BASE
     ============================================================================= */

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html{
  scroll-behavior: smooth;
  font-size: 16px;
}
body{
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "SF Pro Text",
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background: #f7f7f7;
  line-height: 1.62;
  overflow-x: hidden;
}

img{
  max-width: 100%;
  display: block;
}
img,
video,
iframe{
  max-width: 100%;
  height: auto;
}
iframe{
  display: block;
  border: 0;
}
a{
  color: inherit;
  text-decoration: none;
}

/* =============================================================================
     3. TYPOGRAPHY
     ============================================================================= */

h1,
h2,
h3,
h4{
  font-family: "Outfit", "Inter", sans-serif;
  color: var(--navy-950);
  font-weight: 650;
  letter-spacing: -0.01em;
}
h1{
  font-size: clamp(1.6rem, 5.8vw, 2.4rem);
  line-height: 1.2;
}
h2{
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  line-height: 1.18;
}
h3{
  font-size: clamp(1.14rem, 2vw, 1.46rem);
  line-height: 1.28;
}
p,
li,
input,
textarea,
button,
label{
  font-size: 1.01rem;
}

/* =============================================================================
     4. LAYOUT & CONTAINER
     ============================================================================= */

.container{
  width: 92%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 0;
}

.section:not(.sectors-v2){
  padding: 88px 0;
  margin-bottom: 0;
}
.section:not(.hero):not(.stats-strip):not(.sectors-v2){
  margin-bottom: 20px;
}
.page-main{
  min-height: 70vh;
}
.text-center{
  text-align: center;
}
.grid{
  display: grid;
  gap: 24px;
}

.section-head{
  max-width: 820px;
  margin: 0 auto 28px;
}
.section-head p{
  margin-top: 12px;
}
.section-kicker{
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* İç sayfa metin akışı */
.page-main h2 + p,
.page-main h3 + p,
.page-main p + p,
.page-main p + ul,
.page-main ul + p,
.page-main h2 + ul,
.page-main h3 + ul{
  margin-top: 12px;
}
.page-main ul{
  margin: 12px 0 0 18px;
}

/* Sayfa giriş animasyonu */
.page-enter{
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}
.page-enter.ready{
  opacity: 1;
  transform: translateY(0);
}

/* Reveal animasyonu */
[data-reveal]{
  opacity: 1;
  transform: translateY(0);
}
html.reveal-ready [data-reveal]{
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
html.reveal-ready [data-reveal].shown{
  opacity: 1;
  transform: translateY(0);
}

/* Focus stilleri */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible{
  outline: 2px solid rgba(0, 98, 255, 0.6);
  outline-offset: 2px;
}

/* =============================================================================
     5. BUTTONS
     ============================================================================= */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--btn-radius);
  padding: 13px 26px;
  font-weight: 600;
  transition:
    transform 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease,
    box-shadow 0.24s ease,
    filter 0.24s ease;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: var(--btn-neon-border);
  box-shadow: var(--btn-neon-shadow);
}

.btn-primary{
  border: 1.5px solid var(--btn-neon-border);
  background: var(--ab-navy);
  color: var(--ab-white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 8px 24px rgba(5, 12, 28, 0.22);
}
.btn-primary:hover{
  background: var(--ab-blue-hover);
  color: var(--ab-white);
  border-color: var(--ab-blue-hover);
  box-shadow: var(--btn-neon-shadow);
  filter: none;
}

.btn-navy{
  border: 1.5px solid var(--ab-navy);
  background: var(--ab-navy);
  color: var(--ab-white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 8px 24px rgba(5, 12, 28, 0.22);
}
.btn-navy:hover{
  background: var(--ab-blue);
  color: var(--ab-white);
  border-color: var(--btn-neon-border);
  box-shadow: var(--btn-neon-shadow);
}

/* btn-ghost: koyu zeminlerde beyaz outline */
.btn-ghost{
  border-color: rgba(255, 255, 255, 0.75);
  color: rgba(255, 255, 255, 0.96);
  background: transparent;
  box-shadow: 0 4px 14px rgba(5, 12, 28, 0.12);
}
.btn-ghost:hover{
  background: transparent;
  color: #fff;
  border-color: var(--btn-neon-border);
  box-shadow: var(--btn-neon-shadow);
}

.btn-translucent{
  border: 1.5px solid var(--ab-navy);
  background: var(--ab-navy);
  color: var(--ab-white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 8px 24px rgba(5, 12, 28, 0.22);
  font-weight: 700;
}
.btn-translucent:hover{
  background: var(--ab-blue);
  color: var(--ab-white);
  border-color: var(--btn-neon-border);
  box-shadow: var(--btn-neon-shadow);
  filter: none;
}

.btn-outline{
  background: var(--ab-white);
  border: 1.5px solid var(--ab-navy);
  color: var(--ab-navy);
  box-shadow: 0 4px 14px rgba(5, 12, 28, 0.1);
}
.btn-outline:hover{
  background: var(--ab-white);
  border-color: var(--btn-neon-border);
  color: var(--ab-navy);
  box-shadow: var(--btn-neon-shadow);
}

.btn-outline-white{
  /* .btn ile birlikte kullanilir; radius .btn'den gelir */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 40px;
  min-width: 240px;
  border-radius: var(--btn-radius);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.95);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    box-shadow 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline-white:hover{
  background: transparent;
  border-color: var(--btn-neon-border);
  color: #fff;
  box-shadow: var(--btn-neon-shadow);
}

.btn-wide{
  min-width: 320px;
}

/* Üyelik CTA butonu (header) */
.btn-membership{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 20px;
  height: 40px;
  border-radius: var(--btn-radius);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid var(--btn-neon-border);
  cursor: pointer;
  background: var(--ab-navy);
  color: var(--ab-white);
  box-shadow: 0 8px 24px rgba(5, 12, 28, 0.22);
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    background 0.18s,
    color 0.18s,
    border-color 0.18s;
  position: relative;
  overflow: hidden;
}
.btn-membership::before{
  content: none;
  display: none;
}
.btn-membership:hover{
  background: var(--ab-blue);
  color: var(--ab-white);
  border-color: var(--btn-neon-border);
  transform: translateY(-2px);
  box-shadow: var(--btn-neon-shadow);
  filter: none;
}
.btn-membership svg{
  flex-shrink: 0;
}

/* =============================================================================
     6. PRELOADER
     ============================================================================= */

#preloader{
  position: fixed;
  inset: 0;
  background: var(--ab-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 3000;
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.7s ease;
  overflow: hidden;
}
#preloader.hide{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preloader-logo{
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  animation: pl-pop 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
  box-shadow:
    0 0 0 4px rgba(0, 98, 255, 0.35),
    0 12px 48px rgba(0, 0, 0, 0.7);
}
@keyframes pl-pop {
  0%{
    opacity: 0;
    transform: scale(0.3) rotate(-15deg);
  }
  100%{
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.preloader-ring{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  margin: -70px 0 0 -70px;
  border-radius: 50%;
  border: 2px solid rgba(0, 98, 255, 0.75);
  animation: pl-ring 2s ease-out infinite;
  z-index: 1;
}
.preloader-ring-2{
  animation-delay: 1s;
}
@keyframes pl-ring {
  0%{
    transform: scale(0.82);
    opacity: 0.9;
  }
  100%{
    transform: scale(2.4);
    opacity: 0;
  }
}

.preloader-brand{
  color: rgba(0, 98, 255, 0.9);
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  animation: pl-fade-up 0.6s 0.55s ease forwards;
  opacity: 0;
}
@keyframes pl-fade-up {
  from{
    opacity: 0;
    transform: translateY(12px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

.preloader-bar{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--ab-navy) 0%, var(--ab-blue) 50%, var(--ab-navy) 100%);
  background-size: 200% 100%;
  animation: pl-bar 1.4s ease-in-out infinite;
}
@keyframes pl-bar {
  0%{
    background-position: 150% 0;
  }
  100%{
    background-position: -150% 0;
  }
}

/* =============================================================================
     7. HEADER
     ============================================================================= */

/* Header mount — üst %80 navy, alt %20 sayfa gri (#f7f7f7) */
#headerMount{
  min-height: var(--header-main-height);
  background: linear-gradient(
    to bottom,
    var(--ab-navy) 0%,
    var(--ab-navy) 80%,
    #f7f7f7 80%,
    #f7f7f7 100%
  );
}

/* Logo + nav header — scroll'da her zaman üstte (fixed) */
.site-header-wrap{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1400;
  min-height: var(--header-main-height);
}
/* Girişliyken WP admin bar'ın altında dursun */
body.admin-bar .site-header-wrap{
  top: 32px;
}
@media screen and (max-width: 782px){
  body.admin-bar .site-header-wrap{
    top: 46px;
  }
}

/* Sosyal linkler */
.social-link{
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.95);
  transition: all 0.22s ease;
  line-height: 1;
  flex-shrink: 0;
}
.social-link:hover{
  border-color: var(--gold-soft);
  color: var(--gold-soft);
  transform: translateY(-2px);
}

/* Dil seçici — sol globe + sağ TR; hover'da yapışık aşağı açılır */
.lang-dropdown{
  position: relative;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  padding: 4px 4px 4px 8px;
  background: #f2f2f2;
  border-radius: 999px;
  z-index: 1500;
  transition: border-radius 0.18s ease;
}

.lang-globe-wrap{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #555;
  line-height: 0;
}

.lang-globe{
  display: block;
  opacity: 0.8;
}

.lang-dropdown:hover .lang-globe,
.lang-dropdown.is-open .lang-globe{
  opacity: 1;
  color: var(--ab-navy);
}

.lang-current{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ab-navy);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.lang-menu{
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 2px 4px 8px;
  background: #f2f2f2;
  border-radius: 0 0 22px 22px;
  box-shadow: none;
  border: 0;
}

.lang-dropdown:hover,
.lang-dropdown.is-open{
  border-radius: 22px 22px 0 0;
}

.lang-dropdown:hover .lang-menu,
.lang-dropdown.is-open .lang-menu{
  display: flex;
}

/* Seçili dil menüde tekrar görünmesin */
.lang-menu .lang-btn.is-active{
  display: none;
}

.lang-btn{
  appearance: none;
  border: 0;
  background: transparent;
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 50%;
  font-weight: 500;
  font-size: 0.76rem;
  color: #8a8a8a;
  cursor: pointer;
  line-height: 1;
  text-align: center;
  transition:
    color 0.15s ease,
    background 0.15s ease,
    font-weight 0.15s ease;
}

.lang-btn:hover{
  color: var(--ab-navy);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.55);
}

/* Header CTA — navy + mavi sistem */
.header-cta .btn-ghost-bw{
  background: var(--ab-white);
  color: var(--ab-navy);
  border: 1.5px solid var(--btn-neon-border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(5, 12, 28, 0.18);
  min-height: 40px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
}

.header-cta .btn-ghost-bw:hover{
  background: var(--ab-white);
  color: var(--ab-navy);
  border-color: var(--btn-neon-border);
  transform: translateY(-1px);
  box-shadow: var(--btn-neon-shadow);
}

.header-cta .btn-solid-bw{
  background: var(--ab-navy);
  color: var(--ab-white);
  border: 1.5px solid var(--btn-neon-border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(5, 12, 28, 0.26);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  min-height: 40px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 700;
}

.header-cta .btn-solid-bw:hover{
  background: var(--ab-blue-hover);
  color: var(--ab-white);
  border-color: var(--btn-neon-border);
  transform: translateY(-1px);
  box-shadow: var(--btn-neon-shadow);
}

.mobile-nav-cta{
  display: none;
}

/* Ana header — navy cam / saydam */
.site-header{
  background: rgba(5, 12, 28, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px) saturate(1.35);
  -webkit-backdrop-filter: blur(16px) saturate(1.35);
  transition:
    background 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  position: relative;
  z-index: 1000;
}
.site-header.scrolled{
  background: rgba(5, 12, 28, 0.55);
  border-bottom-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 28px rgba(5, 12, 28, 0.28);
}

/* Header legacy reset — float temizleme */
.header-inner > *{
  float: none;
  transform: none;
}
.header-nav ul,
.header-nav li,
.header-nav a,
.main-nav > ul,
.main-nav > ul > li,
.main-nav > ul > li > a{
  float: none !important;
}
header *{
  box-sizing: border-box;
}

/* Header düzeni */
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  height: var(--header-main-height);
  min-height: var(--header-main-height);
  padding: 0 40px;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

.header-left{
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  margin-right: 40px;
}
.header-left img{
  height: 56px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-950);
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}
.brand span{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand img,
.brand-logo{
  /* Yeni HQ mark logo */
  height: 87px;
  width: auto;
  object-fit: contain;
  border-radius: 50%;
  display: block;
  background: transparent !important;
  box-shadow: none;
  flex-shrink: 0;
}

.logo-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  max-width: 220px;
  min-width: 0;
}
.logo-name{
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ab-white);
  line-height: 1;
  white-space: nowrap;
}
.logo-sub{
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
  opacity: 1;
  white-space: nowrap;
}

.header-actions{
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-right{
  flex-shrink: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Header sag CTA: Kayit Ol + Ilanlar */
.header-cta{
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-cta .btn{
  padding: 8px 16px;
  font-size: 0.82rem;
  min-height: 38px;
  min-width: unset;
  white-space: nowrap;
}

.header-cta .btn:hover{
  transform: translateY(-1px);
}

/* Desktop: menüyü tam ortala (logo sol, dil/aksiyon sag) */
@media (min-width: 1201px) {
  .header-inner{
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* sol | orta (nav) | sag */
    align-items: center;
  }

  .header-left{
    margin-right: 0;
    justify-self: start;
  }

  .header-right{
    margin-left: 0;
    justify-self: end;
  }

  .header-nav,
.main-nav{
    flex: none;
    width: auto;
    justify-content: center;
    justify-self: center;
  }

  .header-nav ul,
.main-nav > ul{
    justify-content: center;
  }
}

/* Hamburger / nav toggle — masaüstünde gizli; navy glass header ile uyumlu */
.nav-toggle,
.hamburger{
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(5, 12, 28, 0.22);
}
.hamburger-lines{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}
.hamburger-lines span{
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .hamburger-lines span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger-lines span:nth-child(2){
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger-lines span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================================================
     8. NAV & SUBMENU
     ============================================================================= */

/* Ana nav — flex düzeni */
.header-nav,
.main-nav{
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.header-nav ul,
.main-nav > ul{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.main-nav li,
.header-nav li{
  display: inline-flex;
  align-items: center;
}

/* Nav linkleri — sadece üst menü (submenu'ye bulaşmasın) */
.header-nav > ul > li > a,
.main-nav > ul > li > a{
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  padding: 6px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 40px;
}

.header-nav > ul > li > a:hover,
.main-nav > ul > li > a:hover{
  color: var(--ab-white);
  border-color: rgba(59, 158, 255, 0.55);
  background: rgba(59, 158, 255, 0.14);
}

.main-nav a.active,
.header-nav a.active{
  color: var(--ab-white);
  border-color: rgba(59, 158, 255, 0.4);
  background: rgba(59, 158, 255, 0.12);
}

/* Dropdown ok işareti */
.has-submenu > a::after{
  content: "\25BE";
  font-size: 0.72em;
  margin-left: 2px;
  transition: transform 0.2s ease;
}
.has-submenu:hover > a::after,
.has-submenu.is-open > a::after{
  transform: rotate(180deg);
}

/* has-submenu pozisyon koruması */
.has-submenu{
  position: relative !important;
}

/* ── SUBMENU — desktop kapalı hali ── */
.submenu{
  position: absolute;
  top: 105%;
  left: 50%;
  transform: translateX(-50%) translateY(-120px) scale(0.1);
  padding: 10px;
  padding-top: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.6s ease;
  margin: 0;
  background-color: var(--white);
  border-radius: 8px;
}

/* Boşluk köprüsü: imleç nav linkten dropdown'a geçerken hover kaybını önler */
.submenu::before{
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

/* ── SUBMENU — desktop açık hali (hover + focus-within) ── */
@media (min-width: 1201px) {
  .has-submenu:hover .submenu,
.has-submenu:focus-within .submenu{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

/* JS ile açılan submenu (.is-open class) — tüm ekran boyutları */
.has-submenu.is-open .submenu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Submenu link stilleri — üst menü border/hover'ından bağımsız */
.submenu a{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 8px 12px;
  color: var(--navy-800);
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 18px 0 18px 0;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.submenu a:hover{
  color: var(--ab-navy);
  border-color: rgba(0, 98, 255, 0.55);
  /* TL 32 · TR 0 · BR 32 · BL 0 */
  border-radius: 18px 0 18px 0;
}

/* =============================================================================
     9. HERO
     (eski marquee homepage hero kaldırıldı — yeni home-hero sonra eklenecek)
     ============================================================================= */

/* Home hero (mockup) */
.home-hero{
  position: relative;
  isolation: isolate;
  min-height: clamp(420px, 67vh, 800px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--ab-white);
  background: var(--ab-navy);
}

/* görsel + gölge: section'ı kaplar, metnin altında kalır */
.home-hero-media{
  position:absolute;
  inset: 0;
  z-index:-1;
  pointer-events: none;
}

.home-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  display:block;
}

.home-hero-shade{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(9, 39, 95, 0.92) 0%,
    rgba(5, 12, 28, 0.72) 38%,
    rgba(5, 12, 28, 0.25) 70%,
    rgba(5, 12, 28, 0.1) 100%
  );
}

.home-hero-copy {
  max-width: 560px;
}

.home-hero h1{
  margin:0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing:-0.02em;
  color: var(--ab-white);
}

.home-hero-accent{
  color:var(--ab-blue);
}

/* Metin katmanı: görselin ÜSTÜNDE */
.home-hero-inner{
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(40px, 6vh, 72px);
}

.home-hero-desc{
  margin: 16px 0 0;
  max-width: 42ch;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

/* Sadece yerleşim — buton stilleri global .btn-primary / .btn-ghost */
.home-hero-cta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.home-hero-cta .btn{
  gap: 8px;
}

@media (max-width: 560px){
  .home-hero-cta{
    flex-direction: column;
    align-items: stretch;
  }
  .home-hero-cta .btn{
    width: 100%;
    justify-content: center;
  }
}

/* Sayfa hero başlığı (iç sayfalar) */
.section-hero{
  padding: 62px 0 40px;
  background: linear-gradient(180deg, var(--navy-100), #f8fbff);
}
.heading-wrap{
  max-width: 860px;
}
.heading-wrap p{
  margin-top: 12px;
  color: var(--muted);
}

/* =============================================================================
     10. SECTIONS & CARDS
     ============================================================================= */

/* Genel kart */
.card{
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 24px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

/* How It Works */
.flow-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 8px 0 24px;
}
.how-timeline{
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.how-timeline::before{
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 42px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(59, 158, 255, 0.15),
    var(--btn-neon-border),
    rgba(59, 158, 255, 0.15)
  );
  z-index: 0;
}
.how-step-card{
  position: relative;
  border: 1.5px solid var(--ab-border);
  border-radius: var(--radius-md);
  background: var(--ab-white);
  box-shadow: var(--shadow-soft);
  padding: 22px 20px;
  z-index: 1;
  min-height: 200px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.how-step-card:hover{
  transform: translateY(-6px);
  border-color: var(--btn-neon-border);
  box-shadow: var(--btn-neon-shadow);
}
.how-step-card h3{
  color: var(--ab-text);
  font-size: 1.15rem;
  margin-top: 4px;
}
.how-step-card p{
  margin-top: 10px;
  color: var(--ab-muted);
  line-height: 1.55;
}

.flow-card{
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--white), #fbfdff);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease;
}
.flow-card:hover{
  transform: translateY(-4px);
  border-color: rgba(0, 98, 255, 0.6);
  box-shadow: var(--shadow-card);
}
.flow-index{
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ab-navy);
  color: var(--ab-white);
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 14px;
  border: 1.5px solid var(--btn-neon-border);
  box-shadow: 0 6px 18px rgba(5, 12, 28, 0.18);
}
.flow-card p{
  margin-top: 8px;
  color: var(--muted);
}

/* How It Works — hafif koyu yüzey + net beyaz kartlar */
.how-it-works{
  background: linear-gradient(165deg, #dfe6f0 0%, #cfd9e8 48%, #c5d0e2 100%);
  position: relative;
}
.how-it-works .section-head h2{
  color: var(--ab-navy);
}
.how-it-works .section-head p,
.how-it-works .text-muted{
  color: var(--ab-muted) !important;
}
.how-it-works .how-step-card{
  background: var(--ab-white);
  border-color: rgba(5, 12, 28, 0.1);
}
.how-it-works .how-step-card:hover{
  background: var(--ab-white);
  border-color: var(--btn-neon-border);
  box-shadow: var(--btn-neon-shadow);
}
.how-it-works .how-step-card h3{
  color: var(--ab-navy);
}
.how-it-works .how-step-card p{
  color: var(--ab-muted);
}
.how-it-works .flow-index{
  background: var(--ab-navy);
  color: var(--ab-white);
  border-color: var(--btn-neon-border);
}
/* CTA: global btn-primary (navy + neon) — özel beyaz override yok */
.how-it-works .btn-primary:hover{
  background: var(--ab-blue-hover);
  color: var(--ab-white);
  border-color: var(--btn-neon-border);
  box-shadow: var(--btn-neon-shadow);
}

/* Avantajlar */

.adv-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 36px;
  row-gap: 0;
  max-width: 96%;
  margin-inline: auto;
  align-items: stretch;
}

/* Üst = main, alt = detail; çapraz köprü + renkli yuvarlaklar */
.adv-item{
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 0;
}

.adv-main,
.adv-detail{
  width: 90%;
  box-sizing: border-box;
  padding: 22px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(5, 12, 28, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 132px;
  z-index: 2;
}

/* Üst kart solda, alt kart sağda → çapraz hissi */
.adv-main{
  align-self: flex-start;
  background: #fff;
  color: var(--ab-text);
  border: 1.5px solid var(--ab-teal);
}

.adv-detail{
  align-self: flex-end;
  background: var(--ab-navy);
  color: #fff;
  border: 1.5px solid var(--ab-teal);
}

.adv-detail p{
  color: rgba(255, 255, 255, 0.75);
}

.adv-main h3,
.adv-detail h3{
  color: var(--ab-teal);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.adv-main p,
.adv-detail p{
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Renkli şerit + yuvarlak düğümler */
.adv-bridge{
  position: relative;
  height: 84px;
  margin: -6px 0;
  z-index: 1;
}

.adv-curve{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 4px 10px rgba(59, 158, 255, 0.35));
}

.adv-node{
  position: absolute;
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid transparent;
  background-clip: padding-box;
  box-shadow:
    0 0 0 3px rgba(59, 158, 255, 0.35),
    0 8px 22px rgba(5, 12, 28, 0.16);
  display: grid;
  place-items: center;
  color: var(--ab-navy);
}

.adv-node svg{
  width: 22px;
  height: 22px;
}

.adv-node--from{
  top: 0;
  left: 12%;
  border-color: #22d3ee;
  box-shadow:
    0 0 0 3px rgba(34, 211, 238, 0.35),
    0 8px 22px rgba(5, 12, 28, 0.16);
}

.adv-node--to{
  bottom: 0;
  right: 12%;
  border-color: #a855f7;
  box-shadow:
    0 0 0 3px rgba(168, 85, 247, 0.35),
    0 8px 22px rgba(5, 12, 28, 0.16);
}

.adv-link{
  display: none;
}

@media (max-width: 960px){
  .adv-grid{
    grid-template-columns: 1fr;
    row-gap: 36px;
    max-width: 420px;
  }
}

@media (max-width: 560px){
  .adv-grid{
    max-width: 100%;
  }

  .adv-main,
  .adv-detail{
    width: 100%;
    align-self: stretch;
    padding: 18px;
    min-height: 120px;
  }

  .adv-bridge{
    height: 72px;
  }

  .adv-node{
    width: 44px;
    height: 44px;
  }

  .adv-node svg{
    width: 18px;
    height: 18px;
  }
}

/* Neden AIB — hafif değer şeridi (3 ikon + CTA) */
.why-strip{
  background: var(--ab-white);
}
.why-strip .section-head{
  margin-bottom: 28px;
}
.why-strip .section-head h2{
  color: var(--ab-navy);
}
.why-strip-desc{
  max-width: 42rem;
  margin-inline: auto;
  line-height: 1.6;
}
.why-strip-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 920px;
  margin: 0 auto 32px;
}
.why-strip-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 28px 18px;
  border-radius: 18px;
  border: 1.5px solid rgba(5, 12, 28, 0.1);
  background: var(--ab-white);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}
.why-strip-item:hover{
  transform: translateY(-4px);
  border-color: var(--btn-neon-border);
  box-shadow: var(--btn-neon-shadow);
}
.why-strip-icon{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--ab-navy);
  color: var(--ab-white);
  border: 1.5px solid var(--btn-neon-border);
  margin-bottom: 6px;
}
.why-strip-icon svg{
  width: 22px;
  height: 22px;
}
.why-strip-item strong{
  color: var(--ab-navy);
  font-size: 1.05rem;
  font-weight: 700;
}
.why-strip-item span{
  color: var(--ab-muted);
  font-size: 0.9rem;
  line-height: 1.45;
  max-width: 22ch;
}

@media (max-width: 768px){
  .why-strip-grid{
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

/* .section-avantajlar{
  background: var(--white);
}
.advantage-flip-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 96%;
  margin-inline: auto;
}
.section-avantajlar .advantage-flip-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.advantage-flip{
  perspective: 1400px;
  min-height: 250px;
}
.advantage-flip-inner{
  position: relative;
  min-height: 250px;
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
}
.advantage-flip:hover .advantage-flip-inner{
  transform: rotateY(180deg);
}
.advantage-face{
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.advantage-face p{
  margin-top: 10px;
  color: var(--muted);
}
.advantage-back{
  transform: rotateY(180deg);
  background: linear-gradient(150deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  border-radius: 12px;
}
.advantage-back h3{
  color: white;
}
.advantage-back p{
  color: rgba(255, 255, 255, 0.80);
} */


/* Sektörler sk-cards */
.sector-cards-section{
  background: var(--surface);
}
.sk-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.sk-card{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(7, 22, 51, 0.14);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.sk-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(7, 22, 51, 0.24);
}
.sk-card-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 0;
}
.sk-card:hover .sk-card-bg{
  transform: scale(1.06);
}
.sk-card-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 17, 38, 0.92) 0%,
    rgba(6, 17, 38, 0.55) 55%,
    rgba(6, 17, 38, 0.18) 100%
  );
  z-index: 1;
  transition: background 0.35s ease;
}
.sk-card:hover .sk-card-overlay{
  background: linear-gradient(
    to top,
    rgba(6, 17, 38, 0.96) 0%,
    rgba(6, 17, 38, 0.65) 55%,
    rgba(6, 17, 38, 0.28) 100%
  );
}
.sk-card-body{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px 24px;
}
.sk-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 98, 255, 0.18);
  border: 1px solid rgba(0, 98, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}
.sk-icon svg{
  width: 22px;
  height: 22px;
  color: var(--gold);
}
.sk-card:hover .sk-icon{
  background: rgba(0, 98, 255, 0.32);
  border-color: var(--gold);
}
.sk-card-body h3{
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}
.sk-card-body p{
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sk-cta{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    color 0.2s ease;
}
.sk-cta svg{
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}
.sk-card:hover .sk-cta{
  opacity: 1;
  transform: translateY(0);
}
.sk-card:hover .sk-cta svg{
  transform: translateX(4px);
}

/* Referanslar marquee */
.references-premium{
  background: #ffffff;
}
.logo-marquee{
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.logo-marquee-track{
  display: flex;
  align-items: center;
  width: max-content;
  gap: 48px;
  padding: 24px 32px;
}
.logo-marquee-track img{
  height: 73px;
  width: 160px;
  object-fit: contain;
  opacity: 0.92;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}
.logo-marquee-track img:hover{
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.06);
}
.logo-marquee-lg .logo-marquee-track img{
  height: 78px;
}

.chip{
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--navy-100);
  color: var(--navy-800);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Yardımcı */
.auth-wrap{
  max-width: 560px;
  margin-inline: auto;
}
.help-box{
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  padding: 14px;
}
.notice{
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 10px;
}
.pagination{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.pagination button{
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy-900);
  border-radius: var(--btn-radius);
  padding: 8px 11px;
}
.pagination button.active{
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}

/* FAB grubu */
.abt-fab-group{
  position: fixed;
  left: 18px;
  bottom: 20px;
  z-index: 1300;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}
.abt-fab-group--visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.abt-fab{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(18, 53, 110, 0.22);
  background: linear-gradient(180deg, #ffffff, #edf3ff);
  color: var(--navy-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(7, 22, 51, 0.2);
}
.abt-fab:hover{
  transform: translateY(-2px);
}
.abt-fab svg{
  width: 18px;
  height: 18px;
}

/* Çerez çubuğu */
#abt-cookie-bar{
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1450;
  background: rgba(7, 22, 51, 0.96);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}
body.abt-cookie-open .aib-chat-toggle{
  bottom: 132px !important;
}
body.abt-cookie-open .aib-chat-panel{
  bottom: 210px !important;
}
.abt-cookie-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
}
.abt-cookie-inner p{
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.55;
}
.abt-cookie-inner a{
  color: var(--gold-soft);
  text-decoration: underline;
}
.abt-cookie-btns{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.abt-cookie-btn{
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--btn-radius);
  padding: 9px 14px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  background: transparent;
}
.abt-cookie-btn--accept{
  background: linear-gradient(180deg, #d1ab4b, #b69031);
  border-color: rgba(209, 171, 75, 0.9);
  color: #102247;
}
.abt-cookie-btn--reject{
  background: rgba(255, 255, 255, 0.06);
}
.abt-cookie-btn:hover{
  transform: translateY(-1px);
}
@keyframes abtCookieOut {
  from{
    opacity: 1;
    transform: translateY(0);
  }
  to{
    opacity: 0;
    transform: translateY(10px);
  }
}

/* =============================================================================
     11. STATS STRIP
     ============================================================================= */

.stats-strip{
  background: linear-gradient(90deg, var(--ab-navy), var(--ab-blue-deep), var(--ab-blue));
  color: var(--white);
  padding: 40px 0;
  margin-bottom: 20px;
}
.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
}
.stat-item{
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 8px 16px;
}
.stat-item + .stat-item{
  border-left: 1px solid rgba(255, 255, 255, 0.52);
}
.stat-item strong{
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1;
}
.stat-item span{
  color: rgba(255, 255, 255, 0.95);
}

/* =============================================================================
     12. SEKTÖRLER (sectors-v2, industry tiles, glass focus card)
     ============================================================================= */

.sectors-v2{
  background: linear-gradient(180deg, var(--navy-950), var(--navy-800));
  color: rgba(255, 255, 255, 0.92);
  /* Genel .section padding'ini ez — top15 bottom30 */
  padding-top: 15px;
  padding-bottom: 30px;
}
.sectors-v2 h2{
  color: var(--white);
}
.sectors-v2 .text-muted{
  color: rgba(255, 255, 255, 0.8);
}
.industry-selector{
  display: block;
  width: 100%;
}

/* Sektör marquee — yatay şerit + oklar */
.sector-marquee{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.sector-marquee-viewport{
  overflow: hidden;
  min-width: 0;
  /* hover lift için üst/alt boşluk (clip olmasın) */
  padding-block: 14px;
  margin-block: -14px;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.sector-marquee-track{
  display: flex;
  align-items: stretch;
  gap: 14px;
  width: max-content;
  will-change: transform;
}

.sector-marquee-btn{
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--btn-neon-border);
  background: rgba(5, 12, 28, 0.55);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}
.sector-marquee-btn:hover,
.sector-marquee-btn:focus-visible{
  background: var(--ab-blue-hover);
  box-shadow: var(--btn-neon-shadow);
  outline: none;
  transform: translateY(-1px);
}
.sector-marquee-btn svg{
  width: 22px;
  height: 22px;
}

@media (max-width: 640px){
  .sector-marquee{
    gap: 8px;
  }
  .sector-marquee-btn{
    width: 38px;
    height: 38px;
  }
  .industry-tile{
    width: 180px;
    flex-basis: 180px;
    height: 140px;
  }
}

@media (prefers-reduced-motion: reduce){
  .sector-marquee[data-paused="1"] .sector-marquee-track{
    transition: none;
  }
}

.industry-chip-wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 98, 255, 0.6) rgba(7, 22, 51, 0.2);
  padding-right: 6px;
}
.industry-chip-wrap::-webkit-scrollbar{
  width: 8px;
}
.industry-chip-wrap::-webkit-scrollbar-track{
  background: rgba(7, 22, 51, 0.18);
  border-radius: 999px;
}
.industry-chip-wrap::-webkit-scrollbar-thumb{
  background: rgba(0, 98, 255, 0.72);
  border-radius: 999px;
}

.industry-chip{
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.industry-chip:hover,
.industry-chip.is-active{
  background: rgba(0, 98, 255, 0.26);
  border-color: var(--gold-soft);
  color: var(--white);
  transform: translateY(-2px);
}

.glass-tiles-wrap{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-content: flex-start;
  min-height: 0;
  overflow: visible;
  padding-right: 0;
}
.glass-tiles-wrap::-webkit-scrollbar{
  width: 8px;
}
.glass-tiles-wrap::-webkit-scrollbar-track{
  background: rgba(7, 22, 51, 0.18);
  border-radius: 999px;
}
.glass-tiles-wrap::-webkit-scrollbar-thumb{
  background: rgba(0, 98, 255, 0.72);
  border-radius: 999px;
}

.industry-tile{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 0;
  height: 160px;
  width: 220px;
  flex: 0 0 220px;
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: #0b1630;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 0.8rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(7, 22, 51, 0.18);
  text-align: center;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.sector-marquee-track .industry-tile:hover{
  transform: translateY(-10px);
  border-color: var(--btn-neon-border);
  box-shadow:
    0 0 0 1px rgba(59, 158, 255, 0.45),
    0 0 18px rgba(59, 158, 255, 0.55),
    0 0 36px rgba(59, 158, 255, 0.35),
    0 18px 28px rgba(5, 12, 28, 0.55),
    0 32px 48px rgba(5, 12, 28, 0.4),
    0 10px 28px rgba(59, 158, 255, 0.35);
  z-index: 3;
}

/* Görsel her zaman net — hover ile açılmaz */
.industry-tile .tile-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92);
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.industry-tile::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Sadece altta yazı okunsun diye hafif gradient — görseli boğmasın */
  background: linear-gradient(
    to top,
    rgba(5, 12, 28, 0.72) 0%,
    rgba(5, 12, 28, 0.18) 42%,
    rgba(5, 12, 28, 0.05) 100%
  );
}

.tile-inner{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  text-shadow: 0 1px 6px rgba(7, 22, 51, 0.9);
  pointer-events: none;
  width: 100%;
}
.tile-icon{
  width: 22px;
  height: 22px;
  color: #ffffff;
  flex-shrink: 0;
}
.tile-label{
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.glass-focus-card{
  position: relative;
  border-radius: 20px;
  height: 400px;
  min-height: 400px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(7, 22, 51, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.glass-focus-card::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 17, 38, 0.95) 0%,
    rgba(6, 17, 38, 0.55) 50%,
    rgba(6, 17, 38, 0.1) 100%
  );
  z-index: 1;
  border-radius: 20px;
  pointer-events: none;
}
.glass-focus-card h3{
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.glass-focus-card p{
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 16px;
}
.focus-card-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
}
.focus-card-content{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  max-height: calc(100% - 12px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 98, 255, 0.65) rgba(7, 22, 51, 0.2);
}
.focus-card-content::-webkit-scrollbar{
  width: 8px;
}
.focus-card-content::-webkit-scrollbar-track{
  background: rgba(7, 22, 51, 0.18);
  border-radius: 999px;
}
.focus-card-content::-webkit-scrollbar-thumb{
  background: rgba(0, 98, 255, 0.72);
  border-radius: 999px;
}

.industry-focus-detail{
  margin-top: 10px;
  padding: 14px;
  border: 1px solid rgba(0, 98, 255, 0.45);
  border-radius: 12px;
  background: rgba(7, 22, 51, 0.55);
  backdrop-filter: blur(3px);
}
.industry-focus-detail h4{
  margin: 0 0 8px;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.glass-focus-card .industry-focus-detail p{
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.9);
  overflow: visible;
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: initial;
}
.industry-focus-detail[hidden]{
  display: none !important;
}

/* =============================================================================
     13. BLOG & HABERLER
     ============================================================================= */

.section-blog{
  background: var(--white);
}
.blog-layout{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 26px;
}
.post-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.section-blog-hero{
  padding: 58px 0 24px;
  background: linear-gradient(
    180deg,
    rgba(17, 53, 107, 0.1),
    rgba(17, 53, 107, 0)
  );
}
.blog-head-wrap{
  max-width: 760px;
}
.blog-head-kicker{
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--navy-800);
  background: rgba(17, 53, 107, 0.08);
  margin-bottom: 12px;
}
.section-blog-archive{
  padding-top: 24px;
}

.blog-featured-card{
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  margin-bottom: 28px;
}
.blog-featured-media{
  min-height: 320px;
}
.blog-featured-media img{
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.blog-featured-body{
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-featured-body h2{
  margin: 2px 0 4px;
}
.blog-featured-body .btn{
  align-self: flex-start;
  margin-top: 4px;
}
.blog-archive-grid{
  align-items: stretch;
}
.blog-archive-card{
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}
.blog-archive-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.blog-card-excerpt{
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section-blog-single{
  padding-top: 42px;
}
.single-blog-shell{
  max-width: 860px;
  margin-inline: auto;
}
.single-blog-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: clamp(20px, 3vw, 34px);
}
.single-meta-row{
  margin-bottom: 14px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.single-title{
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.18;
}
.single-cover-image{
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 32px;
}
.single-tag-row{
  margin-top: 32px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.section-blog-related{
  background: var(--surface);
}
.related-heading{
  margin-bottom: 24px;
}
.related-excerpt{
  margin-top: 8px;
}

.blog-pagination{
  margin-top: 24px;
}
.blog-pagination .page-numbers{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.blog-pagination .page-numbers li{
  list-style: none;
}
.blog-pagination .page-numbers a,
.blog-pagination .page-numbers span{
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: var(--btn-radius);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--white);
  color: var(--navy-900);
}
.blog-pagination .page-numbers .current{
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}

.post-card{
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.post-card img{
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.post-card-body{
  padding: 16px;
}
.post-meta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.home-blog-grid{
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
#homeBlogNews{
  min-height: 280px;
}
.home-blog-grid > .home-blog-slider-wrap{
  grid-column: 1 / -1;
}
.section-blog .container{
  width: 96%;
}
.home-blog-slider-wrap{
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  gap: 4px;
  align-items: center;
  margin-top: 8px;
  margin-inline: -6px;
}
.home-blog-track{
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 0;
  cursor: grab;
}
.home-blog-track.is-dragging{
  cursor: grabbing;
  user-select: none;
}
.home-blog-track::-webkit-scrollbar{
  height: 10px;
}
.home-blog-track::-webkit-scrollbar-thumb{
  background: rgba(18, 53, 110, 0.28);
  border-radius: 999px;
}
.home-blog-slide{
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 300px;
  scroll-snap-align: start;
}
.home-blog-nav{
  width: 28px;
  height: 28px;
  border-radius: var(--btn-radius);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy-900);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.home-blog-nav:hover{
  transform: translateY(-2px);
  border-color: var(--gold);
  color: var(--gold);
}
.home-blog-actions{
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.home-blog-card{
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.home-blog-card:hover{
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
.home-blog-card img{
  width: 100%;
  height: 196px;
  object-fit: cover;
}
.home-blog-body{
  padding: 16px;
}
.home-blog-meta{
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.home-blog-body h3{
  margin-bottom: 8px;
}
.home-blog-body p{
  color: var(--muted);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =============================================================================
     14. FORMS
     ============================================================================= */

.form-grid{
  display: grid;
  gap: 13px;
}
.form-grid input,
.form-grid textarea,
.form-grid select{
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 13px;
  font: inherit;
  color: var(--text);
  background: var(--white);
  width: 100%;
  min-height: 44px;
}
.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus{
  outline: 2px solid rgba(0, 98, 255, 0.34);
  border-color: var(--gold);
}
.form-grid input[type="file"]{
  padding: 10px;
}
.form-grid button,
input[type="submit"]{
  width: 100%;
  min-height: 44px;
}

.inline-check{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--muted);
}
.inline-check input{
  width: auto;
  flex: 0 0 auto;
  margin: 3px 0 0 0;
  accent-color: var(--gold);
}
.form-grid .inline-check{
  align-items: flex-start;
}
.form-grid .inline-check input[type="checkbox"]{
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0 0;
  padding: 0;
}
.form-grid .inline-check span{
  flex: 1 1 auto;
}

.form-status{
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.93rem;
  display: none;
}
.form-status.show{
  display: block;
}
.form-status.ok{
  background: #eaf9f1;
  color: #1c7d4f;
}
.form-status.err{
  background: #fff0ef;
  color: #b14d47;
}

/* =============================================================================
     15. FOOTER
     ============================================================================= */

.site-footer{
  margin-top: 80px;
  background: linear-gradient(180deg, var(--navy-950), var(--navy-800));
  color: rgba(255, 255, 255, 0.88);
  padding-left: 20px;
}

/* Footer İlanlar — koyu zeminde: neon border + hover glow */
.footer-col .footer-listings-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-inline: auto;
  margin-top: 10px;
  padding: 10px 18px;
  min-height: 40px;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid var(--btn-neon-border) !important;
  border-radius: 8px;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.footer-col .footer-listings-btn::before{
  content: none;
  display: none;
}

.footer-col .footer-listings-btn:hover{
  background: transparent !important;
  color: #fff !important;
  border-color: var(--btn-neon-border) !important;
  box-shadow: var(--btn-neon-shadow);
}

.footer-cta-strip{
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 40px 0;
}

.footer-cta-inner{
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-inline: clamp(20px, 4vw, 48px);
}

.footer-cta-brand{
  grid-column: 1;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 12px;
  background: #fff;
  border-radius: 14px;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast);
}

.footer-cta-brand:hover{
  opacity: 0.92;
  transform: translateY(-1px);
}

.footer-cta-brand img,
.footer-cta-brand .brand-logo{
  height: 48px;
  width: 48px;
  max-width: 48px;
  border-radius: 50%;
  display: block;
  object-fit: contain;
  background: transparent;
}

.footer-cta-brand .logo-text{
  max-width: 220px;
}

.footer-cta-brand .logo-name{
  color: var(--navy-950);
}

.footer-cta-brand .logo-sub{
  color: var(--navy-800);
  opacity: 0.82;
}

.footer-cta-social{
  grid-column: 4;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-cta-label{
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 767px) {
  .footer-cta-inner{
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .footer-cta-brand{
    grid-column: 1;
  }

  .footer-cta-social{
    grid-column: 1;
    align-items: center;
  }

  .footer-cta-brand{
    padding: 8px 14px 8px 10px;
  }

  .footer-cta-brand img{
    height: 40px;
  }

  .footer-cta-brand .logo-text{
    max-width: 170px;
  }

  .footer-cta-brand .logo-name{
    font-size: 0.95rem;
  }

  .footer-cta-brand .logo-sub{
    font-size: 0.58rem;
  }
}

@media (min-width: 768px) and (max-width: 880px) {
  .footer-cta-inner{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
  }

  .footer-cta-brand{
    grid-column: 1;
  }

  .footer-cta-social{
    grid-column: 2;
    justify-self: center;
  }
}

.footer-top{
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 80px);
  padding: 80px clamp(20px, 4vw, 48px) 48px;
}
.footer-col{
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-col a,
.footer-col p{
  overflow-wrap: anywhere;
}
.footer-col h4{
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer-col p{
  line-height: 1.8;
}

.footer-col a:not(.footer-listings-btn){
  display: block;
  padding-bottom: 0.25rem;
  position: relative;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
}
.footer-col a:not(.footer-listings-btn)::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--btn-neon-border);
  transition: width 0.25s ease-out;
}
.footer-col a:not(.footer-listings-btn):hover::before{
  width: 100%;
}
.footer-col a:not(.footer-listings-btn):hover{
  color: var(--btn-neon-border);
}

/* İletişim linkleri — kayan çizgi devre dışı, hover'da mavi */
.footer-col p.contact-line{
  text-align: left;
  margin-bottom: 14px;
}
.footer-col p a.contact-link{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-bottom: 0;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color var(--transition-fast);
  max-width: 100%;
}
.footer-col p a.contact-link .contact-icon{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 28px;
  height: 28px;
  line-height: 1;
  text-decoration: none;
}
.footer-col p a.contact-link .contact-icon svg{
  width: 22px;
  height: 22px;
  display: block;
}
.footer-col p a.contact-link .contact-text{
  font-size: 0.95em;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  transition:
    color var(--transition-fast),
    text-decoration-color var(--transition-fast);
  overflow-wrap: break-word;
}
.footer-col p a.contact-link::before{
  display: none;
}
.footer-col p a.contact-link:hover{
  color: var(--btn-neon-border);
}
.footer-col p a.contact-link:hover .contact-text{
  text-decoration-color: var(--btn-neon-border);
}
.footer-col p a.contact-link:hover .contact-icon{
  color: var(--btn-neon-border);
}

.footer-line{
  border: rgb(221, 164, 9) solid 0.2px;
  width: 50%;
  margin-bottom: 20px;
  opacity: 0.6;
}

.footer-social{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
}

.footer-cta-strip .footer-social .social-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  line-height: 0;
  border-radius: 8px;
  flex-shrink: 0;
}

.footer-cta-strip .footer-social .social-link::before{
  display: none;
}

.footer-cta-strip .footer-social .social-link svg{
  display: block;
  width: 16px;
  height: 16px;
  margin: 0;
}

.footer-cta-strip .footer-social .social-link:hover{
  border-color: var(--btn-neon-border);
  color: var(--btn-neon-border);
  box-shadow: var(--btn-neon-shadow);
}


.footer-bottom{
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 22px 0;
  font-size: 0.93rem;
}
.footer-bottom-copy{
  white-space: nowrap;
}
.footer-sig{
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.62;
  white-space: nowrap;
  transition:
    opacity var(--transition-fast),
    color var(--transition-fast);
}
.footer-sig:hover{
  opacity: 0.95;
}
.footer-sig-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-size: 9px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.03em;
  opacity: 0.9;
  transition:
    transform var(--transition-fast),
    opacity var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast);
}
.footer-sig-badge:hover{
  opacity: 1;
  transform: translateY(-1px) scale(1.08);
  background-color: rgba(255, 255, 255, 0.08);
}

/* =============================================================================
     16. SAYFA ÖZEL STİLLER
     ============================================================================= */

/* ── 16a. Page Hero (Hakkımızda / Barter Nedir / İletişim) ── */
.page-hero{
  position: relative;
  background: linear-gradient(
    135deg,
    var(--ab-navy) 0%,
    var(--navy-900) 55%,
    var(--navy-800) 100%
  );
  padding: 96px 0 72px;
  overflow: hidden;
  color: var(--white);
}
.page-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 70% 50%,
    rgba(0, 98, 255, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.page-hero-content{
  position: relative;
  z-index: 2;
}
.page-hero-kicker{
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 5px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.page-hero h1{
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.12;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.page-hero > .container > p,
.page-hero-content > p{
  color: rgba(255, 255, 255, 0.82);
  max-width: 680px;
  margin-top: 16px;
  font-size: 1.07rem;
  line-height: 1.7;
}
.page-hero-stats{
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.ph-stat strong{
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.ph-stat span{
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* Mission / Vision */
.mv-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.mv-card{
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.mv-card-mission{
  background: linear-gradient(135deg, var(--navy-950) 0%, #0d2255 100%);
  color: #fff;
}
.mv-card-vision{
  background: linear-gradient(
    135deg,
    var(--ab-blue-deep) 0%,
    var(--ab-blue) 55%,
    #3b9eff 100%
  );
  color: var(--ab-white);
}
.mv-card h3{
  margin-top: 16px;
  font-size: 1.4rem;
}
.mv-card-mission h3{
  color: var(--ab-blue);
}
.mv-card-vision h3{
  color: var(--ab-white);
}
.mv-card p{
  margin-top: 12px;
  line-height: 1.75;
  opacity: 0.88;
}
.mv-icon{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.mv-card-mission .mv-icon{
  background: rgba(0, 98, 255, 0.18);
  color: var(--gold);
}
.mv-card-vision .mv-icon{
  background: rgba(7, 22, 51, 0.18);
  color: var(--navy-950);
}
.mv-icon svg{
  width: 26px;
  height: 26px;
}

/* Değerler */
.section-values{
  background: var(--surface);
}
.values-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.value-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.value-card:nth-child(2){
  border-top-color: var(--navy-700);
}
.value-card:nth-child(3){
  border-top-color: #2a9d6f;
}
.value-card:nth-child(4){
  border-top-color: #e76f51;
}
.value-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.value-icon{
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
}
.value-card:nth-child(2) .value-icon{
  color: var(--navy-700);
}
.value-card:nth-child(3) .value-icon{
  color: #2a9d6f;
}
.value-card:nth-child(4) .value-icon{
  color: #e76f51;
}
.value-icon svg{
  width: 24px;
  height: 24px;
}
.value-card h4{
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.value-card p{
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Yaklaşım */
.section-approach{
  background: linear-gradient(
    160deg,
    var(--navy-950) 0%,
    #0d2255 60%,
    #0b1e47 100%
  );
}
.approach-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.approach-text{
  color: rgba(255, 255, 255, 0.92);
}
.approach-text h2{
  color: #ffffff;
}
.approach-text .text-muted{
  color: rgba(255, 255, 255, 0.72) !important;
}
.approach-list{
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.approach-list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.97rem;
}
.approach-list li svg{
  color: var(--gold);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.al-num{
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 28px;
  line-height: 1.5;
  flex-shrink: 0;
}
.approach-cards{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.approach-step-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition:
    background 0.2s,
    border-color 0.2s;
  box-shadow: var(--shadow-soft);
}
.approach-step-card:hover{
  background: rgba(0, 98, 255, 0.1);
  border-color: rgba(0, 98, 255, 0.4);
  color: var(--white);
}
.step-num{
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 36px;
  opacity: 0.7;
}
.approach-step-card h4{
  color: var(--heading);
  font-size: 1rem;
  margin-bottom: 4px;
}
.approach-step-card p{
  color: rgb(31, 54, 96, 0.8);
  font-size: 0.9rem;
}
.approach-step-card:hover h4{
  color: var(--white);
}
.approach-step-card:hover p{
  color: rgba(255, 255, 255, 0.807);
}

/* Hedefler */
.goals-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.goal-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.goal-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.goal-card svg{
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 18px;
}
.goal-card h4{
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.goal-card p{
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* CTA Banner — navy şerit */
.cta-banner{
  background: linear-gradient(
    135deg,
    var(--ab-navy) 0%,
    var(--navy-900) 50%,
    var(--navy-800) 100%
  );
  padding: 72px 0;
}
.cta-banner-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2{
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
.cta-banner p{
  color: rgba(255, 255, 255, 0.72);
  margin-top: 8px;
}
.cta-banner-btns{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-banner .btn-primary{
  background: var(--ab-white);
  color: var(--ab-navy);
  border: 1.5px solid #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.cta-banner .btn-primary:hover{
  background: transparent;
  border-color: var(--btn-neon-border);
  color: #fff;
  box-shadow: var(--btn-neon-shadow);
}
.cta-banner .btn-ghost{
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
  background: transparent;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.cta-banner .btn-ghost:hover{
  background: transparent;
  border-color: var(--btn-neon-border);
  color: var(--white);
  box-shadow: var(--btn-neon-shadow);
}

/* ── 16b. Barter Nedir ── */
.barter-def-grid{
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: start;
}
.barter-def-text h2{
  margin-bottom: 16px;
}
.barter-def-text p{
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 14px;
}
.barter-highlight-card{
  background: linear-gradient(135deg, var(--navy-950), #0d2255);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  color: #fff;
}
.barter-highlight-card h3{
  color: var(--gold);
  margin-bottom: 18px;
}
.barter-highlight-card ul{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.barter-highlight-card li{
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
}
.barter-highlight-card li::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.barter-steps-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.barter-step{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 22px;
  position: relative;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.barter-step:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.barter-step-num{
  font-family: "Outfit", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.22;
  line-height: 1;
  margin-bottom: 12px;
}
.barter-step h4{
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--navy-950);
}
.barter-step p{
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.barter-who-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}
.barter-who-card{
  border-radius: var(--radius-md);
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  border-top: 4px solid var(--gold);
}
.barter-who-card:nth-child(2){
  border-top-color: var(--navy-700);
}
.barter-who-card:nth-child(3){
  border-top-color: #2a9d6f;
}
.barter-who-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.barter-who-icon{
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
}
.barter-who-card:nth-child(2) .barter-who-icon{
  color: var(--navy-700);
}
.barter-who-card:nth-child(3) .barter-who-icon{
  color: #2a9d6f;
}
.barter-who-icon svg{
  width: 26px;
  height: 26px;
}
.barter-who-card h3{
  margin-bottom: 10px;
}
.barter-who-card p{
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ── 16c. İletişim ── */
.contact-cards-strip{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.contact-info-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.contact-info-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(0, 98, 255, 0.35);
}
.contact-info-icon{
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--ab-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}
.contact-info-card:hover .contact-info-icon{
  transform: scale(1.05);
}
.contact-info-icon svg{
  width: 24px;
  height: 24px;
  color: #fff;
  stroke: #fff;
}
.contact-info-card h4{
  font-size: 1rem;
  color: var(--navy-950);
}
.contact-info-card p{
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  transition: color 0.2s ease;
}
.contact-info-card:hover .contact-info-value{
  color: var(--ab-navy);
}
.contact-info-note{
  font-size: 0.85rem;
  opacity: 0.85;
}
.contact-main-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact-map-wrap iframe{
  border-radius: var(--radius-md);
  width: 100%;
  height: 300px;
  border: 0;
  margin-top: 12px;
}
.contact-hours{
  margin-top: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-soft);
}
.contact-hours h4{
  font-size: 0.95rem;
  color: var(--navy-950);
  margin-bottom: 10px;
}
.contact-hours ul{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-hours li{
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}
.contact-form-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.contact-form-card h3{
  margin-bottom: 24px;
  color: var(--navy-950);
}

/* İletişim formu: Mesaj / CV sekmeleri */
.contact-form-tabs{
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.contact-form-tab{
  flex: 1;
  border: 1px solid rgba(7, 22, 51, 0.14);
  background: #f4f7fb;
  color: #102347;
  border-radius: var(--btn-radius);
  padding: 12px 14px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.contact-form-tab:hover{
  border-color: rgba(7, 22, 51, 0.28);
}
.contact-form-tab.is-active{
  background: var(--navy-950, #0a1d46);
  color: #fff;
  border-color: var(--navy-950, #0a1d46);
}
.contact-tab-panel{
  display: none;
}
.contact-tab-panel.is-active{
  display: block;
}

/* CV dosya seçici (kesik çerçeve) */
.cv-file-field{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px dashed rgba(7, 22, 51, 0.28);
  border-radius: 12px;
  background: #f8fafc;
  cursor: pointer;
  margin: 0;
}
.cv-file-field:hover{
  border-color: var(--gold, #a68953);
  background: #fff;
}
.cv-file-text{
  font-size: 0.92rem;
  color: var(--muted, #64748b);
}
.cv-file-btn{
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: var(--btn-radius);
  background: var(--navy-950, #0a1d46);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}
.cv-file-field input[type="file"]{
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  margin: 0;
}

/* ── 16d. Referanslar ── */
.ref-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.ref-card{
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.ref-card:hover{
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
.ref-card-img-wrap{
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  height: 120px;
}
.ref-card-img-wrap img{
  max-height: 72px;
  max-width: 140px;
  object-fit: contain;
}
.ref-card-body{
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  text-align: center;
}

@media (max-width: 1005px) {
  .contact-cards-strip{
    grid-template-columns: 1fr;
  }
}

.ref-card-label{
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.faq-item{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.faq-item h4{
  font-size: 1.02rem;
  color: var(--navy-950);
  margin-bottom: 10px;
}
.faq-item p{
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── 16e. Üyelik ── */
.membership-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}
.membership-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.membership-card-login{
  background: linear-gradient(160deg, var(--navy-950) 0%, #0d2255 100%);
  border-color: var(--gold);
  box-shadow: 0 20px 48px rgba(0, 98, 255, 0.2);
}
.membership-card-login h2{
  color: var(--gold) !important;
}
.membership-card-login .membership-card-desc,
.membership-card-login .membership-features li{
  color: rgba(255, 255, 255, 0.88);
}
.membership-card-login .membership-features svg{
  color: var(--gold);
}
.membership-card-icon{
  width: 52px;
  height: 52px;
  background: var(--surface);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.membership-card-icon svg{
  width: 26px;
  height: 26px;
  color: var(--navy-950);
}
.membership-card-icon-gold{
  background: rgba(0, 98, 255, 0.18);
}
.membership-card-icon-gold svg{
  color: var(--gold);
}
.membership-card h2{
  font-size: 1.5rem;
  color: var(--navy-950);
}
.membership-card-desc{
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}
.membership-features{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.membership-features li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
}
.membership-features svg{
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.membership-form input,
.membership-form textarea{
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  font-family: inherit;
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.membership-form input:focus,
.membership-form textarea:focus{
  border-color: var(--gold);
  background: #fff;
}
.membership-form textarea{
  resize: vertical;
}

/* ── İlan login (cam kart + arka plan galeri) ── */
.listing-login-wrap{
  /* Header altına kadar viewport; ekstra mavi/beyaz boşluk yok */
  min-height: calc(100vh - var(--header-main-height));
  min-height: calc(100dvh - var(--header-main-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  background: #071633;
}
/* Login açıkken footer üstündeki açık (body) boşluk kalksın — footer kalsın */
body:has(.listing-login-wrap.is-active) .site-footer{
  margin-top: 0;
}
.listing-login-outer{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}

/* Galeri: section içini doldur (header altına ekstra mavi şerit yok) */
.login-bg-gallery{
  position: absolute;
  inset: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  z-index: 1;
}
.bg-photo-item{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.bg-photo-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Varsayılan: canlı renkler (eski hover hali) */
  filter: brightness(1.1) blur(0);
  transition: transform 0.45s ease, filter 0.45s ease;
}
/* 3. görsel (araba): kadraj dengesi (önceki 18% biraz fazla kaymıştı) */
.bg-photo-item:nth-child(3) img{
  object-position: 34% 50%;
}
@media (hover: hover) and (pointer: fine){
  .bg-photo-item:hover img{
    transform: scale(1.08);
  }
}
/* Input focus olunca arka plan kararsın */
.listing-login-wrap:has(.listing-login-card input:focus) .bg-photo-item img{
  filter: brightness(0.35) blur(1px);
  transform: none;
}
.listing-login-wrap:has(.listing-login-card input:focus) .bg-photo-item:hover img{
  filter: brightness(0.35) blur(1px);
  transform: none;
}

/* Cam login kartı */
.listing-login-card{
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  background: rgba(9, 27, 64, 0.22);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.35),
    inset 0 -1px 1px rgba(0, 0, 0, 0.15),
    0 20px 40px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 32px;
  padding: 50px 40px 40px;
  position: relative;
  z-index: 1;
  max-width: 520px;
  width: 100%;
}
.listing-login-card h1{
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 35px;
}
.login-sub-text{
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  text-align: center;
  margin-top: -25px;
  margin-bottom: 25px;
  font-weight: 400;
}
.listing-login-card .input-row{
  position: relative;
  margin-bottom: 22px;
}
.listing-login-card input[type="password"],
.listing-login-card input[type="text"],
.listing-login-card input[type="email"]{
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--btn-neon-border);
  border-radius: 0;
  padding: 10px 30px 10px 0;
  font-size: 0.95rem;
  color: #fff;
  caret-color: #fff;
  outline: none;
  transition: border-color 0.25s ease;
  box-shadow: none;
}
.listing-login-card input[type="password"]:focus,
.listing-login-card input[type="text"]:focus,
.listing-login-card input[type="email"]:focus{
  border-bottom-color: var(--ab-blue);
  outline: none;
}
.listing-login-card input:-webkit-autofill,
.listing-login-card input:-webkit-autofill:hover,
.listing-login-card input:-webkit-autofill:focus,
.listing-login-card input:-webkit-autofill:active{
  -webkit-text-fill-color: #fff;
  transition: background-color 600000s ease-in-out 0s;
}
.listing-login-card input::placeholder{
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.listing-login-card .input-icon{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.listing-login-card .form-status{
  font-size: 0.88rem;
  margin-bottom: 8px;
  text-align: center;
  border: 1px solid transparent;
}
.listing-login-card .form-status.ok{
  background: rgba(46, 180, 110, 0.22);
  border-color: rgba(120, 230, 170, 0.45);
  color: #d4ffe8;
}
.listing-login-card .form-status.err{
  background: rgba(220, 80, 70, 0.22);
  border-color: rgba(255, 160, 150, 0.45);
  color: #ffd0c8;
}
.btn-login-submit{
  width: 100%;
  height: 48px;
  border-radius: var(--btn-radius);
  background: var(--ab-navy);
  color: var(--ab-white);
  font-size: 1rem;
  font-weight: 700;
  border: 1.5px solid var(--btn-neon-border);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(5, 12, 28, 0.35);
  transition:
    transform 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-login-submit:hover{
  transform: translateY(-2px);
  background: var(--ab-blue-hover);
  border-color: var(--ab-blue-hover);
  box-shadow: var(--btn-neon-shadow);
}
.login-card-help{
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}
.login-help-title{
  margin: 0 0 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
.login-help-text{
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}
.login-link{
  color: #c9a556;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.login-link:hover{
  color: #e0c06a;
}

@media (max-width: 768px){
  .login-bg-gallery{
    grid-template-columns: repeat(2, 1fr);
  }
  .listing-login-card{
    padding: 40px 24px 28px;
  }
  .listing-login-card h1{
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  .login-sub-text{
    font-size: 0.85rem;
    margin-top: 0;
    margin-bottom: 25px;
  }
}
@media (max-width: 520px){
  .listing-login-card{
    padding: 36px 20px 28px;
  }
  .listing-login-card h1{
    font-size: 1.5rem;
  }
  .btn-login-submit{
    height: 44px;
    font-size: 0.95rem;
  }
}

/* ── 16f. Nasıl Çalışır — Process Timeline ── */
.process-timeline{
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pt-step{
  display: grid;
  grid-template-columns: 56px 28px 1fr;
  gap: 0 24px;
  align-items: start;
}
.pt-icon{
  width: 56px;
  height: 56px;
  background: var(--navy-950);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.pt-icon svg{
  width: 24px;
  height: 24px;
  color: var(--gold);
}
.pt-connector{
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--surface));
  margin: 0 auto;
  min-height: 100%;
  align-self: stretch;
}
.pt-connector-last{
  background: transparent;
}
.pt-body{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-soft);
}
.pt-body:hover{
  box-shadow: var(--shadow-card);
}
.pt-num{
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(0, 98, 255, 0.12);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 8px;
}
.pt-body h3{
  font-size: 1.15rem;
  color: var(--navy-950);
  margin-bottom: 10px;
}
.pt-body p{
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.7;
}
.pt-detail-list{
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pt-detail-list li{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text);
}
.pt-detail-list svg{
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* =============================================================================
     17. İLAN PANELİ (lp-* bileşenleri)
     ============================================================================= */

/* Sayfa sarmalayıcı */
.listing-panel-wrap{
  position: relative;
  padding: 48px 0 80px;
  background:
    radial-gradient(
      circle at 8% -8%,
      rgba(0, 98, 255, 0.12),
      transparent 34%
    ),
    radial-gradient(circle at 92% 4%, rgba(23, 62, 128, 0.12), transparent 32%),
    linear-gradient(180deg, #edf3fc 0%, #f4f7fd 100%);
  min-height: 70vh;
}
.listing-panel-wrap::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13, 43, 92, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 43, 92, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
}

/* Üst çubuk */
.lp-topbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
  background: linear-gradient(135deg, var(--navy-950) 0%, #0d2255 100%);
  border-radius: 18px;
  padding: 22px 28px;
  position: relative;
  overflow: hidden;
}
.lp-topbar::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 120% at 95% 50%,
    rgba(0, 98, 255, 0.12) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.lp-topbar-left{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.lp-topbar h2{
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.lp-count-badge{
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}
.lp-topbar-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}
.lp-topbar-icon i{
  width: 19px;
  height: 19px;
  color: #fff;
}
.lp-topbar-sub{
  color: rgba(255, 255, 255, 0.78);
  margin: 2px 0 0;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Kategori sekmeleri */
.lp-category-tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 18px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(21, 58, 118, 0.1);
  backdrop-filter: blur(6px);
}
.lp-cat-chip{
  position: relative;
  overflow: hidden;
  border: 1px solid #cfd8ea;
  background: linear-gradient(180deg, #f8fbff 0%, #eef3fb 100%);
  color: #14376e;
  border-radius: 999px;
  min-height: 46px;
  padding: 0 20px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 6px 16px rgba(12, 43, 95, 0.08);
  opacity: 0;
  animation: lpChipIn 0.35s ease forwards;
}
.lp-cat-chip::after{
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 52%;
  height: 100%;
  transform: skewX(-20deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.58),
    rgba(255, 255, 255, 0)
  );
  transition: left 0.46s ease;
}
.lp-cat-chip:hover{
  transform: translateY(-2px);
  border-color: #b9c8e3;
  box-shadow: 0 10px 22px rgba(12, 43, 95, 0.14);
}
.lp-cat-chip:hover::after{
  left: 130%;
}
.lp-cat-chip.active{
  background: linear-gradient(135deg, #0f3d83 0%, #1c4f97 100%);
  color: #fff;
  border-color: #0f3d83;
  box-shadow: 0 14px 28px rgba(13, 44, 94, 0.25);
}
@keyframes lpChipIn {
  from{
    opacity: 0;
    transform: translateY(7px) scale(0.985);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Çıkış butonu */
.lp-logout-btn{
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: var(--btn-radius);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.18s;
  position: relative;
  z-index: 1;
}
.lp-logout-btn:hover{
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Filtre çubuğu */
.lp-filters{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(7, 22, 51, 0.07);
}
.lp-search-wrap{
  position: relative;
  flex: 1;
  min-width: 200px;
}
.lp-search-icon{
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--muted);
  pointer-events: none;
}
.lp-search-input{
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px 10px 36px;
  font: inherit;
  font-size: 0.9rem;
  background: var(--surface);
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
}
.lp-search-input:focus{
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 98, 255, 0.14);
}
.lp-select{
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 30px 10px 12px;
  font: inherit;
  font-size: 0.88rem;
  background: var(--surface)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23444' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
    no-repeat right 10px center;
  appearance: none;
  cursor: pointer;
  min-width: 150px;
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
}
.lp-select:focus{
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(0, 98, 255, 0.14);
}

/* Yükleniyor / boş durumlar */
.lp-loading{
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.lp-spinner{
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2.5px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: lpSpin 0.7s linear infinite;
}
@keyframes lpSpin {
  to{
    transform: rotate(360deg);
  }
}
.lp-empty,
.lp-error{
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 0.97rem;
}
.lp-error-wrap{
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 10px;
}

/* Kart ızgarası */
.lp-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 36px;
}

/* Kart */
.lp-card{
  background: var(--white);
  border: 1px solid rgba(18, 53, 110, 0.11);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    0 4px 18px rgba(7, 22, 51, 0.07),
    0 1px 3px rgba(7, 22, 51, 0.04);
  transition:
    transform 0.26s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.26s ease,
    border-color 0.2s;
  display: flex;
  flex-direction: column;
  animation: lpCardIn 0.42s cubic-bezier(0.2, 0.85, 0.25, 1) both;
}
.lp-card:hover{
  transform: translateY(-7px);
  box-shadow:
    0 22px 52px rgba(7, 22, 51, 0.16),
    0 6px 16px rgba(7, 22, 51, 0.08);
  border-color: rgba(0, 98, 255, 0.4);
}
@keyframes lpCardIn {
  from{
    opacity: 0;
    transform: translateY(16px) scale(0.986);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.lp-card:focus{
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.lp-card-media{
  position: relative;
  height: 190px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--surface) 0%, #dde6f8 100%);
  flex-shrink: 0;
}
.lp-card-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}
.lp-card:hover .lp-card-img{
  transform: scale(1.06);
}
.lp-card-img-placeholder{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #0a1d46 0%, #132a5c 100%);
  color: rgba(219, 231, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 600;
}
.lp-card-img-placeholder i{
  width: 32px;
  height: 32px;
  opacity: 0.55;
  color: #7ec4ff;
}
.lp-card-body{
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}
.lp-card-badges{
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.lp-badge{
  font-size: 0.71rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}
.lp-badge-arz{
  background: #dcfce7;
  color: #166534;
}
.lp-badge-talep{
  background: #fefce8;
  color: #854d0e;
  border: 1px solid rgba(0, 98, 255, 0.35);
}
.lp-badge-sektor{
  background: var(--navy-100);
  color: var(--navy-800);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.lp-card-title{
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-950);
  line-height: 1.45;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.01em;
}
/* flex:1 kullanma — grid esit yukseklikte fiyat/ozet satiri ezilip yarim gorunuyordu */
.lp-card-desc{
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 0 0 auto;
  min-height: 0;
}
.lp-card-price{
  font-size: 0.9rem;
  color: var(--navy-950);
  line-height: 1.45;
  margin: 0 0 8px;
  flex: 0 0 auto;
}
.lp-card-footer{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(18, 53, 110, 0.08);
}
.lp-meta-item{
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--muted);
}
.lp-meta-item i{
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* Sayfalama */
.lp-pagination{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 40px;
}
.lp-pg-btn{
  border: 1.5px solid var(--border);
  border-radius: var(--btn-radius);
  padding: 8px 15px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--white);
  color: var(--navy-800);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(7, 22, 51, 0.05);
  transition: all 0.18s;
}
.lp-pg-btn:hover{
  border-color: var(--gold);
  color: var(--navy-950);
  background: rgba(0, 98, 255, 0.06);
}
.lp-pg-active{
  background: linear-gradient(135deg, var(--navy-950), #0d2255);
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(7, 22, 51, 0.22);
}

.ilan-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}
.ilan-card{
  background: var(--white);
  border: 1px solid rgba(18, 53, 110, 0.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 4px 16px rgba(7, 22, 51, 0.07),
    0 1px 3px rgba(7, 22, 51, 0.04);
  cursor: pointer;
  transition:
    transform 0.26s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.26s ease,
    border-color 0.2s;
}
.ilan-card:hover{
  transform: translateY(-7px);
  box-shadow:
    0 24px 56px rgba(7, 22, 51, 0.17),
    0 6px 16px rgba(7, 22, 51, 0.08);
  border-color: rgba(0, 98, 255, 0.35);
}
.ilan-card:focus{
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.ilan-card-img{
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--surface);
}
.ilan-card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ilan-card:hover .ilan-card-img img{
  transform: scale(1.05);
}
.ilan-card-body{
  padding: 16px 20px 20px;
}
.ilan-card-sektor{
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 6px;
}
.ilan-card-title{
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-950);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ilan-card-meta{
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
}
.ilan-card-meta span{
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.79rem;
  color: var(--muted);
}
.ilan-card-meta i{
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* Franchise paketleri */
.franchise-packages{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.franchise-pkg{
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.franchise-pkg:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.franchise-pkg-featured{
  background: var(--navy-950);
  color: #fff;
  border-color: transparent;
}
.franchise-pkg-featured h3,
.franchise-pkg-featured .pkg-desc{
  color: #fff !important;
}
.franchise-pkg-featured .pkg-list li{
  color: rgba(255, 255, 255, 0.88);
}
.franchise-pkg-featured .pkg-list svg{
  color: var(--gold);
}
.pkg-list{
  list-style: none;
  padding: 0;
  margin-top: 14px;
}
.pkg-list li{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.franchise-pkg h3{
  font-size: 1.3rem;
  color: var(--navy-950);
  margin-bottom: 10px;
}
.pkg-desc{
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.franchise-faq{
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.franchise-faq details{
  padding: 16px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.22s ease;
}
.franchise-faq details:hover{
  box-shadow: var(--shadow-soft);
}
.franchise-faq summary{
  font-weight: 600;
  color: var(--navy-950);
  cursor: pointer;
  user-select: none;
}
.franchise-faq summary::-webkit-details-marker{
  color: var(--gold);
}
.franchise-faq details[open] summary{
  color: var(--gold);
  margin-bottom: 12px;
}

/* lp-modal */
.lp-modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(7, 22, 51, 0.6);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
  animation: lpModalFadeIn 0.22s ease;
}
.lp-modal-overlay[hidden]{
  display: none;
}
@keyframes lpModalFadeIn {
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}
.lp-modal-box{
  background: var(--white);
  border-radius: 22px;
  width: min(720px, 100%);
  max-height: 90dvh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 100px rgba(7, 22, 51, 0.38);
  animation: lpModalSlideIn 0.28s cubic-bezier(0.34, 1.4, 0.64, 1);
}
@keyframes lpModalSlideIn {
  from{
    transform: translateY(28px) scale(0.97);
    opacity: 0;
  }
  to{
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
.lp-modal-close{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  border: none;
  background: rgba(7, 22, 51, 0.65);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.16s;
}
.lp-modal-close:hover{
  background: var(--navy-950);
}
.lp-carousel{
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(135deg, var(--surface), #dde6f8);
}
.lp-carousel-track{
  display: flex;
  height: 100%;
  transition: transform 0.28s ease;
}
.lp-carousel-slide{
  min-width: 100%;
  height: 100%;
}
.lp-carousel-slide img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f0f4f8;
  display: block;
  cursor: zoom-in;
}
.lp-carousel-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 22, 51, 0.65);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}
.lp-carousel-prev{
  left: 10px;
}
.lp-carousel-next{
  right: 10px;
}
.lp-carousel-dots{
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 5px;
}
.lp-cdot{
  width: 5px !important;
  height: 5px !important;
  min-width: 5px !important;
  min-height: 5px !important;
  padding: 0 !important;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 5px;
  line-height: 0;
  font-size: 0;
  transition:
    background 0.18s,
    transform 0.18s;
}
.lp-cdot.lp-cdot-active{
  background: #fff;
  transform: scale(1.4);
}
.lp-lightbox{
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2200;
  background: rgba(7, 22, 51, 0.9);
  align-items: center;
  justify-content: center;
}
.lp-lightbox.lp-lb-open{
  display: flex;
}
.lp-lightbox img{
  max-width: min(92vw, 1200px);
  max-height: 84vh;
  object-fit: contain;
}
.lp-lb-close,
.lp-lb-btn{
  position: absolute;
  border: 0;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  font-size: 1.3rem;
}
.lp-lb-close{
  top: 18px;
  right: 18px;
}
.lp-lb-prev{
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.lp-lb-next{
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.lp-lb-counter{
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}
html.lp-scroll-locked,
html.lp-scroll-locked body{
  overflow: hidden;
}
.lp-modal-body{
  padding: 26px 28px 32px;
}
.lp-modal-badges{
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.lp-modal-body h2{
  font-size: 1.3rem;
  color: var(--navy-950);
  line-height: 1.35;
  margin-bottom: 12px;
}
.lp-modal-desc{
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.lp-modal-meta{
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.lp-meta-row{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--muted);
}
.lp-meta-row i{
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Mermer vitrini */
.lp-mermer-wrap{
  margin: 14px 0 28px;
  padding: 20px;
  border: 1px solid rgba(120, 90, 60, 0.18);
  border-radius: 22px;
  background: linear-gradient(135deg, #f8f2ea 0%, #f0e6da 52%, #fbf7f1 100%);
  box-shadow: 0 16px 28px rgba(90, 67, 46, 0.1);
}
.lp-mermer-head{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.lp-mermer-head h3{
  margin: 0;
  font-size: 1.3rem;
  color: #493526;
  letter-spacing: 0.01em;
}
.lp-mermer-head p{
  margin: 0;
  color: #6e5541;
  font-size: 0.95rem;
}
.lp-mermer-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.lp-mermer-card{
  position: relative;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(60, 44, 32, 0.14);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  opacity: 0;
  animation: lpMermerIn 0.5s cubic-bezier(0.2, 0.75, 0.3, 1) forwards;
}
.lp-mermer-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(60, 44, 32, 0.2);
}
.lp-mermer-card img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.lp-mermer-card:hover img{
  transform: scale(1.04);
}
@keyframes lpMermerIn {
  from{
    opacity: 0;
    transform: translateY(12px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}
.lp-mermer-empty{
  grid-column: 1 / -1;
  border: 1px dashed rgba(92, 66, 45, 0.4);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  color: #5c4836;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.92rem;
}

@media (prefers-reduced-motion: reduce) {
  .lp-cat-chip,
.lp-mermer-card,
.lp-card{
    animation: none !important;
    transition: none !important;
  }
}

/* =============================================================================
     18. YARDIMCI & GENEL
     ============================================================================= */

/* =============================================================================
     19. RESPONSIVE — MASAÜSTÜ KISITLAMALARI (max-width)
     ============================================================================= */

/* 1400px ve altı — nav sıkıştırma */
@media (max-width: 1400px) {
  .header-nav ul,
.main-nav > ul{
    gap: 2px;
  }
  .header-nav a,
  .main-nav > ul > li > a{
    font-size: 0.82rem;
    padding: 6px 7px;
  }
  .header-left{
    margin-right: 20px;
  }
}

/* 1200px ve altı — mobil nav açılır */
@media (max-width: 1200px) {
  :root{
    --header-main-height: 68px;
  }
  .header-inner{
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
  }
  .header-nav{
    display: none;
  }
  .header-right{
    margin-left: auto;
  }
  .header-cta{
    display: none;
  }
  .btn-membership{
    display: none;
  }
  .hamburger,
.nav-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.14);
  }

  /* Mobil drawer — navy glass (beyaz panel + beyaz yazi catismasin) */
  .main-nav{
    position: fixed !important;
    inset: 69px 12px auto 12px;
    background: linear-gradient(
      180deg,
      rgba(8, 18, 40, 0.97),
      rgba(5, 12, 28, 0.98)
    );
    border: 1px solid rgba(59, 158, 255, 0.28);
    border-radius: 16px;
    box-shadow: 0 18px 48px rgba(5, 12, 28, 0.45);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    max-height: calc(100vh - 84px);
    overflow: auto;
    display: none;
    grid-column: unset;
    z-index: 1200;
  }
  .main-nav.open{
    display: block;
  }

  /* Mobile drawer altında kayıt ol + ilanlar */
  .mobile-nav-cta{
    display:flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 4px;
  }
  .mobile-nav-cta .btn{
    width: 100%;
    justify-content: center;
    text-align: center;
    min-height: 44px;
    transition:
      background 0.15s ease,
      border-color 0.15s ease,
      box-shadow 0.15s ease,
      transform 0.15s ease,
      filter 0.15s ease;
    -webkit-tap-highlight-color: transparent;
  }

  /* Ghost = açık zemin + koyu yazı (Kayıt Ol) */
  .mobile-nav-cta .btn-ghost-bw{
    background: rgba(255, 255, 255, 0.95);
    color: #0b1a33 !important;
    border: 1.5px solid rgba(59, 158, 255, 0.65);
  }
  .mobile-nav-cta .btn-ghost-bw:hover,
  .mobile-nav-cta .btn-ghost-bw:active,
  .mobile-nav-cta .btn-ghost-bw:focus-visible,
  .mobile-nav-cta .btn-ghost-bw.is-pressed{
    background: #ffffff;
    color: #0b1a33 !important;
    border-color: #3b9eff;
    box-shadow: 0 0 0 3px rgba(59, 158, 255, 0.35);
    transform: scale(0.97);
  }

  /* Solid = mavi zemin + beyaz yazı (İlanlar) */
  .mobile-nav-cta .btn-solid-bw{
    background: var(--ab-blue);
    color: #fff !important;
    border: 1.5px solid rgba(59, 158, 255, 0.9);
  }
  .mobile-nav-cta .btn-solid-bw:hover,
  .mobile-nav-cta .btn-solid-bw:active,
  .mobile-nav-cta .btn-solid-bw:focus-visible,
  .mobile-nav-cta .btn-solid-bw.is-pressed{
    background: var(--ab-blue-hover, #2f82d6);
    color: #fff !important;
    border-color: #7ec4ff;
    box-shadow: 0 0 0 3px rgba(59, 158, 255, 0.4);
    transform: scale(0.97);
    filter: brightness(1.08);
  }

  .main-nav > ul{
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    white-space: normal;
    margin: 0;
    padding: 8px 0;
    list-style: none;
  }
  .main-nav li{
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
  }
  .main-nav li:last-child{
    border-bottom: 0;
  }

  .main-nav > ul > li > a{
    display: block;
    padding: 14px 18px;
    color: rgba(255, 255, 255, 0.94) !important;
    font-weight: 600;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent;
    min-height: 0;
    /* Mobil dokunus geri bildirimi icin gecis */
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
    -webkit-tap-highlight-color: rgba(59, 158, 255, 0.28);
  }
  /* Sadece menü linkleri — .mobile-nav-cta .btn dokunulmaz */
  .main-nav > ul > li > a:hover{
    color: #ffffff !important;
    background: rgba(59, 158, 255, 0.16) !important;
  }
  /* Mobil: tiklanan / odaklanan satir net belli olsun */
  .main-nav > ul > li > a:active,
  .main-nav > ul > li > a:focus,
  .main-nav > ul > li > a:focus-visible,
  .main-nav > ul > li > a.is-pressed{
    color: #ffffff !important;
    background: rgba(59, 158, 255, 0.32) !important;
    box-shadow: inset 3px 0 0 #3b9eff;
    outline: none;
  }
  /* Acik alt menunun ust satiri */
  .main-nav .has-submenu.is-open > a{
    color: #ffffff !important;
    background: rgba(59, 158, 255, 0.22) !important;
    box-shadow: inset 3px 0 0 #3b9eff;
  }

  /* Mobilde submenu statik, JS ile display:block yapılır */
  .submenu{
    position: static !important;
    left: auto !important;
    transform: none !important;
    min-width: 0;
    width: 100%;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    display: none;
    padding: 0;
    visibility: visible !important;
    opacity: 1 !important;
    transition: none !important;
    background: rgba(0, 0, 0, 0.22) !important;
  }
  .submenu::before{
    display: none;
  }
  .has-submenu.is-open .submenu{
    display: block;
  }
  .submenu a{
    display: block;
    justify-content: flex-start;
    align-items: stretch;
    padding: 10px 22px 10px 28px;
    color: rgba(210, 224, 255, 0.92) !important;
    font-weight: 500 !important;
  }
  .submenu a:active,
  .submenu a:focus,
  .submenu a:focus-visible,
  .submenu a.is-pressed{
    color: #ffffff !important;
    background: rgba(59, 158, 255, 0.28) !important;
    box-shadow: inset 3px 0 0 #3b9eff;
    outline: none;
  }
}

/* 1140px — blog slider */
@media (max-width: 1140px) {
  .home-blog-slide{
    flex-basis: calc((100% - 18px) / 2);
    min-width: 280px;
  }
}

/* 1100px — blog grid / sk / ilan */
@media (max-width: 1100px) {
  .home-blog-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ilan-grid{
    grid-template-columns: repeat(3, 1fr);
  }
  .lp-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 1000px — sk kartlar */
@media (max-width: 1000px) {
  .sk-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .sk-card{
    height: 240px;
  }
}

/* 960px — genel grid kırılımları */
@media (max-width: 960px) {
  .advantage-flip-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-avantajlar .advantage-flip-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .industry-selector{
    grid-template-columns: 1fr;
  }
  .industry-chip-wrap{
    overflow-y: visible;
    padding-right: 0;
  }
  .glass-tiles-wrap{
    overflow-y: visible;
    padding-right: 0;
  }
  .flow-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .how-timeline{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .how-timeline::before{
    display: none;
  }
  .home-blog-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-layout{
    grid-template-columns: 1fr;
  }
  

  .mv-grid{
    grid-template-columns: 1fr;
  }
  .values-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .approach-grid{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .barter-def-grid{
    grid-template-columns: 1fr;
  }
  .barter-steps-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .barter-who-grid{
    grid-template-columns: 1fr;
  }
  .contact-cards-strip{
    grid-template-columns: 1fr;
  }
  .contact-main-grid{
    grid-template-columns: 1fr;
  }
  .goals-grid{
    grid-template-columns: 1fr;
  }
  .cta-banner-inner{
    flex-direction: column;
    text-align: center;
  }
  .cta-banner-btns{
    justify-content: center;
  }
  .ref-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* 980px — mermer vitrini */
@media (max-width: 980px) {
  .lp-mermer-head{
    align-items: flex-start;
    flex-direction: column;
  }
  .lp-mermer-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 880px — mobil header sıkılaştır */
@media (max-width: 880px) {
  :root{
    --header-main-height: 64px;
  }
  .header-inner{
    padding: 0 16px;
  }
  .logo-name{
    font-size: 0.88rem;
  }
  .logo-sub{
    font-size: 0.58rem;
  }
  .header-left{
    margin-right: 0;
  }
  /* Dil seçici hamburger yanında kompakt kalsın */
  .header-right .lang-btn{
    padding: 4px 6px;
    font-size: 0.7rem;
  }
  .advantage-flip-grid{
    grid-template-columns: 1fr;
  }
  .industry-chip-wrap{
    gap: 8px;
  }
  .glass-tiles-wrap{
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .stats-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .stat-item + .stat-item{
    border-left: 0;
  }
  .post-grid,
.home-blog-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-top{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
  }
  .footer-col p.contact-line{
    text-align: left;
  }
  .footer-col p a.contact-link{
    align-items: center;
  }
  .abt-fab-group{
    left: 12px;
    bottom: 14px;
  }
  body.abt-cookie-open .aib-chat-toggle{
    bottom: 152px !important;
  }
  body.abt-cookie-open .aib-chat-panel{
    bottom: 230px !important;
    max-height: calc(100vh - 240px);
  }
  #abt-cookie-bar{
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .abt-cookie-inner{
    flex-direction: column;
    align-items: flex-start;
  }
  .abt-cookie-btns{
    width: 100%;
  }
  .abt-cookie-btn{
    flex: 1;
    text-align: center;
  }
  .membership-grid{
    grid-template-columns: 1fr;
  }
  .lp-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

/* 860px — üyelik grid */
@media (max-width: 860px) {
  .membership-grid{
    grid-template-columns: 1fr;
  }
}

/* 768px — ilan grid / franchise */
@media (max-width: 768px) {
  .ilan-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .footer-col a::before{
    width: 0px;
  }
  .footer-col a:hover::before{
    width: 100%;
  }
  .franchise-packages{
    grid-template-columns: 1fr;
  }
}

/* 720px — blog slider */
@media (max-width: 720px) {
  .home-blog-grid{
    grid-template-columns: 1fr;
  }
}

/* 640px — geniş mobil */
@media (max-width: 640px) {
  body{
    overflow-x: hidden;
  }
  .container{
    width: calc(100% - 20px);
  }
  .section:not(.sectors-v2){
    padding: 68px 0;
  }
  .section:not(.hero):not(.stats-strip):not(.sectors-v2){
    margin-bottom: 16px;
  }
  .header-inner{
    padding: 0 10px;
  }
  .brand img,
  .brand-logo{
    width: auto;
    height: 36px;
    max-width: 160px;
    border-radius: 0;
  }
  .logo-text{
    min-width: 0;
  }
  .logo-name{
    font-size: 0.8rem;
  }
  .logo-sub{
    font-size: 0.52rem;
    letter-spacing: 0.08em;
  }
  .btn-wide{
    min-width: 100%;
  }
  .flow-grid,
.how-timeline{
    grid-template-columns: 1fr;
  }
  .home-blog-grid{
    grid-template-columns: 1fr;
  }
  .footer-top{
    grid-template-columns: 1fr;
  }
  .glass-tiles-wrap{
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-tile{
    height: 80px;
  }
  .blog-featured-card{
    grid-template-columns: 1fr;
  }
  .blog-featured-media,
.blog-featured-media img{
    min-height: 220px;
  }
  .single-blog-card{
    padding: 18px;
  }
  .footer-bottom{
    justify-content: center;
    text-align: center;
    gap: 8px;
  }
  .footer-sig{
    font-size: 0.62rem;
    margin-left: 0;
  }
  .section-blog .container{
    width: 98%;
  }
  .home-blog-slider-wrap{
    grid-template-columns: 24px 1fr 24px;
    gap: 3px;
    margin-inline: -4px;
  }
  .home-blog-nav{
    width: 24px;
    height: 24px;
    border-radius: 8px;
  }
  .home-blog-slide{
    flex-basis: 90%;
    min-width: 240px;
  }
  .values-grid{
    grid-template-columns: 1fr;
  }
  .barter-steps-grid{
    grid-template-columns: 1fr;
  }
  .page-hero-stats{
    gap: 20px;
  }
  .contact-form-card{
    padding: 28px 20px;
  }
  .ref-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pt-step{
    grid-template-columns: 44px 20px 1fr;
    gap: 0 16px;
  }
  .pt-icon{
    width: 44px;
    height: 44px;
  }
  .pt-icon svg{
    width: 20px;
    height: 20px;
  }
  .pt-body{
    padding: 18px 16px;
  }
}

/* 600px — sk kartlar */
@media (max-width: 600px) {
  .sk-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .sk-card{
    height: 220px;
  }
  .sk-cta{
    opacity: 1;
    transform: none;
  }
}

/* 560px — mermer / chip */
@media (max-width: 560px) {
  .lp-category-tabs{
    gap: 8px;
    padding: 8px;
  }
  .lp-cat-chip{
    width: 100%;
    min-height: 44px;
    text-align: center;
  }
  .lp-mermer-grid{
    grid-template-columns: 1fr;
  }
}

/* 520px — küçük mobil */
@media (max-width: 520px) {
  .container{
    width: calc(100% - 16px);
  }
  .header-inner{
    min-height: 58px;
  }
  .main-nav{
    inset: 59px 0 auto 0;
    max-height: calc(100vh - 59px);
  }
  .lp-topbar{
    padding: 14px;
    border-radius: 14px;
    gap: 10px;
  }
  .lp-topbar-left{
    gap: 10px;
  }
  .lp-topbar h2{
    font-size: 1rem;
  }
  .lp-topbar-sub{
    font-size: 0.82rem;
  }
  .lp-count-badge{
    font-size: 0.74rem;
    padding: 6px 10px;
  }
  .lp-logout-btn{
    padding: 8px 10px;
    font-size: 0.78rem;
  }
  .lp-card-body{
    padding: 12px 12px 14px;
  }
  .lp-card-title{
    font-size: 0.95rem;
  }
  .lp-card-desc{
    font-size: 0.84rem;
  }
  .lp-modal-box{
    border-radius: 16px;
  }
  .lp-modal-body{
    padding: 16px 14px 20px;
  }
  .lp-modal-body h2{
    font-size: 1.1rem;
  }
  .lp-grid{
    grid-template-columns: 1fr;
  }
  .lp-filters{
    flex-direction: column;
    align-items: stretch;
  }
  .lp-carousel{
    aspect-ratio: 4/3;
  }
  .ilan-grid{
    grid-template-columns: 1fr;
  }
  
  .ilan-filter-group{
    flex-direction: column;
  }
  .aib-chat-panel{
    border-radius: 14px !important;
  }
}

/* 380px — en küçük */
@media (max-width: 380px) {
  .logo-name{
    font-size: 0.74rem;
  }
  .logo-sub{
    font-size: 0.48rem;
    letter-spacing: 0.06em;
  }
  .main-nav > ul > li > a{
    padding: 11px 14px;
    font-size: 0.92rem;
  }
  .btn{
    padding: 10px 14px;
  }
}

/* =============================================================================
     20. RESPONSIVE — MOBİL ÖNCE (min-width breakpoints)
     ============================================================================= */

/* Tüm ekranlar — temel mobile-first sıfırlama */
.grid,
.flow-grid,
.how-timeline,
.post-grid,
.home-blog-grid,
.stats-grid,
.sk-grid,
.lp-grid,
.blog-layout,
.industry-selector,
.advantage-flip-grid,
.footer-top{
  grid-template-columns: 1fr;
}

.section-head,
.single-blog-shell{
  max-width: 70ch;
  margin-inline: auto;
}
/* Touch target (a11y): gercek CTA/form butonlari.
   Pagination/dot gibi dekoratif butonlari :not ile muaf tut —
   yoksa 8px noktalar 44px kutu olur. */
.main-nav a,
.submenu a,
.btn,
.form-grid input,
.form-grid textarea,
.form-grid select,
.form-grid button,
button:not(.abt-ilan-detail-dot):not(.lp-cdot):not(.lang-current),
input[type="submit"]{
  min-height: 44px;
}
.lp-topbar,
.lp-card,
.card,
.post-card{
  border-radius: 0.875rem;
}
.blog-featured-card,
.glass-focus-card{
  width: min(100%, 100%);
}

/* 480px+ */
@media (min-width: 30rem) {
  .container{
    padding-inline: 1rem;
  }
  .lp-grid,
.post-grid,
.home-blog-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 768px+ */
@media (min-width: 48rem) {
  .container{
    padding-inline: 1.125rem;
  }
  .section:not(.sectors-v2){
    padding-block: 4.75rem;
  }
  .stats-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sk-grid,
.lp-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-top,
.flow-grid,
.how-timeline,
.advantage-flip-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .industry-selector,
.blog-layout,
}

/* 1024px+ */
@media (min-width: 64rem) {
  .container{
    padding-inline: 1.25rem;
  }
  .section:not(.sectors-v2){
    padding-block: 5.25rem;
  }
  .lp-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .sk-grid,
.home-blog-grid,
.post-grid,
  .stats-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .flow-grid,
.how-timeline{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .industry-selector,
.blog-layout{
    grid-template-columns: 1.2fr 0.9fr;
  }
  .footer-top{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* 1280px+ */
@media (min-width: 80rem) {
  .container{
    max-width: 82.5rem;
  }
  .lp-grid,
.sk-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Premium mobil redesign — 1024px altı */
@media (max-width: 63.99rem) {
  :root{
    --mobile-gutter: clamp(16px, 4.2vw, 24px);
    --mobile-block-gap: clamp(18px, 3.4vw, 28px);
    --mobile-card-radius: 18px;
    --mobile-card-shadow: 0 14px 34px rgba(7, 22, 51, 0.14);
    --mobile-card-border: rgba(18, 53, 110, 0.14);
  }

  body{
    background: linear-gradient(180deg, #eef4fc 0%, #e8f1fb 100%);
  }
  .container{
    width: 100%;
    padding-inline: var(--mobile-gutter);
  }
  .section:not(.sectors-v2){
    padding-block: clamp(72px, 9vw, 96px);
  }
  .section:not(.hero):not(.stats-strip):not(.sectors-v2){
    margin-bottom: 22px;
  }

  h1{
    font-size: clamp(1.9rem, 7vw, 2.8rem);
    line-height: 1.12;
    letter-spacing: -0.018em;
  }
  h2{
    font-size: clamp(1.55rem, 5.6vw, 2.1rem);
    line-height: 1.18;
    letter-spacing: -0.014em;
  }
  h3{
    font-size: clamp(1.08rem, 3.8vw, 1.3rem);
    line-height: 1.3;
  }
  p,
li,
input,
textarea,
button,
label{
    font-size: clamp(0.97rem, 2.9vw, 1.02rem);
    line-height: 1.68;
  }

  .section-head{
    max-width: 64ch;
    margin-bottom: clamp(24px, 4.4vw, 36px);
  }
  .section-head p,
.text-muted{
    line-height: 1.72;
  }

  .site-header-wrap{
    min-height: 66px;
  }
  #headerMount{
    min-height: 66px;
  }
  .site-header{
    background: rgba(255, 255, 255, 0.4);
    border-bottom-color: rgba(0, 0, 0, 0.06);
    box-shadow: none;
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
  }
  .header-inner{
    min-height: 66px;
    padding-inline: var(--mobile-gutter);
    gap: 10px;
  }
  .header-left{
    margin-right: 0;
  }
  .brand{
    gap: 10px;
  }
  .brand img,
  .brand-logo{
    width: auto;
    height: 40px;
    max-width: 180px;
    border-radius: 0;
  }
  .logo-text{
    max-width: 180px;
  }
  .logo-name{
    font-size: 0.9rem;
    letter-spacing: 0.03em;
  }
  .logo-sub{
    font-size: 0.56rem;
    letter-spacing: 0.11em;
    opacity: 0.72;
  }
  .hamburger,
.nav-toggle{
    width: 42px;
    height: 42px;
    border-radius: 12px;
    /* Navy header uzerinde gorunur kalsin — koyu border kullanma */
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(5, 12, 28, 0.28);
  }
  .main-nav{
    inset: 68px var(--mobile-gutter) auto var(--mobile-gutter) !important;
    border: 1px solid rgba(59, 158, 255, 0.28);
    border-radius: 16px;
    box-shadow: 0 24px 52px rgba(5, 12, 28, 0.42);
    background: linear-gradient(
      180deg,
      rgba(8, 18, 40, 0.97),
      rgba(5, 12, 28, 0.98)
    );
    max-height: calc(100dvh - 88px);
    backdrop-filter: blur(18px);
  }
  /* CTA butonlarını beyaza boyama — sadece ul menü linkleri */
  .main-nav > ul > li > a{
    padding: 13px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.94) !important;
  }
  .submenu a{
    padding-left: 24px;
    font-size: 0.9rem;
    color: rgba(210, 224, 255, 0.92) !important;
  }

  .card,
.post-card,
.home-blog-card,
.how-step-card,
.value-card,
.lp-card,
.blog-featured-card,
.single-blog-card{
    border-radius: var(--mobile-card-radius);
    box-shadow: var(--mobile-card-shadow);
    border-color: var(--mobile-card-border);
  }
  .card,
.post-card-body,
.home-blog-body,
.how-step-card,
.value-card,
.single-blog-card{
    padding: clamp(18px, 4.2vw, 24px);
  }

  .advantage-flip{
    min-height: 244px;
  }
  .advantage-flip-inner,
.advantage-face{
    min-height: 244px;
    border-radius: var(--mobile-card-radius);
  }
  .advantage-face{
    padding: clamp(18px, 4vw, 24px);
  }
  .flow-grid,
.how-timeline,
.blog-layout,
.home-blog-grid,
.post-grid,
.sk-grid,
.footer-top,
.industry-selector{
    gap: var(--mobile-block-gap);
  }
  .how-step-card{
    min-height: 212px;
  }
  .flow-index{
    width: 42px;
    height: 42px;
    border-radius: 11px;
    margin-bottom: 10px;
  }

  .stats-strip{
    padding-block: clamp(36px, 6vw, 50px);
  }
  .stats-grid{
    gap: 12px;
  }
  .stat-item{
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.24);
    padding: 14px 10px;
  }
  .stat-item + .stat-item{
    border-left: 0;
  }
  .stat-item strong{
    font-size: clamp(1.45rem, 5.1vw, 2rem);
  }

  .glass-tiles-wrap{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .industry-tile{
    min-height: 90px;
    height: auto;
    border-radius: 14px;
  }
  .glass-focus-card{
    min-height: 372px;
    height: 372px;
    border-radius: 18px;
  }
  .focus-card-content{
    padding: 22px 20px;
  }
  .home-blog-card img,
.post-card img{
    height: 210px;
  }

  .site-footer{
    margin-top: clamp(64px, 10vw, 96px);
  }
  .footer-top{
    padding: clamp(60px, 10vw, 88px) 0 clamp(30px, 6vw, 48px);
  }
  .footer-col h4{
    margin-bottom: 12px;
    padding-left: 0;
    margin-left: 0;
  }
  .footer-col a{
    margin-bottom: 10px;
  }
  .footer-bottom{
    padding: 18px 0 22px;
    font-size: 0.88rem;
  }

  .btn,
.btn-primary,
.btn-navy,
.btn-outline,
.btn-translucent,
.btn-ghost,
.btn-outline-white{
    min-height: 46px;
    padding: 12px 18px;
    font-size: 0.92rem;
    font-weight: 680;
  }
  .form-grid input,
.form-grid select,
.form-grid textarea,
.ilan-search-wrap input,
.ilan-filter-group select{
    min-height: 46px;
    border-radius: 12px;
    font-size: 0.95rem;
  }
}

/* 640px–1024px arası tablet */
@media (min-width: 40rem) and (max-width: 63.99rem) {
  .footer-top,
.home-blog-grid,
.post-grid,
.flow-grid,
.sk-grid,
.advantage-flip-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-featured-card{
    grid-template-columns: 1fr;
  }
  .blog-featured-media,
.blog-featured-media img{
    min-height: 260px;
  }
}

/* 768px altı */
@media (max-width: 47.99rem) {
  .section:not(.sectors-v2){
    padding-block: clamp(64px, 10vw, 82px);
  }
  .blog-featured-card,
.single-blog-card,
.lp-modal-box{
    border-radius: 16px;
  }
  .blog-featured-body,
.single-blog-card,
.lp-modal-body{
    padding: 18px;
  }
  .home-blog-track{
    gap: 12px;
  }
  .home-blog-slide{
    min-width: 86%;
    flex-basis: 86%;
  }
  .glass-focus-card{
    min-height: 340px;
    height: 340px;
  }

  .advantage-flip-grid,
.home-blog-grid,
.post-grid,
.sk-grid,
.lp-grid,
.ilan-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  /* Tek sayıda kart varsa son kalanı ortala */
  .advantage-flip-grid > :last-child:nth-child(odd),
.home-blog-grid > :last-child:nth-child(odd),
.post-grid > :last-child:nth-child(odd),
.sk-grid > :last-child:nth-child(odd),
.lp-grid > :last-child:nth-child(odd),
.ilan-grid > :last-child:nth-child(odd){
    grid-column: 1 / -1;
    width: calc(50% - 6px);
    justify-self: center;
  }

  .stats-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .advantage-face,
.how-step-card,
.post-card-body,
.home-blog-body,
.lp-card-body,
.ilan-card-body{
    padding: 14px;
  }
  .footer-top{
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom{
    justify-content: center;
    text-align: center;
    gap: 8px;
  }
}

/* 480px altı */
@media (max-width: 29.99rem) {
  .header-inner{
    min-height: 62px;
  }
  .brand img,
  .brand-logo{
    width: auto;
    height: 34px;
    max-width: 140px;
  }
  .logo-name{
    font-size: 0.84rem;
  }
  .logo-sub{
    font-size: 0.5rem;
  }
  .main-nav{
    inset: 64px 12px auto 12px !important;
  }
  .section-head h2{
    font-size: clamp(1.28rem, 6vw, 1.64rem);
  }

  .advantage-flip-grid,
.home-blog-grid,
.post-grid,
.sk-grid,
.lp-grid,
.ilan-grid,
.stats-grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .card,
.post-card-body,
.home-blog-body,
.how-step-card,
.value-card,
.lp-card,
.single-blog-card{
    padding: 16px;
    border-radius: 16px;
  }
  .btn,
.btn-primary,
.btn-navy,
.btn-outline,
.btn-translucent,
.btn-ghost,
.btn-outline-white{
    min-height: 44px;
    padding: 11px 14px;
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   BÖLÜM: GELİŞMİŞ FİLTRE PANELİ VE HİZALAMA MİMARİSİ 
   ========================================================================== */

/* Sayfa düzeni kaymalarını önlemek için eski katalog alanı gizlendi */


/* Üst arama çubuğu ve filtre tetikleyici butonu için esnek taşıyıcı */
.ust-arama-filtre-satiri{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 30px auto;
  display: flex;
  gap: 20px;
  align-items: center;
  box-sizing: border-box;
  background: transparent;
  padding: 0;
}

/* Neumorphic Arama Girişi */
body #kelimeAramaFiltre.filtre-girdi{
  background: #f1f5f9;
  background-color: #f1f5f9;
  border: none;
  border-radius: 50px;
  box-shadow: inset 4px 4px 8px #cbd5e1, inset -4px -4px 8px #ffffff;
  padding: 14px 20px 14px 60px;
  font-size: 15px;
  color: #334155;
  font-family: sans-serif;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

body #kelimeAramaFiltre.filtre-girdi:focus{
  background-color: #e2e8f0;
  box-shadow: inset 2px 2px 5px #94a3b8, inset -2px -2px 5px #ffffff;
  outline: none;
}

/* Sayfa numaralandırma ortalanması */
.lp-pagination, .pagination, [class*="pagination"]{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  box-sizing: border-box;
}

/* ==========================================================================
   PREMİUM CAM (GLASSMORPHISM) SAĞ FİLTRE PANELİ
   ========================================================================== */

body .abt-ccv3-filters{
  position: fixed;
  top: 140px;
  right: -380px;
  width: 350px;
  height: auto;
  max-height: 85vh;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(10, 29, 70, 0.25) 100%);
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(35px) saturate(160%) contrast(95%);
  -webkit-backdrop-filter: blur(35px) saturate(160%) contrast(95%);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 50px rgba(10, 29, 70, 0.15);
  z-index: 999999;
  padding: 35px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-sizing: border-box;
  transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

body .abt-ccv3-filters.panel-open{
  right: 30px;
}

.ozel-select-kutusu{
  position: relative;
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #071126;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.25s ease;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23071126' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
}

.ozel-select-kutusu.is-open{
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--ab-blue);
  box-shadow: 0 0 0 4px rgba(0, 98, 255, 0.15);
}

.ozel-select-kutusu .ozel-dropdown-liste{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(7, 17, 38, 0.15);
  overflow: hidden;
  z-index: 1000;
  display: none;
}

body .ozel-select-kutusu.is-open .ozel-dropdown-liste{
  display: block;
}

body .ozel-select-kutusu .ozel-dropdown-liste{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 16px;
  border: 1px solid rgba(7, 17, 38, 0.08);
  box-shadow: 0 15px 35px rgba(7, 17, 38, 0.12);
  overflow: hidden;
  z-index: 1000;
}

body .ozel-select-kutusu .ozel-dropdown-liste a{
  display: block;
  padding: 10px 16px;
  margin: 6px 8px;
  border-radius: 12px;
  color: #071126;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.2s ease-in-out;
}

body .ozel-select-kutusu .ozel-dropdown-liste a:hover{
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px) saturate(150%);
  -webkit-backdrop-filter: blur(25px) saturate(150%);
  border-color: rgba(0, 98, 255, 0.55);
  color: var(--ab-blue);
  padding-left: 20px;
  box-shadow: 0 4px 12px rgba(10, 29, 70, 0.02);
}

body .abt-ccv3-filters #filtreAraBtn{
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(10, 29, 70, 0.2) 100%);
  color: #0A1D46;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--btn-radius);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(10, 29, 70, 0.1);
  transition: all 0.3s ease-in-out;
}

body .abt-ccv3-filters #filtreAraBtn:hover{
  background: var(--ab-navy);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 12, 28, 0.35);
}

body .abt-ccv3-filters #filtreTemizleBtn{
  background: transparent;
  color: var(--ab-blue);
  border: none;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  padding: 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s ease;
}

body .abt-ccv3-filters #filtreTemizleBtn:hover{
  opacity: 0.8;
  color: #b39149;
}

.filter-overlay{
  position: fixed;
  inset: 0;
  background: rgba(7, 17, 38, 0.4);
  z-index: 999998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.filter-overlay.active{
  opacity: 1;
  visibility: visible;
}

.abt-ccv3-filters .filter-close-btn{
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 20px;
  color: #64748b;
  cursor: pointer;
  z-index: 100000;
  transition: transform 0.2s ease;
}

.abt-ccv3-filters .filter-close-btn:hover{
  transform: scale(1.1) rotate(90deg);
}

body .filtre-tetikleyici-btn{
  border-radius: var(--btn-radius);
  padding: 11px 24px;
  height: 48px;
  box-sizing: border-box;
  font-size: 15px;
  font-weight: 600;
  background-color: #0A1D46;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 12px rgba(10, 29, 70, 0.1);
}

body .filtre-tetikleyici-btn:hover{
  background-color: var(--ab-blue);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 98, 255, 0.4);
}

#filtreTemizleBtn:hover{
  background: #b59247 !important;
}

/* =======================================
  İLAN DETAY SAYFASI (single-abt_listing.php)
  - üstte resim
  - altta açıklama + özellikler
  - favorilere ekle butonu
  ========================================
*/

/*
  Site genelinde .section = 88px padding.
  İlan detayda üst boşluğu sıkıştırıyoruz.
*/
body.single-abt_listing .page-main > .section{
  padding-top: 24px;
  padding-bottom: 64px;
  margin-bottom: 0;
}

.abt-ilan-detail-fav-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(16, 35, 71, 0.18);
  background: #ffffff;
  color: #102347;
  border-radius: var(--btn-radius);
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.abt-ilan-detail-fav-btn:hover{
  border-color: var(--ab-blue);
  color: var(--ab-blue);
}

.abt-ilan-detail-fav-btn.is-active{
  background: #102347;
  border-color: #102347;
  color: #fff;
}

.abt-ilan-detail-fav-btn i{
  width: 16px;
  height: 16px;
}

.abt-ilan-detail-heading h1{
  margin: 0 0 28px;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  color: #102347;
  line-height: 1.25;
}

/* Detay → panel geri linki */
.abt-ilan-detail-back{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e3a6e;
  text-decoration: none;
}
.abt-ilan-detail-back:hover{
  color: #0b1a33;
  text-decoration: underline;
}

/* galeri sahnesi — coverflow + buyuk gorseller */
.abt-ilan-detail-gallery-wrap{
  margin-bottom: 40px;
}

.abt-ilan-detail-gallery-stage{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Coverflow: yan kartlar kesilmesin diye overflow visible */
  min-height: 560px;
  padding: 24px 72px;
  overflow: visible;
}

.abt-ilan-detail-gallery-track{
  position: relative;
  /* Yan peek'ler icin genis sahne */
  width: min(1200px, 100%);
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.abt-ilan-detail-gallery-card{
  /* 3 kart ayni merkezde; yanlar ortanin arkasinda peek yapsin */
  position: absolute;
  left: 50%;
  top: 50%;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(16, 35, 71, 0.16);
  transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
}

.abt-ilan-detail-gallery-card img{
  width: 100%;
  height: 100%;
  /* Kirpma yok — tum gorsel gorunsun */
  object-fit: contain;
  display: block;
  cursor: zoom-in;
  background: #ffffff;
  opacity: 1;
  transition: opacity 0.35s ease;
}

.abt-ilan-detail-gallery-card img.is-fading{
  opacity: 0;
}

/* ORTA: onde; biraz dar — yanlar gorunsun diye */
.abt-ilan-detail-gallery-card.is-center{
  width: min(620px, 58%);
  height: 500px;
  z-index: 5;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  filter: none;
}

/* YANLAR: arkada ama net gorunsun */
.abt-ilan-detail-gallery-card.is-side{
  width: min(460px, 46%);
  height: 420px;
  z-index: 2;
  opacity: 0.78;
  filter: none;
}

/*
  left:50% + translate(-50%) = merkez.
  Yanlari px ile disari itiyoruz ki ortanin altinda kaybolmasinlar.
*/
.abt-ilan-detail-gallery-card.is-left{
  transform: translate(calc(-50% - 260px), -50%) scale(0.9);
}

.abt-ilan-detail-gallery-card.is-right{
  transform: translate(calc(-50% + 260px), -50%) scale(0.9);
}

.abt-ilan-detail-gallery-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* Kartlardan uste — tiklanabilir kalsin */
  z-index: 10;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 35, 71, 0.16);
  border-radius: 999px;
  background: #fff;
  color: #102347;
  cursor: pointer;
  font-size: 1.1rem;
}

.abt-ilan-detail-gallery-prev{ left: 8px; }
.abt-ilan-detail-gallery-next{ right: 8px; }

/* Noktalar + favori: ayni satir (dotlar ortada, favori sagda) */
.abt-ilan-detail-gallery-footer{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.abt-ilan-detail-gallery-dots{
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  max-width: 360px;
  margin: 0;
}

.abt-ilan-detail-gallery-footer .abt-ilan-detail-fav-btn{
  grid-column: 3;
  justify-self: end;
}

/* Noktalar: yuvarlak, flat, sade.
   Global 44px min-height artik :not(.abt-ilan-detail-dot) ile muaf —
   !important gerekmez. */
.abt-ilan-detail-dot{
  display: inline-block;
  box-sizing: border-box;
  width: 8px !important;
  height: 8px !important;
  min-width: 8px !important;
  min-height: 8px !important;
  padding: 0 !important;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 35, 71, 0.22);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  line-height: 0;
  font-size: 0;
  flex: 0 0 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.abt-ilan-detail-dot:hover{
  background: rgba(16, 35, 71, 0.45);
  transform: none;
}

.abt-ilan-detail-dot.is-active{
  background: #102347;
  transform: scale(1.35);
}

/* Detay lightbox: panel lightbox'tan daha ustte (z-index yeter) */
.abt-ilan-detail-lightbox.lp-lightbox{
  position: fixed;
  inset: 0;
  z-index: 99999;
  width: 100vw;
  height: 100dvh;
  max-height: 100dvh;
}

.abt-ilan-detail-lightbox.lp-lightbox img{
  max-width: min(94vw, 1400px);
  max-height: 88dvh;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.abt-ilan-detail-lightbox.lp-lightbox img.is-fading{
  opacity: 0;
}

/* Alt icerik — tek kart + sekmeler (iletisim Mesaj/CV gibi) */
.abt-ilan-detail-card{
  background: #fff;
  border: 1px solid rgba(16, 35, 71, 0.08);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(16, 35, 71, 0.05);
}

.abt-ilan-detail-tabs-card{
  max-width: 920px;
  margin-inline: auto;
}

.abt-ilan-detail-tabs{
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.abt-ilan-detail-tab{
  flex: 1;
  border: 1px solid rgba(7, 22, 51, 0.14);
  background: #f4f7fb;
  color: #102347;
  border-radius: var(--btn-radius, 8px);
  padding: 12px 14px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.abt-ilan-detail-tab:hover{
  border-color: rgba(7, 22, 51, 0.28);
}

.abt-ilan-detail-tab:active{
  transform: scale(0.98);
}

.abt-ilan-detail-tab.is-active{
  background: var(--navy-950, #0a1d46);
  color: #fff;
  border-color: var(--navy-950, #0a1d46);
}

.abt-ilan-detail-tab-panel{
  display: none;
}

.abt-ilan-detail-tab-panel.is-active{
  display: block;
}
.abt-ilan-detail-description p{
  margin: 0 0 10px;
  color: #4b5563;
  line-height: 1.7;
}
.abt-ilan-detail-attr-row{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(16, 35, 71, 0.08);
}
.abt-ilan-detail-attr-row:last-child{
  border-bottom: 0;
}
.abt-ilan-detail-attr-label{
  color: #64748b;
  font-weight: 600;
}
.abt-ilan-detail-attr-value{
  color: #102347;
  text-align: right;
  font-weight: 600;
}

/* Fotosuz ilan: yan peek + ok gizle, orta placeholder kalsin */
.abt-ilan-detail-gallery-wrap.is-no-image .abt-ilan-detail-gallery-card.is-side{
  display: none;
}
.abt-ilan-detail-gallery-wrap.is-no-image .abt-ilan-detail-gallery-card.is-center{
  width: min(92%, 520px);
  box-shadow: none;
}
.abt-ilan-detail-gallery-wrap.is-no-image .abt-ilan-detail-gallery-card.is-center img{
  object-fit: contain;
  background: #0a1d46;
}

@media (max-width: 900px) {
  .abt-ilan-detail-gallery-stage{
    min-height: 360px;
    padding: 12px 48px;
  }

  .abt-ilan-detail-gallery-track{
    height: 340px;
  }

  .abt-ilan-detail-gallery-card.is-center{
    width: min(92%, 420px);
    height: 340px;
  }

  /* mobilde yan kartlari gizle — sadece orta buyuk kalsin */
  .abt-ilan-detail-gallery-card.is-side{
    display: none;
  }

  /* mobilde: once dotlar, altinda favori */
  .abt-ilan-detail-gallery-footer{
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
  }

  .abt-ilan-detail-gallery-dots,
.abt-ilan-detail-gallery-footer .abt-ilan-detail-fav-btn{
    grid-column: 1;
    justify-self: center;
  }
}
/* =============================================================================
   Barter Nedir — mockup (8 düğüm halka + 6 kart)
   ============================================================================= */

.bn-section{
  padding: 0px 0 40px;
  background: #f3f5f9;
  overflow: visible;
}

.bn-wrap{
  max-width: 1120px;
  overflow: visible;
}

.bn-stage{
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 1000 / 560;
  margin: 0 auto;
  overflow: visible;
}

.bn-net{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.bn-hub{
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #050c1c;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  text-decoration: none; /* a için */ 
  cursor: pointer;
  border: 3px solid #6aa8ff;
  box-shadow:
    0 0 0 10px rgba(106, 168, 255, 0.12),
    0 0 36px rgba(106, 168, 255, 0.55),
    0 18px 40px rgba(5, 12, 28, 0.28);
    transition: 
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.bn-hub-label{
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.06em;
}

/* Hub hover → daire + SVG ağ neon (sadece gerçek hover’lı cihazlarda) */
@media (hover: hover) and (pointer: fine){
  .bn-hub:hover,
  .bn-hub:focus-visible{
    border-color: var(--btn-neon-border);
    box-shadow: var(--btn-neon-shadow);
    transform: translate(-50%, -50%) scale(1.04);
    outline: none;
  }

  .bn-stage:has(.bn-hub:hover) .bn-net,
  .bn-stage:has(.bn-hub:focus-visible) .bn-net{
    filter: drop-shadow(0 0 8px rgba(59, 158, 255, 0.85));
  }

  .bn-stage:has(.bn-hub:hover) .bn-net [stroke],
  .bn-stage:has(.bn-hub:focus-visible) .bn-net [stroke]{
    stroke: var(--btn-neon-border);
  }

  .bn-stage:has(.bn-hub:hover) .bn-net [fill]:not([fill="none"]),
  .bn-stage:has(.bn-hub:focus-visible) .bn-net [fill]:not([fill="none"]){
    fill: var(--btn-neon-border);
  }
}

.bn-net circle,
.bn-net line,
.bn-net polyline{
  transition:
    stroke 0.24s ease,
    fill 0.24s ease,
    filter 0.24s ease;
}

.bn-card{
  position: absolute;
  z-index: 2;
  width: 27%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15, 35, 70, 0.09);
  box-sizing: border-box;
}

/* SVG uç Y: 100 / 280 / 460 → %17.86 / %50 / %82.14 */
.bn-card--1{ top: 17.86%; transform: translateY(-50%); }
.bn-card--2{ top: 50%; transform: translateY(-50%); }
.bn-card--3{ top: 82.14%; transform: translateY(-50%); }

.bn-card--l{ left: 0; text-align: left; }
.bn-card--r{ right: 0; text-align: left; }

.bn-card-body{ flex: 1; min-width: 0; }
.bn-card-body strong{
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.bn-card-body p{
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.45;
  color: #64748b;
}

.bn-card-icon{
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
}
.bn-card-icon svg{ width: 20px; height: 20px; }

.bn-card[data-tone="blue"] .bn-card-icon{ background: #2f6fed; }
.bn-card[data-tone="purple"] .bn-card-icon{ background: #8b5cf6; }
.bn-card[data-tone="green"] .bn-card-icon{ background: #22c55e; }
.bn-card[data-tone="orange"] .bn-card-icon{ background: #f59e0b; }
.bn-card[data-tone="teal"] .bn-card-icon{ background: #14b8a6; }
.bn-card[data-tone="navy"] .bn-card-icon{ background: #2563eb; }

/* İstatistikler — diyagram altında tek sıra yan yana */
.bn-stats{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.bn-stat{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 14px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(15, 35, 70, 0.07);
}

.bn-stat-icon{
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}
.bn-stat-icon svg{
  width: 20px;
  height: 20px;
}

.bn-stat[data-tone="blue"] .bn-stat-icon{ background: #2563eb; }
.bn-stat[data-tone="green"] .bn-stat-icon{ background: #22c55e; }
.bn-stat[data-tone="purple"] .bn-stat-icon{ background: #8b5cf6; }
.bn-stat[data-tone="orange"] .bn-stat-icon{ background: #f59e0b; }

.bn-stat-text{
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.bn-stat-text strong{
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}
.bn-stat-text span{
  font-size: 0.78rem;
  color: #64748b;
}
.bn-stat--single .bn-stat-text strong{
  font-size: 0.95rem;
}

@media (max-width: 1100px){
  .bn-stats{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px){
  .bn-stage{
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 15px;
  }
  .bn-net{ display: none; }
  .bn-hub{
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 6px auto 14px;
  }
  /* Mobilde hover translate’si layout’u bozmasın */
  .bn-hub:hover,
  .bn-hub:focus-visible,
  .bn-hub:active{
    transform: none;
    border-color: var(--btn-neon-border);
    box-shadow: var(--btn-neon-shadow);
  }
  .bn-card{
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100%;
  }
  .bn-card--l .bn-card-icon{ order: -1; }
  .bn-stats{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bn-stat--single{
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: calc((100% - 14px) / 2 );
  }
}

@media (max-width: 560px){
  .bn-stats{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

