/* ============================================================
   KozmoNet — Ana CSS Dosyası
   Renk Sistemi: #E84E1B (Turuncu) + #0D1F3C (Lacivert)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* === CSS Değişkenleri === */
:root {
  --kozmo-orange:       #E84E1B;
  --kozmo-orange-dark:  #C43A10;
  --kozmo-orange-light: #FF6B3D;
  --kozmo-navy:         #0D1F3C;
  --kozmo-navy-mid:     #162B52;
  --kozmo-navy-light:   #1E3A6E;
  --text-dark:          #1A1A1A;
  --text-mid:           #4B5563;
  --text-light:         #9CA3AF;
  --bg-light:           #F8F9FA;
  --white:              #FFFFFF;
  --border:             #E5E7EB;
  --success:            #10B981;
  --warning:            #F59E0B;
  --error:              #EF4444;
  --shadow-sm:          0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:          0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:          0 8px 32px rgba(0,0,0,0.13);
  --radius:             12px;
  --radius-sm:          8px;
  --radius-xs:          6px;
  --transition:         all 0.25s ease;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
/* Ekran okuyucu / SEO için görünmez ama erişilebilir içerik */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* === Tipografi === */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 2vw, 1.375rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-mid); line-height: 1.7; }

/* === Container === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === Butonlar === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.625rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--kozmo-orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(232,78,27,0.35);
}
.btn-primary:hover {
  background: var(--kozmo-orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,78,27,0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--kozmo-orange);
  border: 2px solid var(--kozmo-orange);
}
.btn-outline:hover {
  background: var(--kozmo-orange);
  color: var(--white);
}
.btn-navy {
  background: var(--kozmo-navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--kozmo-navy-mid); }
.btn-lg { padding: 1rem 2rem; font-size: 1.0625rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* ============================================================
   HEADER — floating pill style (turk.net gibi)
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  padding: 0.75rem 1.5rem;
  transition: padding 0.3s ease;
}
.site-header.scrolled {
  padding: 0.5rem 1.5rem;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  gap: 1rem;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 50px;
  padding: 0 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid rgba(255,255,255,0.9);
  max-width: 1200px;
  margin: 0 auto;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.scrolled .header-inner {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 6px 32px rgba(0,0,0,0.14);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.logo-icon {
  height: 38px;
  width: auto;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  font-family: 'Inter', sans-serif;
}
.logo-text span { color: var(--kozmo-orange); }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 0.125rem; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  color: var(--text-dark);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--kozmo-orange);
  background: rgba(232,78,27,0.06);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.6rem 0.875rem;
  color: var(--text-dark);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown a:hover {
  background: var(--bg-light);
  color: var(--kozmo-orange);
}
.dropdown a .dd-icon {
  width: 17px;
  height: 17px;
  color: var(--kozmo-orange);
  flex-shrink: 0;
}

/* ── Bireysel / Kurumsal Toggle Switch ─────────────────────── */
.nav-pkg-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  margin: 0 4px;
  cursor: pointer;
  user-select: none;
}
.nps-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
  will-change: transform, opacity;
}
/* Top item = daima gri, bottom item = daima turuncu (pozisyon belirler) */
.nps-opt {
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
  letter-spacing: .01em;
}
.nps-inner .nps-opt:first-child { color: #B8C0CC; }
.nps-inner .nps-opt:last-child  { color: #E84E1B; }

.nps-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E84E1B;
  flex-shrink: 0;
  transition: transform .15s;
}
.nps-icon svg { width: 13px; height: 13px; }
.nav-pkg-switch:hover .nps-icon { transform: scale(1.15); }

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
/* ── Genişleyen liquid-glass arama tüpü ── */
.nav-search {
  position: relative;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.nav-search-input {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 38px;
  width: 38px;
  padding: 0 46px 0 0;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.45);
  -webkit-backdrop-filter: blur(14px) saturate(1.7);
  backdrop-filter: blur(14px) saturate(1.7);
  box-shadow: 0 8px 26px rgba(20,30,55,0.10), inset 0 1px 0 rgba(255,255,255,0.7);
  color: var(--text-dark);
  font-size: 0.9375rem;
  font-family: inherit;
  opacity: 0;
  pointer-events: none;
  transition:
    width 0.5s cubic-bezier(0.55, 0, 0.1, 1),
    padding-left 0.5s cubic-bezier(0.55, 0, 0.1, 1),
    opacity 0.3s ease,
    box-shadow 0.4s ease;
}
.nav-search-input::placeholder { color: var(--text-mid); opacity: 0.85; }
.nav-search-input:focus { outline: none; border-color: rgba(232,78,27,0.45); }
.nav-search-input::-webkit-search-cancel-button,
.nav-search-input::-webkit-search-decoration { -webkit-appearance: none; appearance: none; display: none; }

.btn-search {
  position: relative;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-mid);
  flex-shrink: 0;
  transition: var(--transition);
}
.btn-search:hover {
  border-color: var(--kozmo-orange);
  color: var(--kozmo-orange);
}
.btn-search .ico-close { display: none; }

/* Açık durum: tüp sola doğru genişler */
.site-header.is-search-open .nav-search-input {
  width: 260px;
  padding-left: 20px;
  opacity: 1;
  pointer-events: auto;
}
.site-header.is-search-open .btn-search {
  border-color: transparent;
  background: transparent;
  color: var(--kozmo-orange);
}
.site-header.is-search-open .btn-search .ico-search { display: none; }
.site-header.is-search-open .btn-search .ico-close { display: block; }

/* Kurumsal/Bireysel toggle arama açılınca yumuşakça kaybolur */
.nav-pkg-switch {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.site-header.is-search-open .nav-pkg-switch {
  opacity: 0;
  transform: translateX(12px);
  pointer-events: none;
}

/* Tüp sola açılırken üzerine geldiği nav linkleri de yumuşakça çekilir */
.main-nav, .nav-quick {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.site-header.is-search-open .main-nav,
.site-header.is-search-open .nav-quick {
  opacity: 0;
  transform: translateX(12px);
  pointer-events: none;
}

/* ── Mobil yüzen arama: navbar dışında, hamburger'ın altında ──────────
   Masaüstünde gizli; ≤960px'de fixed olarak header'ın hemen altında durur,
   header fixed olduğu için navbar ile birlikte sabit kalır. */
.m-search { display: none; }
/* Arama açıkken arkaplanı karartan örtü */
.m-search-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 998;
  transition: opacity .3s ease, visibility .3s ease;
}
.m-search-backdrop.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 960px) {
  .m-search {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: fixed;
    top: 5rem;
    right: 1.5rem;
    z-index: 999;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }
  /* Mobil menü açıkken gizle */
  .m-search.menu-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
  }
  .m-search-input {
    height: 46px;
    width: 0;
    min-width: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-size: .95rem;
    font-family: inherit;
    opacity: 0;
    pointer-events: none;
    transition: width .35s cubic-bezier(.55,0,.1,1), padding .35s ease, opacity .25s ease;
  }
  /* Tarayıcının native temizle/iptal (✕) butonunu gizle */
  .m-search-input::-webkit-search-cancel-button,
  .m-search-input::-webkit-search-decoration { -webkit-appearance: none; appearance: none; display: none; }
  .m-search-input::placeholder { color: var(--text-mid); }
  .m-search-input:focus { outline: none; }
  .m-search-btn {
    position: relative;
    z-index: 2;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,.18);
    transition: color .2s ease, background .2s ease, box-shadow .3s ease;
  }
  .m-search-btn .ico-close { display: none; }

  /* Açık durum: form tek parça beyaz "pill" olur, içte saydam input + kapat ✕ */
  .m-search.open {
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 12px 32px rgba(0,0,0,.24);
  }
  .m-search.open .m-search-input {
    width: min(62vw, 230px);
    padding: 0 .25rem 0 1.125rem;
    opacity: 1;
    pointer-events: auto;
  }
  .m-search.open .m-search-btn {
    background: transparent;
    box-shadow: none;
    color: var(--text-mid);
  }
  .m-search.open .m-search-btn:hover { color: var(--kozmo-orange); }
  .m-search.open .m-search-btn .ico-search { display: none; }
  .m-search.open .m-search-btn .ico-close { display: block; }
}

/* ── Arama önerisi (autocomplete) dropdown — liquid glass ────────────── */
.search-suggest {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 280px;
  max-height: 360px;
  overflow-y: auto;
  padding: 6px;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  -webkit-backdrop-filter: blur(18px) saturate(1.8);
  backdrop-filter: blur(18px) saturate(1.8);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 18px 44px rgba(20,30,55,0.18), inset 0 1px 0 rgba(255,255,255,0.7);
  z-index: 1001;
  animation: ss-pop 0.18s ease;
}
@keyframes ss-pop {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.search-suggest[hidden] { display: none; }
.ss-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.ss-item:hover,
.ss-item.is-active {
  background: rgba(232,78,27,0.1);
}
.ss-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ss-title strong { color: var(--kozmo-orange); font-weight: 700; }
.ss-type {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-mid);
  background: rgba(13,31,60,0.06);
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  white-space: nowrap;
}
/* Mobil öneri kutusu: pill'in altında sağa hizalı */
.m-search-suggest {
  width: min(78vw, 300px);
}

.btn-online {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--kozmo-orange);
  color: var(--white);
  border-radius: 50px;
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  transition: background 0.2s;
  box-shadow: 0 2px 10px rgba(232,78,27,0.3);
}
.btn-online:hover { background: var(--kozmo-orange-dark); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO — Figma tarzı: iki sütun, görsel sol / metin sağ
   ============================================================ */

/* Dış kapsayıcı */
.hero-wrap {
  background: var(--white);
}

/* Hero slider */
.hero {
  position: relative;
  height: clamp(460px, 58vh, 620px);
  overflow: hidden;
  padding-top: 70px;       /* sabit header yüksekliği */
  box-sizing: border-box;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

/* Her slayt: iki sütun grid */
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 55% 45%;
  opacity: 0;
  transition: opacity 0.85s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }

/* Sol sütun — görsel */
.hero-slide-photo {
  background-image: var(--slide-bg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.hero-slide-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Sağa doğru beyaz geçiş — panel ile kaynar */
  background: linear-gradient(to right, transparent 70%, rgba(255,255,255,0.9) 100%);
}

/* Sağ sütun — beyaz metin paneli */
.hero-slide-panel {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 3rem 2rem 2.5rem;
  overflow: hidden;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,78,27,0.08);
  border: 1px solid rgba(232,78,27,0.25);
  color: var(--kozmo-orange);
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  width: fit-content;
  letter-spacing: 0.02em;
}

/* Başlık & alt başlık — koyu lacivert */
.hero-title {
  color: var(--kozmo-navy);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.hero-title em {
  font-style: normal;
  color: var(--kozmo-orange);
}
.hero-subtitle {
  color: var(--text-mid);
  font-size: 0.9375rem;
  margin-bottom: 0;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Fiyat kartı (turuncu) */
.hero-price-card {
  background: var(--kozmo-orange);
  border-radius: var(--radius);
  padding: 0.875rem 1.375rem;
  margin: 1.25rem 0 0.875rem;
}
.hpc-label {
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.12em;
  margin-bottom: 0.2rem;
}
.hpc-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.hpc-amount span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Bilgi kutuları (lacivert) */
.hero-info-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
.hib {
  background: var(--kozmo-navy);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hib span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.62);
  font-weight: 500;
}
.hib strong {
  font-size: 0.875rem;
  color: var(--white);
  font-weight: 700;
}

/* Sol/Sağ oklar */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 1.5px solid var(--border);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.hero-arrow:hover {
  background: var(--kozmo-orange);
  border-color: var(--kozmo-orange);
  color: var(--white);
}
.hero-arrow-prev { left: 0.875rem; }
.hero-arrow-next { right: 0.875rem; }

/* ── Adres arama bölümü — turuncu gradient ───────────────── */
.hero-addr-zone {
  background: linear-gradient(
    180deg,
    rgba(232,78,27,0.14) 0%,
    rgba(232,78,27,0.06) 55%,
    rgba(255,255,255,0) 100%
  );
  padding: 2rem 1.5rem 3rem;
  display: flex;
  justify-content: center;
}

.hero-addr-card {
  background: var(--kozmo-navy);
  border-radius: 50px;
  padding: 1.375rem 2rem 1.5rem;
  width: min(600px, calc(100% - 2rem));
  position: relative;
}

.hero-addr-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  text-align: center;
  margin-bottom: 0.75rem;
}

.hero-addr-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border-radius: 50px;
  padding: 0.875rem 1.25rem;
  cursor: pointer;
  transition: box-shadow 0.2s;
  user-select: none;
}
.hero-addr-bar:hover {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.25);
}

.hero-addr-placeholder {
  flex: 1;
  color: var(--text-light);
  font-size: 0.9375rem;
  font-weight: 500;
}
.hero-addr-value {
  flex: 1;
  color: var(--text-dark);
  font-size: 0.9375rem;
  font-weight: 600;
}

/* Dropdown — aşağı açılır */
.hero-addr-drop {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.875rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  z-index: 50;
}
.hero-addr-drop.open { display: block; }

/* Dropdown iç elemanlar */
.had-search-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}
.had-inp {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-dark);
}
.had-inp::placeholder { color: var(--text-light); }

.had-list {
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(232,78,27,0.3) transparent;
}
.had-list-item {
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.had-list-item::after { content: '›'; color: #d1d5db; font-size: 1.1rem; }
.had-list-item:hover { background: rgba(232,78,27,0.07); color: var(--kozmo-orange); }

.had-btn-next {
  padding: 0.6rem 1.25rem;
  background: var(--kozmo-navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.had-btn-next:hover { background: var(--kozmo-navy-mid); }

.had-btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem;
  background: var(--kozmo-orange);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  box-shadow: 0 4px 16px rgba(232,78,27,0.35);
  margin-top: 0.5rem;
}
.had-btn-submit:hover { background: var(--kozmo-orange-dark); }

/* ============================================================
   HIZLI ERİŞİM
   ============================================================ */
.quick-access { padding: 3.5rem 0; background: var(--white); }
.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.qa-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
  gap: 1rem;
}
.qa-card:hover {
  border-color: var(--kozmo-orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.qa-icon {
  width: 56px; height: 56px;
  background: rgba(232,78,27,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kozmo-orange);
  transition: var(--transition);
}
.qa-icon svg { width: 26px; height: 26px; }
.qa-card:hover .qa-icon {
  background: var(--kozmo-orange);
  color: var(--white);
}
.qa-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
}
.qa-desc { font-size: 0.8125rem; color: var(--text-light); margin-top: 0.25rem; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(232,78,27,0.08);
  color: var(--kozmo-orange);
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.section-header h2 { color: var(--text-dark); margin-bottom: 0.875rem; }
.section-header p { color: var(--text-mid); font-size: 1.05rem; }

/* ============================================================
   PAKET KARTLARI
   ============================================================ */
.packages { padding: 5rem 0; background: var(--bg-light); }
.package-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.package-toggle {
  display: flex;
  background: var(--white);
  border-radius: 100px;
  padding: 5px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.toggle-btn {
  padding: 0.6rem 1.75rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
  cursor: pointer;
}
.toggle-btn.active {
  background: var(--kozmo-orange);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(232,78,27,0.35);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
/* ── Yeni Paket Kartı (pkg-*) ──────────────────────────────── */
.pkg-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  border: 1.5px solid #F0EDE9;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(232,78,27,.13), 0 2px 8px rgba(0,0,0,.06);
  border-color: #F7B49B;
}
.pkg-card--featured {
  border-color: #E84E1B;
  box-shadow: 0 8px 32px rgba(232,78,27,.18);
  transform: scale(1.02);
}
.pkg-card--featured:hover {
  transform: scale(1.02) translateY(-4px);
}

/* Üst gradient */
.pkg-head {
  background: linear-gradient(150deg, #E84E1B 0%, #F47B55 55%, #FBBCAA 100%);
  padding: 1.5rem 1.5rem 1.75rem;
  position: relative;
}
.pkg-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: #fff;
  color: #E84E1B;
  font-size: .7rem;
  font-weight: 700;
  padding: .28rem .75rem;
  border-radius: 50px;
  letter-spacing: .03em;
}
.pkg-name {
  font-size: .72rem;
  font-weight: 800;
  color: rgba(255,255,255,.85);
  letter-spacing: .1em;
  margin-bottom: .45rem;
}
.pkg-speed {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  color: #fff;
  margin-bottom: .3rem;
}
.pkg-speed-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
}
.pkg-speed-unit {
  font-size: 1.1rem;
  font-weight: 700;
  opacity: .9;
}
.pkg-type {
  font-size: .72rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}

/* Özellikler */
.pkg-body {
  padding: 1.35rem 1.5rem;
  flex: 1;
}
.pkg-feats {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.pkg-feats li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .84rem;
  color: #3A4A5C;
  font-weight: 500;
}
.pkg-check {
  width: 16px; height: 16px;
  flex-shrink: 0;
}

/* Alt — fiyat + buton */
.pkg-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid #F5F1EE;
}
.pkg-price {
  display: flex;
  align-items: baseline;
  gap: .18rem;
}
.pkg-currency {
  font-size: 1rem;
  font-weight: 700;
  color: #E84E1B;
}
.pkg-amount {
  font-size: 2rem;
  font-weight: 900;
  color: #0D1F3C;
  letter-spacing: -.02em;
  line-height: 1;
}
.pkg-period {
  font-size: .68rem;
  color: #9CA3AF;
  font-weight: 500;
  line-height: 1.35;
  margin-left: .1rem;
}
.pkg-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid #E8E4E0;
  color: #5A6A7A;
  transition: border-color .18s, color .18s, background .18s;
  white-space: nowrap;
}
.pkg-cta svg { width: 13px; height: 13px; }
.pkg-cta:hover { border-color: #E84E1B; color: #E84E1B; }
.pkg-cta--filled {
  background: #E84E1B;
  border-color: #E84E1B;
  color: #fff;
}
.pkg-cta--filled:hover {
  background: #C43A10;
  border-color: #C43A10;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .pkg-speed-num { font-size: 2.5rem; }
}

/* Eski sınıf uyumluluk — kaldırılmadı, boş bırakıldı */
.package-card { }
.package-card.featured { }

/* ============================================================
   NEDEN KOZMONET
   ============================================================ */
.why-section {
  padding: 5.5rem 0;
  background: var(--kozmo-navy);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(232,78,27,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.why-section .section-header h2, .why-section .section-badge { color: var(--white); }
.why-section .section-badge { background: rgba(232,78,27,0.2); color: var(--kozmo-orange-light); }
.why-section .section-header p { color: rgba(255,255,255,0.65); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232,78,27,0.3);
  transform: translateY(-3px);
}
.why-icon {
  width: 52px; height: 52px;
  background: rgba(232,78,27,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kozmo-orange);
  margin-bottom: 1.25rem;
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 { color: var(--white); margin-bottom: 0.625rem; font-size: 1.1rem; }
.why-card p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

/* ============================================================
   STATS BANDI
   ============================================================ */
.stats-band {
  padding: 4rem 0;
  background: var(--kozmo-orange);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 0.375rem; }
.stat-number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.25);
  align-self: stretch;
  margin: 0 auto;
}

/* ============================================================
   HARİTA BÖLÜMÜ
   ============================================================ */
/* ── Coverage / 81 İl Seçim Bölümü ─────────────────────────── */
.coverage-section { padding: 5rem 0; background: #fff; border-top: 1px solid var(--border); }
.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.coverage-head .section-badge { margin-bottom: 1rem; }
.coverage-head h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--kozmo-navy);
  margin-bottom: 0.875rem;
  line-height: 1.25;
}
.coverage-head > p {
  color: var(--text-mid);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.coverage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.coverage-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.875rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  background: #fff;
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
  line-height: 1;
}
.coverage-pill:hover {
  border-color: var(--kozmo-orange);
  color: var(--kozmo-orange);
}
.coverage-pill.active {
  background: var(--kozmo-navy);
  border-color: var(--kozmo-navy);
  color: #fff;
}
.coverage-pill.active svg { stroke: #fff; }
.coverage-selected-hint {
  margin-top: 1.25rem;
  padding: 0.75rem 1rem;
  background: rgba(232,78,27,0.07);
  border: 1px solid rgba(232,78,27,0.25);
  border-radius: 10px;
  font-size: 0.875rem;
  color: var(--kozmo-navy);
  display: none;
}
.coverage-selected-hint strong { color: var(--kozmo-orange); }
.coverage-query-btn {
  margin-top: 1rem;
  display: none;
}
.coverage-map-wrap {
  position: sticky;
  top: 90px;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
}
@media (max-width: 768px) {
  .coverage-layout { grid-template-columns: 1fr; }
  .coverage-map-wrap { position: static; height: 300px; }
}

.map-section { padding: 5rem 0; background: var(--bg-light); }
.map-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
}
.map-container {
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  height: 420px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  background: #FDF5F2;
}
.map-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .75rem;
  background: var(--white);
  color: var(--text-light);
  font-size: .9rem;
  z-index: 1;
}
/* Leaflet overrides */
#kozmoMap .leaflet-control-zoom a { border-color: var(--border); color: var(--text-dark); }
#kozmoMap .leaflet-control-zoom a:hover { background: var(--bg-light); }
.map-info h2 { color: var(--text-dark); margin-bottom: 1rem; }
.map-info p { margin-bottom: 2rem; }
.province-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.province-badge {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}
.province-badge:hover {
  border-color: var(--kozmo-orange);
  color: var(--kozmo-orange);
}

/* ============================================================
   KAMPANYALAR
   ============================================================ */
.campaigns { padding: 5rem 0; background: var(--white); }
.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.campaign-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.campaign-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--kozmo-orange);
}
.campaign-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.campaign-img-1 { background: linear-gradient(135deg, var(--kozmo-orange) 0%, var(--kozmo-orange-dark) 100%); }
.campaign-img-2 { background: linear-gradient(135deg, var(--kozmo-navy-mid) 0%, var(--kozmo-navy) 100%); }
.campaign-img-3 { background: linear-gradient(135deg, #7C3AED 0%, #4F46E5 100%); }
.campaign-img--photo { background: #f3f3f3; padding: 0; }
.campaign-photo { width: 100%; height: 180px; object-fit: cover; display: block; }
.campaign-body { padding: 1.25rem 1.5rem 1.5rem; }
.campaign-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--kozmo-orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.campaign-title { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.campaign-desc { font-size: 0.875rem; color: var(--text-mid); }
.campaign-footer {
  padding: 0 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.campaign-validity { font-size: 0.8rem; color: var(--text-light); }
.campaign-cta { font-size: 0.875rem; font-weight: 600; color: var(--kozmo-orange); }
.campaign-cta:hover { text-decoration: underline; }

/* ============================================================
   ABONELİK CTA BANDI
   ============================================================ */
.subscribe-band {
  padding: 5rem 0;
  background: #fff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #EDE9E5;
  border-bottom: 1px solid #EDE9E5;
}
.subscribe-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,78,27,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.subscribe-inner {
  position: relative;
  text-align: center;
}
.subscribe-inner h2 { color: var(--kozmo-navy); margin-bottom: 1rem; }
.subscribe-inner p { color: #6B7280; margin-bottom: 2.5rem; font-size: 1.0625rem; }
.subscribe-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.edevlet-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #F8F8F6;
  border: 1px solid #EDE9E5;
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  color: #6B7280;
  font-size: 0.8125rem;
}
.edevlet-note strong { color: #0D1F3C; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-section { padding: 5rem 0; background: var(--bg-light); }
/* Blog grid — stiller blog/index.blade.php içinde inline */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap:1.75rem; }
.blog-img-placeholder { width:100%;height:100%;display:flex;align-items:center;justify-content:center; }

/* ============================================================
   PRE-FOOTER — footer üstü iletişim bandı
   ============================================================ */
.pre-footer {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.pre-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.pre-footer-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.pf-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.45rem 0.875rem;
  border-radius: var(--radius-sm);
  color: var(--text-mid);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}
.pf-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.pf-link:hover {
  color: var(--kozmo-orange);
  background: rgba(232,78,27,0.06);
}
.pre-footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--kozmo-navy);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
}
.pre-footer-phone svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--kozmo-orange);
}
.pre-footer-phone:hover { color: var(--kozmo-orange); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--kozmo-navy);
  color: rgba(255,255,255,0.75);
}

/* ── ÜST KATMAN: marka + sosyal · uygulama indir ───────── */
.footer-head-band {
  position: relative;
  background: linear-gradient(180deg, #0A1730 0%, var(--kozmo-navy) 100%);
  padding: 4rem 0 3.25rem;
  overflow: hidden;
}
.footer-head-band::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--kozmo-orange), transparent);
}
.footer-head-band::after {
  content: '';
  position: absolute; right: -140px; top: -140px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(232,78,27,0.13), transparent 70%);
  pointer-events: none;
}
.footer-head {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.footer-head-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.125rem;
}
.footer-head-left .logo-text { font-size: 1.4rem; color: #fff; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 320px; }
.footer-follow h5 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0.5rem 0 0.75rem;
  letter-spacing: 0.01em;
}
.footer-contact { display: flex; flex-direction: column; gap: 0.625rem; margin-top: 0.25rem; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--kozmo-orange); }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--kozmo-orange); }
.footer-social { display: flex; gap: 0.625rem; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.social-btn:hover {
  background: var(--kozmo-orange);
  border-color: var(--kozmo-orange);
  color: var(--white);
  transform: translateY(-3px);
}
.social-btn svg { width: 17px; height: 17px; }

/* ── ALT KATMAN: link sütunları ────────────────────────── */
.footer-links-band {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2.75rem 0;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.25rem;
}
.footer-col h4 {
  position: relative;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  padding-bottom: 0.55rem;
  display: inline-block;
  letter-spacing: .02em;
}
.footer-col h4::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 28px; height: 2px;
  background: var(--kozmo-orange);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.footer-col:hover h4::after { width: 100%; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  position: relative;
  display: inline-block;
  font-size: 0.845rem;
  color: rgba(255,255,255,0.52);
  transition: color 0.18s ease, transform 0.18s ease;
}
.footer-col ul li a:hover { color: var(--kozmo-orange); transform: translateX(5px); }

/* ── Uygulama indirme kartı (üst katman sağ) ──────────── */
.footer-head-right {
  position: relative;
  background: linear-gradient(155deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 60%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.06);
  /* 3D tilt */
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(0) rotateY(0);
  transition: transform 0.18s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}
.footer-head-right.is-tilting {
  box-shadow: 0 30px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.footer-head-right::before {
  content: "";
  position: absolute;
  top: -45%;
  right: -15%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(232,78,27,0.20), transparent 68%);
  pointer-events: none;
}
/* Güneş yansıması — fareyi takip eden parlama */
.footer-app-glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%),
              rgba(255,255,255,0.35), rgba(255,255,255,0.08) 22%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  mix-blend-mode: soft-light;
  z-index: 4;
}
.footer-head-right:hover .footer-app-glare { opacity: 1; }
/* İçeriğe hafif derinlik (parallax) */
.footer-head-right .footer-app-head { transform: translateZ(26px); }
.footer-head-right > p { transform: translateZ(16px); }
.footer-head-right .footer-app-actions { transform: translateZ(34px); }
.footer-app-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}
.footer-app-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--kozmo-orange), #ff7d49);
  box-shadow: 0 8px 18px rgba(232,78,27,0.4);
  flex-shrink: 0;
}
.footer-app-icon svg { width: 22px; height: 22px; color: #fff; }
.footer-head-right h4 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.footer-app-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.footer-head-right p {
  position: relative;
  margin: 0 0 1.625rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
}
.footer-app-actions {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 1.375rem;
  flex-shrink: 0;
}
.footer-app-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.footer-app-qr {
  display: block;
  background: #fff;
  padding: 9px;
  border-radius: 14px;
  line-height: 0;
  box-shadow: 0 10px 28px rgba(0,0,0,0.32);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.footer-app-qr:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0,0,0,0.42); }
.footer-app-qr img { width: 116px; height: 116px; display: block; border-radius: 5px; }
.footer-app-qr-cap {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}
.footer-app-qr-cap svg { opacity: 0.8; }
.footer-app-badges {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
}

/* Mağaza rozetleri (App Store / Google Play) */
.store-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.625rem 1.15rem;
  min-width: 172px;
  border-radius: 13px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.store-badge:hover { background: #000; border-color: rgba(255,255,255,0.4); color: #fff; transform: translateY(-2px); }
.store-badge.is-soon { opacity: 0.92; }
.store-badge-ico { width: 26px; height: 26px; flex-shrink: 0; }
.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.store-badge-text small { font-size: 0.6rem; opacity: 0.7; letter-spacing: 0.04em; text-transform: uppercase; }
.store-badge-text strong { font-size: 0.95rem; font-weight: 600; }

/* ── Footer responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .footer-head { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-head-band { padding: 3rem 0 2.5rem; }
  .footer-head-right { padding: 1.5rem; }
  .footer-app-actions { flex-wrap: wrap; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
}
@media (max-width: 400px) {
  .footer-app-actions { flex-direction: column; align-items: flex-start; }
  .footer-cols { grid-template-columns: 1fr; }
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-btk {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.btk-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.btk-badge strong { color: var(--white); }
.btk-icon {
  width: 28px; height: 28px;
  background: var(--kozmo-orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: -0.5px;
}
.footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.35); }

/* ── Ajans imzası (en dip) ── */
.footer-signature {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.1rem 0;
  margin-top: 0.5rem;
}
.footer-sign-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.footer-sign-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
}
.footer-sign-logo {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-sign-logo:hover { opacity: 0.85; transform: translateY(-1px); }
.footer-sign-logo img { height: 20px; width: auto; display: block; }
.footer-sign-logo--ato img { height: 26px; }
.footer-sign-sep {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.12);
}
.footer-sign-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-left: 0.35rem;
}
@media (max-width: 600px) {
  .footer-sign-row { gap: 0.6rem; }
  .footer-sign-sep { display: none; }
  .footer-sign-copy { width: 100%; text-align: center; margin: 0.4rem 0 0; }
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--kozmo-orange);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  padding: .6rem 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background .18s, transform .15s;
  margin-top: .25rem;
  align-self: flex-start;
}
.footer-cta-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-cta-btn:hover { background: #C43A10; transform: translateX(2px); }

/* ============================================================
   SABİT SOL PANEL
   ============================================================ */
.sticky-panel {
  position: fixed;
  left: 0;
  top: 75%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sticky-btn {
  display: flex;
  align-items: center;
  gap: 0;
  width: 52px;
  overflow: hidden;
  transition: width 0.3s ease;
  white-space: nowrap;
  padding: 0.875rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}
.sticky-btn:hover { width: 190px; }
.sticky-whatsapp { background: #25D366; color: var(--white); }
.sticky-phone    { background: var(--kozmo-orange); color: var(--white); }
.sticky-infra    { background: var(--kozmo-navy); color: var(--white); }
.sticky-btn svg  { width: 26px; height: 26px; flex-shrink: 0; }
.sticky-label {
  opacity: 0;
  transition: opacity 0.2s;
  padding-left: 0.625rem;
  font-size: 0.8125rem;
}
.sticky-btn:hover .sticky-label { opacity: 1; }

/* ── Sol sabit panel — dokunmatik & küçük ekran uyumu ──────────
   Tüm iPhone/iPad modelleri dokunmatik olduğu için (hover: none),
   hover ile genişleme yerine sabit ikon davranışı uygula. */
@media (hover: none), (pointer: coarse) {
  .sticky-btn { width: 48px; }
  .sticky-btn:hover { width: 48px; }
  .sticky-label { display: none; }
}
/* Küçük telefonlarda ikonları biraz küçült (sol-ortada kalsın; alt çerez
   bildirimiyle çakışmasın) */
@media (max-width: 600px) {
  .sticky-btn { width: 46px; padding: 0.65rem; }
  .sticky-btn:hover { width: 46px; }
  .sticky-btn svg { width: 22px; height: 22px; }
}

/* ============================================================
   PAGE HERO — iç sayfalar ortak başlık
   ============================================================ */
.page-hero {
  margin-top: 70px;
  padding: 3.75rem 0 3.25rem;
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--kozmo-orange) 0%, rgba(232,78,27,0) 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 42%;
  height: 100%;
  background: radial-gradient(ellipse at 85% 50%, rgba(232,78,27,.04) 0%, transparent 65%);
  pointer-events: none;
}
.ph-inner { position: relative; z-index: 1; }
.ph-inner .section-badge { margin-bottom: .875rem; }
.ph-inner h1 {
  color: var(--kozmo-navy);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  margin-bottom: .875rem;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.ph-inner p {
  color: var(--text-mid);
  font-size: 1.0625rem;
  line-height: 1.75;
  max-width: 580px;
  margin: 0;
}
.page-hero.ph-center { text-align: center; }
.page-hero.ph-center::before { display: none; }
.page-hero.ph-center .ph-inner p { margin: 0 auto; }

/* ============================================================
   KURUMSAL HERO v2 — temiz, sade iki kolon
   ============================================================ */
.corp-hero-v2 {
  margin-top: 70px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.corp-hero-v2::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 88% 50%, rgba(13,31,60,.028) 0%, transparent 65%);
  pointer-events: none;
}
.corp-hero-v2-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
  padding: 4.5rem 0;
  position: relative;
  z-index: 1;
}
.chv2-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(232,78,27,.07);
  border: 1px solid rgba(232,78,27,.18);
  color: var(--kozmo-orange);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: .35rem .875rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.chv2-title {
  color: var(--kozmo-navy);
  font-size: clamp(2rem, 3.3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
}
.chv2-title .accent { color: var(--kozmo-orange); }
.chv2-desc {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 2rem;
}
.chv2-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.25rem; }
.chv2-stats {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.chv2-stat { display: flex; flex-direction: column; align-items: center; padding: .8rem 1.35rem; }
.chv2-stat + .chv2-stat { border-left: 1px solid var(--border); }
.chv2-stat-num { font-size: 1.1rem; font-weight: 800; color: var(--kozmo-navy); line-height: 1; }
.chv2-stat-num.orange { color: var(--kozmo-orange); }
.chv2-stat-lbl { font-size: .63rem; color: var(--text-light); font-weight: 500; white-space: nowrap; margin-top: .18rem; }

/* Sağ panel — hizmetler */
.corp-svc-panel {
  background: var(--kozmo-navy);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(13,31,60,.14), 0 2px 8px rgba(0,0,0,.05);
}
.corp-svc-head {
  padding: 1.25rem 1.625rem .875rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.corp-svc-head span {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.corp-svc-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.625rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  text-decoration: none;
  transition: background .18s;
}
.corp-svc-row:last-of-type { border-bottom: none; }
.corp-svc-row:hover { background: rgba(255,255,255,.035); }
.corp-svc-icon {
  width: 38px; height: 38px;
  background: rgba(232,78,27,.14);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fb923c;
}
.corp-svc-icon svg { width: 17px; height: 17px; }
.corp-svc-info { flex: 1; }
.corp-svc-name { font-size: .88rem; font-weight: 700; color: #fff; line-height: 1.2; }
.corp-svc-meta { font-size: .7rem; color: rgba(255,255,255,.38); margin-top: .12rem; }
.corp-svc-arr {
  font-size: .8rem;
  color: rgba(255,255,255,.2);
  flex-shrink: 0;
  transition: transform .18s, color .18s;
}
.corp-svc-row:hover .corp-svc-arr { transform: translateX(3px); color: var(--kozmo-orange); }
.corp-svc-footer {
  padding: .875rem 1.625rem;
  background: rgba(232,78,27,.08);
  border-top: 1px solid rgba(232,78,27,.15);
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.65);
}
.corp-svc-online {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .corp-hero-v2-grid { grid-template-columns: 1fr; }
  .corp-svc-panel { display: none; }
}
@media (max-width: 600px) {
  .chv2-stats { flex-wrap: wrap; }
  .chv2-stat + .chv2-stat { border-left: none; border-top: 1px solid var(--border); }
  .chv2-actions { flex-direction: column; }
  .chv2-actions .btn { justify-content: center; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .footer-head { grid-template-columns: 1fr 0.9fr; gap: 2.5rem; }
}
@media (max-width: 1024px) {
  .quick-access-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .package-card.featured { transform: none; }
  .pkg-card--featured { transform: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .campaigns-grid { grid-template-columns: repeat(2, 1fr); }
  .map-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   TANITIM BANNER SLIDER
   ============================================================ */
.promo-banners {
  position: relative;
  background: #000;
  overflow: hidden;
  user-select: none;
}
.promo-slider {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.promo-slide {
  flex-shrink: 0;
  width: 100%;
}
.promo-slide img {
  width: 100%;
  display: block;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
}
.promo-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  border: 1.5px solid rgba(255,255,255,0.22);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(4px);
}
.promo-nav-btn:hover {
  background: var(--kozmo-orange);
  border-color: var(--kozmo-orange);
}
.promo-nav-prev { left: 1.25rem; }
.promo-nav-next { right: 1.25rem; }
.promo-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.promo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.38);
  cursor: pointer;
  transition: all 0.28s ease;
}
.promo-dot.active {
  background: var(--kozmo-orange);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   MARKA DEĞERLERİ — "KozmoNet'in Olayı İnternet"
   ============================================================ */
.brand-values { padding: 5rem 0; background: var(--white); }
.brand-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.bv-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: var(--transition);
}
.bv-card:hover {
  border-color: var(--kozmo-orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.bv-icon {
  width: 52px; height: 52px;
  background: rgba(232,78,27,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kozmo-orange);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.bv-icon svg { width: 24px; height: 24px; }
.bv-card h3 { color: var(--text-dark); margin-bottom: 0.625rem; font-size: 1.05rem; }
.bv-card p { color: var(--text-mid); font-size: 0.9rem; }

/* ============================================================
   ÖZELLİK ÜÇLÜSÜ
   ============================================================ */
.feature-trio { padding: 5rem 0; background: var(--bg-light); }
.feature-trio-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.ft-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 0 2rem;
}
.ft-item { padding: 1rem; }
.ft-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(232,78,27,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kozmo-orange);
  margin-bottom: 1.25rem;
}
.ft-icon-wrap svg { width: 26px; height: 26px; }
.ft-item h3 { color: var(--text-dark); margin-bottom: 0.75rem; }
.ft-item p { color: var(--text-mid); font-size: 0.9375rem; margin-bottom: 1.25rem; }
.ft-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--kozmo-orange);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s;
}
.ft-link:hover { gap: 0.625rem; }
.ft-link svg { width: 16px; height: 16px; }

/* ============================================================
   İNTERNET BÖYLE OLMALI
   ============================================================ */
.internet-should-be { padding: 5rem 0; background: var(--white); }
.isb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.isb-card {
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  color: inherit;
}
.isb-card:hover {
  border-color: var(--kozmo-orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.isb-img {
  height: 160px;
  background: var(--bg-light);
  overflow: hidden;
  flex-shrink: 0;
}
.isb-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, #eef0f3 100%);
  overflow: hidden;
}
.isb-img-placeholder svg { flex-shrink: 0; }
.isb-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.isb-body h3 { color: var(--text-dark); margin-bottom: 0.5rem; font-size: 1rem; }
.isb-body p { color: var(--text-mid); font-size: 0.875rem; flex: 1; }
.isb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--kozmo-orange);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 1rem;
  transition: gap 0.2s;
}
.isb-link svg { width: 14px; height: 14px; }
.isb-card:hover .isb-link { gap: 0.625rem; }

/* ============================================================
   TANITIM BANNER
   ============================================================ */
.promo-banner {
  padding: 5rem 0;
  background: var(--kozmo-navy);
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,78,27,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.promo-banner-img-side {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  overflow: hidden;
}
.promo-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.06;
}
.promo-img-placeholder svg { width: 260px; height: 260px; color: var(--white); }
.promo-content { max-width: 560px; position: relative; z-index: 2; padding: 2rem 0; }
.promo-content h2 { color: var(--white); margin-bottom: 1rem; }
.promo-content p { color: rgba(255,255,255,0.7); font-size: 1.0625rem; margin-bottom: 2rem; }

/* ============================================================
   ABONE OLMA YOLLARI
   ============================================================ */
.subscribe-ways { padding: 5rem 0; background: var(--bg-light); }
.subscribe-ways-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.sw-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.sw-card:hover {
  border-color: var(--kozmo-orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.sw-card-primary {
  background: var(--kozmo-navy);
  border-color: var(--kozmo-navy);
}
.sw-card-primary .sw-text h3,
.sw-card-primary .sw-text p,
.sw-card-primary .sw-arrow { color: var(--white); }
.sw-card-primary .sw-text p { color: rgba(255,255,255,0.65); }
.sw-card-primary .sw-icon { background: rgba(255,255,255,0.12); color: var(--white); }
.sw-card-primary:hover { border-color: var(--kozmo-navy-mid); background: var(--kozmo-navy-mid); }
.sw-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: rgba(232,78,27,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kozmo-orange);
  flex-shrink: 0;
}
.sw-icon svg { width: 28px; height: 28px; }
.sw-text { flex: 1; }
.sw-text h3 { color: var(--text-dark); margin-bottom: 0.375rem; font-size: 1.1rem; }
.sw-text p { color: var(--text-mid); font-size: 0.9rem; }
.sw-arrow { color: var(--text-light); flex-shrink: 0; }
.sw-card:not(.sw-card-primary):hover .sw-arrow { color: var(--kozmo-orange); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .brand-values-grid { grid-template-columns: repeat(2, 1fr); }
  .isb-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-trio-grid { grid-template-columns: 1fr; }
  .ft-divider { display: none; }
  .hero-slide { grid-template-columns: 52% 48%; }
  .hero-slide-panel { padding: 1.5rem 2rem 1.5rem 1.75rem; }
  .hero-addr-card { width: min(560px, calc(100% - 2rem)); }
}
@media (max-width: 768px) {
  .main-nav, .header-cta .btn-online { display: none; }
  .nav-search, .btn-search { display: none; }
  .hamburger { display: flex; }
  /* Paket/kampanya/blog/why kartları tablette 2 sütun kalsın (≤1024 kuralı);
     tek sütuna yalnızca telefonda (≤600px) düşsünler */
  .quick-access-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-values-grid { grid-template-columns: 1fr; }
  .subscribe-ways-grid { grid-template-columns: 1fr; }
  .isb-grid { grid-template-columns: 1fr; }
  /* Hero mobilde: tek sütun, görsel arka plan + metin üstte */
  .hero { height: auto; min-height: unset; padding-top: 70px; }
  .hero-slides { position: relative; }
  .hero-slide { position: relative; grid-template-columns: 1fr; grid-template-rows: 260px auto; opacity: 1; }
  .hero-slide:not(.active) { display: none; }
  .hero-slide.active { opacity: 1; }
  .hero-slide-photo { height: 260px; }
  .hero-slide-photo::after { display: none; }
  .hero-slide-panel { padding: 1.5rem 1.25rem; }
  .hero-arrow { display: none; }
  .hero-info-boxes { grid-template-columns: 1fr; }
  .hero-addr-card { width: calc(100% - 2rem); border-radius: var(--radius); }
}
/* Telefon: kart gridleri tek sütuna insin (tablette 2 sütun kalır) */
@media (max-width: 600px) {
  .packages-grid, .campaigns-grid, .blog-grid, .why-grid, .tn-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .packages-grid, .quick-access-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .subscribe-actions { flex-direction: column; align-items: center; }
  .subscribe-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-price-card { margin: 1rem 0 0.75rem; }
}

/* ============================================================
   TURUNCU GRADIENT ZONU — turk.net mor → bizde turuncu
   og = Orange Gradient
   ============================================================ */

/* Ana gradient wrapper — hero+adres+değerler --*/
.og-wave {
  background: linear-gradient(
    180deg,
    #0A0403 0%,
    #2C0C06 14%,
    #7A2009 30%,
    #C63812 50%,
    rgba(232,78,27,0.55) 68%,
    rgba(232,78,27,0.12) 84%,
    #F8F9FA 100%
  );
  position: relative;
}

/* Slaytlar gradiente karışsın — 2. ve 3. slayt dark bg */
.og-wave .tn-slide:not(.tn-slide--photo) {
  background: transparent;
}
.og-wave .img-placeholder--hero {
  display: none; /* placeholder yerine gradient göster */
}

/* Adres kartı — gradient üzerinde yüzer */
#hsOverlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 9;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.og-addr {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(680px, calc(100% - 3rem));
  margin: 0 auto;
  padding-bottom: 2.5rem;
  position: relative;
  z-index: 10;
}
.og-addr-label {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-align: center;
  margin-bottom: 0.875rem;
  letter-spacing: 0.01em;
}
.og-addr-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border-radius: 50px;
  padding: 1rem 1.5rem;
  cursor: pointer;
  width: 100%;
  transition: box-shadow 0.2s;
  user-select: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.og-addr-bar:hover { box-shadow: 0 6px 32px rgba(0,0,0,0.35); }
.og-addr-ph { flex:1; color: var(--text-light); font-size: 1rem; font-weight: 500; }
.og-addr-val { flex:1; color: var(--text-dark); font-size: 1rem; font-weight: 600; }

/* Değerler bölümü — gradient üzerinde */
.og-values {
  padding: 0 0 4rem;
  position: relative;
  z-index: 5;
}
.og-values-title {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.625rem;
}
.og-values-sub {
  color: rgba(255,255,255,0.68);
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

/* Değerler beyaz kart — gradient üzerinde yüzen card */
.og-vals-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
  overflow: hidden;
}

/* Sekmeler */
.og-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.og-tabs::-webkit-scrollbar { display: none; }
.og-tab {
  flex-shrink: 0;
  padding: 1.125rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.og-tab:hover { color: var(--kozmo-orange); }
.og-tab.active {
  color: var(--kozmo-orange);
  border-bottom-color: var(--kozmo-orange);
}

/* Panel içeriği */
.og-panels { position: relative; }
.og-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 380px;
}
.og-panel.active { display: grid; }
.og-panel-img {
  overflow: hidden;
  position: relative;
}
.img-placeholder--panel {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
  background: linear-gradient(135deg, #E9EBF0 0%, #D1D5DB 100%);
  border-radius: 0;
}
.og-panel-real-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Sağ kenarda beyaza blur+gradient geçiş */
.og-panel-img {
  position: relative;
}
.og-panel-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 45%,
    rgba(255,255,255,0.25) 65%,
    rgba(255,255,255,0.75) 80%,
    rgba(255,255,255,0.95) 92%,
    #ffffff 100%
  );
  pointer-events: none;
  z-index: 2;
}
.og-panel-text {
  padding: 2.5rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.og-panel-text h3 {
  color: var(--kozmo-navy);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.875rem;
  line-height: 1.25;
}
.og-panel-text > p {
  color: var(--text-mid);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.og-panel-feats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.og-pf {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}
.og-pf svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--kozmo-orange);
}
.og-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--kozmo-orange);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: gap 0.2s;
}
.og-panel-cta:hover { gap: 0.625rem; }

/* ============================================================
   BEYAZ ZONE — gradient'ten beyaza geçiş
   ============================================================ */

/* Alert banner — turk.net'teki cayma bedeli uyarısı gibi */
.og-alert-banner {
  background: #fff;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.og-alert-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(232,78,27,0.06);
  border: 1px solid rgba(232,78,27,0.18);
  border-radius: var(--radius);
  padding: 1.125rem 1.5rem;
  isolation: isolate;
}

/* Çevrede dönen ince shimmer ışığı */
@property --og-shimmer-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.og-alert-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  padding: 2.5px;
  background: conic-gradient(
    from var(--og-shimmer-angle),
    transparent 0deg,
    rgba(232,78,27,0.7) 30deg,
    rgba(255,244,238,1) 50deg,
    rgba(232,78,27,0.7) 70deg,
    transparent 110deg,
    transparent 180deg,
    rgba(232,78,27,0.7) 210deg,
    rgba(255,244,238,1) 230deg,
    rgba(232,78,27,0.7) 250deg,
    transparent 290deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: og-shimmer-rotate 4.5s linear infinite;
  pointer-events: none;
}
@keyframes og-shimmer-rotate {
  to { --og-shimmer-angle: 360deg; }
}
@media (prefers-reduced-motion: reduce) {
  .og-alert-inner::before { animation: none; }
}
.og-alert-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,78,27,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kozmo-orange);
  flex-shrink: 0;
}
.og-alert-icon svg { width: 22px; height: 22px; }
.og-alert-inner p {
  flex: 1;
  color: var(--text-dark);
  font-size: 0.9375rem;
  margin: 0;
}
.og-alert-inner p strong { color: var(--kozmo-navy); }
.og-alert-btn {
  padding: 0.6rem 1.375rem;
  border: 1.5px solid var(--kozmo-navy);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--kozmo-navy);
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}
.og-alert-btn:hover {
  background: var(--kozmo-navy);
  color: #fff;
}

/* ÖZELLİK BÖLÜMLERI — Image #6/#7 tarzı */
.og-feat {
  padding: 5rem 0;
  background: #fff;
}
.og-feat--tinted { background: var(--bg-light); }
.og-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.og-feat-img-wrap { overflow: hidden; }
.og-feat-img-wrap--rounded {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.og-feat-real-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.img-placeholder--feat-sq {
  width: 100%;
  aspect-ratio: 4/3;
  border: none;
  background: linear-gradient(135deg, #E9EBF0 0%, #D1D5DB 100%);
  border-radius: 0;
}
.og-feat-content {}
.og-feat-content h2 {
  color: var(--kozmo-navy);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 1.125rem;
  line-height: 1.2;
}
.og-feat-content h2 em {
  font-style: normal;
  color: var(--kozmo-orange);
}
.og-feat-content > p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.og-feat-content > p strong { color: var(--kozmo-navy); }
.og-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin: 1.25rem 0 2rem;
}
.og-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.og-steps li span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(232,78,27,0.1);
  color: var(--kozmo-orange);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.og-feat-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--kozmo-navy);
  color: #fff;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
  border: 2px solid var(--kozmo-navy);
}
.og-feat-btn:hover {
  background: var(--kozmo-navy-mid);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,31,60,0.25);
}
.og-feat-btn--outline {
  background: transparent;
  color: var(--kozmo-navy);
}
.og-feat-btn--outline:hover {
  background: var(--kozmo-navy);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  /* Tablet & mobil: tek kolon; fotoğrafı gizleme — metnin arkasında
     blur'lu ve şeffaf arkaplan olarak göster (fotoğraflar kaybolmasın) */
  .og-panel.active { grid-template-columns: 1fr; position: relative; }
  .og-panel-img {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }
  .og-panel-img::after { background: none; } /* masaüstü sağ-beyaz geçişini iptal et */
  .og-panel-real-img {
    height: 100%;
    min-height: 0;
    filter: blur(5px);
    opacity: 0.5;
    transform: scale(1.12); /* blur kenar boşluğunu kapat */
  }
  .og-panel-text { position: relative; z-index: 1; }
  .og-feat-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  /* Tablet/mobil: görseli üstten kliplemek yerine sabit oranla ortadan
     düzgün kırp (object-fit: cover, merkez) */
  .og-feat-img-wrap { overflow: hidden; }
  .og-feat-real-img { aspect-ratio: 16 / 10; object-position: center; }
  /* Mobilde tüm bölümlerde görsel üstte olsun (reverse bölümlerde görsel DOM'da 2.) */
  .og-feat--reverse .og-feat-img-wrap { order: -1; }
}
@media (max-width: 768px) {
  .og-addr { width: calc(100% - 2rem); }
  .og-tab { padding: 0.875rem 1rem; font-size: 0.8125rem; }
  .og-panel-text { padding: 1.75rem 1.5rem; }
  .og-alert-inner { flex-wrap: wrap; }
  .og-feat { padding: 3.5rem 0; }
}

/* ============================================================
   TURK.NET CLONE — Tüm yeni section stilleriBir sistem,
   turk.net tasarımını birebir Kozmonet renkleriyle uygular.
   ============================================================ */

/* --- GÖRSEL PLACEHOLDER KUTULAR --- */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: #F3F4F6;
  color: #9CA3AF;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  border: 2px dashed #D1D5DB;
  box-sizing: border-box;
}
.img-placeholder svg { opacity: 0.5; }
.img-placeholder span { opacity: 0.7; }
.img-placeholder--hero {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #E9EBF0 0%, #D1D5DB 100%);
  border: none;
  z-index: 0;
}
.img-placeholder--val {
  width: 100%;
  height: 180px;
  border-radius: var(--radius) var(--radius) 0 0;
  border-left: none;
  border-right: none;
  border-top: none;
  flex-shrink: 0;
}
.img-placeholder--int {
  width: 100%;
  height: 220px;
  border-radius: var(--radius) var(--radius) 0 0;
  border-left: none;
  border-right: none;
  border-top: none;
  flex-shrink: 0;
}
.img-placeholder--dark {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.05);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.4);
  border-radius: 12px;
}
.img-placeholder--dark svg { opacity: 0.4; }
.img-placeholder--feature {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: linear-gradient(135deg, #E9EBF0 0%, #D1D5DB 100%);
  border: none;
}
.img-placeholder--camp {
  width: 100%;
  height: 200px;
  border-radius: var(--radius) var(--radius) 0 0;
  border-left: none;
  border-right: none;
  border-top: none;
  flex-shrink: 0;
}
.img-placeholder--info {
  width: 100%;
  height: 160px;
  border-radius: var(--radius) var(--radius) 0 0;
  border-left: none;
  border-right: none;
  border-top: none;
  flex-shrink: 0;
}

/* --- TN BUTONLAR --- */
.tn-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.tn-btn-primary {
  background: var(--kozmo-orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,78,27,0.35);
}
.tn-btn-primary:hover {
  background: var(--kozmo-orange-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(232,78,27,0.45);
}
.tn-btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.tn-btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}
.tn-btn-outline {
  background: transparent;
  color: var(--kozmo-navy);
  border: 2px solid var(--kozmo-navy);
}
.tn-btn-outline:hover {
  background: var(--kozmo-navy);
  color: #fff;
}

/* --- SECTION HEAD --- */
.tn-section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}
.tn-section-head h2 { color: var(--text-dark); margin-bottom: 0.75rem; }
.tn-section-head p { color: var(--text-mid); font-size: 1.05rem; }
.tn-section-head--left { text-align: left; margin: 0 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.tn-section-head--left h2 { margin-bottom: 0; }
.tn-link-all {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--kozmo-orange);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.tn-link-all:hover { text-decoration: underline; }

/* ============================================================
   TN HERO — turk.net tam ekran hero slider
   ============================================================ */
.tn-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  max-height: 860px;
  overflow: hidden;
  margin-top: 0;
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 0%, black 78%,
    rgba(0,0,0,0.78) 87%,
    rgba(0,0,0,0.30) 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    black 0%, black 78%,
    rgba(0,0,0,0.78) 87%,
    rgba(0,0,0,0.30) 94%,
    transparent 100%
  );
}
.tn-slides { position: absolute; inset: 0; }
.tn-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.tn-slide.active { opacity: 1; z-index: 1; }
.tn-slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: 90px;
}
.tn-slide-text {
  max-width: 620px;
}
.tn-slide-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  backdrop-filter: blur(6px);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.tn-slide-text h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.tn-slide-text h1 em {
  font-style: normal;
  color: #FFD580;
}
.tn-slide-text p {
  color: rgba(255,255,255,0.88);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  max-width: 500px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}
.tn-slide-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Gerçek görsel içeren slayt */
.tn-slide--photo { background: #0A0403; }

.tn-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  z-index: 0;
}

/* Hafif karartma — renk vermez, mask'la birlikte doğal kayboluş */
.tn-slide--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent           0%,
    transparent           55%,
    rgba(0, 0, 0, 0.10)   70%,
    rgba(0, 0, 0, 0.30)   85%,
    rgba(0, 0, 0, 0.50)   100%
  );
  z-index: 2;
  pointer-events: none;
}

/* og-hero-blend — mask'ten görünen og-wave'i destekler */
.og-hero-blend {
  position: relative;
  z-index: 6;
  margin-top: -120px;
  height: 120px;
  background: transparent;
  pointer-events: none;
}

.tn-slide-photo-cta {
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 4;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .tn-slide-photo-cta { bottom: 18%; }
  .tn-slide-photo-cta .tn-btn { padding: 0.7rem 1.4rem; font-size: 0.875rem; }
}

/* Hero arrow buttons */
.tn-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(6px);
}
.tn-arrow:hover {
  background: var(--kozmo-orange);
  border-color: var(--kozmo-orange);
}
.tn-arrow-prev { left: 1.5rem; }
.tn-arrow-next { right: 1.5rem; }

/* Hero dots */
.tn-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.tn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  border: none;
  transition: all 0.28s ease;
}
.tn-dot.active {
  background: var(--kozmo-orange);
  width: 26px;
  border-radius: 4px;
}

/* ============================================================
   TN ADRES WIDGET
   ============================================================ */
.tn-addr-wrap {
  background: #fff;
  padding: 2.5rem 1.5rem;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}
.tn-addr-card {
  background: var(--kozmo-navy);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  width: min(680px, calc(100% - 2rem));
  position: relative;
  box-shadow: 0 8px 32px rgba(13,31,60,0.18);
}
.tn-addr-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-align: center;
  margin-bottom: 1rem;
}
.tn-addr-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border-radius: 50px;
  padding: 0.9rem 1.25rem;
  cursor: pointer;
  transition: box-shadow 0.2s;
  user-select: none;
}
.tn-addr-bar:hover {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}
.tn-addr-placeholder {
  flex: 1;
  color: var(--text-light);
  font-size: 0.9375rem;
  font-weight: 500;
}
.tn-addr-value {
  flex: 1;
  color: var(--text-dark);
  font-size: 0.9375rem;
  font-weight: 600;
}
.tn-addr-drop {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  z-index: 100;
  border: 1px solid var(--border);
}
.tn-addr-drop.open { display: block; }
.tn-drop-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.875rem;
  margin-bottom: 0.5rem;
}
.tn-drop-inp {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-dark);
}
.tn-drop-inp::placeholder { color: var(--text-light); }
.tn-drop-list {
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.tn-drop-item {
  padding: 0.6rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  border-radius: var(--radius-xs);
  transition: background 0.15s, color 0.15s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tn-drop-item::after { content: '›'; color: #D1D5DB; font-size: 1.1rem; }
.tn-drop-item:hover { background: rgba(232,78,27,0.07); color: var(--kozmo-orange); }
.tn-drop-next {
  padding: 0.55rem 1.25rem;
  background: var(--kozmo-navy);
  color: #fff;
  border: none;
  border-radius: var(--radius-xs);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.tn-drop-next:hover { background: var(--kozmo-navy-mid); }

/* Adres seçici: geri butonu */
.tn-drop-back {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
  padding: 0.35rem 0.6rem;
  background: var(--bg-light, #f5f3f0);
  color: var(--text-mid, #6B7280);
  border: none;
  border-radius: var(--radius-xs);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
}
.tn-drop-back:hover { background: rgba(232,78,27,0.1); color: var(--kozmo-orange); }
/* Adres barı: temizle (X) butonu */
.og-addr-clear {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  color: #6B7280;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.og-addr-clear:hover { background: rgba(232,78,27,0.12); color: var(--kozmo-orange); }
.tn-drop-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem;
  background: var(--kozmo-orange);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  box-shadow: 0 4px 16px rgba(232,78,27,0.35);
  margin-top: 0.5rem;
}
.tn-drop-submit:hover { background: var(--kozmo-orange-dark); }

/* ============================================================
   BİZİM OLAYIMIZ — 6 kart 3×2 grid
   ============================================================ */
.tn-values {
  padding: 5rem 0;
  background: #fff;
}
.tn-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tn-val-card {
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: #fff;
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.tn-val-card:hover {
  border-color: var(--kozmo-orange);
  box-shadow: 0 6px 24px rgba(232,78,27,0.12);
  transform: translateY(-4px);
}
.tn-val-body {
  padding: 1.5rem 1.75rem 1.75rem;
  flex: 1;
}
.tn-val-body h3 { color: var(--text-dark); font-size: 1.05rem; margin-bottom: 0.5rem; }
.tn-val-body p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.65; }

/* ============================================================
   İNTERNET BÖYLE OLMALI — yatay scroll kartlar
   ============================================================ */
.tn-internet {
  padding: 5rem 0 0;
  background: var(--bg-light);
}
.tn-internet-scroll-wrap {
  width: 100%;
  overflow: hidden;
  padding-bottom: 5rem;
}
.tn-internet-scroll {
  display: flex;
  gap: 1.25rem;
  padding: 0 max(1.5rem, calc((100vw - 1200px) / 2));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tn-internet-scroll::-webkit-scrollbar { display: none; }
.tn-int-card {
  flex-shrink: 0;
  width: 300px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: #fff;
  overflow: hidden;
  transition: all 0.25s ease;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.tn-int-card:hover {
  border-color: var(--kozmo-orange);
  box-shadow: 0 6px 24px rgba(232,78,27,0.12);
  transform: translateY(-4px);
}
.tn-int-body {
  padding: 1.5rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tn-int-body h3 { color: var(--text-dark); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.tn-int-body p { color: var(--text-mid); font-size: 0.875rem; line-height: 1.65; flex: 1; }
.tn-int-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--kozmo-orange);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: gap 0.2s;
}
.tn-int-card:hover .tn-int-link { gap: 0.5rem; }

/* ============================================================
   KOYU BANNER
   ============================================================ */
.tn-dark-banner {
  padding: 5rem 0;
  background: var(--kozmo-navy);
  position: relative;
  overflow: hidden;
}
.tn-dark-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(232,78,27,0.15) 0%, transparent 55%);
  pointer-events: none;
}
.tn-dark-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.tn-dark-text h2 { color: #fff; margin-bottom: 1rem; }
.tn-dark-text p { color: rgba(255,255,255,0.7); font-size: 1.0625rem; margin-bottom: 2rem; }
.tn-dark-tag {
  display: inline-block;
  background: rgba(232,78,27,0.2);
  color: var(--kozmo-orange-light);
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.tn-dark-visual {
  height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
}

/* ============================================================
   ÖZELLİK BÖLÜNMÜŞ — sol görsel sağ metin
   ============================================================ */
.tn-feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.tn-feature-split--reverse {
  direction: rtl;
}
.tn-feature-split--reverse > * { direction: ltr; }
.tn-feature-split--light { background: var(--bg-light); }
.tn-feat-img {
  min-height: 480px;
  overflow: hidden;
  position: relative;
}
.tn-feat-text {
  display: flex;
  align-items: center;
  padding: 4rem 3.5rem;
  background: #fff;
}
.tn-feature-split--light .tn-feat-text { background: var(--bg-light); }
.tn-feat-inner { max-width: 480px; }
.tn-tag {
  display: inline-block;
  background: rgba(232,78,27,0.08);
  color: var(--kozmo-orange);
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.tn-feat-inner h2 { color: var(--text-dark); margin-bottom: 1rem; }
.tn-feat-inner h2 em { font-style: normal; color: var(--kozmo-orange); }
.tn-feat-inner > p { color: var(--text-mid); font-size: 1.0625rem; margin-bottom: 1.75rem; }
.tn-feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}
.tn-feat-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-mid);
  font-weight: 500;
}
.tn-feat-list li svg { flex-shrink: 0; }
.tn-highlight-box {
  display: inline-flex;
  flex-direction: column;
  background: var(--kozmo-orange);
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  margin-bottom: 2rem;
}
.tn-hl-amount {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
.tn-hl-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}

/* ============================================================
   KAMPANYALAR — yatay scroll
   ============================================================ */
.tn-campaigns {
  padding: 5rem 0 0;
  background: #fff;
}
.tn-campaign-scroll-wrap {
  width: 100%;
  overflow: hidden;
  padding-bottom: 5rem;
}
.tn-campaign-scroll {
  display: flex;
  gap: 1.25rem;
  padding: 0.5rem max(1.5rem, calc((100vw - 1200px) / 2));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tn-campaign-scroll::-webkit-scrollbar { display: none; }
.tn-camp-card {
  flex-shrink: 0;
  width: 280px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: #fff;
  overflow: hidden;
  transition: all 0.25s ease;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.tn-camp-card:hover {
  border-color: var(--kozmo-orange);
  box-shadow: 0 6px 24px rgba(232,78,27,0.12);
  transform: translateY(-4px);
}
.tn-camp-img { width: 100%; height: 170px; object-fit: cover; display: block; }
.tn-camp-body {
  padding: 1.375rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tn-camp-body h3 { color: var(--text-dark); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.tn-camp-body p { color: var(--text-mid); font-size: 0.875rem; line-height: 1.65; flex: 1; }
.tn-camp-body .tn-int-link { margin-top: 1rem; }

/* ============================================================
   ABONELİK CTA — 2 büyük kart
   ============================================================ */
.tn-subscribe-cta {
  padding: 5rem 0;
  background: var(--bg-light);
}
.tn-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.tn-sub-card {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 2.25rem 2rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: #fff;
  transition: all 0.25s ease;
  color: inherit;
  text-decoration: none;
}
.tn-sub-card:hover {
  border-color: var(--kozmo-navy);
  box-shadow: 0 6px 24px rgba(13,31,60,0.1);
  transform: translateY(-3px);
}
.tn-sub-card--primary {
  background: var(--kozmo-navy);
  border-color: var(--kozmo-navy);
}
.tn-sub-card--primary:hover {
  background: var(--kozmo-navy-mid);
  border-color: var(--kozmo-navy-mid);
  box-shadow: 0 6px 24px rgba(13,31,60,0.22);
}
.tn-sub-card--primary .tn-sub-text h3 { color: #fff; }
.tn-sub-card--primary .tn-sub-text p { color: rgba(255,255,255,0.65); }
.tn-sub-card--primary .tn-sub-icon { background: rgba(255,255,255,0.1); color: #fff; }
.tn-sub-card--primary .tn-sub-arrow { color: rgba(255,255,255,0.5); }
.tn-sub-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(232,78,27,0.08);
  color: var(--kozmo-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tn-sub-icon svg { width: 30px; height: 30px; }
.tn-sub-text { flex: 1; }
.tn-sub-text h3 { color: var(--text-dark); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.375rem; }
.tn-sub-text p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.55; }
.tn-sub-arrow { width: 20px; height: 20px; flex-shrink: 0; color: var(--text-light); }
.tn-sub-card:not(.tn-sub-card--primary):hover .tn-sub-arrow { color: var(--kozmo-navy); }

/* ============================================================
   STATS BANDI — turk.net tarzı temiz versiyon
   ============================================================ */
.tn-stats-band {
  padding: 3rem 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tn-stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.tn-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  flex: 1;
  text-align: center;
}
.tn-stat-num {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--kozmo-navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.tn-stat-lbl {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 500;
}
.tn-stat-div {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   BİLGİ KARTLARI (Blog / İletişim / Destek)
   ============================================================ */
.tn-info-cards {
  padding: 5rem 0;
  background: var(--bg-light);
}
.tn-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tn-info-card {
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: #fff;
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.tn-info-card:hover {
  border-color: var(--kozmo-orange);
  box-shadow: 0 6px 24px rgba(232,78,27,0.1);
  transform: translateY(-4px);
}
.tn-info-img { width: 100%; height: 185px; object-fit: cover; display: block; }
.tn-info-body {
  padding: 1.5rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tn-info-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--kozmo-orange);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}
.tn-info-body h3 { color: var(--text-dark); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; flex: 1; }
.tn-info-body .tn-int-link { margin-top: auto; padding-top: 0.75rem; }

/* ============================================================
   RESPONSIVE — Yeni turk.net section'ları
   ============================================================ */
@media (max-width: 1024px) {
  .tn-values-grid { grid-template-columns: repeat(2, 1fr); }
  .tn-info-grid { grid-template-columns: repeat(2, 1fr); }
  .tn-dark-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .tn-dark-visual { height: 260px; }
  .tn-feature-split { grid-template-columns: 1fr; }
  .tn-feat-img { min-height: 320px; }
  .tn-feat-text { padding: 3rem 2rem; }
  .tn-feature-split--reverse { direction: ltr; }
  .tn-sub-grid { grid-template-columns: 1fr; }
  .tn-stats-grid { flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .site-header { padding: 0.625rem 1rem; }
  .tn-hero { height: 100svh; max-height: 720px; }
  .tn-slide-text h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .tn-slide-text p { font-size: 0.9375rem; }
  .tn-slide-actions { flex-direction: column; gap: 0.75rem; }
  .tn-slide-actions .tn-btn { width: 100%; max-width: 300px; justify-content: center; }
  /* Yön okları telefonda da görünsün — biraz küçük ve kenara yakın */
  .tn-arrow { width: 40px; height: 40px; }
  .tn-arrow svg { width: 18px; height: 18px; }
  .tn-arrow-prev { left: 0.75rem; }
  .tn-arrow-next { right: 0.75rem; }
  .tn-values-grid { grid-template-columns: 1fr; }
  /* .tn-info-grid tablette 2 sütun kalsın (≤1024 kuralı); tek sütuna ≤600'de iner */
  .tn-int-card { width: 260px; }
  .tn-camp-card { width: 260px; }
  .tn-sub-card { gap: 1.25rem; padding: 1.75rem 1.5rem; }
  .tn-addr-card { border-radius: var(--radius); }
  .tn-feat-text { padding: 2.5rem 1.5rem; }
  .tn-stats-grid { justify-content: flex-start; }
  .tn-stat { flex: 0 0 50%; padding: 1rem 0; }
  .tn-stat-div { display: none; }
}
@media (max-width: 480px) {
  .tn-hero { height: 88svh; min-height: 480px; }
  .tn-addr-card { padding: 1.25rem 1rem; }
  .tn-addr-wrap { padding: 1.5rem 1rem; }
  .tn-dark-banner { padding: 3.5rem 0; }
  .tn-feature-split .tn-feat-img { min-height: 260px; }
  .tn-int-card { width: 240px; }
  .tn-camp-card { width: 240px; }
}

/* ── Kampanya Detay ─────────────────────────────────────── */
.kd-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 0;
}
.kd-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}
.kd-hero-img--fallback { background: var(--kozmo-navy); }
.kd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,31,60,.92) 0%,
    rgba(13,31,60,.75) 55%,
    rgba(13,31,60,.30) 100%
  );
}
.kd-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 86px;
  padding-bottom: 2.5rem;
}
.kd-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
  font-size: .875rem;
}
.kd-breadcrumb a { color: rgba(255,255,255,.55); }
.kd-breadcrumb span { color: rgba(255,255,255,.35); }
.kd-breadcrumb span:last-child { color: rgba(255,255,255,.75); }
.kd-hero-title {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  max-width: 680px;
  margin-bottom: .875rem;
  line-height: 1.15;
}
.kd-validity {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border-radius: 50px;
  padding: .375rem .875rem;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  backdrop-filter: blur(4px);
}

/* Body */
.kd-body { padding: 4rem 0 3rem; }
.kd-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

/* Ana içerik */
.kd-highlight-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--kozmo-orange), #C43A10);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}
.kd-hl-number {
  font-size: 2.75rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
}
.kd-hl-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  line-height: 1.3;
}
.kd-desc {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 2rem;
}
.kd-features {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--kozmo-orange);
}
.kd-feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: var(--text-dark);
  font-weight: 500;
}
.kd-feature svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--kozmo-orange);
  stroke: var(--kozmo-orange);
}
.kd-back {
  font-size: .9rem;
  color: var(--text-mid);
  display: inline-block;
}
.kd-back:hover { color: var(--kozmo-orange); }

/* CTA Kutusu */
.kd-cta-card {
  background: #fff;
  border-radius: var(--radius);
  border: 2px solid var(--kozmo-orange);
  padding: 2rem;
  text-align: center;
  position: sticky;
  top: 90px;
  box-shadow: 0 8px 32px rgba(232,78,27,.12);
}
.kd-cta-highlight {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.kd-cta-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--kozmo-orange);
  line-height: 1;
}
.kd-cta-label {
  font-size: .875rem;
  color: var(--text-mid);
  margin-top: .25rem;
  font-weight: 600;
}
.kd-cta-date {
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.kd-cta-date strong { color: var(--kozmo-orange); }
.kd-cta-note {
  margin-top: 1rem;
  font-size: .8rem;
  color: var(--text-light);
}
.kd-cta-note a { color: var(--kozmo-orange); font-weight: 600; }

@media (max-width: 768px) {
  .kd-grid { grid-template-columns: 1fr; }
  .kd-sidebar { order: -1; }
  .kd-hero { min-height: 280px; }
}

/* ============================================================
   GLOBAL RESPONSIVE İNCE AYAR — Tablet & Telefon
   Mevcut yapı korunur; yalnızca küçük ekran davranışı eklenir.
   (Tüm kurallar media query içinde olduğundan masaüstü etkilenmez.)
   ============================================================ */

/* --- Yatay taşma güvenliği: hiçbir bölüm ekranı yana kaydırmasın.
   `clip` kullanıyoruz; `hidden`in aksine sticky/scroll davranışını bozmaz. --- */
@media (max-width: 1024px) {
  body { overflow-x: clip; }
}

/* --- HEADER / NAV — ara genişliklerde bozulmayı önle ---
   Uzun TR etiketleri yüzünden tam menü ~1100px altında sığmıyor.
   1100px altında hamburger'a geç; 1101–1280px arası öğeleri sıkılaştır. --- */
@media (min-width: 1101px) and (max-width: 1280px) {
  .header-inner { gap: 0.5rem; padding: 0 1rem; }
  .main-nav { gap: 0; }
  .nav-link { padding: 0.5rem 0.55rem; font-size: 0.84rem; }
  .nav-pkg-switch { margin: 0 2px; }
  .header-cta { gap: 0.4rem; }
  .btn-online { padding: 0.55rem 0.9rem; font-size: 0.84rem; }
}
/* 961–1100px (iPad mini yatay vb.): menüyü daha sıkı göster ki navbar boş
   kalmasın — arama ikonu gizli, etiketler kısaltılmış aralıklarla sığar */
@media (min-width: 961px) and (max-width: 1100px) {
  .header-inner { gap: 0.3rem; padding: 0 0.75rem; }
  .main-nav { display: flex; gap: 0; }
  .nav-link { padding: 0.45rem 0.45rem; font-size: 0.8rem; }
  .nav-pkg-switch { margin: 0; }
  .header-cta { gap: 0.3rem; }
  .btn-online { padding: 0.5rem 0.75rem; font-size: 0.8rem; }
  .nav-search, .btn-search { display: none; }
  .hamburger { display: none; }
}
/* Tablet hızlı erişim linkleri — varsayılan gizli, yalnızca tablet aralığında görünür */
.nav-quick { display: none; }
@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-search, .btn-search { display: none; }
  .hamburger { display: flex; }
  /* Nav gizliyken Bireysel/Kurumsal switch'i logo ile hamburger arasında,
     normal flex akışında ortala — mutlak konumlandırma dar ekranda logonun
     üstüne biniyordu (logo sol · switch orta · hamburger sağ) */
  .nav-pkg-switch {
    position: static;
    transform: none;
    margin: 0 auto;
  }
  /* btn-online/btn-search gizli olduğunda boş header-cta kutusu yer kaplamasın */
  .header-cta { display: none; }
}
/* 601–960px (iPad mini/air): orta boşluğu önemli linklerle doldur,
   Bireysel/Kurumsal switch'i sağa (hamburger yanına) al, bu linkleri
   hamburger menüsünden çıkar (sadeleştir) */
@media (min-width: 601px) and (max-width: 960px) {
  .nav-quick {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    margin: 0 auto; /* orta */
  }
  .nav-quick .nav-link {
    padding: 0.5rem 0.6rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  .nav-pkg-switch { margin: 0; } /* switch sağa: hamburger'ın yanında */
  /* Bu linkler navbar'da gösterildi — hamburger menüsünde tekrar etmesin */
  .main-nav.open .nav-link--quick { display: none; }
}

/* ---------- TABLET (≤ 1024px) ---------- */
@media (max-width: 1024px) {
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  /* Henüz tek/iki sütuna inmemiş yardımcı gridler için güvenlik ağı */
  .feature-trio-grid { grid-template-columns: 1fr; }
  .og-panel { grid-template-columns: 1fr; }
  .og-feat-grid { grid-template-columns: 1fr; }
}

/* ---------- BÜYÜK TELEFON / KÜÇÜK TABLET (≤ 768px) ---------- */
@media (max-width: 768px) {
  .container { padding-left: 1rem; padding-right: 1rem; }

  /* Bölümlerin dikey boşluklarını telefona göre küçült */
  .packages, .why-section, .coverage-section, .map-section, .campaigns,
  .blog-section, .brand-values, .feature-trio, .internet-should-be,
  .subscribe-ways, .subscribe-band, .promo-banner, .og-feat,
  .tn-values, .tn-internet, .tn-dark-banner, .tn-campaigns,
  .tn-subscribe-cta, .tn-info-cards {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
  .stats-band { padding-top: 2.75rem; padding-bottom: 2.75rem; }

  /* Bölüm başlığı tipografi/boşluk */
  .section-header { margin-bottom: 2rem; }
  .section-header p { font-size: 0.95rem; }

  /* Büyük butonlar telefonda biraz küçülsün */
  .btn-lg { padding: 0.875rem 1.5rem; font-size: 1rem; }

  /* Çerez bandı: dar ekranda metin + butonlar dikey dizilsin */
  #cookieBanner {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.875rem !important;
    padding: 1rem 1.1rem !important;
    text-align: left;
  }
  #cookieBanner > div:last-child { justify-content: stretch; }
  #cookieBanner > div:last-child button { flex: 1; }
}

/* ---------- TELEFON (≤ 480px) ---------- */
@media (max-width: 480px) {
  .container { padding-left: 0.875rem; padding-right: 0.875rem; }

  /* Header sıkışmasın */
  .site-header { padding-left: 1rem; padding-right: 1rem; }
  .header-inner { padding: 0 1rem; gap: 0.625rem; }
  .logo-icon { height: 32px; }
  .logo-text { font-size: 1.25rem; }

  /* Tipografi — çok küçük ekranda başlıklar taşmasın */
  h1 { font-size: clamp(1.6rem, 7.5vw, 2.1rem); }
  h2 { font-size: clamp(1.35rem, 5.5vw, 1.85rem); }

  /* Stat sütunları arası ayraç gizle, boşluğu sıkılaştır */
  .stats-grid { gap: 1.5rem 1rem; }
  .stat-divider { display: none; }

  /* Aksiyon satırlarındaki butonlar tam genişlik + ortalı */
  .hero-actions, .chv2-actions, .tn-slide-actions, .subscribe-actions {
    flex-direction: column;
  }
  .hero-actions .btn,
  .chv2-actions .btn,
  .tn-slide-actions .tn-btn,
  .subscribe-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Bölüm dikey boşluğunu biraz daha kıs */
  .packages, .why-section, .coverage-section, .map-section, .campaigns,
  .blog-section, .brand-values, .feature-trio, .internet-should-be,
  .subscribe-ways, .subscribe-band, .og-feat, .tn-values, .tn-internet,
  .tn-campaigns, .tn-subscribe-cta, .tn-info-cards {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }
}
