/*
Theme Name: PONIVA Next
Theme URI: https://www.pona.com.tr
Author: PONA Teknoloji
Author URI: https://www.pona.com.tr
Description: PONA Teknoloji kurumsal teması — siyah zemin, amber vurgu, PONIVA turkuazı. Ürün CPT'si, canlı tehdit haritası, form kayıtları ve özelleştirici destekli çok sayfalı yapı.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: poniva-next
*/

:root {
  --black: #0e0d0c;
  --black-2: #141312;
  --panel: rgba(255, 255, 255, .04);
  --line: rgba(255, 255, 255, .12);
  --white: #f5f3f0;
  --mut: #a8a29a;
  --coral: #f6a51e;
  --coral-2: #c47f12;
  --teal: #2fe0c8;
  --green: #4ade80;
  --sans: "Onest", "TT Hoves", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1240px;
  --radius: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: var(--white); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--coral); }

h1, h2, h3, h4, h5 { line-height: 1.08; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2.6rem, 5.8vw, 4.6rem); font-weight: 800; line-height: 1.02; }
h2 { font-size: clamp(2rem, 4.6vw, 3.5rem); font-weight: 800; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.1em; }

h1 .hl, h2 .hl { color: var(--coral); }
h1 .hl-soft, h2 .hl-soft { color: var(--teal); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 36px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

::selection { background: rgba(246, 165, 30, .35); }

/* Çapraz tarama ve nokta dokuları */
.tex-hatch { position: relative; overflow: hidden; }
.tex-hatch::before {
  content: ""; position: absolute; top: 0; right: 0; width: 46%; height: 70%;
  background: repeating-linear-gradient(-45deg, rgba(246, 165, 30, .28) 0 2px, transparent 2px 12px);
  -webkit-mask-image: linear-gradient(215deg, #000 10%, transparent 65%);
  mask-image: linear-gradient(215deg, #000 10%, transparent 65%);
  pointer-events: none;
}
/* Halftone bulut dokusu — dağınık nokta kümeleri (iki katman, farklı maske odakları) */
.tex-halftone, .page-hero { position: relative; }
.tex-halftone::before, .tex-halftone::after,
.page-hero::before, .page-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(rgba(255, 255, 255, .08) 1.7px, transparent 1.7px),
    radial-gradient(rgba(255, 255, 255, .05) 1.1px, transparent 1.1px);
  background-size: 26px 26px, 13px 13px;
  background-position: 0 0, 6.5px 6.5px;
}
.tex-halftone::before, .page-hero::before {
  -webkit-mask-image: radial-gradient(46% 62% at 15% 30%, #000, transparent);
  mask-image: radial-gradient(46% 62% at 15% 30%, #000, transparent);
}
.tex-halftone::after, .page-hero::after {
  background-size: 30px 30px, 15px 15px;
  background-position: 4px 8px, 12px 14px;
  -webkit-mask-image: radial-gradient(52% 68% at 84% 74%, #000, transparent);
  mask-image: radial-gradient(52% 68% at 84% 74%, #000, transparent);
}
.page-hero .container { position: relative; z-index: 1; }
.tex-halftone > .container, .tex-halftone > .header-inner { position: relative; z-index: 1; }

.tex-dots { position: relative; }
.tex-dots::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .07) 1.2px, transparent 1.2px);
  background-size: 22px 22px; pointer-events: none;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent);
  mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent);
}

/* ==========================================================================
   Etiketler (kicker) & butonlar
   ========================================================================== */

.kicker, .section-kicker {
  display: block; font-weight: 800; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .22em; color: var(--coral);
  margin-bottom: 22px;
}
.kicker.good { color: var(--green); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: 999px;
  font-weight: 800; font-size: .95rem; cursor: pointer;
  border: 1.5px solid transparent; transition: all .22s ease;
  white-space: nowrap; font-family: var(--sans);
}
.btn::after { content: "→"; transition: transform .2s ease; }
.btn:hover::after { transform: translateX(4px); }
.btn.no-arrow::after { content: none; }
.btn-primary { background: var(--coral); color: #16100d; }
.btn-primary:hover { background: #ffbf47; color: #16100d; }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .35); }
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); }
.btn-sm { padding: 10px 22px; font-size: .87rem; }

.link-underline {
  font-weight: 700; color: var(--white);
  border-bottom: 2px solid var(--white); padding-bottom: 3px;
}
.link-underline:hover { color: var(--coral); border-color: var(--coral); }

/* ==========================================================================
   Duyuru çubuğu + header
   ========================================================================== */

.announce {
  background: #000; color: var(--white); text-align: center;
  font-size: .85rem; font-weight: 600; padding: 10px 46px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.announce a { color: var(--white); }
.announce a:hover { color: var(--coral); }

.site-header {
  position: relative; z-index: 1000;
  background: rgba(14, 13, 12, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.header-inner {
  display: flex; align-items: center; gap: 34px;
  max-width: 1380px; margin: 0 auto; padding: 12px 36px;
}

.site-branding a { display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 800; font-size: 1.25rem; letter-spacing: -.02em; }
.site-branding img { max-height: 42px; width: auto; }
.logo-pona { height: 72px; width: auto; display: block; color: var(--white); }
.logo-pona text { font-family: var(--sans); }
.site-footer .logo-pona { height: 54px; }
.logo-mark {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--coral); color: #16100d; font-weight: 800; font-size: 1rem;
}

.main-nav { margin-left: 8px; }
.main-nav ul { list-style: none; display: flex; gap: 2px; margin: 0; padding: 0; }
.main-nav li { position: relative; }
.main-nav a { display: block; padding: 10px 15px; color: var(--white); font-weight: 700; font-size: .93rem; }
.main-nav a:hover { color: var(--coral); }
.main-nav li.current-menu-item > a,
.main-nav li.current_page_item > a { color: var(--coral); }

.main-nav .sub-menu {
  position: absolute; top: calc(100% + 12px); left: 0; min-width: 250px;
  background: #1b1a18; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .6); padding: 10px; display: block;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .22s ease;
}
.main-nav li:hover > .sub-menu,
.main-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav .sub-menu li { width: 100%; }
.main-nav .sub-menu a { padding: 10px 14px; font-size: .9rem; color: var(--mut); border-radius: 10px; }
.main-nav .sub-menu a:hover { color: var(--white); background: rgba(246, 165, 30, .1); }
.main-nav .menu-item-has-children > a::after { content: " ⌄"; font-size: .72em; opacity: .6; }
/* Yalnızca mobil menü panelinde görünür (bkz. 1080px medya sorgusu) */
.nav-mobile-cta, .nav-sub { display: none; }
:root {
  --nav-chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 9l7 7 7-7'/%3E%3C/svg%3E");
}

.header-cta { display: flex; gap: 12px; align-items: center; margin-left: auto; }

/* Dil değiştirici (Polylang) */
.lang-switch { display: flex; align-items: center; gap: 2px; margin-right: 6px; }
.lang-switch a {
  padding: 6px 9px; border-radius: 8px;
  font-size: .78rem; font-weight: 800; letter-spacing: .06em;
  color: var(--mut); transition: color .18s ease, background .18s ease;
}
.lang-switch a:hover { color: var(--white); background: rgba(255, 255, 255, .06); }
.lang-switch a.is-active { color: var(--coral); }
.lang-switch a + a { position: relative; }
.lang-switch a + a::before {
  content: ""; position: absolute; left: -2px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 12px; background: rgba(255, 255, 255, .18);
}
.lang-switch-mobile { display: none; }

/* Mega menü (Ürünler) — Palo Alto düzeni */
.mega-menu {
  position: absolute; top: 100%; left: 50%; right: auto; z-index: 1200;
  width: min(1380px, calc(100% - 24px));
  background: #fff; color: #1a1613;
  border: 1px solid #e5ddcf; border-top: none;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
  border-radius: 0 0 16px 16px; overflow: hidden;
  opacity: 0; visibility: hidden; transform: translate(-50%, 10px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
.mega-menu.is-open { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mm-inner { width: 100%; display: grid; grid-template-columns: 250px 1fr; }
.mm-rail { background: #fff; border-right: 1px solid #ece5d8; padding: 22px 0; display: flex; flex-direction: column; }
.mm-rail a { padding: 12px 28px; font-weight: 700; font-size: .92rem; color: #4a443c; transition: background .18s ease, color .18s ease; }
.mm-rail a:hover { background: #f7f3ec; color: #b06e08; }
.mm-rail a.is-active { background: #f4f1ec; color: #1a1613; }
.mm-rail .mm-all { margin-top: auto; color: #b06e08; }
/* "Tüm Ürünler" bir kategori değil; üzerine gelince zemin değil renk değişir */
.mm-rail .mm-all:hover { background: transparent; color: #8a5504; }
.mm-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.mm-card { padding: 28px 30px; border-left: 1px solid #ece5d8; border-bottom: 1px solid #ece5d8; }
.mm-card:nth-child(n+4) { border-bottom: none; }
.mm-card:hover { background: #faf7f1; }

/* Ürünler menüsü — soldaki kategoriye göre değişen panel */
/* Panel genişliği aktif panelin içeriğine göre belirlenir; sol kenar sabit
   kalsın, daralma yalnızca sağdan olsun diye ortalama yerine sola sabitlenir. */
.mega-menu.mm-fit {
  width: max-content; max-width: calc(100vw - 24px);
  left: max(12px, calc(50% - 665px));
  transform: translateY(10px);
}
.mega-menu.mm-fit.is-open { transform: translateY(0); }
.mm-panes { border-left: 1px solid #ece5d8; padding: 26px 34px 32px; min-width: 560px; }
.mm-pane { display: none; }
.mm-pane.is-active { display: block; animation: mmFade .2s ease; }
/* Genel Bakış kart ızgarası panelin kenarlarına dayanır */
.mm-pane-flush { margin: -26px -34px -32px; }
.mm-pane-flush .mm-grid { width: min(1080px, calc(100vw - 300px)); }
.mm-pane-flush .mm-card:first-child { border-left: none; }
.mm-pane-flush .mm-card:nth-child(4) { border-left: none; }
@keyframes mmFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.mm-pane-head {
  display: inline-flex; align-items: center; gap: 11px;
  font-weight: 800; font-size: 1.02rem; letter-spacing: .01em; color: #1a1613;
  margin-bottom: 20px;
}
.mm-pane-head .icon { width: 21px; height: 21px; color: var(--mc, var(--coral)); }
.mm-pane-head i { font-style: normal; color: #b06e08; transition: transform .18s ease; }
.mm-pane-head:hover { color: #b06e08; }
.mm-pane-head:hover i { transform: translateX(3px); }

.mm-pane-cols {
  display: grid; grid-template-columns: repeat(2, minmax(210px, 1fr)); gap: 0 44px;
  border-top: 1px solid #ece5d8; padding-top: 22px;
}
.mm-pane-col + .mm-pane-col { border-left: 1px solid #ece5d8; padding-left: 44px; }
.mm-pane-col h6 {
  margin: 0 0 14px; font-size: .96rem; font-weight: 800; color: #1a1613;
}
.mm-pane-col ul { list-style: none; margin: 0; padding: 0; }
.mm-pane-col li + li { margin-top: 2px; }
.mm-pane-col a {
  display: block; padding: 8px 0; font-size: .92rem; font-weight: 500; color: #4a443c;
  transition: color .16s ease;
}
.mm-pane-col a:hover { color: #b06e08; }

@media (max-width: 1100px) {
  .mm-panes { min-width: 0; padding: 22px 24px 26px; }
  .mm-pane-cols { grid-template-columns: 1fr; gap: 22px; }
  .mm-pane-col + .mm-pane-col { border-left: 0; padding-left: 0; border-top: 1px solid #ece5d8; padding-top: 20px; }
}
.mm-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: .88rem; text-transform: uppercase; letter-spacing: .12em;
  color: #1a1613; margin-bottom: 13px;
}
.mm-brand .icon { width: 19px; height: 19px; color: var(--mc, var(--coral)); }
.mm-card b { display: block; font-size: .96rem; color: #1a1613; margin-bottom: 7px; }
.mm-card p { color: #6f665c; font-size: .85rem; line-height: 1.6; margin: 0; font-weight: 500; }
.main-nav li.mm-active > a { color: var(--coral); }
/* Menü öğesi ile panel arasındaki boşlukta panelin kapanmaması için görünmez köprü */
.main-nav li.mm-active::after {
  content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 48px;
}

/* Kompakt mega menü — az içerikli paneller için dar, ortalanmış kutu */
.mega-menu.mm-compact { width: min(640px, calc(100% - 24px)); }
.mm-compact .mm-col { padding: 24px 30px 20px; }

/* Raysız sütunlu mega menü (İş Ortağı) — ikon başlıklı kolonlar */
.mm-cols-wrap { width: 100%; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.mm-cols-wrap .mm-col:first-child { border-left: none; }
.mm-ico {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(246, 165, 30, .13);
}
.mm-ico .icon { width: 18px; height: 18px; color: #b06e08; }

/* Liste tipli mega menü (Destek) — Ürünler ile aynı çerçeve */
.mm-grid-cols { grid-template-columns: repeat(3, 1fr); }
.mm-col { padding: 30px 34px; border-left: 1px solid #ece5d8; }
.mm-grid-cols .mm-col:first-child { border-left: none; }
.mm-col h5 {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 700; color: #1a1613;
  margin: 0 0 16px; padding-bottom: 13px; border-bottom: 1px solid #ece5d8;
}
.mm-col h5 .icon { width: 19px; height: 19px; color: var(--coral); }
.mm-col ul { list-style: none; margin: 0; padding: 0; }
.mm-col a { display: block; padding: 8px 0; font-size: .9rem; font-weight: 600; color: #4a443c; }
.mm-col a:hover { color: #b06e08; }

@media (max-width: 1080px) { .mega-menu { display: none; } }
.header-cta .btn-support { border-color: rgba(255, 255, 255, .3); }

.nav-toggle {
  display: none; background: none; border: 1.5px solid var(--line);
  border-radius: 10px; padding: 10px 12px; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; transition: all .25s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  /* backdrop-filter, sabit konumlu alt öğeler için kapsayıcı blok oluşturur;
     bu yüzden mobil menü paneli başlık kutusunun içine hapsoluyordu. */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--black); }

  .nav-toggle { display: block; margin-left: auto; margin-right: 0; }
  /* Butonlar mobil menü paneline taşındı; boş kutu kalınca kalıp
     düğmeyi sağ kenardan içeri itiyordu. */
  .header-cta { display: none; }
  /* Kapalıyken düzenden tamamen çıkar: ekranın sağında duran panel
     belgeyi yatayda genişletip sayfanın kaymasına yol açıyordu. */
  .main-nav {
    display: none;
    /* Başlığın hemen altına yerleşir; başlık kendi yerinde görünür kalır */
    position: absolute; top: 100%; left: 0; right: 0;
    max-height: calc(100vh - 100%); overflow-y: auto; -webkit-overflow-scrolling: touch;
    margin: 0; background: var(--black); padding: 22px 22px 34px;
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(0, 0, 0, .5);
  }
  .main-nav.is-open { display: block; animation: navAc .26s ease both; }
  /* Yatay kaydırma yerine dikey: translateX belge genisligini buyutup
     sayfada yatay kaydirma cubugu olusturuyordu. */
  @keyframes navAc { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
  /* Panel ekranın kalanını doldursun; arkadaki içerik menüye karışmasın */
  .main-nav.is-open { min-height: calc(100vh - 100%); }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { font-size: 1rem; font-weight: 600; padding: 13px 8px; }
  .main-nav > ul > li + li > a { border-top: 1px solid rgba(255, 255, 255, .06); }

  /* Mobil akordeon (JS ile mega menülerden üretilir) */
  .main-nav li.has-sub > a {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
  }
  /* Ok ikonu: SVG maskesi — metin karakteri (⌄) yazı tipine göre kayıyordu */
  .main-nav li.has-sub > a::after {
    content: ""; flex: none; width: 14px; height: 14px; opacity: .5;
    background: currentColor;
    -webkit-mask: var(--nav-chevron) center / 14px 14px no-repeat;
    mask: var(--nav-chevron) center / 14px 14px no-repeat;
    transition: transform .22s ease, opacity .22s ease;
  }
  .main-nav li.is-expanded > a { color: var(--coral); }
  .main-nav li.is-expanded > a::after { opacity: 1; transform: rotate(180deg); }
  .main-nav li.is-expanded > .nav-sub { display: block; }
  .nav-sub { padding: 2px 0 14px 4px; }
  .nav-sub-group + .nav-sub-group {
    margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(255, 255, 255, .06);
  }
  .nav-sub a {
    display: block; padding: 10px 8px; font-size: .98rem; font-weight: 600;
    color: var(--mut); border-top: 0;
  }
  .nav-sub a:active, .nav-sub a:hover { color: var(--coral); }

  /* Dil seçimi mobilde menü panelinin içinde */
  .header-cta .lang-switch { display: none; }
  .lang-switch-mobile { display: flex; justify-content: center; gap: 6px; margin-top: 18px; }
  .lang-switch-mobile a { padding: 8px 14px; font-size: .85rem; }

  .nav-mobile-cta { display: flex; gap: 10px; margin-top: 22px; }
  .nav-mobile-cta .btn {
    flex: 1; justify-content: center; text-align: center;
    padding: 11px 14px; font-size: .88rem;
  }
  .main-nav .sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent; padding-left: 16px;
  }
  .header-cta .btn-quote-desktop, .header-cta .btn-support { display: none; }
}

/* ==========================================================================
   Hero — sinematik zemin, iki tonlu başlık
   ========================================================================== */

.hero {
  position: relative; overflow: hidden;
  padding: 130px 0 140px;
  background:
    radial-gradient(900px 520px at 78% 30%, rgba(58, 96, 255, .16), transparent 60%),
    radial-gradient(700px 500px at 90% 80%, rgba(246, 165, 30, .1), transparent 60%),
    linear-gradient(180deg, #060606 0%, var(--black) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 640px; }
.hero h1 { margin-bottom: 8px; font-weight: 500; letter-spacing: -.03em; }
.hero h1 span, .hero h1 .l2 { display: block; color: var(--coral); }
.hero-lead { font-size: 1.18rem; color: var(--mut); max-width: 540px; margin: 22px 0 38px; font-weight: 500; }
.hero-lead b { color: var(--white); }
.hero-actions { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }

h2 { font-weight: 500; letter-spacing: -.02em; }

/* Radar hero */
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.radar-wrap { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.radar {
  position: relative; width: min(400px, 86%); aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .16);
  background: radial-gradient(circle at 50% 50%, rgba(246, 165, 30, .06) 0%, transparent 65%);
}
.radar::before, .radar::after {
  content: ""; position: absolute; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
}
.radar::before { inset: 18%; }
.radar::after { inset: 36%; }
.radar .cross-v { position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(255, 255, 255, .1); }
.radar .cross-h { position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: rgba(255, 255, 255, .1); }
.radar .sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(246, 165, 30, .5), transparent 75deg);
  animation: radarSpin 4.5s linear infinite; mix-blend-mode: screen;
}
@keyframes radarSpin { to { transform: rotate(360deg); } }
.radar .blip {
  position: absolute; width: 9px; height: 9px; border-radius: 50%;
  background: var(--coral); box-shadow: 0 0 14px var(--coral);
  animation: blipBlink 1.4s ease-in-out infinite;
}
.radar .blip.safe { background: var(--green); box-shadow: 0 0 14px var(--green); }
@keyframes blipBlink { 50% { opacity: .25; } }
.radar-readout {
  display: flex; gap: 28px; flex-wrap: wrap; justify-content: center;
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; color: var(--mut);
}
.radar-readout b { color: var(--coral); }
@media (prefers-reduced-motion: reduce) {
  .radar .sweep, .radar .blip { animation: none; }
}

/* ==========================================================================
   İkincil yapışkan bölüm menüsü
   ========================================================================== */

.section-nav {
  position: sticky; top: 0; z-index: 900;
  background: #0a0908; border-block: 1px solid rgba(255, 255, 255, .07);
}
body.admin-bar .section-nav { top: 32px; }
.section-nav .inner {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  max-width: 1380px; margin: 0 auto; padding: 0 24px;
  overflow-x: auto; scrollbar-width: none;
}
.section-nav .inner::-webkit-scrollbar { display: none; }
.section-nav a {
  padding: 18px 20px 15px; font-weight: 800; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--white);
  border-bottom: 3px solid transparent; white-space: nowrap;
}
.section-nav a:hover, .section-nav a.is-active { color: var(--white); border-bottom-color: var(--coral); }
.section-nav .btn { margin-left: 12px; flex-shrink: 0; }

/* ==========================================================================
   Dev başlık bölümü
   ========================================================================== */

.bigline { padding: 120px 0 100px; }
.bigline h2 { font-size: clamp(2.4rem, 5.8vw, 4.4rem); max-width: 900px; }
.bigline-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
@media (max-width: 900px) { .bigline-grid { grid-template-columns: 1fr; gap: 40px; } }
.bigline-grid h2 { margin: 0 0 30px; }
.bigline-grid p { color: var(--mut); font-size: 1.25rem; line-height: 1.75; margin: 0; max-width: 560px; }
.bigline-device { position: relative; display: flex; align-items: center; justify-content: center; }
.bigline-device::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: min(400px, 76%); aspect-ratio: 1; transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 165, 30, .12), transparent 68%);
  pointer-events: none;
}
/* Halka, cihaz kompozisyonunu tam çevreleyecek şekilde ortalanır */
.bd-ring {
  position: absolute; left: 50%; top: 50%;
  width: min(560px, 100%); transform: translate(-50%, -50%);
  pointer-events: none;
}
.bigline-device img {
  position: relative; z-index: 1; display: block;
  width: 84%; max-width: 470px; height: auto;
  filter: drop-shadow(0 26px 50px rgba(0, 0, 0, .5));
}

.bd-chip {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(18, 17, 16, .92); border: 1px solid rgba(246, 165, 30, .35);
  border-radius: 999px; padding: 9px 17px;
  font-size: .74rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  white-space: nowrap; box-shadow: 0 14px 34px rgba(0, 0, 0, .45);
}
.bd-chip .icon { width: 15px; height: 15px; color: var(--coral); }
.bd-c1 { top: 4%; left: -2%; }
.bd-c2 { top: 42%; right: -5%; }
.bd-c3 { bottom: 0; left: 4%; }
@media (max-width: 900px) {
  .bigline-device { flex-wrap: wrap; gap: 10px; padding-top: 10px; }
  .bd-chip { position: static; }
}

/* ==========================================================================
   İyi haber / kötü haber — veri anlatımı
   ========================================================================== */

.news-block { padding: 90px 0; }
.news-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr; gap: 50px; } }
.news-grid h3 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800; letter-spacing: -.02em; }
.news-grid .txt p { color: var(--mut); }
.news-grid.flip .txt { order: 2; }
@media (max-width: 900px) { .news-grid.flip .txt { order: 0; } }

/* Donut grafikler */
.donut-row { display: flex; gap: 60px; justify-content: center; flex-wrap: wrap; }
.donut { text-align: center; width: 240px; }
.donut .ring {
  --p: 0; --ring-col: var(--coral);
  width: 220px; height: 220px; margin: 0 auto; border-radius: 50%;
  background:
    radial-gradient(closest-side, var(--black) 79%, transparent 80% 100%),
    conic-gradient(var(--ring-col) calc(var(--p) * 1%), rgba(255, 255, 255, .14) 0);
  display: grid; place-items: center;
}
.donut .ring b { font-size: 2.6rem; font-weight: 800; letter-spacing: -.03em; }
.donut .d-title { color: var(--coral); font-weight: 800; font-size: 1.5rem; margin-top: 18px; letter-spacing: -.02em; }
.donut .d-sub { color: var(--mut); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; margin-top: 6px; line-height: 1.5; }

/* Bar grafikler */
.bars { display: grid; gap: 30px; }
.bar-item .b-label { font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--white); margin-bottom: 10px; }
.bar-item .b-track { display: flex; align-items: center; gap: 16px; }
.bar-item .b-fill {
  height: 26px; border-radius: 999px; width: 0;
  background: linear-gradient(90deg, rgba(246, 165, 30, .25), var(--coral));
  transition: width 1.2s cubic-bezier(.25, .7, .3, 1);
}
.bar-item .b-val { font-size: 1.9rem; font-weight: 800; letter-spacing: -.02em; }

/* ==========================================================================
   Cam istatistik kartları
   ========================================================================== */

.glass-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .glass-cards { grid-template-columns: 1fr; } }
.glass-card {
  position: relative; overflow: hidden;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 44px 38px; backdrop-filter: blur(6px);
}
.glass-card::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(246, 165, 30, .1) 0 2px, transparent 2px 14px);
  -webkit-mask-image: linear-gradient(215deg, #000 0%, transparent 55%);
  mask-image: linear-gradient(215deg, #000 0%, transparent 55%);
  pointer-events: none;
}
.glass-card .g-num { font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 800; letter-spacing: -.03em; color: var(--coral); }
.glass-card .g-num small { font-size: .55em; font-weight: 800; color: var(--white); }
.glass-card .g-title { font-size: 1.3rem; font-weight: 800; margin: 4px 0 18px; letter-spacing: -.02em; }
.glass-card p { color: var(--mut); font-size: .95rem; margin: 0; }

/* ==========================================================================
   Platform sekmeleri
   ========================================================================== */

.platform-tabs {
  display: flex; justify-content: center; gap: 10px;
  border-bottom: 1px solid var(--line); margin-bottom: 0;
  overflow-x: auto; scrollbar-width: none;
}
.platform-tabs::-webkit-scrollbar { display: none; }
.platform-tab {
  display: inline-flex; align-items: center; gap: 10px;
  background: none; border: none; cursor: pointer; font-family: var(--sans);
  padding: 20px 22px 17px; font-weight: 800; font-size: .95rem; color: var(--mut);
  border-bottom: 3px solid transparent; white-space: nowrap; transition: color .2s ease;
}
.platform-tab:hover { color: var(--white); }
.platform-tab.is-active { color: var(--white); border-bottom-color: var(--acc, var(--coral)); }
.platform-tab .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--acc, var(--coral)); }

.platform-panel { display: none; padding: 90px 0 40px; }
.platform-panel.is-active { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .platform-panel.is-active { grid-template-columns: 1fr; } }
.platform-panel h3 {
  font-size: clamp(1.9rem, 4vw, 3.1rem); font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em; line-height: 1.15;
  color: var(--acc, var(--coral));
}
.platform-panel .p-desc { color: var(--mut); font-size: 1.05rem; max-width: 520px; }
.platform-stats { display: flex; gap: 50px; margin: 30px 0 34px; flex-wrap: wrap; }
.platform-stats .ps b { display: block; font-size: 2.2rem; font-weight: 800; letter-spacing: -.02em; }
.platform-stats .ps span { color: var(--mut); font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
.platform-visual {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, .05), transparent), var(--black-2);
  padding: 34px; min-height: 300px; display: flex; flex-direction: column; justify-content: center; gap: 10px;
}
.platform-visual .row {
  display: flex; justify-content: space-between; padding: 12px 16px;
  background: rgba(0, 0, 0, .45); border-radius: 10px;
  font-size: .85rem; font-weight: 700;
}
.platform-visual .row span:last-child { color: var(--acc, var(--coral)); }

/* ==========================================================================
   Ürün kartları
   ========================================================================== */

.product-tabs { display: inline-flex; gap: 6px; border: 1px solid var(--line); border-radius: 999px; padding: 5px; margin-bottom: 46px; background: rgba(255, 255, 255, .03); }
.product-tab {
  border: none; background: transparent; color: var(--mut);
  padding: 10px 24px; border-radius: 999px; font-weight: 800; font-size: .9rem;
  cursor: pointer; font-family: var(--sans); transition: all .2s ease;
}
.product-tab.is-active { background: var(--coral); color: #16100d; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.product-card {
  position: relative; overflow: hidden;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 32px; display: flex; flex-direction: column;
  transition: all .25s ease;
}
.product-card::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(246, 165, 30, .12) 0 2px, transparent 2px 13px);
  -webkit-mask-image: linear-gradient(215deg, #000 0%, transparent 50%);
  mask-image: linear-gradient(215deg, #000 0%, transparent 50%);
  opacity: 0; transition: opacity .25s ease; pointer-events: none;
}
.product-card:hover { border-color: rgba(246, 165, 30, .6); transform: translateY(-5px); }
.product-card:hover::before { opacity: 1; }
.product-thumb {
  position: relative; display: flex; align-items: center; justify-content: center;
  margin: -12px -8px 22px; padding: 0; height: 210px;
  border-radius: 16px; overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, .05), transparent), var(--black-2);
}
.product-thumb::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 72%; aspect-ratio: 1; transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 165, 30, .12), transparent 68%);
  pointer-events: none;
}
.product-thumb img {
  position: relative; width: 100%; height: 100%;
  object-fit: cover; transition: transform .28s ease;
}
.product-card:hover .product-thumb img { transform: scale(1.04); }
.section-light .product-thumb { background: #f4efe6; border: 1px solid #ece5d8; }
.section-light .product-thumb::before { display: none; }

/* Turkuaz VPN cihaz kartları — tıklanamaz */
.tv-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.tv-card { cursor: default; }
.tv-card:hover { transform: none; }
.tv-thumb { height: 240px; padding: 26px 20px; }
.tv-thumb img { height: auto; max-height: 200px; object-fit: contain; }
.tv-name { font-size: 1.15rem; margin-bottom: 0; }

/* Turkuaz VPN — seri geneli özellikler */
.tv-ozellikler { margin-top: 64px; max-width: 900px; }
.tv-ozellikler h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 26px; }
.tv-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.tv-list li {
  position: relative; padding: 15px 0 15px 26px;
  color: var(--mut); font-size: 1rem; line-height: 1.7;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.tv-list li::before {
  content: "—"; position: absolute; left: 0; top: 15px;
  color: var(--coral); font-weight: 800;
}

.product-type { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .2em; color: var(--coral); margin-bottom: 12px; }
.product-name { font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; margin: 0 0 4px; }
.product-capacity { color: var(--mut); font-size: .92rem; margin-bottom: 18px; font-weight: 600; flex: 1; }
.product-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.product-features li { padding: 6px 0 6px 22px; position: relative; color: var(--mut); font-size: .9rem; }
.product-features li::before { content: "—"; position: absolute; left: 0; color: var(--coral); font-weight: 800; }
.product-card .btn { align-self: flex-start; }

/* ==========================================================================
   Logo / güven bandı
   ========================================================================== */

.trust-band { padding: 90px 0; text-align: center; }
.trust-band .t-label { font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .22em; color: var(--white); margin-bottom: 46px; }
.trust-row { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; align-items: center; color: var(--mut); }
.trust-row span { font-weight: 800; font-size: 1.05rem; letter-spacing: .04em; opacity: .8; }

/* ==========================================================================
   Bölümler / genel
   ========================================================================== */

.section { padding: 110px 0; }
.section-line { border-bottom: 1px solid rgba(255, 255, 255, .07); }
.section-head { max-width: 780px; margin-bottom: 60px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--mut); font-size: 1.06rem; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Çözüm kartları */
.solution-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.solution-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; background: var(--panel); transition: all .25s ease; }
.solution-card:hover { border-color: rgba(246, 165, 30, .6); transform: translateY(-4px); }
.solution-card h3 { font-weight: 800; }
.solution-card p { color: var(--mut); font-size: .94rem; }
.link-arrow { font-weight: 800; color: var(--coral); display: inline-flex; align-items: center; gap: 8px; }
.link-arrow::after { content: "→"; transition: transform .2s ease; }
.link-arrow:hover::after { transform: translateX(4px); }

/* Özellik kartları */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }
.feature-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; background: var(--panel); transition: all .25s ease; }
.feature-card::before {
  content: ""; position: absolute; top: 0; right: 0; width: 64%; height: 64%;
  background: repeating-linear-gradient(-45deg, color-mix(in srgb, var(--sc, var(--coral)) 34%, transparent) 0 2px, transparent 2px 11px);
  -webkit-mask-image: linear-gradient(215deg, #000 0%, transparent 62%);
  mask-image: linear-gradient(215deg, #000 0%, transparent 62%);
  pointer-events: none;
}
.feature-card:hover { border-color: rgba(246, 165, 30, .55); transform: translateY(-4px); }
.feature-icon { font-size: 1.7rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.12rem; font-weight: 800; }
.feature-card p { color: var(--mut); font-size: .93rem; margin: 0; }

/* Blog — kategori filtresi */
.cat-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.cat-filter a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--panel);
  font-size: .88rem; font-weight: 700; color: var(--mut);
}
.cat-filter a:hover { border-color: rgba(246, 165, 30, .5); color: var(--white); }
.cat-filter a.is-active { background: var(--coral); border-color: var(--coral); color: #16100d; }
.cat-filter small { font-size: .72rem; opacity: .7; font-weight: 800; }

/* Blog kartları */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 26px; }
@media (min-width: 900px) {
  .post-grid { grid-template-columns: repeat(3, 1fr); }
}
.post-card-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.post-card-meta .pc-date { color: var(--mut); font-weight: 700; letter-spacing: .06em; }
.post-card-more {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 16px;
  font-size: .85rem; font-weight: 800; color: var(--coral);
}
.post-card-more::after { content: "→"; transition: transform .2s ease; }
.post-card:hover .post-card-more::after { transform: translateX(4px); }

/* Tekil yazı */
.single-wrap { max-width: 820px; }
.post-meta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 18px; }
.post-meta-row .pm-cat {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: rgba(246, 165, 30, .14); border: 1px solid rgba(246, 165, 30, .4);
  color: var(--coral); font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
}
.post-foot {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--line);
}
.post-card {
  position: relative;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--panel); display: flex; flex-direction: column;
  transition: all .25s ease;
}
/* Kartın tamamı tıklanabilir: başlık bağlantısı kartı kaplar */
.post-card h3 a::after { content: ""; position: absolute; inset: 0; z-index: 2; }
.post-card-more { cursor: pointer; }
.post-card:hover { border-color: rgba(246, 165, 30, .55); transform: translateY(-5px); }
.post-card-thumb { aspect-ratio: 16/9; background: linear-gradient(140deg, #262421, #161514); position: relative; overflow: hidden; display: block; }
/* Beyaz zemin görselin kendi arkasında: saydam PNG logolar koyu kartta
   kaybolmuyor, görsel yüklenmeden de kart boş beyaz görünmüyor. */
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; background: #fff; }
.post-card-thumb svg.cover { width: 100%; height: 100%; display: block; }
.post-card-thumb .thumb-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 2rem; opacity: .6; }
.post-card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.post-card-meta { font-size: .74rem; color: var(--coral); font-weight: 800; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 10px; }
.post-card h3 { font-size: 1.14rem; }
.post-card h3 a { color: var(--white); }
.post-card h3 a:hover { color: var(--coral); }
.post-card-excerpt { color: var(--mut); font-size: .92rem; flex: 1; }

/* CTA */
.cta-band {
  padding: 120px 0; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(180deg, #1d1b19 0%, #232019 100%);
  border-top: 1px solid rgba(255, 255, 255, .07);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(760px 420px at 50% 115%, rgba(246, 165, 30, .22), transparent 65%);
  pointer-events: none;
}
.cta-box { position: relative; }
.cta-box h2 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
.cta-box p { color: var(--mut); max-width: 560px; margin: 20px auto 40px; font-size: 1.08rem; }
.cta-actions { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; align-items: center; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: #070606; border-top: 1px solid rgba(255, 255, 255, .08); padding: 84px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 60px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-about p { color: var(--mut); font-size: .93rem; margin-top: 16px; max-width: 320px; }
.footer-col h4 { font-size: .74rem; text-transform: uppercase; letter-spacing: .2em; color: var(--mut); margin-bottom: 22px; font-weight: 800; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: .95rem; font-weight: 600; }
.footer-contact li { color: var(--mut); font-size: .93rem; display: flex; gap: 12px; align-items: baseline; }
.footer-contact .c-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; min-width: 70px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; color: var(--mut);
}
.footer-social a:hover { border-color: var(--coral); color: var(--coral); }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 26px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--mut); font-size: .84rem; }
.footer-bottom a { color: var(--mut); }
.footer-bottom a:hover { color: var(--coral); }

/* Mega footer — açık zemin (Palo Alto düzeni) */
.site-footer.footer-light { background: #f7f5f0; border-top: none; padding: 76px 0 0; color: #1a1613; }
.footer-light a { color: #4a443c; font-weight: 500; font-size: .89rem; }
.footer-light a:hover { color: #b06e08; }
.mega-grid { display: grid; grid-template-columns: 1.9fr 1fr 1.1fr 1.3fr; gap: 44px; padding-bottom: 64px; }
@media (max-width: 1000px) { .mega-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .mega-grid { grid-template-columns: 1fr; } }
.mega-group h4 {
  font-size: .98rem; font-weight: 700; color: #1a1613; margin: 0 0 20px;
  padding-bottom: 13px; border-bottom: 1px solid #ddd6c8;
}
.mega-group ul { list-style: none; margin: 0; padding: 0; }
.mega-group li { margin-bottom: 13px; }
.mg-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 560px) { .mg-cols { grid-template-columns: 1fr; } }
.mg-sub { font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: #8a8175; margin-bottom: 15px; }
.mg-contact li { color: #6f665c; font-size: .89rem; line-height: 1.55; }

.footer-bottombar { border-top: 1px solid #ddd6c8; padding: 42px 0 34px; }
.fb-logo img { height: 46px; width: auto; display: block; margin-bottom: 26px; }
.fb-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.fb-legal { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.fb-legal a { font-size: .82rem; font-weight: 700; }
.fb-row .footer-social { margin-top: 0; }
.footer-light .footer-social a { border-color: #ddd6c8; color: #6f665c; }
.footer-light .footer-social a:hover { border-color: #b06e08; color: #b06e08; }
.footer-light .footer-social svg { width: 16px; height: 16px; fill: none; }
.footer-light .footer-social svg[fill="currentColor"] { fill: currentColor; }
.fb-copy { color: #8a8175; font-size: .8rem; margin-top: 22px; }

/* ==========================================================================
   İç sayfalar
   ========================================================================== */

.page-hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(700px 380px at 85% -20%, rgba(58, 96, 255, .12), transparent 60%),
    var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.page-hero .breadcrumb { color: var(--mut); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 20px; }
.page-hero .breadcrumb a { color: var(--mut); }
.page-hero .breadcrumb a:hover { color: var(--coral); }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
/* Ürünler sayfası — ana sayfa hero'suyla aynı ince başlık */
.page-hero-ince h1 { font-weight: 500; letter-spacing: -.03em; }
.page-hero p.lead { color: var(--mut); font-size: 1.12rem; max-width: 660px; margin-bottom: 0; }
.page-hero .entry-meta { margin-top: 8px; }

.content-area { padding: 90px 0; }
/* Yazı sayfasında başlık ile metin arası daha sıkı */
.single .page-hero { padding: 78px 0 44px; }
.single .content-area { padding: 46px 0 80px; }
.entry-content { max-width: 780px; font-size: 1.03rem; }
/* Gövde metni kırık beyaz; başlıklar tam beyaz kalır */
.entry-content p,
.entry-content li,
.entry-content dd,
.entry-content td { color: #d9d4cb; }
.entry-content strong { color: var(--white); }
.entry-content a { color: var(--coral); text-decoration: underline; text-underline-offset: 3px; }
.entry-content h2, .entry-content h3 { margin-top: 1.6em; }
.entry-content h2 { font-size: 1.85rem; }
.entry-content img { border-radius: 16px; display: block; margin: 1.8em auto; max-width: 100%; height: auto; }

/* Yazı içi görseller — kaynak boyutu ne olursa olsun tek tip çerçeve */
.entry-content .post-figure {
  display: grid; place-items: center; gap: 16px;
  width: fit-content; max-width: 100%;
  margin: 2.2em auto; padding: 0;
  border: 0; border-radius: 18px; overflow: hidden;
  background: none;
}
.entry-content .post-figure img {
  margin: 0; border-radius: 10px;
  width: auto; max-width: 100%; max-height: 340px; height: auto;
  object-fit: contain;
}
/* Mağaza rozeti gibi küçük, geniş görseller kendi ölçüsünde kalır */
.entry-content .post-figure img.is-badge { max-height: 54px; border-radius: 8px; }
.entry-content .post-figure:has(img.is-badge) { min-height: 0; padding: 22px; }
/* Rozetler yan yana tek satırda */
.entry-content .post-figure-badges {
  grid-auto-flow: column; grid-auto-columns: max-content;
  justify-content: center; gap: 26px; flex-wrap: wrap;
}
@media (max-width: 620px) {
  .entry-content .post-figure-badges { grid-auto-flow: row; gap: 18px; }
}
@media (max-width: 620px) {
  .entry-content .post-figure { padding: 12px; min-height: 0; }
  .entry-content .post-figure img { max-height: 260px; }
}
.entry-content .post-figure figcaption {
  color: var(--mut); font-size: .85rem; line-height: 1.6; text-align: center; margin: 0;
}
.entry-content iframe {
  display: block; width: 100%; aspect-ratio: 16 / 9; height: auto;
  border: 0; border-radius: 16px; margin: 1.8em 0;
}
.entry-content > *:first-child { margin-top: 0; }
.entry-content h2:first-child, .entry-content h3:first-child { margin-top: 0; }
.entry-content blockquote {
  margin: 1.7em 0; padding: 18px 26px; border-left: 3px solid var(--coral);
  background: var(--panel); border-radius: 0 14px 14px 0; color: var(--mut);
}
.entry-content ul li, .entry-content ol li { margin-bottom: .5em; }
.entry-content code { background: rgba(255, 255, 255, .08); padding: 2px 8px; border-radius: 6px; font-size: .9em; }
.entry-content pre { background: #000; border: 1px solid var(--line); border-radius: 14px; padding: 20px; overflow-x: auto; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
.entry-content th, .entry-content td { border: 1px solid var(--line); padding: 12px 16px; text-align: left; }
.entry-content th { background: var(--panel); }

.entry-meta { color: var(--mut); font-size: .88rem; font-weight: 700; }
/* Haber görseli: ölçülü boyut, beyaz zemin (şeffaf logolar kaybolmasın) */
.single-thumb {
  width: fit-content; max-width: 100%; margin: 0 auto 42px;
  border-radius: var(--radius); overflow: hidden; background: #fff;
}
.single-thumb img { display: block; width: auto; max-width: 100%; max-height: 480px; height: auto; }
@media (max-width: 620px) { .single-thumb img { max-height: 300px; } }

/* Sayfalama */
.pagination, .nav-links { display: flex; gap: 8px; margin-top: 60px; flex-wrap: wrap; }
.pagination .page-numbers, .nav-links .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 46px; height: 46px; padding: 0 14px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--white); font-weight: 800; background: var(--panel);
}
.pagination .page-numbers.current, .nav-links .page-numbers.current { background: var(--coral); color: #16100d; border-color: var(--coral); }
.pagination .page-numbers:hover, .nav-links .page-numbers:hover { border-color: var(--coral); color: var(--coral); }
.pagination .page-numbers.current:hover, .nav-links .page-numbers.current:hover { color: #16100d; }

/* Formlar */
input[type="text"], input[type="email"], input[type="tel"], input[type="url"],
input[type="search"], input[type="number"], textarea, select {
  width: 100%; padding: 15px 20px; border-radius: 12px;
  background: rgba(255, 255, 255, .05); border: 1px solid var(--line); color: var(--white);
  font-family: var(--sans); font-size: 1rem; transition: border-color .2s ease;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--coral); }
label { font-weight: 800; font-size: .88rem; display: block; margin-bottom: 8px; }
input[type="submit"], button[type="submit"] {
  background: var(--coral); color: #16100d; border: none; border-radius: 999px;
  padding: 15px 34px; font-weight: 800; font-size: 1rem; cursor: pointer; font-family: var(--sans);
  transition: background .2s ease;
}
input[type="submit"]:hover, button[type="submit"]:hover { background: #ffbf47; }

.form-msg { border: 1px solid var(--line); border-radius: 14px; padding: 18px 24px; margin-bottom: 30px; font-weight: 700; }
.form-msg.ok { border-color: rgba(74, 222, 128, .5); color: var(--green); background: rgba(74, 222, 128, .07); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Hakkımızda — hikâye, zaman çizelgesi, üyelik rozetleri */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-grid p { color: var(--mut); font-size: 1.04rem; line-height: 1.8; }
.about-media { position: relative; display: flex; align-items: center; justify-content: center; }
.about-media::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: min(420px, 88%); aspect-ratio: 1; transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 165, 30, .12), transparent 68%);
  border: 1px solid rgba(246, 165, 30, .22);
  pointer-events: none;
}
.about-media img { position: relative; z-index: 1; width: 100%; max-width: 520px; height: auto; filter: drop-shadow(0 26px 50px rgba(0, 0, 0, .55)); }

.timeline { list-style: none; margin: 0; padding: 0 0 0 34px; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--coral), rgba(246, 165, 30, .12));
}
.timeline li { position: relative; padding: 0 0 40px 0; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -34px; top: 7px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--black); border: 3px solid var(--coral);
}
.tl-year {
  display: inline-block; font-size: .76rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase; color: var(--coral); margin-bottom: 8px;
}
.timeline h3 { font-size: 1.2rem; font-weight: 800; margin: 0 0 8px; }
.timeline p { color: var(--mut); font-size: .97rem; margin: 0; max-width: 640px; }

/* ==========================================================================
   Çözüm sayfaları
   ========================================================================== */

/* ==========================================================================
   Çözüm sayfaları — kurumsal düzen
   ========================================================================== */

.solution-page .sol-kicker { color: var(--sol, var(--coral)); }

/* Ortak etiket: küçük, aralıklı, çözüm rengiyle */
.sol-eyebrow {
  display: block; font-size: .72rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--sol, var(--coral));
}

/* --- Hero --- */
.sol-hero {
  padding: 54px 0 74px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(760px 400px at 88% -20%, color-mix(in srgb, var(--sol, var(--coral)) 13%, transparent), transparent 64%),
    var(--black);
}
/* Hero'nun sağındaki soluk fotoğraf; sola doğru zemine karışır */
.sol-hero { position: relative; overflow: hidden; }
.sol-hero > .container { position: relative; z-index: 1; }
.sol-hero-foto {
  position: absolute; top: 0; right: 0; bottom: 0; width: 58%;
  background-size: cover; background-position: center;
  opacity: .3; filter: grayscale(.4) contrast(1.05);
  -webkit-mask-image: radial-gradient(130% 108% at 100% 50%, #000 32%, transparent 76%);
  mask-image: radial-gradient(130% 108% at 100% 50%, #000 32%, transparent 76%);
  pointer-events: none;
}
/* Çözüm renginde ince perde — fotoğraf sayfanın paletine oturur */
.sol-hero-foto::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--black), color-mix(in srgb, var(--sol, var(--coral)) 30%, transparent));
  mix-blend-mode: overlay;
}
@media (max-width: 900px) { .sol-hero-foto { width: 82%; opacity: .18; } }

/* Fotoğraf yerine üretilen soyut grafik */
.sol-hero-sanat {
  position: absolute; top: 0; right: 0; bottom: 0; width: 62%;
  color: var(--sol, var(--coral)); pointer-events: none; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 46%);
  mask-image: linear-gradient(90deg, transparent, #000 46%);
}
.sol-hero-sanat svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.sol-sanat-ag { opacity: .8; }
/* Noktalı dünya haritası (ana sayfadakiyle aynı üretici) */
.sol-sanat-dunya { opacity: .9; width: 66%; }
.sol-sanat-dunya svg { object-fit: contain; }
.sol-sanat-dunya .tm-dots { fill: color-mix(in srgb, var(--sol, var(--coral)) 55%, #ffffff); opacity: .3; }
.sol-sanat-kure .tm-dots { fill: currentColor; opacity: .28; }

/* Haritada solda kalan Trakya/Ege kaybolmasın diye geçiş dar tutulur */
.sol-sanat-harita {
  opacity: .85;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%);
  mask-image: linear-gradient(90deg, transparent, #000 18%);
}
.sol-sanat-akis { opacity: .55; }
@media (max-width: 900px) { .sol-hero-sanat { width: 88%; opacity: .3; } }

.sol-crumb {
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
  font-size: .82rem; color: var(--mut); margin-bottom: 44px;
}
.sol-crumb a { color: var(--mut); }
.sol-crumb a:hover { color: var(--white); }
.sol-crumb strong { color: var(--white); font-weight: 600; }

/* Bilgi kutusu hero'dan çıkarıldı; başlık bloğu tek sütun */
.sol-hero-grid { display: block; }
/* İki sütunlu hero (iletişim): solda metin, sağda form */
.sol-hero-grid.sol-hero-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
@media (max-width: 980px) { .sol-hero-grid.sol-hero-2 { grid-template-columns: 1fr; gap: 40px; } }
.sol-hero-2 .sol-hero-main h1 { max-width: 13ch; }
.sol-hero-2 .form-panel { background: rgba(20, 19, 17, .82); backdrop-filter: blur(6px); }
/* Başlık ölçüsü ve kalınlığı ana sayfa hero'suyla aynı */
.sol-hero-main h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem); font-weight: 500;
  line-height: 1.02; letter-spacing: -.03em;
  margin: 16px 0 24px; max-width: 15ch;
}
.sol-lead { color: var(--mut); font-size: 1.14rem; line-height: 1.75; max-width: 52ch; margin: 0 0 34px; }
.sol-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero yanındaki kısa bilgi kutusu */
.sol-facts {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255, 255, 255, .025); padding: 28px 30px;
}
.sol-facts h2 {
  font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mut); margin: 0 0 6px;
}
.sol-facts dl { margin: 0; }
.sol-fact { padding: 18px 0; border-top: 1px solid rgba(255, 255, 255, .08); }
.sol-fact:first-child { border-top: 0; padding-top: 0; }
.sol-fact dt {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .96rem; margin-bottom: 6px;
}
.sol-fact dt .icon { width: 18px; height: 18px; flex: none; color: var(--sol, var(--coral)); }
.sol-fact dd { margin: 0; color: var(--mut); font-size: .9rem; line-height: 1.65; }

/* Hero altındaki yetenek şeridi */
.sol-keys {
  padding: 38px 0; border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--sol, var(--coral)) 4%, rgba(255, 255, 255, .02));
}
.sol-keys ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
@media (max-width: 900px) { .sol-keys ul { grid-template-columns: 1fr; gap: 26px; } }
.sol-keys li { display: flex; align-items: flex-start; gap: 14px; }
.sol-keys li + li { border-left: 1px solid var(--line); padding-left: 40px; }
@media (max-width: 900px) { .sol-keys li + li { border-left: 0; padding-left: 0; } }
.sol-keys .icon { width: 22px; height: 22px; flex: none; color: var(--sol, var(--coral)); margin-top: 2px; }
.sol-keys strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.sol-keys span { display: block; color: var(--mut); font-size: .93rem; line-height: 1.65; }

/* --- Bölüm iskeleti: solda etiket, sağda içerik --- */
.sol-section { padding: 78px 0; border-bottom: 1px solid var(--line); }
.sol-split { display: grid; grid-template-columns: 190px 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .sol-split { grid-template-columns: 1fr; gap: 18px; } }
.sol-split-label { position: sticky; top: 110px; }
@media (max-width: 900px) { .sol-split-label { position: static; } }
.sol-split-body { max-width: 780px; }
.sol-split-body > h2 {
  font-size: clamp(1.5rem, 2.9vw, 2.05rem); letter-spacing: -.02em;
  margin: 0 0 24px; max-width: 22ch;
}
.sol-split-body > h2 .hl { color: var(--sol, var(--coral)); }
.sol-split-body > p { color: var(--mut); font-size: 1.03rem; line-height: 1.85; margin: 0 0 18px; }
.sol-note { font-size: .95rem !important; }

.sol-problem-band { background: rgba(255, 255, 255, .015); }

/* "Neden önemli?" — sayfanın ana anlatım bölümü, daha iri tipografi */
.sol-why .sol-split-body { max-width: 900px; }
.sol-why .sol-split-body > h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); max-width: 20ch; margin-bottom: 30px; }
.sol-why .sol-split-body > p { font-size: 1.22rem; line-height: 1.8; margin-bottom: 24px; }
@media (max-width: 600px) { .sol-why .sol-split-body > p { font-size: 1.08rem; } }

/* Yetenekler — kart yerine künye listesi */
.sol-caps { margin: 0; border-top: 1px solid var(--line); }
.sol-cap {
  display: grid; grid-template-columns: 260px 1fr; gap: 28px;
  padding: 20px 0; border-bottom: 1px solid rgba(255, 255, 255, .07);
}
@media (max-width: 700px) { .sol-cap { grid-template-columns: 1fr; gap: 6px; } }
.sol-cap dt { font-weight: 700; font-size: .99rem; }
.sol-cap dd { margin: 0; color: var(--mut); font-size: .95rem; line-height: 1.75; }

/* Uygulama adımları */
.sol-steps-band { background: rgba(255, 255, 255, .015); }
.sol-steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.sol-steps li {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px;
  padding: 22px 0; border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.sol-step-no {
  font-size: .82rem; font-weight: 800; letter-spacing: .1em;
  color: var(--sol, var(--coral)); padding-top: 3px;
  font-variant-numeric: tabular-nums;
}
.sol-steps h3 { font-size: 1rem; font-weight: 700; margin: 0 0 6px; }
.sol-steps p { margin: 0; color: var(--mut); font-size: .95rem; line-height: 1.75; }

/* Uyumlu modeller */
.sol-models { list-style: none; margin: 0 0 24px; padding: 0; border-top: 1px solid var(--line); }
.sol-models a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, .07);
  color: var(--white); transition: color .18s ease;
}
.sol-models a:hover { color: var(--sol, var(--coral)); }
.sol-models strong { font-weight: 700; font-size: 1rem; }
.sol-models span { color: var(--mut); font-size: .9rem; text-align: right; }

/* Güven bandı */
.sol-trust { padding: 46px 0; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .022); }
.sol-trust ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px;
}
@media (max-width: 900px) { .sol-trust ul { grid-template-columns: repeat(2, 1fr); gap: 26px; } }
@media (max-width: 520px) { .sol-trust ul { grid-template-columns: 1fr; } }
.sol-trust li { display: flex; align-items: flex-start; gap: 12px; }
.sol-trust .icon { width: 20px; height: 20px; flex: none; color: var(--sol, var(--coral)); margin-top: 2px; }
.sol-trust span { display: block; color: var(--mut); font-size: .88rem; line-height: 1.6; }
.sol-trust strong { display: block; color: var(--white); font-size: .95rem; font-weight: 700; margin-bottom: 2px; }

/* --- DENEME: içeriğe göre renklendirilmiş çözüm sayfası (.sol-tinted) --- */
.sol-tinted .sol-hero {
  background:
    radial-gradient(880px 520px at 86% -12%, color-mix(in srgb, var(--sol) 20%, transparent), transparent 62%),
    linear-gradient(165deg, color-mix(in srgb, var(--sol) 8%, #0c0c0b) 0%, var(--black) 62%);
  border-bottom-color: color-mix(in srgb, var(--sol) 24%, transparent);
}
.sol-tinted .sol-hero-main h1 .hl { color: var(--sol); }
.sol-tinted .sol-facts {
  background:
    linear-gradient(150deg, color-mix(in srgb, var(--sol) 12%, transparent), rgba(255, 255, 255, .02) 62%);
  border-color: color-mix(in srgb, var(--sol) 30%, transparent);
}
.sol-tinted .sol-fact { border-top-color: color-mix(in srgb, var(--sol) 20%, transparent); }

/* Bilgi kutusu yerine konuyu anlatan çizim */
.sol-tinted .sol-actions .btn-primary {
  background: var(--sol); color: #0c1017; border-color: transparent;
}
.sol-tinted .sol-actions .btn-primary:hover { filter: brightness(.86); color: #0c1017; }
.sol-tinted .sol-actions .btn-ghost { border-color: color-mix(in srgb, var(--sol) 45%, transparent); }
.sol-tinted .sol-actions .btn-ghost:hover {
  border-color: var(--sol); color: var(--sol);
}

/* "Neden önemli?" bandı — çözüm rengiyle yumuşak zemin ve sol kenar vurgusu */
.sol-tinted .sol-why {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--sol) 7%, transparent), transparent 78%),
    var(--black);
}
/* Bölüm etiketlerinin solunda çözüm rengiyle dikey çizgi */
.sol-tinted .sol-split-label { border-left: 2px solid var(--sol); padding-left: 18px; }
@media (max-width: 900px) {
  .sol-tinted .sol-split-label { border-left: 0; padding-left: 0; }
}
.sol-tinted .sol-trust {
  background: color-mix(in srgb, var(--sol) 5%, rgba(255, 255, 255, .022));
  border-bottom-color: color-mix(in srgb, var(--sol) 18%, transparent);
}

.sol-section .faq-list { max-width: none; }
.sol-section .post-grid { margin-top: 4px; }

/* SSS akordiyon */
.faq-list { max-width: 900px; display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--line); border-radius: 16px;
  background: var(--panel); overflow: hidden;
}
.faq-item[open] { border-color: color-mix(in srgb, var(--sol, var(--coral)) 45%, transparent); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 22px 60px 22px 26px;
  font-weight: 700; font-size: 1.02rem; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--sol, var(--coral)); line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--sol, var(--coral)); }
.faq-body { padding: 0 26px 24px; }
.faq-body p { color: var(--mut); font-size: .98rem; line-height: 1.8; margin: 0; }

/* Çözümler genel bakış kartları */
.sol-group { margin-bottom: 60px; }
.sol-group > h3 {
  font-size: .82rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--mut); margin-bottom: 26px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
a.solution-card { display: block; color: var(--white); }
a.solution-card:hover { color: var(--white); }
a.solution-card h3 { color: var(--white); font-size: 1.15rem; }
a.solution-card p { min-height: 76px; }
a.solution-card .link-arrow { color: var(--sc, var(--coral)); }
a.solution-card:hover .link-arrow::after { transform: translateX(4px); }

/* Ürünler sayfası — marka kartları (ürün kartı düzeni) */
.marka-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.marka-kart {
  position: relative; overflow: hidden;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 32px; display: flex; flex-direction: column;
  color: var(--white); transition: border-color .25s ease, transform .25s ease;
}
.marka-kart:hover {
  border-color: color-mix(in srgb, var(--sc, var(--coral)) 60%, transparent);
  transform: translateY(-5px);
}
.marka-gorsel {
  position: relative; display: flex; align-items: center; justify-content: center;
  margin: -12px -8px 22px; padding: 22px 26px; height: 194px;
  border-radius: 16px; overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, .05), transparent), var(--black-2);
}
.marka-gorsel::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 74%; aspect-ratio: 1; transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--sc, var(--coral)) 16%, transparent), transparent 68%);
  pointer-events: none;
}
.marka-gorsel img {
  position: relative; max-width: 100%; max-height: 100%;
  width: auto; height: auto; object-fit: contain;
  transition: transform .28s ease;
}
.marka-kart:hover .marka-gorsel img { transform: scale(1.04); }
.marka-ikon { position: relative; color: var(--sc, var(--coral)); }
.marka-ikon svg { width: 78px; height: 78px; stroke-width: 1.3; }
.marka-tip {
  font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .2em;
  color: var(--sc, var(--coral)); margin-bottom: 12px;
}
.marka-ad { font-size: 1.7rem; font-weight: 800; letter-spacing: -.02em; margin: 0 0 6px; }
.marka-ozet { color: var(--mut); font-size: .95rem; line-height: 1.65; margin-bottom: 22px; flex: 1; }
.marka-btn { align-self: flex-start; display: inline-flex; align-items: center; gap: 9px; }
.marka-kart:hover .marka-btn { border-color: var(--sc, var(--coral)); color: var(--sc, var(--coral)); }

/* Bölüm boşluk ayarları */
.section-tight-top { padding-top: 24px; }
.section-tight-bottom { padding-bottom: 40px; }

/* Misyon & Vizyon */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 900px) { .mv-grid { grid-template-columns: 1fr; } }
.mv-card {
  position: relative; overflow: hidden; height: 100%;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(160deg, color-mix(in srgb, var(--sc, var(--coral)) 7%, transparent), transparent 55%), var(--panel);
  padding: 46px 42px;
}
.mv-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--sc, var(--coral));
}
.mv-card .sc-icon { margin-bottom: 22px; }
.mv-card h2 { font-size: 1.5rem; font-weight: 800; margin: 0 0 22px; }
.mv-card p { color: var(--mut); font-size: .99rem; line-height: 1.85; margin-bottom: 1.15em; }
.mv-card p:last-child { margin-bottom: 0; }
@media (max-width: 560px) { .mv-card { padding: 34px 26px; } }

.cred-logos { text-align: center; }
.cred-logos img { width: 100%; max-width: 620px; height: auto; margin: 0 auto; }

/* Ürün logoları şeridi */
.product-logos {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; align-items: center;
}
@media (max-width: 900px) { .product-logos { grid-template-columns: 1fr 1fr; gap: 20px; } }
.product-logos a {
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); padding: 38px 30px; min-height: 160px;
  transition: border-color .22s ease, transform .22s ease;
}
.product-logos a:hover { border-color: rgba(246, 165, 30, .5); transform: translateY(-4px); }
.product-logos img { width: 100%; max-width: 260px; height: auto; max-height: 80px; object-fit: contain; }

/* Hikâye bölümündeki üyelik logoları — koyu zeminde açık kart içinde */
.about-logos { display: flex; align-items: center; justify-content: center; }
.about-logos img {
  width: 100%; max-width: 480px; height: auto;
  background: #f7f5f0; border-radius: var(--radius);
  padding: 38px 34px;
}

.cred-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.cred-item {
  border: 1px solid #e7e1d7; border-radius: var(--radius); background: #fff;
  padding: 30px 28px; text-align: center;
}
.cred-item .icon { width: 26px; height: 26px; color: #b06e08; margin-bottom: 14px; }
.cred-item b { display: block; color: #1a1613; font-size: 1rem; margin-bottom: 6px; }
.cred-item span { color: #6f665c; font-size: .87rem; }

/* İş Ortağı — tanıtım + başvuru formu yan yana */
.partner-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .partner-layout { grid-template-columns: 1fr; gap: 46px; } }
.partner-intro h2, .partner-form h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; margin-bottom: 24px; }
/* Başlık kalınlığı ana ekrandaki hero ile aynı */
.partner-intro h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem); font-weight: 500;
  letter-spacing: -.02em; line-height: 1.12; margin-bottom: 24px;
}
.partner-intro p { color: var(--mut); font-size: 1.02rem; line-height: 1.75; }
.partner-intro p b { color: var(--white); font-weight: 700; }
/* İletişim sayfasındaki kısa güvence listesi */
.contact-notes { list-style: none; margin: 34px 0 0; padding: 0; display: grid; gap: 18px; }
.contact-notes li { display: flex; gap: 13px; align-items: flex-start; }
.contact-notes .icon { width: 20px; height: 20px; flex: none; color: var(--coral); margin-top: 3px; }
.contact-notes strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: 3px; }
.contact-notes span { display: block; color: var(--mut); font-size: .95rem; line-height: 1.6; }

/* Dört maddeli şerit (iletişim, iş ortağı) */
.sol-keys-4 ul { grid-template-columns: repeat(4, 1fr); gap: 30px; }
.sol-keys-4 li + li { padding-left: 30px; }
@media (max-width: 1080px) {
  .sol-keys-4 ul { grid-template-columns: repeat(2, 1fr); }
  .sol-keys-4 li + li { border-left: 0; padding-left: 0; }
  .sol-keys-4 li:nth-child(even) { border-left: 1px solid var(--line); padding-left: 30px; }
}
@media (max-width: 640px) {
  .sol-keys-4 ul { grid-template-columns: 1fr; }
  .sol-keys-4 li:nth-child(even) { border-left: 0; padding-left: 0; }
}

.sol-keys a { color: var(--mut); }
.sol-keys a:hover { color: var(--sol, var(--coral)); }

.partner-points { list-style: none; margin: 30px 0 0; padding: 0; }
.partner-points li { display: flex; gap: 13px; align-items: flex-start; padding: 10px 0; color: var(--mut); font-size: .96rem; }
.partner-points li .icon { width: 19px; height: 19px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.partner-form,
.form-panel {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); padding: 38px 36px;
}
@media (max-width: 560px) { .form-panel { padding: 28px 22px; } }
/* Zorunlu alan yıldızı */
.req { color: var(--coral); font-weight: 800; }
.partner-form .pf-lead { color: var(--mut); margin-bottom: 28px; }
@media (max-width: 560px) { .partner-form { padding: 28px 22px; } }

/* ==========================================================================
   İndirme Merkezi
   ========================================================================== */

.dl-nav { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 46px; }
.dl-nav a {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px; border: 1px solid var(--line); border-radius: 999px;
  font-size: .9rem; font-weight: 700; color: var(--white);
  transition: all .2s ease;
}
.dl-nav a:hover { border-color: rgba(246, 165, 30, .6); color: var(--coral); }
.dl-nav .icon { width: 17px; height: 17px; color: var(--coral); }

.dl-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); padding: 36px 34px; margin-bottom: 26px;
  scroll-margin-top: 120px;
}
@media (max-width: 560px) { .dl-card { padding: 26px 20px; } }
.dl-head { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 26px; }
.dl-icon {
  display: grid; place-items: center; flex: none;
  width: 52px; height: 52px; border-radius: 15px;
  background: rgba(246, 165, 30, .1); border: 1px solid rgba(246, 165, 30, .3);
  color: var(--coral);
}
.dl-icon .icon { width: 24px; height: 24px; }
.dl-head h2 { font-size: 1.4rem; font-weight: 800; margin: 0 0 8px; }
.dl-head p { color: var(--mut); font-size: .97rem; line-height: 1.7; margin: 0; max-width: 62ch; }

.dl-group + .dl-group { margin-top: 26px; }
.dl-group h3 {
  font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--mut); margin: 0 0 12px;
}
.dl-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255, 255, 255, .07); }
.dl-list a {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 15px 4px; border-bottom: 1px solid rgba(255, 255, 255, .07);
  color: var(--white); transition: color .18s ease, padding-left .18s ease;
}
.dl-list a:hover { color: var(--coral); padding-left: 10px; }
.dl-name { font-size: .96rem; font-weight: 600; }
.dl-meta { display: flex; align-items: center; gap: 12px; flex: none; }
.dl-type {
  font-size: .68rem; font-weight: 800; letter-spacing: .1em;
  color: var(--mut); border: 1px solid var(--line); border-radius: 6px; padding: 3px 8px;
}
.dl-meta .icon { width: 18px; height: 18px; color: var(--coral); }

.dl-note {
  margin-top: 34px; padding: 22px 26px;
  border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 255, 255, .02);
}
.dl-note p { margin: 0; color: var(--mut); font-size: .95rem; line-height: 1.7; }
.dl-note strong { color: var(--white); }

/* Tekil ürün sayfası — görselli hero + spec düzeni */
.ph-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .ph-grid { grid-template-columns: 1fr; gap: 36px; } }
.ph-actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; margin-top: 32px; }
.ph-media { position: relative; display: flex; align-items: center; justify-content: center; }
.ph-media::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: min(420px, 86%); aspect-ratio: 1; transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 165, 30, .13), transparent 68%);
  border: 1px solid rgba(246, 165, 30, .25);
  pointer-events: none;
}
.ph-media img { position: relative; z-index: 1; width: 100%; max-width: 520px; height: auto; filter: drop-shadow(0 26px 50px rgba(0, 0, 0, .55)); }

.spec-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .spec-layout { grid-template-columns: 1fr; } }
.spec-side .entry-content { margin-bottom: 32px; }
.spec-note { border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); padding: 34px 32px; }
.spec-note h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 20px; }
.spec-note ul { list-style: none; margin: 0 0 26px; padding: 0; }
.spec-note li { display: flex; gap: 12px; align-items: flex-start; color: var(--mut); font-size: .93rem; padding: 8px 0; }
.spec-note li .icon { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }

/* ==========================================================================
   Ürün detay sayfası — solda görsel, sağda özellikler
   ========================================================================== */

.product-detail { padding-top: 60px; }
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 900px) { .pd-grid { grid-template-columns: 1fr; gap: 36px; } }

.pd-main-image {
  position: relative; border: 0; border-radius: var(--radius);
  background: none; padding: 0; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pd-main-image img { position: relative; display: block; width: 100%; height: auto; object-fit: contain; }

.pd-thumbs { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.pd-thumb {
  width: 82px; height: 66px; padding: 0; cursor: pointer;
  border: 1px solid var(--line); border-radius: 12px; background: none;
  overflow: hidden; display: grid; place-items: center; transition: border-color .2s ease;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb:hover { border-color: rgba(246, 165, 30, .5); }
.pd-thumb.is-active { border-color: var(--coral); }

/* Yönetim paneli görseli — sol sütunda galerinin altında */
.pd-dashboard { margin: 34px 0 0; }
.pd-dashboard img {
  display: block; width: 100%; height: auto;
  border: 1px solid var(--line); border-radius: 14px;
  background: #fff;
}
.pd-dashboard figcaption {
  margin-top: 12px; color: var(--mut); font-size: .9rem; line-height: 1.6;
}

.pd-info h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 6px 0 12px; }
.pd-capacity { color: var(--mut); font-size: 1.08rem; margin-bottom: 28px; }

.pd-specs { margin: 0 0 28px; border-top: 1px solid var(--line); }
.pd-spec-row {
  display: grid; grid-template-columns: 190px 1fr; gap: 18px;
  padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.pd-spec-row dt {
  color: var(--mut); font-size: .76rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em; align-self: center;
}
.pd-spec-row dd { margin: 0; font-weight: 700; font-size: .95rem; }
@media (max-width: 560px) { .pd-spec-row { grid-template-columns: 1fr; gap: 2px; } }

/* Teknik özellik kartları */
.pd-spec-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.pd-spec-card {
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--panel); padding: 22px 24px;
}
.pd-spec-card span {
  display: block; color: var(--mut); font-size: .74rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .14em; margin-bottom: 9px;
}
.pd-spec-card b { font-size: 1.02rem; font-weight: 700; line-height: 1.45; }

.pd-features { list-style: none; margin: 0 0 30px; padding: 0; }
.pd-features li {
  position: relative; padding: 9px 0 9px 24px;
  color: var(--mut); font-size: .95rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.pd-features li:last-child { border-bottom: none; }
.pd-features li::before {
  content: "—"; position: absolute; left: 0; top: 9px;
  color: var(--coral); font-weight: 800;
}

.pd-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.pd-assure {
  display: flex; gap: 22px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.pd-assure span {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--mut); font-size: .8rem; font-weight: 700;
}
.pd-assure .icon { width: 16px; height: 16px; color: var(--teal); }

/* Sekmeler */
.pd-tabs {
  display: flex; gap: 6px; flex-wrap: wrap;
  border-bottom: 1px solid var(--line); margin-bottom: 44px;
}
.pd-tab {
  background: none; border: none; cursor: pointer; font-family: var(--sans);
  padding: 16px 22px 13px; font-weight: 800; font-size: .93rem; color: var(--mut);
  border-bottom: 3px solid transparent; transition: color .2s ease;
}
.pd-tab:hover { color: var(--white); }
.pd-tab.is-active { color: var(--white); border-bottom-color: var(--coral); }
.pd-panel { display: none; }
.pd-panel.is-active { display: block; }

.pd-downloads { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.pd-download {
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line); border-radius: 14px; background: var(--panel);
  padding: 22px 24px; transition: border-color .2s ease, transform .2s ease;
}
.pd-download:hover { border-color: rgba(246, 165, 30, .55); transform: translateY(-3px); }
.pd-download .icon { width: 21px; height: 21px; color: var(--coral); flex-shrink: 0; }
.pd-download b { font-size: .96rem; font-weight: 700; flex: 1; }
.pd-download span {
  font-size: .7rem; font-weight: 800; letter-spacing: .1em;
  color: var(--mut); border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px;
}

/* Teknik özellik kartı (tekil ürün) */
.spec-card {
  margin-top: 40px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); overflow: hidden;
}
.spec-head {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 30px; border-bottom: 1px solid var(--line);
  background: rgba(246, 165, 30, .06);
}
.spec-head .icon { width: 21px; height: 21px; color: var(--coral); }
.spec-head h3 { margin: 0; font-size: 1.08rem; font-weight: 800; }
.spec-table { margin: 0; }
.spec-row {
  display: grid; grid-template-columns: 220px 1fr; gap: 20px;
  padding: 15px 30px; border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.spec-row:last-child { border-bottom: none; }
.spec-row:nth-child(odd) { background: rgba(255, 255, 255, .02); }
.spec-row dt {
  color: var(--mut); font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em; align-self: center;
}
.spec-row dd { margin: 0; font-weight: 700; font-size: .95rem; }
@media (max-width: 560px) { .spec-row { grid-template-columns: 1fr; gap: 4px; } }

/* İletişim */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-info-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; background: var(--panel); }
.contact-info-card ul { list-style: none; margin: 0; padding: 0; }
.contact-info-card li { display: flex; gap: 16px; padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, .08); align-items: baseline; }
.contact-info-card li:last-child { border-bottom: none; }
.contact-info-card .product-features li { display: block; padding: 12px 0 12px 22px; }
.contact-info-card .c-label { color: var(--mut); font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; min-width: 92px; }
.contact-info-card a { font-weight: 700; }
.contact-intro h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); font-weight: 800; margin-bottom: 20px; }
.contact-intro p { color: var(--mut); font-size: 1.08rem; line-height: 1.8; max-width: 420px; }

/* İletişim bilgi şeridi (sayfa altı) */
.contact-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
@media (max-width: 900px) { .contact-band { grid-template-columns: 1fr; gap: 46px; } }
.cb-icon {
  display: inline-grid; place-items: center;
  width: 62px; height: 62px; border-radius: 50%;
  border: 1px solid #ddd6c8; background: #fff; margin-bottom: 20px;
}
.cb-icon .icon { width: 24px; height: 24px; color: #b06e08; }
.contact-band h3 {
  font-size: .84rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: #1a1613; margin-bottom: 14px;
}
.contact-band p { color: #6f665c; font-size: .95rem; line-height: 1.7; margin: 0 auto .5em; max-width: 320px; }
.contact-band p:last-child { margin-bottom: 0; }
.contact-band a { display: block; color: #4a443c; font-weight: 600; }
.contact-band a:hover { color: #b06e08; }
.cb-sub { color: #8a8175 !important; font-size: .76rem !important; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; margin-top: 18px !important; }

/* Demo talep bölümü — kapanış CTA'sıyla aynı bant görünümü */
.demo-band {
  padding: 110px 0; position: relative; overflow: hidden;
  background: linear-gradient(180deg, #1d1b19 0%, #232019 100%);
  border-top: 1px solid rgba(255, 255, 255, .07);
}
.demo-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(760px 420px at 50% 115%, rgba(246, 165, 30, .22), transparent 65%);
  pointer-events: none;
}
.demo-band .container { position: relative; }
@media (max-width: 680px) { .demo-band { padding: 72px 0; } }

.demo-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: start; }
@media (max-width: 980px) { .demo-grid { grid-template-columns: 1fr; gap: 44px; } }

.demo-intro h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.demo-lead { color: var(--mut); font-size: 1.06rem; line-height: 1.8; margin-bottom: 30px; }
.demo-sub { font-size: 1rem; font-weight: 800; margin-bottom: 14px; }
.demo-list { list-style: none; margin: 0 0 32px; padding: 0; }
.demo-list li {
  position: relative; padding: 9px 0 9px 24px; color: var(--mut);
  font-size: .95rem; line-height: 1.7; border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.demo-list li::before {
  content: "—"; position: absolute; left: 0; top: 9px;
  color: var(--coral); font-weight: 800;
}
.demo-shot { margin: 0; }
.demo-shot img {
  display: block; width: 100%; height: auto;
}

.demo-form-wrap {
  border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius);
  background: rgba(10, 9, 8, .55); backdrop-filter: blur(2px);
  padding: 38px; margin-top: 64px;
}
@media (max-width: 980px) { .demo-form-wrap { margin-top: 0; } }
@media (max-width: 560px) { .demo-form-wrap { padding: 26px 22px; } }
.demo-form-wrap .req { color: var(--coral); }
.demo-consent label {
  display: flex; align-items: flex-start; gap: 10px;
  font-weight: 400; font-size: .9rem; line-height: 1.65; color: var(--mut); margin: 0;
}
.demo-consent input[type="checkbox"] {
  width: 17px; height: 17px; margin-top: 2px; flex-shrink: 0; accent-color: var(--coral);
}
.demo-consent a { color: var(--white); text-decoration: underline; }
.demo-note { margin: 18px 0 0; color: var(--mut); font-size: .86rem; line-height: 1.7; }

.form-grid { display: grid; gap: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .form-row-2 { grid-template-columns: 1fr; } }

/* 404 */
.error-404 { text-align: center; padding: 140px 0; }
.error-404 .code { font-size: clamp(5rem, 14vw, 9rem); font-weight: 800; color: var(--coral); line-height: 1; letter-spacing: -.04em; }

/* WordPress hizalama */
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin-inline: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { color: var(--mut); font-size: .84rem; text-align: center; margin-top: 8px; }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px;
}
.sticky { border-color: rgba(246, 165, 30, .5); }
.bypostauthor { display: block; }

@media (max-width: 640px) {
  .section { padding: 76px 0; }
  .hero { padding: 90px 0 100px; }
  .bigline { padding: 90px 0 20px; }
  .donut .ring { width: 180px; height: 180px; }
  .donut { width: 200px; }
}

/* ==========================================================================
   Blueprint trafik şeması
   ========================================================================== */

.schematic {
  position: relative; border: 1.5px dashed rgba(255, 255, 255, .22); border-radius: 6px;
  padding: 44px 34px 30px; background: rgba(255, 255, 255, .02);
}
.schematic .cap {
  position: absolute; top: -11px; left: 26px; background: var(--black);
  padding: 0 14px; font-size: .7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .18em; color: var(--coral);
}
.schematic .flow { display: grid; grid-template-columns: 1fr auto 1.3fr auto 1fr; align-items: center; }
@media (max-width: 760px) { .schematic .flow { grid-template-columns: 1fr; gap: 4px; } .schematic .arrow { transform: rotate(90deg); margin: 8px 0; } }
.schematic .node {
  border: 1.5px solid rgba(255, 255, 255, .2); border-radius: 4px;
  padding: 22px 18px; text-align: center; background: rgba(0, 0, 0, .5);
}
.schematic .node .t { font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; color: var(--mut); }
.schematic .node .v { font-weight: 800; font-size: 1.05rem; margin-top: 6px; }
.schematic .node.threat { border-color: rgba(255, 92, 92, .55); }
.schematic .node.threat .v { color: #ff8a8a; }
.schematic .node.core { border: 1.5px solid var(--coral); box-shadow: 0 0 0 6px rgba(246, 165, 30, .1); padding: 28px 22px; }
.schematic .node.core .v { color: var(--coral); font-size: 1.25rem; }
.schematic .node.safe .v { color: var(--green); }
.schematic .arrow { text-align: center; color: var(--coral); font-weight: 800; padding: 0 14px; }
.schematic .arrow small { display: block; font-size: .6rem; text-transform: uppercase; letter-spacing: .12em; color: var(--mut); }
.schematic .foot {
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  margin-top: 30px; font-size: .68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .14em; color: var(--mut);
}
.schematic .foot b { color: var(--coral); }

/* ==========================================================================
   Canlı tehdit haritası (noktalı dünya + saldırı yayları)
   ========================================================================== */

.threat-map-band { position: relative; overflow: hidden; }
.threat-map-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 480px at 12% 8%, rgba(246, 165, 30, .12), transparent 62%),
    radial-gradient(600px 420px at 92% 90%, rgba(58, 96, 255, .07), transparent 60%);
  pointer-events: none;
}
.threat-map-band .container { position: relative; }
.threat-map-band .section-head { margin-bottom: 26px; }
.threat-map-band .section-head p { margin-bottom: 30px; }

.threat-map { max-width: 980px; margin: 0 auto; }
.threat-map svg { width: 100%; height: auto; display: block; }
.threat-map .tm-dots { fill: rgba(255, 255, 255, .22); }

.tm-arc {
  stroke: #ff5f52; stroke-width: 1.4; fill: none; stroke-linecap: round;
  stroke-dasharray: 1; stroke-dashoffset: 1; opacity: 0;
  animation: tmArc 7s ease-in-out infinite;
}
@keyframes tmArc {
  0% { stroke-dashoffset: 1; opacity: 0; }
  8% { opacity: .95; }
  45% { stroke-dashoffset: 0; opacity: .95; }
  62% { stroke-dashoffset: 0; opacity: 0; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

.tm-node .halo {
  transform-box: fill-box; transform-origin: center;
  animation: tmPulse 2.6s ease-out infinite;
}
@keyframes tmPulse {
  0% { transform: scale(.5); opacity: .85; }
  100% { transform: scale(2.1); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .tm-arc, .tm-node .halo { animation: none; }
  .tm-arc { stroke-dashoffset: 0; opacity: .55; }
}

/* ==========================================================================
   Kurumsal görsel katman — ikonlar, cihaz kompozisyonu, rozetler, açık bant
   ========================================================================== */

.icon { width: 22px; height: 22px; flex-shrink: 0; }

/* Hero: sunucu odası fotoğrafı + yüzen durum kartları */
.hero-photo {
  position: absolute; top: 0; right: 0; bottom: 0; width: 60%;
  /* Görsel medya kütüphanesinden gelir; functions.php içindeki
     poniva_inline_gorseller() satır içi stil olarak basar. */
  background: center right / cover no-repeat;
  filter: saturate(.9) brightness(.85);
  -webkit-mask-image: linear-gradient(to left, #000 55%, transparent);
  mask-image: linear-gradient(to left, #000 55%, transparent);
  pointer-events: none;
}
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(6, 6, 6, .3), transparent 32%, transparent 68%, #0e0d0c),
    rgba(10, 40, 36, .16);
}
@media (max-width: 900px) {
  .hero-photo { width: 100%; opacity: .3; }
}

.hero-visual { position: relative; display: flex; flex-direction: column; align-items: center; gap: 26px; min-height: 430px; }
@media (max-width: 900px) { .hero-visual { min-height: 0; } }
.hero-visual svg.device,
.hero-visual svg.topo { width: 100%; max-width: 580px; display: block; margin: 0 auto; }

.topo-line { stroke-dasharray: 7 11; animation: topoFlow 1.5s linear infinite; }
.topo-line.threat { animation-duration: 1s; }
@keyframes topoFlow { to { stroke-dashoffset: -36; } }
.topo-pulse { transform-box: fill-box; transform-origin: center; animation: topoPulse 3.2s ease-out infinite; }
.topo-pulse.d2 { animation-delay: 1.6s; }
@keyframes topoPulse { 0% { transform: scale(.78); opacity: .7; } 100% { transform: scale(1.45); opacity: 0; } }
.burst { animation: blipBlink 1.3s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .topo-line, .topo-pulse, .burst { animation: none; }
  .topo-pulse { opacity: .25; }
}
.led { animation: ledBlink 1.8s ease-in-out infinite; }
.led.g { animation-delay: .6s; }
@keyframes ledBlink { 50% { opacity: .2; } }

.hv-card {
  position: absolute; display: flex; gap: 13px; align-items: center;
  background: rgba(18, 17, 16, .9); border: 1px solid var(--line); border-radius: 14px;
  padding: 13px 18px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .45); white-space: nowrap;
  animation: hvFloat 6s ease-in-out infinite alternate;
}
.hv-card .icon { width: 25px; height: 25px; }
.hv-card b { display: block; font-size: .88rem; letter-spacing: -.01em; line-height: 1.3; }
.hv-card small { color: var(--mut); font-size: .75rem; font-weight: 600; }
.hv-card.threat { border-color: rgba(255, 95, 82, .45); }
.hv-card.threat .icon { color: #ff5f52; }
.hv-card.vpn { border-color: rgba(47, 224, 200, .45); }
.hv-card.vpn .icon { color: var(--teal); }
.hv-card.log { border-color: rgba(74, 222, 128, .4); }
.hv-card.log .icon { color: var(--green); }
.hv-c1 { top: 0; right: 0; }
.hv-c2 { bottom: 13%; left: -3%; animation-delay: 1.2s; }
.hv-c3 { bottom: -2%; right: 5%; animation-delay: 2.2s; }
@keyframes hvFloat { to { transform: translateY(-10px); } }
@media (max-width: 900px) {
  .hero-visual { display: flex; flex-direction: column; align-items: center; gap: 8px; }
  .hv-card { position: static; animation: none; width: max-content; max-width: 100%; }
}
@media (prefers-reduced-motion: reduce) { .hv-card, .led { animation: none; } }

/* Sertifika / güven şeridi */
.cred-band { border-top: 1px solid rgba(255, 255, 255, .08); background: rgba(0, 0, 0, .4); }
.cred-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 38px; padding: 19px 36px; }
.cred { display: inline-flex; align-items: center; gap: 9px; color: var(--mut); font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.cred .icon { width: 16px; height: 16px; color: var(--teal); }

/* Renk vurgulu ikon kutusu (çözüm/özellik kartları) */
.sc-icon {
  width: 48px; height: 48px; border-radius: 13px; margin-bottom: 18px;
  display: grid; place-items: center; color: var(--sc, var(--coral));
  background: color-mix(in srgb, var(--sc, var(--coral)) 13%, transparent);
  border: 1px solid color-mix(in srgb, var(--sc, var(--coral)) 32%, transparent);
}
.sc-icon .icon { width: 23px; height: 23px; }
.solution-card, .feature-card { --sc: var(--coral); }
.solution-card:hover, .feature-card:hover { border-color: color-mix(in srgb, var(--sc) 65%, transparent); }

/* Platform sekme ikonları */
.platform-tab .icon { width: 19px; height: 19px; color: var(--acc, var(--coral)); }

/* İstatistik bandı — soluk dünya haritası üzerinde büyük rakamlar */
.stats-band { position: relative; overflow: hidden; padding-top: 70px; padding-bottom: 70px; }
.stats-wrap { position: relative; padding: 84px 0; margin-top: 10px; }
.stats-band .stats-map {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: min(1150px, 100%); opacity: 1; pointer-events: none;
}
.stats-grid { position: relative; }
.stats-band .stats-map .tm-dots { fill: rgba(255, 255, 255, .17); }
.stats-band .container { position: relative; }
.stats-band .section-kicker { color: var(--teal); }
.stats-band .section-head { margin-bottom: 20px; }

.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 52px 30px;
  max-width: 1020px; margin: 40px auto 0; text-align: center;
}
@media (max-width: 760px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; } }
@media (max-width: 460px) { .stats-grid { grid-template-columns: 1fr; } }
.stats-grid .stat b {
  display: block; font-size: clamp(2.5rem, 4.6vw, 3.7rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1;
}
.stats-grid .stat span {
  display: block; margin: 12px auto 0; color: var(--mut);
  font-size: .98rem; font-weight: 600; max-width: 250px; line-height: 1.5;
}

/* Ürün bantları — her ürün kendi renk kimliğinde (Sectify, Gatefi, XDR…) */
.product-band {
  position: relative; overflow: hidden;
  padding: 100px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  background: linear-gradient(125deg, color-mix(in srgb, var(--pb, var(--coral)) 9%, #0d0d0c) 0%, var(--black) 60%);
}
.product-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(760px 480px at 84% 30%, color-mix(in srgb, var(--pb, var(--coral)) 13%, transparent), transparent 65%);
}
.pb-art {
  position: absolute; right: -3%; top: 50%; transform: translateY(-50%);
  width: min(560px, 52%); color: var(--pb, var(--coral)); opacity: .13;
  pointer-events: none;
}
.product-band .container { position: relative; }
.pb-brand {
  display: block; color: var(--pb, var(--coral));
  font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .38em;
  margin-bottom: 20px;
}
.pb-title {
  color: var(--pb, var(--coral));
}
.pb-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
@media (max-width: 900px) { .pb-grid { grid-template-columns: 1fr; gap: 40px; } }

/* Aynalı bant — içerik sağdan başlar */
.product-band.pb-flip { background: linear-gradient(235deg, color-mix(in srgb, var(--pb, var(--coral)) 9%, #0d0d0c) 0%, var(--black) 60%); }
.product-band.pb-flip::before { background: radial-gradient(760px 480px at 16% 30%, color-mix(in srgb, var(--pb, var(--coral)) 13%, transparent), transparent 65%); }
.product-band.pb-flip .pb-art { right: auto; left: -3%; }
.product-band.pb-flip .pb-brand,
.product-band.pb-flip .pb-title { text-align: right; margin-left: auto; }
.product-band.pb-flip .pb-grid { grid-template-columns: 1.1fr .9fr; }
.product-band.pb-flip .pb-desc { order: 2; text-align: right; }
.product-band.pb-flip .pb-desc p { margin-left: auto; }
.product-band.pb-flip .pb-cards { order: 1; }
@media (max-width: 900px) {
  /* Aynalı bantta sütun kuralı, genel mobil kuraldan daha güçlü olduğu için
     burada da ayrıca tek sütuna indirilmeli. */
  .product-band.pb-flip .pb-grid { grid-template-columns: 1fr; }
  .product-band.pb-flip .pb-desc { order: 0; text-align: left; }
  .product-band.pb-flip .pb-desc p { margin-left: 0; }
  .product-band.pb-flip .pb-cards { order: 1; }
  .product-band.pb-flip .pb-brand,
  .product-band.pb-flip .pb-title { text-align: left; margin-left: 0; }
  .product-band.pb-flip .pb-art { left: -18%; }
}
.pb-desc p { color: var(--mut); font-size: 1.1rem; line-height: 1.75; margin: 0 0 34px; max-width: 460px; }
.btn.pb-btn { background: var(--pb, var(--coral)); color: #16100d; font-weight: 800; }
.btn.pb-btn:hover { filter: brightness(.78); color: #16100d; }
.pb-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .pb-cards { grid-template-columns: 1fr; } }
.pb-card {
  display: flex; align-items: center; gap: 14px;
  padding: 24px 26px; border-radius: 14px;
  font-weight: 500; font-size: .97rem; line-height: 1.4;
  color: #fff;
  background: linear-gradient(135deg, color-mix(in srgb, var(--pb, var(--coral)) 45%, #0d0d0c), color-mix(in srgb, var(--pb, var(--coral)) 16%, #0d0d0c));
  border: 1px solid color-mix(in srgb, var(--pb, var(--coral)) 45%, transparent);
  transition: transform .22s ease, border-color .22s ease;
}
.pb-card:hover { transform: translateY(-4px); border-color: var(--pb, var(--coral)); }
.pb-card .icon { width: 21px; height: 21px; color: color-mix(in srgb, var(--pb, var(--coral)) 70%, #fff); }

/* Açık renkli bölüm bandı (kurumsal ritim) */
.section-light { background: #f5f2ec; color: #1a1613; border-radius: 48px 48px 0 0; }
.content-area.section-light { padding: 80px 0 90px; }
.section-light + .section-light { border-radius: 0; }
.section-light h2, .section-light h3 { color: #1a1613; }
.section-light .hl { color: #d98c00; }
.section-light .section-head p { color: #6f665c; }
.section-light .section-kicker { color: #b06e08; }
.section-light .product-card { background: #fff; border-color: #e7e1d7; }
.section-light .product-card:hover { border-color: rgba(176, 110, 8, .55); box-shadow: 0 20px 46px rgba(26, 22, 19, .1); }
.section-light .product-type { color: #b06e08; }
.section-light .product-capacity, .section-light .product-features li { color: #6f665c; }
.section-light .product-features li::before { color: #d98c00; }
.section-light .product-tabs { background: #fff; border-color: #e7e1d7; }
.section-light .product-tab { color: #6f665c; }
.section-light .product-tab.is-active { background: var(--coral); color: #16100d; }
.section-light .btn-ghost { color: #1a1613; border-color: rgba(26, 22, 19, .35); }
.section-light .btn-ghost:hover { color: #b06e08; border-color: #b06e08; }
.section-light .feature-card { background: #fff; border-color: #e7e1d7; }
.section-light .feature-card h3 { color: #1a1613; }
.section-light .feature-card p { color: #6f665c; }
.section-light .feature-card:hover { box-shadow: 0 20px 46px rgba(26, 22, 19, .1); }
.section-light .t-label { color: #1a1613; }
.section-light .trust-row { color: #6f665c; }
.section-light.section-line { border-bottom-color: #e7e1d7; }
