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

/* ============================================
   BOTPROXY - Ana Stil Dosyası
   ============================================ */

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

:root {
  --navy: #0d1b4b;
  --navy-mid: #112264;
  --navy-dark: #091035;
  --blue: #1565c0;
  --blue-light: #1976d2;
  --blue-bright: #2196f3;
  --accent: #f7a600;
  --accent-red: #e53935;
  --white: #ffffff;
  --gray-light: #f4f6fb;
  --gray: #e8ecf4;
  --gray-mid: #c5cde0;
  --text: #1a2744;
  --text-mid: #3a4a6b;
  --text-light: #6b7a9b;
  --green: #26a65b;
  --shadow: 0 4px 24px rgba(13,27,75,0.10);
  --shadow-card: 0 2px 16px rgba(13,27,75,0.08);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Poppins', 'Segoe UI', Arial, sans-serif; color: var(--text); background: #fff; font-size: 15px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, .section-title, .navbar-menu > li > a, .navbar-logo .logo-text, .hero h1, .mi-text strong, .btn-start, .btn-primary { font-family: 'Poppins', 'Inter', 'Segoe UI', Arial, sans-serif; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 9px 0;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; }
.topbar-left { display: flex; align-items: center; gap: 14px; }
.topbar-left a { color: rgba(255,255,255,0.88); display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; }
.topbar-left a:hover { color: #fff; }
.tb-ic { opacity: 0.9; }
.tb-sep { width: 1px; height: 16px; background: rgba(255,255,255,0.18); }
.tb-currency { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: #fff; font-weight: 600; }
.tb-currency strong { color: #2ecc71; }
.tb-arrows { color: #2ecc71; }
.tb-down { font-size: 9px; opacity: 0.7; }
.tb-protected { color: rgba(255,255,255,0.9); display: inline-flex; align-items: center; gap: 6px; }
.tb-shield { color: #e74c3c; }
.tb-protected:hover { color: #fff; }
.tb-info { opacity: 0.6; font-size: 12px; }
.topbar-right { display: flex; align-items: center; gap: 10px; }
.tb-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}
.tb-btn:hover { background: rgba(255,255,255,0.14); }
.tb-online { width: 8px; height: 8px; border-radius: 50%; background: #2ecc71; box-shadow: 0 0 0 3px rgba(46,204,113,0.25); }
.tb-btn-icon { padding: 6px 11px; }
.tb-lang { gap: 5px; }

/* ── NAVBAR ── */
.navbar {
  background: #fff;
  box-shadow: 0 2px 12px rgba(13,27,75,0.09);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.navbar-logo { display: flex; align-items: center; gap: 8px; }
.navbar-logo .logo-mark {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark .bp-mark, .fb-logo-mark .bp-mark { width: 100%; height: 100%; display: block; }
.fb-logo-mark { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; }
.navbar-logo .logo-text { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; }
.navbar-logo .logo-text span { color: var(--blue-bright); }
.navbar-menu { display: flex; align-items: center; gap: 2px; }
.navbar-menu > li { position: static; }
.navbar-menu > li > a {
  padding: 24px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  letter-spacing: 0.3px;
  position: relative;
}
.navbar-menu > li > a:hover { color: var(--blue-light); }
.nav-arrow { font-size: 13px; opacity: 0.7; transition: transform 0.2s; }
.navbar-menu > li.has-mega:hover > a { color: var(--blue-light); }
.navbar-menu > li.has-mega:hover > a .nav-arrow { transform: rotate(180deg); }
.navbar-cta { display: flex; align-items: center; gap: 8px; }
.btn-login { padding: 9px 20px; border: 2px solid var(--blue-light); color: var(--blue-light); border-radius: 7px; font-size: 13px; font-weight: 700; }
.btn-login:hover { background: var(--blue-light); color: #fff; }
.btn-start { padding: 9px 22px; background: linear-gradient(135deg, var(--blue-light), var(--navy)); color: #fff; border: none; border-radius: 7px; font-size: 13px; font-weight: 700; }
.btn-start:hover { opacity: 0.9; }

/* ── MEGA MENU ── */
.mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: transparent;
  padding-top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 999;
}
.navbar-menu > li.has-mega:hover .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner {
  max-width: 1160px;
  margin: 0 auto;
  background: #fff;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 24px 50px rgba(13,27,75,0.16);
  border: 1px solid var(--gray);
  border-top: none;
  display: flex;
  gap: 24px;
  padding: 32px 36px;
}
.mega-cols {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 40px;
  align-content: start;
}
.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  transition: 0.18s;
}
.mega-item:hover { background: var(--gray-light); }
.mi-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #eaf2fc, #f4f8fe);
  border: 1px solid #e0ebf8;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(21,101,192,0.07);
}
.mi-text { display: flex; flex-direction: column; gap: 3px; }
.mi-text strong { font-size: 15px; font-weight: 700; color: var(--navy); }
.mega-item.mega-all { grid-column: 1 / -1; background: linear-gradient(135deg, rgba(21,101,192,0.08), rgba(247,166,0,0.06)); border: 1px dashed rgba(21,101,192,0.35); margin-top: 4px; }
.mega-item.mega-all:hover { background: linear-gradient(135deg, rgba(21,101,192,0.14), rgba(247,166,0,0.10)); }
.mega-item.mega-all strong { color: var(--blue-light); }

/* Tüm Proxy'ler sayfası */
.allproxy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.allproxy-card { background:#fff; border:1px solid var(--gray); border-radius:14px; padding:20px 18px; box-shadow:var(--shadow-card); transition:.2s; display:flex; align-items:center; gap:13px; }
.allproxy-card:hover { transform:translateY(-3px); box-shadow:var(--shadow); border-color:rgba(21,101,192,0.25); }
.allproxy-ic { width:44px; height:44px; flex-shrink:0; border-radius:11px; background:linear-gradient(135deg,#eaf2fc,#f4f8fe); border:1px solid #e0ebf8; display:flex; align-items:center; justify-content:center; font-size:22px; }
.allproxy-card strong { display:block; font-size:14.5px; color:var(--navy); font-family:'Poppins',sans-serif; }
.allproxy-card span { font-size:12px; color:var(--text-light); }
.allproxy-cat-title { font-size:22px; font-weight:800; color:var(--navy); font-family:'Poppins',sans-serif; margin:38px 0 18px; display:flex; align-items:center; gap:10px; }
@media (max-width:980px){ .allproxy-grid{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .allproxy-grid{ grid-template-columns:1fr;} }
.mi-text span { font-size: 12.5px; color: var(--text-light); line-height: 1.45; }

/* Mega visual panels */
.mega-visual {
  flex: 0 0 280px;
  border-left: 1px solid var(--gray);
  padding-left: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mv-domain .mv-window {
  width: 100%;
  background: #eaf2fb;
  border-radius: 12px;
  padding: 14px;
  position: relative;
  min-height: 180px;
}
.mv-bar { display: flex; gap: 5px; margin-bottom: 14px; }
.mv-bar span { width: 9px; height: 9px; border-radius: 50%; background: #c5cde0; }
.mv-search {
  display: flex; align-items: center; justify-content: space-between;
  background: #fff;
  border: 1.5px solid var(--blue-light);
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 800;
  color: var(--blue-light);
  font-size: 16px;
  position: relative; z-index: 2;
  box-shadow: 0 4px 14px rgba(21,101,192,0.15);
}
.mv-glass { font-size: 14px; }
.mv-globe { position: absolute; right: 22px; bottom: 14px; font-size: 64px; opacity: 0.85; }

.mv-photo { padding: 0; border-left: 1px solid var(--gray); padding-left: 24px; }
.mv-photo img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: 62% 20%;
  border-radius: 14px;
  border: 3px solid #1565c0;
}
.mv-chip {
  position: absolute;
  width: 42px; height: 42px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 4px 14px rgba(13,27,75,0.16);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: var(--navy);
}
.mv-chip-tl { top: 6px; left: 14px; }
.mv-chip-tr { top: 6px; right: -8px; }
.mv-chip-bl { bottom: 30px; left: 6px; font-size: 12px; color: #1565c0; }
.mv-chip-br { bottom: 14px; right: -8px; color: #e67e22; }
.mv-photo-corp img { height: 220px; object-position: 50% 25%; }

.mv-server .mv-rack {
  width: 100%;
  min-height: 180px;
  background: linear-gradient(135deg, #eaf2fb, #f4f8fe);
  border-radius: 12px;
  border: 1.5px dashed #b8c6e0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 16px;
}
.mv-server .mv-rack span {
  background: linear-gradient(180deg, #fff, #eef3fa);
  border: 1px solid #d8e2f0;
  border-radius: 8px;
  position: relative;
}
.mv-server .mv-rack span::before,
.mv-server .mv-rack span::after {
  content: '';
  position: absolute;
  left: 10px; right: 10px;
  height: 4px; border-radius: 2px;
  background: #1565c0; opacity: 0.25;
}
.mv-server .mv-rack span::before { top: 14px; }
.mv-server .mv-rack span::after { top: 26px; background: #2ecc71; opacity: 0.4; width: 18px; right: auto; }

/* ── WRAP ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── HERO ── */
.hero {
  background: #f4f6fb;
  color: var(--text);
  padding: 56px 0 52px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gray);
}
.hero::before { display: none; }
.hero .wrap { display: flex; align-items: center; gap: 40px; position: relative; z-index: 1; }
.hero-content { flex: 1; }

@keyframes pulse { 0%,100% { transform:scale(1); opacity:1; } 50% { transform:scale(1.3); opacity:0.7; } }

.breadcrumb { font-size: 13px; color: var(--text-light); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--blue-light); }
.breadcrumb strong { color: var(--blue-light); font-weight: 700; }
.breadcrumb span { opacity: 0.5; }

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: -1.5px;
  color: var(--navy);
}
.hero h1 span { color: var(--blue-light); }
.hero-sub {
  font-size: 15.5px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 32px;
}

/* 2x2 Feature grid inside hero */
.hero-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
}
.hf-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.hf-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(21,101,192,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hf-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.hf-text span {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* Hero buttons */
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 34px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  transition: 0.2s;
}
.hero-btn-primary { background: linear-gradient(135deg, var(--blue-light), var(--navy)); color: #fff; border: 2px solid transparent; }
.hero-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,101,192,0.32); }
.hero-btn-outline { background: #fff; color: var(--blue-light); border: 2px solid var(--blue-light); }
.hero-btn-outline:hover { background: var(--blue-light); color: #fff; transform: translateY(-2px); }

/* Hero visual (real photo + badges) */
.hero-image { flex: 0 0 540px; max-width: 540px; min-width: 0; overflow: hidden; }
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 540 / 380;
}
/* dashed rounded frame */
.hv-frame {
  position: absolute;
  inset: 8px 18px 8px 60px;
  border: 1.5px dashed var(--gray-mid);
  border-radius: 28px;
}
/* blue blob behind the person (yumuşak renkli halo) */
.hv-blob {
  position: absolute;
  inset: 0 8px 0 50px;
  background: radial-gradient(circle at 50% 40%, rgba(21,101,192,0.30), rgba(21,101,192,0.10) 60%, transparent 75%);
  border-radius: 28px;
  filter: blur(6px);
  z-index: 0;
}
/* person photo, çerçeveyi hem dikey hem yatay dolduran yuvarlak dikdörtgen */
.hv-person {
  position: absolute;
  top: 16px;
  left: 68px;
  width: calc(100% - 84px);
  height: calc(100% - 32px);
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: 24px;
  z-index: 1;
  box-shadow: 0 12px 36px rgba(13,27,75,0.16);
}
/* floating badges */
.hv-badge {
  position: absolute;
  background: #fff;
  border-radius: 22px;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 6px 22px rgba(13,27,75,0.13);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  z-index: 3;
}
.hv-badge .hvb-ic { font-size: 13px; }
.hv-domain {
  left: 2%;
  top: 40%;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-light);
  border: 1.5px solid rgba(21,101,192,0.35);
  padding: 11px 22px;
}
.hv-safe { right: 1%; top: 24%; color: var(--green); }
.hv-uptime { right: -2%; top: 42%; color: var(--blue-light); }
.hv-perf { right: 3%; top: 60%; color: var(--accent); }

/* Kept for other sections that may still use these */
.btn-primary {
  background: linear-gradient(135deg, #f7a600, #e67e00);
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  display: inline-flex; align-items: center; gap: 7px;
  transition: 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(247,166,0,0.35); }
.btn-secondary {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.25);
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 7px;
  transition: 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); }
.stat-divider { width: 1px; background: rgba(255,255,255,0.12); align-self: stretch; }

/* Server mockup (used in dashboard section) */
.mock-bar { display: flex; gap: 5px; margin-bottom: 12px; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.r { background: #ff5f57; } .mock-dot.y { background: #febc2e; } .mock-dot.g { background: #28c840; }
.mock-row { display: flex; align-items: center; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.mock-row:last-child { border-bottom: none; }
.mock-label { color: rgba(255,255,255,0.50); font-size: 11px; }
.mock-val { font-weight: 600; color: #fff; font-size: 12px; }
.mock-badge-g { background: rgba(76,175,80,0.2); color: #66bb6a; padding: 2px 8px; border-radius: 10px; font-size: 11px; font-weight: 600; }
.mock-chart { margin-top: 12px; }
.chart-bars { display: flex; align-items: flex-end; gap: 4px; height: 50px; }
.bar {
  flex: 1;
  background: linear-gradient(180deg, rgba(33,150,243,0.7), rgba(33,150,243,0.2));
  border-radius: 3px 3px 0 0;
}

/* ── SECTION COMMON ── */
section { padding: 70px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block;
  background: rgba(21,101,192,0.10);
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-title { font-size: 32px; font-weight: 800; color: var(--navy); margin-bottom: 12px; line-height: 1.25; }
.section-title span { color: var(--blue-light); }
.section-desc { font-size: 16px; color: var(--text-light); max-width: 580px; margin: 0 auto; }

/* ── PRICING ── */
.pricing-section { background: var(--gray-light); }
.pricing-tabs { display: flex; justify-content: center; gap: 4px; background: var(--gray); border-radius: 10px; padding: 4px; max-width: 280px; margin: 0 auto 36px; }
.ptab { flex: 1; padding: 8px; text-align: center; font-size: 13px; font-weight: 600; color: var(--text-mid); border-radius: 7px; cursor: pointer; transition: 0.2s; }
.ptab.active { background: #fff; color: var(--blue-light); box-shadow: var(--shadow-card); }
.pricing-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.pricing-table thead tr { background: var(--navy); color: #fff; }
.pricing-table thead th { padding: 14px 16px; font-size: 13px; font-weight: 600; text-align: left; }
.pricing-table thead th:first-child { padding-left: 20px; }
.pricing-table thead th.highlight { background: var(--blue-light); }
.pricing-table tbody tr { border-bottom: 1px solid var(--gray); transition: 0.15s; }
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--gray-light); }
.pricing-table td { padding: 14px 16px; font-size: 14px; vertical-align: middle; }
.pricing-table td:first-child { padding-left: 20px; font-weight: 700; color: var(--navy); }
.plan-chip { background: var(--blue-light); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 10px; margin-left: 6px; letter-spacing: 0.5px; text-transform: uppercase; }
.plan-chip.popular { background: var(--accent); }
.plan-chip.new { background: var(--green); }
.pricing-table .price { font-size: 16px; font-weight: 800; color: var(--navy); }
.pricing-table .price small { font-size: 11px; font-weight: 500; color: var(--text-light); }
.btn-buy {
  display: inline-block;
  padding: 7px 18px;
  background: linear-gradient(135deg, var(--blue-light), var(--navy));
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  transition: 0.2s;
  white-space: nowrap;
}
.btn-buy:hover { opacity: 0.88; transform: translateY(-1px); }
.highlight-row { background: rgba(21,101,192,0.04) !important; }
.tag-tr { font-size: 11px; color: var(--text-light); font-weight: 400; }

/* ── PRICE CARDS (3'lü kart tasarımı) ── */
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}
.price-card {
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: 16px;
  padding: 34px 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: 0.2s;
}
.price-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.price-card.popular {
  border: 2px solid var(--blue-light);
  box-shadow: 0 14px 40px rgba(21,101,192,0.18);
  z-index: 1;
}
.pc-ribbon {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-light));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  padding: 10px;
  border-radius: 14px 14px 0 0;
  font-family: 'Poppins', sans-serif;
}
.pc-title { font-size: 23px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.pc-desc { font-size: 13.5px; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; min-height: 64px; }
.pc-badge-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.pc-talep { font-size: 13px; color: var(--blue-light); font-weight: 600; }
.pc-discount {
  background: #c6f24e;
  color: #2b3a00;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.pc-price { font-size: 34px; font-weight: 800; color: var(--navy); margin-bottom: 18px; font-family: 'Poppins', sans-serif; }
.pc-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #2a3da8, #1b2a78);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: 9px;
  transition: 0.2s;
  font-family: 'Poppins', sans-serif;
}
.price-card.popular .pc-btn { background: linear-gradient(135deg, var(--blue-light), var(--navy)); }
.pc-btn:hover { opacity: 0.92; transform: translateY(-1px); }
.pc-features {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--gray);
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.pc-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.4;
}
.pc-features li strong { color: var(--navy); font-weight: 700; }
.pc-check {
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
  font-size: 13px;
  margin-top: 1px;
}

@media (max-width: 900px) {
  .price-cards { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* ── ISP PROXY FİYATLANDIRMA (dönem seçicili) ── */
.isp-toggle {
  display: inline-flex;
  gap: 4px;
  background: var(--gray);
  border-radius: 12px;
  padding: 5px;
  margin: 0 auto 38px;
  display: flex;
  width: max-content;
  max-width: 100%;
}
.isp-tab {
  padding: 10px 26px;
  border: none;
  background: transparent;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--text-mid);
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
}
.isp-tab.active { background: #fff; color: var(--blue-light); box-shadow: var(--shadow-card); }
.isp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.isp-card {
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: 0.2s;
  display: flex;
  flex-direction: column;
}
.isp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.isp-card.popular { border: 2px solid var(--blue-light); box-shadow: 0 14px 40px rgba(21,101,192,0.16); }
.isp-ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-light));
  color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
  padding: 6px 16px; border-radius: 20px; white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}
.isp-card-head h3 { font-size: 20px; font-weight: 800; color: var(--navy); font-family: 'Poppins', sans-serif; }
.isp-card-head p { font-size: 12.5px; color: var(--text-light); margin: 6px 0 10px; line-height: 1.5; min-height: 36px; }
.isp-loc { display: inline-block; background: var(--gray-light); color: var(--text-mid); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 20px; }
.isp-price-box { margin: 18px 0; display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px; }
.isp-amount { font-size: 32px; font-weight: 800; color: var(--navy); font-family: 'Poppins', sans-serif; }
.isp-period { font-size: 13px; color: var(--text-light); font-weight: 600; }
.isp-disc { background: #c6f24e; color: #2b3a00; font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 20px; margin-left: auto; }
.isp-buy {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--blue-light), var(--navy));
  color: #fff; font-size: 15px; font-weight: 700; padding: 13px; border-radius: 9px;
  font-family: 'Poppins', sans-serif; transition: 0.2s;
}
.isp-buy:hover { opacity: 0.92; transform: translateY(-1px); }
.isp-feats { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--gray); display: flex; flex-direction: column; gap: 11px; }
.isp-feats li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--text-mid); line-height: 1.4; }
@media (max-width: 980px) { .isp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .isp-grid { grid-template-columns: 1fr; } .isp-toggle { flex-wrap: wrap; } }

/* Kart içi operatör logoları (130 subnet özelliğinin altında) */
.isp-card-ops {
  display: flex; align-items: center; justify-content: center;
  gap: 22px; flex-wrap: wrap;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--gray);
}
.isp-card-ops img { height: 24px; width: auto; object-fit: contain; }

/* Desteklenen operatör logoları (fiyatlandırma altı tam genişlik bant) */
.isp-operators { margin-top: 36px; }
.isp-op-label { display: block; text-align: center; font-size: 13px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.isp-op-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 64px; flex-wrap: wrap;
  width: 100%;
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 26px 32px;
}
.isp-op-logos img { height: 40px; width: auto; object-fit: contain; }
@media (max-width: 640px){ .isp-op-logos { gap: 28px; padding: 20px 18px; } .isp-op-logos img { height: 30px; } }

/* ── DASHBOARD SECTION ── */
.dashboard-section { background: #fff; }
.dashboard-section .wrap { display: flex; gap: 60px; align-items: center; }
.dash-content { flex: 1; }
.dash-content h2 { font-size: 30px; font-weight: 800; color: var(--navy); margin-bottom: 14px; line-height: 1.25; }
.dash-content h2 span { color: var(--blue-light); }
.dash-content p { color: var(--text-light); font-size: 15px; margin-bottom: 20px; }
.feature-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; }
.fi-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(21,101,192,0.10); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.fi-text strong { font-size: 14px; color: var(--navy); display: block; }
.fi-text span { font-size: 13px; color: var(--text-light); }
.dash-panel { flex: 0 0 520px; }

/* Dashboard Mockup */
.panel-mock {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(13,27,75,0.14);
  border: 1px solid var(--gray);
  overflow: hidden;
}
.panel-topbar {
  background: var(--navy);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.panel-logo { color: #fff; font-weight: 800; font-size: 14px; }
.panel-nav { display: flex; gap: 16px; }
.panel-nav a { color: rgba(255,255,255,0.55); font-size: 11px; }
.panel-nav a.active { color: #fff; }
.panel-body { display: flex; }
.panel-sidebar {
  width: 52px;
  background: var(--navy-dark);
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.ps-item { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; color: rgba(255,255,255,0.45); }
.ps-item.active { background: var(--blue-light); color: #fff; }
.panel-main { flex: 1; padding: 16px; background: #f7f9fc; }
.panel-greeting { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.panel-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px; }
.pc-card { background: #fff; border-radius: 8px; padding: 10px 12px; box-shadow: 0 1px 6px rgba(13,27,75,0.07); }
.pc-card .pc-val { font-size: 18px; font-weight: 800; color: var(--navy); }
.pc-card .pc-lbl { font-size: 10px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }
.pc-card .pc-ic { font-size: 20px; margin-bottom: 4px; }
.panel-chart-area { background: #fff; border-radius: 8px; padding: 12px; box-shadow: 0 1px 6px rgba(13,27,75,0.07); }
.pca-label { font-size: 11px; font-weight: 700; color: var(--text-mid); margin-bottom: 8px; }
.chart-row { display: flex; align-items: flex-end; gap: 3px; height: 60px; }
.cbar { flex: 1; border-radius: 3px 3px 0 0; }
.panel-status-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.psr-card { background: #fff; border-radius: 8px; padding: 10px 12px; }
.psr-title { font-size: 10px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.psr-val { font-size: 20px; font-weight: 800; color: var(--navy); }
.psr-sub { font-size: 10px; color: var(--green); font-weight: 600; }
.donut-wrap { display: flex; align-items: center; gap: 8px; }
.donut { width: 44px; height: 44px; border-radius: 50%; background: conic-gradient(var(--blue-light) 0% 29%, var(--gray) 29% 100%); }
.donut-info .d-val { font-size: 16px; font-weight: 800; color: var(--navy); }
.donut-info .d-lbl { font-size: 10px; color: var(--text-light); }

/* ── OS SECTION ── */
.os-section { background: var(--gray-light); }
.os-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.os-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 14px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  transition: 0.2s;
  cursor: pointer;
}
.os-card:hover { border-color: var(--blue-light); transform: translateY(-3px); box-shadow: var(--shadow); }
.os-card .os-ic { font-size: 32px; margin-bottom: 8px; }
.os-card .os-name { font-size: 12px; font-weight: 700; color: var(--navy); }
.os-card .os-ver { font-size: 11px; color: var(--text-light); }

/* ── PANEL SECTION ── */
.panel-section { background: #fff; }
.panel-logos { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.panel-logo-card {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 18px 28px;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 700; color: var(--text);
  border: 2px solid transparent;
  transition: 0.2s;
  cursor: pointer;
}
.panel-logo-card:hover { border-color: var(--blue-light); background: #fff; box-shadow: var(--shadow); }
.panel-logo-card .plc-ic { font-size: 24px; }

/* ── AWARD BANNER ── */
.award-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--blue) 100%);
  color: #fff;
  padding: 48px 0;
}
.award-banner .wrap { display: flex; align-items: center; gap: 48px; }
.award-left { flex: 1; }
.award-trophy { font-size: 52px; margin-bottom: 12px; }
.award-left h2 { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.award-left p { font-size: 14px; color: rgba(255,255,255,0.70); line-height: 1.7; max-width: 420px; }
.award-right { flex: 0 0 auto; }
.iso-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.iso-badge {
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.25);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 800;
  background: rgba(255,255,255,0.07);
  transition: 0.2s;
}
.iso-badge:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.13); }
.iso-badge .iso-num { font-size: 13px; color: #fff; }
.iso-badge .iso-lbl { font-size: 8px; color: rgba(255,255,255,0.55); letter-spacing: 0.5px; text-transform: uppercase; }
.partner-logos { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-top: 28px; }
.partner-logo { color: rgba(255,255,255,0.55); font-size: 13px; font-weight: 700; padding: 6px 14px; border: 1px solid rgba(255,255,255,0.15); border-radius: 6px; }

/* ── FEATURES ── */
.features-section { background: var(--gray-light); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray);
  transition: 0.2s;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(21,101,192,0.15); }
.feat-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.feat-icon.blue { background: rgba(21,101,192,0.10); }
.feat-icon.green { background: rgba(38,166,91,0.10); }
.feat-icon.orange { background: rgba(247,166,0,0.10); }
.feat-icon.purple { background: rgba(106,27,154,0.10); }
.feat-icon.red { background: rgba(229,57,53,0.10); }
.feat-icon.teal { background: rgba(0,137,123,0.10); }
.feat-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feat-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ── REVIEW PLATFORMS ── */
.review-platforms { background: #fff; padding: 36px 0; border-top: 1px solid var(--gray); border-bottom: 1px solid var(--gray); }
.rp-logos { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.rp-logo { display: flex; align-items: center; gap: 8px; }
.rp-logo .stars { color: var(--accent); font-size: 13px; letter-spacing: 1px; }
.rp-logo .rp-name { font-size: 14px; font-weight: 700; color: var(--text-mid); }
.rp-logo .rp-score { font-size: 13px; color: var(--text-light); }
.rp-divider { width: 1px; height: 36px; background: var(--gray); }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--gray-light); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray);
}
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.reviewer-av {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.av-blue { background: linear-gradient(135deg, #1565c0, #0d47a1); }
.av-green { background: linear-gradient(135deg, #26a65b, #1b7a42); }
.av-purple { background: linear-gradient(135deg, #6a1b9a, #4a148c); }
.reviewer-info .r-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.reviewer-info .r-company { font-size: 12px; color: var(--text-light); }
.review-stars { color: var(--accent); font-size: 13px; letter-spacing: 1px; margin-top: 3px; }
.review-src { margin-left: auto; font-size: 11px; color: var(--text-light); text-align: right; font-weight: 600; }
.review-text { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
/* Fotoğraflı yorum avatarları + profesyonel başlık */
.reviewer-av.photo { padding: 0; overflow: hidden; }
.reviewer-av.photo img { width: 100%; height: 100%; object-fit: cover; }
.reviews-summary { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; margin: 0 auto 36px; background: #fff; border: 1px solid var(--gray); border-radius: 16px; box-shadow: var(--shadow-card); padding: 20px 32px; max-width: 760px; }
.rs-item { text-align: center; }
.rs-item .rs-num { font-size: 28px; font-weight: 800; color: var(--navy); font-family: 'Poppins', sans-serif; }
.rs-item .rs-num span { color: var(--accent); }
.rs-item .rs-lbl { font-size: 12px; color: var(--text-light); }
.rs-stars { color: var(--accent); font-size: 18px; letter-spacing: 2px; }
.rs-divider { width: 1px; height: 40px; background: var(--gray); }
.review-verified { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--green); font-weight: 700; margin-top: 3px; }
.reviewer-info .r-line { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.reviewer-info .r-line strong { font-size: 14.5px; color: var(--navy); font-family: 'Poppins', sans-serif; }
.reviewer-info .r-bar { color: var(--gray-mid); font-weight: 400; }
.reviewer-info .r-job { font-size: 13px; color: var(--text-light); }
.reviews-more-wrap { text-align: center; margin-top: 34px; }
.reviews-more { background: #fff; border: 2px solid var(--blue-light); color: var(--blue-light); font-weight: 700; font-family: 'Poppins', sans-serif; font-size: 14.5px; padding: 13px 34px; border-radius: 9px; cursor: pointer; transition: .2s; }
.reviews-more:hover { background: var(--blue-light); color: #fff; transform: translateY(-2px); }

/* ── CONTENT SECTIONS ── */
.content-section { background: #fff; }
.content-section.alt { background: var(--gray-light); }
.content-block { display: flex; align-items: center; gap: 64px; margin-bottom: 72px; }
.content-block:last-child { margin-bottom: 0; }
.content-block.reverse { flex-direction: row-reverse; }
.content-text { flex: 1; }
.content-text h2 { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 14px; line-height: 1.3; }
.content-text h2 span { color: var(--blue-light); }
.content-text p { font-size: 15px; color: var(--text-light); line-height: 1.75; margin-bottom: 14px; }
.content-text p:last-child { margin-bottom: 0; }
.content-image { flex: 0 0 440px; }
.content-img-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 32px;
  color: #fff;
  min-height: 240px;
  display: flex; flex-direction: column; justify-content: center;
}
.content-img-box .cib-img { width: 100%; border-radius: 10px; margin-bottom: 16px; display: block; background:#fff; }
.content-img-box .cib-title { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.content-img-box .cib-desc { font-size: 14px; color: rgba(255,255,255,0.70); margin-bottom: 20px; }
.cib-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.cib-tag { background: rgba(255,255,255,0.12); border-radius: 20px; padding: 4px 12px; font-size: 12px; font-weight: 600; }

/* ── SUPPORT SECTION ── */
.support-section { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: #fff; padding: 60px 0; }
.support-section .wrap { display: flex; align-items: center; gap: 64px; }
.support-left { flex: 1; }
.support-badge { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.online-dot { width: 10px; height: 10px; background: #4caf50; border-radius: 50%; animation: pulse 2s infinite; }
.support-left h2 { font-size: 30px; font-weight: 800; margin-bottom: 12px; }
.support-left h2 span { color: var(--accent); }
.support-left p { font-size: 15px; color: rgba(255,255,255,0.70); margin-bottom: 28px; }
.support-channels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.sc-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 16px;
  transition: 0.2s;
  cursor: pointer;
}
.sc-item:hover { background: rgba(255,255,255,0.12); }
.sc-icon { font-size: 22px; }
.sc-info .sc-label { font-size: 13px; font-weight: 700; color: #fff; }
.sc-info .sc-desc { font-size: 11px; color: rgba(255,255,255,0.55); }
.support-right { flex: 0 0 380px; }
.contact-form { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 28px; }
.contact-form h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; color: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.form-group label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  resize: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus, .form-group textarea:focus { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.11); }
.btn-send {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), #e67e00);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}
.btn-send:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── FAQ ── */
.faq-section { background: var(--gray-light); }
.faq-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.faq-left h2 { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.faq-left h2 span { color: var(--blue-light); }
.faq-left p { font-size: 15px; color: var(--text-light); margin-bottom: 24px; }
.faq-categories { display: flex; flex-direction: column; gap: 8px; }
.faq-cat {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--gray);
  background: #fff;
  cursor: pointer;
  transition: 0.2s;
}
.faq-cat.active, .faq-cat:hover { background: var(--blue-light); color: #fff; border-color: var(--blue-light); }
.faq-cat .cat-ic { font-size: 18px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--gray);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  user-select: none;
  gap: 12px;
}
.faq-q:hover { color: var(--blue-light); }
.faq-arrow { font-size: 12px; color: var(--text-light); flex-shrink: 0; transition: 0.2s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--blue-light); }
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px 16px; }

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.70);
  padding: 56px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .fb-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.fb-logo-mark { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; }
.fb-logo-text { font-size: 18px; font-weight: 800; color: #fff; }
.fb-logo-text span { color: var(--blue-bright); }
.footer-brand p { font-size: 13px; line-height: 1.75; margin-bottom: 18px; }
.footer-social { display: flex; gap: 8px; }
.fs-icon { width: 32px; height: 32px; border-radius: 6px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.6); transition: 0.2s; }
.fs-icon:hover { background: var(--blue-light); color: #fff; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.60); transition: 0.15s; }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.fc-item { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; }
.fc-ic { color: var(--blue-bright); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-bottom-links a:hover { color: #fff; }
.payment-icons { display: flex; gap: 6px; align-items: center; }
.pay-ic { background: rgba(255,255,255,0.08); border-radius: 4px; padding: 3px 8px; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.55); }

/* ── HERO LOGO ŞERİTLERİ (sağdan sola kayan) ── */
.hero-logos {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 6px 0;
}
.hero-logos::before, .hero-logos::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 48px; z-index: 2; pointer-events: none;
}
.hero-logos::before { left: 0; background: linear-gradient(90deg, #f4f6fb, rgba(244,246,251,0)); }
.hero-logos::after { right: 0; background: linear-gradient(270deg, #f4f6fb, rgba(244,246,251,0)); }
.hero-logos-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: marquee-scroll 28s linear infinite;
}
.hero-logos:hover .hero-logos-track { animation-play-state: paused; }
.hl-bottom .hero-logos-track { animation-direction: reverse; }
.lg-chip {
  flex-shrink: 0;
  min-width: 64px;
  height: 52px;
  padding: 0 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(13,27,75,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
}
.lg-chip.lg-google {
  background: #fff;
  font-size: 20px;
  background-image: linear-gradient(90deg,#4285f4,#ea4335,#fbbc05,#34a853);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ── IMAGE MARQUEE (header loop) ── */
.img-marquee {
  width: 100%;
  overflow: hidden;
  padding: 14px 0;
  background: var(--gray-light);
  position: relative;
}
.img-marquee.top { background: #eef2f9; border-bottom: 1px solid var(--gray); }
.img-marquee.bottom { background: #eef2f9; border-top: 1px solid var(--gray); border-bottom: 1px solid var(--gray); }
.img-marquee::before, .img-marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.img-marquee::before { left: 0; background: linear-gradient(90deg, #eef2f9, rgba(238,242,249,0)); }
.img-marquee::after { right: 0; background: linear-gradient(270deg, #eef2f9, rgba(238,242,249,0)); }
.marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: marquee-scroll 40s linear infinite;
}
.img-marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  width: 260px;
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(13,27,75,0.12);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  color: #fff;
}
.marquee-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.marquee-item .mq-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(13,27,75,0.15), rgba(13,27,75,0.72)); }
.marquee-item .mq-cap { position: relative; z-index: 1; font-size: 14px; font-weight: 700; font-family: 'Poppins', sans-serif; }
.marquee-item .mq-sub { position: relative; z-index: 1; font-size: 11px; opacity: 0.85; margin-top: 2px; }
.marquee-item .mq-ic { position: absolute; top: 12px; left: 12px; z-index: 1; font-size: 22px; }
/* placeholder gradients (replace with real <img> later) */
.mq-g1 { background: linear-gradient(135deg,#0d47a1,#1976d2); }
.mq-g2 { background: linear-gradient(135deg,#091035,#1565c0); }
.mq-g3 { background: linear-gradient(135deg,#1b5e20,#43a047); }
.mq-g4 { background: linear-gradient(135deg,#4a148c,#7b1fa2); }
.mq-g5 { background: linear-gradient(135deg,#e65100,#fb8c00); }
.mq-g6 { background: linear-gradient(135deg,#01579b,#0288d1); }
.mq-g7 { background: linear-gradient(135deg,#263238,#546e7a); }
.mq-g8 { background: linear-gradient(135deg,#b71c1c,#e53935); }

/* ── ENTEGRASYONLAR & TRUST ── */
.integrations-section { background:#fff; padding: 70px 0; }
.integrations-img { max-width: 980px; margin: 30px auto 0; display:block; width:100%; border-radius:16px; }
.trust-strip { background: var(--gray-light); padding: 44px 0; border-top:1px solid var(--gray); border-bottom:1px solid var(--gray); }
.trust-grid { display:grid; grid-template-columns: repeat(6,1fr); gap: 18px; }
.trust-item { background:#fff; border:1px solid var(--gray); border-radius:14px; padding:22px 14px; text-align:center; box-shadow:var(--shadow-card); transition:.2s; }
.trust-item:hover { transform:translateY(-3px); box-shadow:var(--shadow); }
.trust-item img { width:54px; height:54px; object-fit:contain; margin:0 auto 12px; display:block; }
.trust-item span { font-size:13px; font-weight:700; color:var(--navy); line-height:1.4; display:block; }
@media (max-width:900px){ .trust-grid{ grid-template-columns: repeat(3,1fr); } }
@media (max-width:560px){ .trust-grid{ grid-template-columns: repeat(2,1fr); } }

/* ── BLOG ── */
.blog-hero { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color:#fff; padding: 54px 0; }
.blog-hero .breadcrumb { color: rgba(255,255,255,0.6); }
.blog-hero .breadcrumb a { color: rgba(255,255,255,0.75); }
.blog-hero .breadcrumb strong { color:#fff; }
.blog-hero h1 { font-size: 40px; font-weight: 800; font-family:'Poppins',sans-serif; margin-bottom: 12px; }
.blog-hero p { font-size: 16px; color: rgba(255,255,255,0.75); max-width: 640px; }
.blog-filters { display:flex; flex-wrap:wrap; gap:10px; margin: 0 0 30px; }
.blog-filter { padding: 9px 18px; border-radius: 30px; border:1px solid var(--gray); background:#fff; font-size:13.5px; font-weight:600; color:var(--text-mid); cursor:pointer; transition:.2s; }
.blog-filter.active, .blog-filter:hover { background: var(--blue-light); color:#fff; border-color: var(--blue-light); }
.blog-search { margin: 0 0 24px; }
.blog-search input { width:100%; max-width:420px; padding:12px 18px; border:1px solid var(--gray); border-radius:10px; font-size:14px; font-family:inherit; outline:none; }
.blog-search input:focus { border-color: var(--blue-light); }
.blog-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
.blog-card { background:#fff; border:1px solid var(--gray); border-radius:14px; overflow:hidden; box-shadow:var(--shadow-card); transition:.2s; display:flex; flex-direction:column; }
.blog-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.blog-card-cover { height:160px; display:flex; align-items:center; justify-content:center; font-size:46px; color:#fff; position:relative; overflow:hidden; }
.blog-card-cover img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.blog-card-cat { position:absolute; top:12px; left:12px; background:rgba(255,255,255,0.92); color:var(--navy); font-size:11px; font-weight:700; padding:4px 10px; border-radius:20px; }
.blog-card-body { padding:18px 20px; display:flex; flex-direction:column; flex:1; }
.blog-card-body h3 { font-size:16px; font-weight:700; color:var(--navy); line-height:1.4; margin-bottom:8px; font-family:'Poppins',sans-serif; }
.blog-card-body p { font-size:13px; color:var(--text-light); line-height:1.6; margin-bottom:14px; flex:1; }
.blog-card-meta { display:flex; align-items:center; justify-content:space-between; font-size:12px; color:var(--text-light); border-top:1px solid var(--gray); padding-top:12px; }
.blog-card-meta a { color:var(--blue-light); font-weight:700; }
.blog-empty { text-align:center; color:var(--text-light); padding:40px; display:none; }

/* Blog article */
.article-wrap { display:grid; grid-template-columns: 1fr 280px; gap:48px; align-items:start; }
.article-header { padding: 40px 0 10px; }
.article-cat { display:inline-block; background:rgba(21,101,192,0.1); color:var(--blue-light); font-size:12px; font-weight:700; padding:5px 14px; border-radius:20px; text-transform:uppercase; letter-spacing:.5px; margin-bottom:14px; }
.article h1 { font-size:36px; font-weight:800; color:var(--navy); line-height:1.2; margin-bottom:14px; font-family:'Poppins',sans-serif; }
.post-meta { display:flex; flex-wrap:wrap; gap:18px; font-size:13px; color:var(--text-light); margin-bottom:24px; }
.post-meta span { display:flex; align-items:center; gap:6px; }
.article-cover { height:320px; border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:90px; color:#fff; margin-bottom:32px; overflow:hidden; }
.article-cover img { width:100%; height:100%; object-fit:cover; display:block; }
.article-figure { margin:26px 0; border-radius:14px; overflow:hidden; box-shadow:var(--shadow-card); background:var(--gray-light); }
.article-figure img { width:100%; display:block; }
.article-figure figcaption { font-size:12.5px; color:var(--text-light); text-align:center; padding:10px 14px; background:#fff; }
.article-body h2 { font-size:25px; font-weight:800; color:var(--navy); margin:34px 0 14px; font-family:'Poppins',sans-serif; line-height:1.3; }
.article-body h3 { font-size:19px; font-weight:700; color:var(--navy); margin:24px 0 10px; }
.article-body p { font-size:15.5px; color:var(--text-mid); line-height:1.85; margin-bottom:16px; }
.article-body ul, .article-body ol { margin:0 0 18px 22px; display:flex; flex-direction:column; gap:9px; }
.article-body li { font-size:15px; color:var(--text-mid); line-height:1.7; }
.article-body strong { color:var(--navy); }
.article-body blockquote { border-left:4px solid var(--blue-light); background:var(--gray-light); padding:16px 22px; border-radius:0 10px 10px 0; margin:0 0 20px; font-style:italic; color:var(--text-mid); }
.article-cta { background:linear-gradient(135deg,var(--navy),var(--blue)); color:#fff; border-radius:16px; padding:30px; margin:32px 0; }
.article-cta h3 { color:#fff; font-size:21px; font-weight:800; margin-bottom:10px; font-family:'Poppins',sans-serif; }
.article-cta p { color:rgba(255,255,255,0.8); font-size:14px; margin-bottom:18px; line-height:1.7; }
.article-cta .ac-btns { display:flex; gap:12px; flex-wrap:wrap; }
.article-cta a { display:inline-block; padding:11px 24px; border-radius:8px; font-size:14px; font-weight:700; }
.ac-primary { background:#f7a600; color:#fff; }
.ac-outline { background:rgba(255,255,255,0.12); color:#fff; border:1px solid rgba(255,255,255,0.3); }
.article-sidebar { position:sticky; top:90px; display:flex; flex-direction:column; gap:24px; }
.side-box { background:#fff; border:1px solid var(--gray); border-radius:14px; padding:22px; box-shadow:var(--shadow-card); }
.side-box h4 { font-size:15px; font-weight:700; color:var(--navy); margin-bottom:14px; font-family:'Poppins',sans-serif; }
.side-toc a { display:block; font-size:13.5px; color:var(--text-mid); padding:7px 0; border-bottom:1px solid var(--gray); }
.side-toc a:last-child { border-bottom:none; }
.side-toc a:hover { color:var(--blue-light); }
.side-related a { display:block; font-size:13.5px; color:var(--text-mid); padding:9px 0; border-bottom:1px solid var(--gray); line-height:1.4; font-weight:600; }
.side-related a:hover { color:var(--blue-light); }
.side-cta { background:linear-gradient(135deg,var(--blue-light),var(--navy)); color:#fff; text-align:center; }
.side-cta h4 { color:#fff; }
.side-cta p { font-size:13px; color:rgba(255,255,255,0.8); margin-bottom:14px; line-height:1.6; }
.side-cta a { display:block; background:#f7a600; color:#fff; padding:11px; border-radius:8px; font-weight:700; font-size:14px; }
@media (max-width:980px){ .article-wrap{ grid-template-columns:1fr; } .article-sidebar{ position:static; } .blog-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:680px){ .blog-grid{ grid-template-columns:1fr; } }

/* ── WHATSAPP WIDGET ── */
.wa-widget { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }
.wa-fab {
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(37,211,102,0.45);
  transition: transform 0.2s;
  position: relative;
}
.wa-fab:hover { transform: scale(1.07); }
.wa-fab svg { width: 32px; height: 32px; }
.wa-fab::after { content: ''; position: absolute; top: 4px; right: 4px; width: 13px; height: 13px; background: #ff3b30; border: 2px solid #fff; border-radius: 50%; }
.wa-popup {
  position: absolute; bottom: 74px; right: 0;
  width: 330px; max-width: calc(100vw - 40px);
  background: #fff; border-radius: 16px;
  box-shadow: 0 16px 50px rgba(13,27,75,0.28);
  overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(16px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}
.wa-popup.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.wa-head { background: #075e54; color: #fff; padding: 16px; display: flex; align-items: center; gap: 12px; position: relative; }
.wa-head-av { width: 42px; height: 42px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.wa-head-info strong { display: block; font-size: 15px; font-family: 'Poppins', sans-serif; }
.wa-head-info span { font-size: 12px; opacity: 0.85; display: flex; align-items: center; gap: 5px; }
.wa-on { width: 8px; height: 8px; background: #4eea8b; border-radius: 50%; display: inline-block; }
.wa-close { position: absolute; top: 12px; right: 12px; background: none; border: none; color: rgba(255,255,255,0.8); font-size: 16px; cursor: pointer; }
.wa-body { background: #e5ddd5 url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v40H0z' fill='%23e5ddd5'/%3E%3Ccircle cx='20' cy='20' r='1' fill='%23d9cfc3'/%3E%3C/svg%3E"); padding: 18px 16px; min-height: 110px; }
.wa-msg { background: #fff; border-radius: 0 12px 12px 12px; padding: 12px 14px; font-size: 13.5px; color: var(--text-mid); line-height: 1.55; box-shadow: 0 1px 2px rgba(0,0,0,0.1); max-width: 92%; }
.wa-foot { display: flex; gap: 8px; padding: 12px; background: #f0f0f0; }
.wa-foot input { flex: 1; border: 1px solid var(--gray); border-radius: 22px; padding: 10px 16px; font-size: 13px; font-family: inherit; outline: none; }
.wa-foot input:focus { border-color: #25d366; }
.wa-send { width: 42px; height: 42px; border-radius: 50%; background: #25d366; border: none; color: #fff; font-size: 17px; cursor: pointer; flex-shrink: 0; transition: 0.2s; }
.wa-send:hover { background: #1ebe5d; }

/* ── IPv6 / RESIDENTIAL FİYAT KARTLARI ── */
.dc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.dc-grid.cols6 { grid-template-columns: repeat(3, 1fr); }
.dc-card { background: #fff; border: 1px solid var(--gray); border-radius: 16px; padding: 28px 24px; box-shadow: var(--shadow-card); position: relative; transition: 0.2s; display: flex; flex-direction: column; text-align: center; }
.dc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.dc-card.popular { border: 2px solid var(--blue-light); box-shadow: 0 14px 40px rgba(21,101,192,0.16); }
.dc-ribbon { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--blue-bright), var(--blue-light)); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .5px; padding: 6px 16px; border-radius: 20px; font-family: 'Poppins', sans-serif; }
.dc-qty { font-size: 26px; font-weight: 800; color: var(--navy); font-family: 'Poppins', sans-serif; }
.dc-sub { font-size: 13px; color: var(--text-light); margin: 4px 0 16px; }
.dc-price-label { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: .5px; }
.dc-price { font-size: 32px; font-weight: 800; color: var(--navy); font-family: 'Poppins', sans-serif; }
.dc-price small { font-size: 14px; font-weight: 600; color: var(--text-light); }
.dc-old { font-size: 16px; color: var(--text-light); text-decoration: line-through; margin-left: 6px; }
.dc-meta { display: flex; justify-content: center; gap: 18px; margin: 12px 0; padding: 12px 0; border-top: 1px solid var(--gray); border-bottom: 1px solid var(--gray); }
.dc-meta div { font-size: 12px; color: var(--text-light); }
.dc-meta strong { display: block; font-size: 16px; color: var(--navy); font-family: 'Poppins', sans-serif; }
.dc-buy { display: block; background: linear-gradient(135deg, var(--blue-light), var(--navy)); color: #fff; font-weight: 700; padding: 13px; border-radius: 9px; margin: 16px 0; font-family: 'Poppins', sans-serif; transition: .2s; }
.dc-card.popular .dc-buy { background: linear-gradient(135deg, #f7a600, #e67e00); }
.dc-buy:hover { opacity: .92; transform: translateY(-1px); }
.dc-feats { display: flex; flex-direction: column; gap: 10px; text-align: left; }
.dc-feats li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--text-mid); line-height: 1.4; }
@media (max-width: 980px){ .dc-grid, .dc-grid.cols6 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .dc-grid, .dc-grid.cols6 { grid-template-columns: 1fr; } }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero .wrap { flex-direction: column; }
  .hero-image { flex: unset; width: 100%; max-width: 480px; margin: 0 auto; }
  .dashboard-section .wrap { flex-direction: column; }
  .dash-panel { width: 100%; flex: unset; }
  .os-grid { grid-template-columns: repeat(4, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .award-banner .wrap { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-wrap { grid-template-columns: 1fr; }
  .support-section .wrap { flex-direction: column; }
  .support-right { width: 100%; flex: unset; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .content-block { flex-direction: column !important; }
  .content-image { width: 100%; flex: unset; }
}
@media (max-width: 1024px) {
  .mega-inner { flex-direction: column; }
  .mega-visual { border-left: none; border-top: 1px solid var(--gray); padding-left: 0; padding-top: 20px; flex: unset; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .navbar-menu { display: none; }
  .topbar-left { flex-wrap: wrap; gap: 8px; }
  .topbar-left .tb-sep { display: none; }
  .topbar .wrap { flex-direction: column; gap: 8px; }
  .os-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .support-channels { grid-template-columns: 1fr; }
  .panel-cards { grid-template-columns: 1fr 1fr; }
}
