/* Siber Merkezi - Anasayfa (görsel tasarıma uygun) */

:root {
  --bg-dark: #0f172a;
  --header-nav: #111827;
  --bg-card: #1e293b;
  --bg-card-hover: #334155;
  --primary: #3F51B5;
  --primary-hover: #303F9F;
  --purple: #673AB7;
  --accent-yellow: #FFEB3B;
  --accent-green: #4CAF50;
  --accent-blue: #2196F3;
  --text: #ffffff;
  --text-muted: #b0bec5;
  --text-dark: #263238;
  --border: #334155;
  --gradient-blue: #3F51B5;
  --gradient-purple: #673AB7;
  /* Responsive: tutarlı boşluklar */
  --container-padding: clamp(12px, 3vw, 24px);
  --section-padding-y: clamp(40px, 8vw, 80px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-width: 280px;
  padding-top: 74px;
}

img, video {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

/* Header - koyu lacivert */
.header {
  background: var(--header-nav);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 13px;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--purple);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Hamburger: masaüstünde gizli */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  border-radius: 8px;
  flex-shrink: 0;
}
.nav-toggle:hover { background: rgba(255,255,255,0.2); }
.nav-toggle:focus { outline: 2px solid rgba(255,255,255,0.5); outline-offset: 2px; }

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.24rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}

.nav a:hover {
  opacity: 0.9;
}

.nav-icon {
  font-size: 1.43rem;
  opacity: 0.95;
}

.nav-icon-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-icon-wa svg {
  display: block;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.nav-icon-tg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-icon-tg svg {
  display: block;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.dropdown {
  position: relative;
}

.dropdown-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.24rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.dropdown-btn:hover {
  opacity: 0.9;
}

.dropdown-btn .arrow {
  font-size: 0.85rem;
  opacity: 0.8;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  min-width: 338px;
  max-height: min(70vh, 480px);
  overflow-y: auto;
  background: var(--header-nav);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.dropdown-content.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 21px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.17rem;
}

.dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

/* Dropdown link solunda platform renginde ikon */
.dd-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dd-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.dd-icon-insta { color: #E1306C; }
.dd-icon-fb    { color: #1877F2; }
.dd-icon-x     { color: #e7e9ea; }
.dd-icon-wa    { color: #25D366; }
.dd-icon-google { color: #4285F4; }
.dd-icon-maps  { color: #34A853; }
.dd-icon-yt    { color: #FF0000; }
.dd-icon-check { color: #34A853; }

.dropdown-label {
  display: block;
  padding: 8px 21px;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dropdown-divider {
  display: block;
  height: 1px;
  background: var(--border);
  margin: 10px 0;
}

.btn-whatsapp,
.btn-telegram {
  padding: 13px 26px !important;
  border-radius: 10px;
  font-size: 1.24rem !important;
}

.btn-whatsapp {
  background: var(--accent-green) !important;
  color: #fff !important;
}

.btn-whatsapp:hover {
  background: #43A047 !important;
  color: #fff !important;
}

.btn-telegram {
  background: #0088cc !important;
  color: #fff !important;
}

.btn-telegram:hover {
  background: #0077b5 !important;
  color: #fff !important;
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #dc2743 50%, #bc1888 100%) !important;
  color: #fff !important;
}

.btn-instagram:hover {
  filter: brightness(1.06);
  color: #fff !important;
}

/* Üst menü: Instagram – diğer nav linkleriyle uyumlu, kompakt rozet */
.header .nav .btn-instagram {
  padding: 8px 16px !important;
  border-radius: 999px !important;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-size: 1.05rem !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  gap: 7px;
  flex-shrink: 0;
  line-height: 1.25;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  background: linear-gradient(125deg, #9b2d6b 0%, #d62976 42%, #f77737 100%) !important;
}

.header .nav .btn-instagram .nav-icon {
  font-size: 1.12rem;
  line-height: 1;
  opacity: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header .nav .btn-instagram:hover {
  filter: brightness(1.08);
  color: #fff !important;
  opacity: 1;
  box-shadow: 0 4px 20px rgba(214, 41, 118, 0.45);
}

/* Hero - mavi-mor gradient + '+' deseni */
.hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
  min-height: 520px;
}

.hero .container {
  max-width: 1500px;
  padding-left: 24px;
  padding-right: 24px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #6A5ACD;
  z-index: 0;
}

/* Çok şeffaf, düşük opaklık beyaz katman */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

/* Canvas: sadece masaüstünde etkileşimli noktalar */
.hero-dots-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  display: none;
}

@media (min-width: 768px) {
  .hero.hero-dots-active .hero-dots-canvas {
    display: block;
  }
  .hero.hero-dots-active .hero-pattern {
    display: none;
  }
}

/* Ufak beyaz noktalar – mobilde hafif hareketli animasyon */
.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.35) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  background-position: 0 0;
  animation: hero-dots-drift 25s linear infinite;
  opacity: 0.9;
}

@keyframes hero-dots-drift {
  0% { background-position: 0 0; }
  100% { background-position: 56px 56px; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  min-width: 0;
}

.hero-left { min-width: 0; }

.hero-left {
  padding-top: 8px;
}

/* Rozet: beyaz kutu, koyu yazı, yıldız */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.badge-star {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 24px;
  color: #fff;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-title-accent {
  color: var(--accent-yellow);
}

.hero-desc {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.95);
  font-size: 1.2rem;
  line-height: 1.65;
}

.hero-desc strong {
  color: #fff;
  font-weight: 600;
}

.hero-stats {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  margin-left: 18px;
}

.stat {
  text-align: left;
}

.stat-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.16rem;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 0.945rem;
  color: var(--text-muted);
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-cta .btn {
  padding: 16px 32px;
  font-size: 1.15rem;
  border-radius: 10px;
}

/* Yüzen iletişim butonları (WhatsApp / Telegram / köşe FAB — sınıf adı reklam listelerindeki #float-instagram vb. kurallardan kaçınır) */
.float-whatsapp,
.float-telegram,
.fab-corner {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  text-decoration: none;
  z-index: 2147483000;
  transition: transform 0.2s;
}

.float-whatsapp {
  background: var(--accent-green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(76, 175, 80, 0.5);
}

.float-whatsapp:hover {
  transform: scale(1.05);
  color: #fff;
}

.float-telegram {
  background: #0088cc;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 136, 204, 0.5);
}

.float-telegram:hover {
  transform: scale(1.05);
  color: #fff;
}

.fab-corner {
  background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(220, 39, 67, 0.45);
}

.fab-corner:hover {
  transform: scale(1.05);
  color: #fff;
}

.fab-corner svg {
  display: block;
}

/* Satın alma bildirimi - sol alt köşe */
.purchase-notification {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 98;
  max-width: 340px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-24px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.purchase-notification.purchase-notification-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.purchase-notification-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(76, 175, 80, 0.35);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.purchase-notification-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.35);
}

.purchase-notification-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.purchase-notification-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.purchase-notification-time {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.purchase-notification-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.purchase-notification-service {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 576px) {
  .purchase-notification {
    left: 16px;
    bottom: 90px;
    max-width: calc(100vw - 32px);
  }
  .purchase-notification-inner {
    padding: 14px 16px;
    gap: 12px;
  }
  .purchase-notification-icon {
    width: 40px;
    height: 40px;
  }
  .purchase-notification-icon svg {
    width: 20px;
    height: 20px;
  }
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
}

.hero-cta .btn-primary {
  background: var(--accent-green);
}

.hero-cta .btn-primary:hover {
  background: #43A047;
}

/* Hero: Instagram ile iletişim — marka gradyanı + ikon */
.hero-cta .btn-hero-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff !important;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 22%, #dc2743 50%, #cc2366 78%, #bc1888 100%);
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  box-shadow: 0 4px 22px rgba(225, 48, 108, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-cta .btn-hero-instagram:hover {
  filter: brightness(1.08);
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.65);
}

.hero-cta .btn-hero-instagram .btn-hero-instagram-icon {
  flex-shrink: 0;
  display: block;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
}

.cta .btn-primary {
  background: var(--accent-green);
}

.cta .btn-primary:hover {
  background: #43A047;
  color: #fff;
}

.cta .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
}

.cta .btn-secondary:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

/* Destek durumu (hero'da kart var; bu bant isteğe bağlı) */
.support-status-simple {
  display: none;
}

.support-status {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
}

.section-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.support-text {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.support-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.support-avatars {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card-hover);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Bölüm başlıkları */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.section-title-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 999px;
  border: none;
  font-size: 1.25rem;
  box-shadow: 0 4px 14px rgba(63, 81, 181, 0.35);
  margin-left: 50%;
  transform: translateX(-50%);
}

.section-desc {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Hizmetler ve altı – beyaz arka plan */
.services,
.process,
.cta,
.faq {
  background: #fff;
}

.services .section-title,
.services .section-desc,
.process .section-title,
.process .section-desc,
.faq .section-title,
.faq .section-desc {
  color: var(--text-dark);
}

.services .section-desc,
.process .section-desc,
.faq .section-desc {
  color: #546e7a;
}

/* Hizmetler */
.services {
  padding: 80px 0;
}

.services-group-title {
  font-size: 1.2rem;
  color: #546e7a;
  margin: 40px 0 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 600;
}

.services-group-title:first-of-type {
  margin-top: 0;
}

.services-group-title-center {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  align-items: stretch;
}

/* Instagram, Facebook, X – hep aynı satırda, eşit boyut */
.services-grid-four {
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.services-grid-three {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 1100px) {
  .services-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid-three {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .services-grid-four {
    grid-template-columns: 1fr;
  }
  .services-grid-three {
    grid-template-columns: 1fr;
  }
}

.services-grid.three-col {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

/* Google/YouTube ve Reklam Hizmetleri: 3’lü kutucukları ortala */
.services-grid-center,
.services-grid.three-col.services-grid-center {
  grid-template-columns: repeat(3, minmax(300px, 340px));
  justify-content: center;
  gap: 28px;
}

@media (max-width: 1100px) {
  .services-grid-center,
  .services-grid.three-col.services-grid-center {
    grid-template-columns: repeat(2, 1fr);
    justify-content: stretch;
  }
}

@media (max-width: 680px) {
  .services-grid-center,
  .services-grid.three-col.services-grid-center {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 38px 30px 34px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.3s ease;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.services .card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Platforma göre kart renk paleti + metin/buton uyumu (boyut değişikliği yok) */
.card-insta {
  background: linear-gradient(160deg, rgba(240, 148, 51, 0.06) 0%, rgba(188, 24, 136, 0.08) 100%);
  border-color: rgba(194, 54, 132, 0.35);
}
.card-insta h4 { color: #c13584; }
.card-insta .card-link { color: #c13584; }
.card-insta .card-link:hover { color: #a02868; }
.card-insta .card-features li::before { color: #c13584; }
.card-insta:hover { border-color: #c13584; transform: translateY(-4px); box-shadow: 0 12px 28px rgba(225, 48, 108, 0.15); }
.card-insta:hover .card-icon-svg { animation: insta-pulse 0.6s ease; }
@keyframes insta-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.card-fb {
  background: rgba(24, 119, 242, 0.06);
  border-color: rgba(24, 119, 242, 0.35);
}
.card-fb h4 { color: #1877F2; }
.card-fb .card-link { color: #1877F2; }
.card-fb .card-link:hover { color: #0d65d9; }
.card-fb .card-features li::before { color: #1877F2; }
.card-fb:hover { border-color: #1877F2; transform: translateY(-4px); box-shadow: 0 12px 28px rgba(24, 119, 242, 0.2); }
.card-fb:hover .card-icon-svg { animation: fb-bounce 0.5s ease; }
@keyframes fb-bounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  70% { transform: translateY(2px); }
}

.card-x {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.2);
}
.card-x h4 { color: #0f1419; }
.card-x .card-link { color: #0f1419; }
.card-x .card-link:hover { color: #000; }
.card-x .card-features li::before { color: #0f1419; }
.card-x:hover { border-color: #0f1419; transform: translateY(-4px) scale(1.01); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12); }
.card-x:hover .card-icon-svg { animation: x-pop 0.35s ease; }
@keyframes x-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1.08); }
}

.card-wa {
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.4);
}
.card-wa h4 { color: #128C7E; }
.card-wa .card-link { color: #25D366; }
.card-wa .card-link:hover { color: #1da851; }
.card-wa .card-features li::before { color: #25D366; }
.card-wa:hover { border-color: #25D366; transform: translateY(-4px); box-shadow: 0 12px 28px rgba(37, 211, 102, 0.25); }
.card-wa:hover .card-icon-svg { animation: wa-pulse 0.7s ease; }
@keyframes wa-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.9; }
}

.card-google {
  background: rgba(66, 133, 244, 0.06);
  border-color: rgba(66, 133, 244, 0.35);
}
.card-google h4 { color: #4285F4; }
.card-google .card-link { color: #4285F4; }
.card-google .card-link:hover { color: #3367d6; }
.card-google .card-features li::before { color: #4285F4; }
.card-google:hover { border-color: #4285F4; transform: translateY(-4px); box-shadow: 0 12px 28px rgba(66, 133, 244, 0.18); }
.card-google:hover .card-icon-svg { animation: google-spin 0.6s ease; }
@keyframes google-spin {
  0% { transform: rotate(0deg); }
  30% { transform: rotate(-8deg); }
  70% { transform: rotate(8deg); }
  100% { transform: rotate(0deg); }
}

.card-maps {
  background: rgba(52, 168, 83, 0.08);
  border-color: rgba(52, 168, 83, 0.35);
}
.card-maps h4 { color: #34A853; }
.card-maps .card-link { color: #34A853; }
.card-maps .card-link:hover { color: #2d9249; }
.card-maps .card-features li::before { color: #34A853; }
.card-maps:hover { border-color: #34A853; transform: translateY(-4px); box-shadow: 0 12px 28px rgba(52, 168, 83, 0.2); }
.card-maps:hover .card-icon-svg { animation: maps-pin 0.5s ease; }
@keyframes maps-pin {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.card-yt {
  background: rgba(255, 0, 0, 0.06);
  border-color: rgba(255, 0, 0, 0.3);
}
.card-yt h4 { color: #CC0000; }
.card-yt .card-link { color: #FF0000; }
.card-yt .card-link:hover { color: #b30000; }
.card-yt .card-features li::before { color: #FF0000; }
.card-yt:hover { border-color: #FF0000; transform: translateY(-4px); box-shadow: 0 12px 28px rgba(255, 0, 0, 0.2); }
.card-yt:hover .card-icon-svg { animation: yt-play 0.4s ease; }
@keyframes yt-play {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.card-social {
  background: rgba(225, 48, 108, 0.06);
  border-color: rgba(225, 48, 108, 0.35);
}
.card-social h4 { color: #E1306C; }
.card-social .card-link { color: #E1306C; }
.card-social .card-link:hover { color: #c1285a; }
.card-social .card-features li::before { color: #E1306C; }
.card-social:hover { border-color: #E1306C; transform: translateY(-4px); box-shadow: 0 12px 28px rgba(225, 48, 108, 0.18); }
.card-social:hover .card-icon-svg { animation: social-float 0.8s ease; }
@keyframes social-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.card-ads {
  background: rgba(66, 133, 244, 0.06);
  border-color: rgba(66, 133, 244, 0.35);
}
.card-ads h4 { color: #4285F4; }
.card-ads .card-link { color: #4285F4; }
.card-ads .card-link:hover { color: #3367d6; }
.card-ads .card-features li::before { color: #4285F4; }
.card-ads:hover { border-color: #4285F4; transform: translateY(-4px); box-shadow: 0 12px 28px rgba(66, 133, 244, 0.18); }
.card-ads:hover .card-icon-svg { animation: ads-glow 0.6s ease; }
@keyframes ads-glow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.card-reklam {
  background: rgba(52, 168, 83, 0.08);
  border-color: rgba(52, 168, 83, 0.35);
}
.card-reklam h4 { color: #34A853; }
.card-reklam .card-link { color: #34A853; }
.card-reklam .card-link:hover { color: #2d9249; }
.card-reklam .card-features li::before { color: #34A853; }
.card-reklam:hover { border-color: #34A853; transform: translateY(-4px); box-shadow: 0 12px 28px rgba(52, 168, 83, 0.2); }
.card-reklam:hover .card-icon-svg { animation: reklam-check 0.4s ease; }
@keyframes reklam-check {
  0% { transform: scale(0.9); opacity: 0.8; }
  60% { transform: scale(1.12); }
  100% { transform: scale(1); opacity: 1; }
}

.card-icon {
  font-size: 1.85rem;
  margin-bottom: 16px;
}

.card-icon-svg {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #546e7a;
}

.card-icon-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.card h4 {
  font-size: 1.22rem;
  margin-bottom: 16px;
  color: var(--text-dark);
  line-height: 1.3;
}

.card p {
  font-size: 1rem;
  color: #546e7a;
  margin-bottom: 18px;
  line-height: 1.6;
  flex-grow: 1;
}

.card-features {
  list-style: none;
  margin-bottom: 18px;
}

.card-features li {
  font-size: 0.95rem;
  color: #546e7a;
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
}

.card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.card-link {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-top: auto;
}

.card-link:hover {
  text-decoration: underline;
}

/* Süreç */
.process {
  padding: 80px 0;
  border-top: 1px solid #e0e0e0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.process-step:nth-child(1) { grid-column: 1 / 3; }
.process-step:nth-child(2) { grid-column: 3 / 5; }
.process-step:nth-child(3) { grid-column: 5 / 7; }
.process-step:nth-child(4) { grid-column: 2 / 4; }
.process-step:nth-child(5) { grid-column: 4 / 6; }

.process-step {
  text-align: center;
  padding: 32px 24px;
  background: #f5f5f5;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
  border-color: var(--primary);
  box-shadow: 0 12px 28px rgba(63, 81, 181, 0.22), 0 4px 12px rgba(103, 58, 183, 0.15);
}

.process-step:hover .step-num {
  animation: step-spin 0.6s ease forwards;
}

@keyframes step-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.process-step h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.process-step p {
  font-size: 0.95rem;
  color: #546e7a;
  line-height: 1.5;
}

/* CTA */
.cta {
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-purple) 100%);
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #fff;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* SSS */
.faq {
  padding: 80px 0;
  border-top: 1px solid #e0e0e0;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid #e8eaed;
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(63, 81, 181, 0.06);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.faq-item:hover {
  background: #f8f9ff;
  border-left-color: var(--gradient-purple);
  box-shadow: 0 4px 16px rgba(63, 81, 181, 0.12);
}

.faq-item[open] {
  background: linear-gradient(135deg, #fafbff 0%, #f0f4ff 100%);
  border-left-color: var(--primary);
  box-shadow: 0 6px 20px rgba(63, 81, 181, 0.15);
}

.faq-item summary {
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.faq-item:hover summary,
.faq-item[open] summary {
  color: var(--primary);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.35s ease, color 0.2s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item:hover summary::after {
  color: var(--gradient-purple);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 20px 18px;
  color: #546e7a;
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid rgba(63, 81, 181, 0.12);
  padding-top: 16px;
  margin-top: 0;
  margin-left: 0;
}

.faq-item[open] p {
  animation: faqAnswerIn 0.35s ease forwards;
}

@keyframes faqAnswerIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer – hesapgeri.com ile aynı koyu footer rengi */
.footer {
  background: #2C3E50;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 24px;
}

.footer-brand h3,
.footer-links h4,
.footer-contact h4 {
  color: #fff;
}

.footer-brand p,
.footer-links a,
.footer-contact p,
.footer-stats {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-about {
  margin-bottom: 16px !important;
}

.footer-stats {
  display: flex;
  gap: 16px;
  font-size: 1.26rem;
  color: #fff;
  font-weight: 500;
}

.footer-stats .footer-stat-num {
  font-weight: 700;
  color: var(--accent-blue);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #fff;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 4px 0;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 4px 0;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 42px;
  margin-top: 18px;
  margin-bottom: 0 !important;
  font-size: 0.8rem;
  font-weight: 600;
}
.footer-badges span {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, border-color 0.2s;
}
.footer-badges span:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.25);
}
.footer-badges span:not(:last-child)::after {
  display: none;
}

/* ========== RESPONSIVE – Tüm cihazlarda doğru görünüm, taşma/üst üste binme yok ========== */

/* Tablet ve altı: mobil menü (hamburger) */
@media (max-width: 992px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px var(--container-padding);
  }
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }
  .nav {
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.2s, visibility 0.2s;
    background: var(--header-nav);
    border-radius: 8px;
    margin-top: 4px;
    padding: 0;
  }
  .nav.is-open {
    max-height: 85vh;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    padding: 12px 0;
  }
  .nav a,
  .dropdown-btn {
    padding: 16px var(--container-padding);
    width: 100%;
    justify-content: flex-start;
    border-radius: 0;
  }
  .dropdown { position: static; }
  .dropdown-content {
    position: static;
    margin: 0;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--header-nav);
    padding: 0 0 0 21px;
  }
  .dropdown-content.show {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    padding: 10px 0 10px 21px;
  }
  .dropdown-content a { padding: 13px 21px; }
  .btn-whatsapp,
  .btn-telegram,
  .btn-instagram { justify-content: flex-start; }

  .header .nav .btn-instagram {
    width: auto !important;
    align-self: center;
    margin: 10px auto 16px;
    justify-content: center !important;
    padding: 11px 22px !important;
    font-size: 1.08rem !important;
    border-radius: 12px !important;
    max-width: min(100%, 300px);
  }
}

/* Küçük tablet / büyük telefon */
@media (max-width: 768px) {
  .hero {
    padding: 40px 0 56px;
    min-height: 0;
  }
  .hero .container { padding-left: var(--container-padding); padding-right: var(--container-padding); }
  .hero-inner { gap: 32px; }
  .hero-title { font-size: clamp(1.75rem, 5vw, 2.35rem); }
  .hero-desc { font-size: 1.1rem; }
  .hero-stats { gap: 28px; }
  .stat-num { font-size: 1.75rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; margin-top: 24px; }
  .hero-cta .btn { width: 100%; text-align: center; padding: 14px 28px; font-size: 1.1rem; }
  .float-whatsapp,
  .float-telegram,
  .fab-corner { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.5rem; }

  .section-title { font-size: clamp(1.35rem, 4vw, 1.75rem); }
  .section-desc { font-size: 0.95rem; margin-bottom: 28px; }
  .services { padding: var(--section-padding-y) 0; }
  .services-group-title { font-size: 1.05rem; margin: 28px 0 16px; }
  .services-grid-four,
  .services-grid-three,
  .services-grid-center,
  .services-grid.three-col.services-grid-center {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .services-grid { grid-template-columns: 1fr; }
  .card { min-height: 0; padding: 24px 20px 22px; }
  .card h4 { font-size: 1.1rem; }
  .card p, .card-features li { font-size: 0.9rem; }

  .process { padding: var(--section-padding-y) 0; }
  .process-steps { grid-template-columns: 1fr; gap: 20px; }
  .process-step:nth-child(1),
  .process-step:nth-child(2),
  .process-step:nth-child(3),
  .process-step:nth-child(4),
  .process-step:nth-child(5) { grid-column: auto; }
  .process-step { padding: 20px; }
  .step-num { width: 40px; height: 40px; font-size: 1.1rem; }

  .cta { padding: var(--section-padding-y) 0; }
  .cta-title { font-size: clamp(1.35rem, 4vw, 1.6rem); }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { width: 100%; text-align: center; }

  .faq { padding: var(--section-padding-y) 0; }
  .faq-item summary { padding: 14px var(--container-padding); font-size: 0.95rem; }
  .faq-item summary { word-break: break-word; }
  .faq-item p { padding: 12px var(--container-padding) 14px; font-size: 0.9rem; }

  .footer { padding: var(--section-padding-y) 0 20px; }
  .footer-grid { gap: 28px; margin-bottom: 32px; }
  .footer-brand .footer-about { font-size: 0.9rem; }
}

/* Küçük telefon */
@media (max-width: 480px) {
  .logo-icon { width: 40px; height: 40px; }
  .logo-title { font-size: 1.05rem; }
  .logo-subtitle { font-size: 0.7rem; }
  .hero-badge { padding: 10px 18px; font-size: 1rem; }
  .hero-title { margin-bottom: 16px; }
  .hero-desc { margin-bottom: 24px; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.95rem; }
  .float-whatsapp,
  .float-telegram,
  .fab-corner { bottom: 16px; right: 16px; width: 48px; height: 48px; }

  .section-title { font-size: 1.25rem; }
  .services-group-title { font-size: 0.95rem; }
  .card { padding: 20px 16px 18px; }
  .card-icon-svg { width: 48px; height: 48px; }
  .btn, .card-link { font-size: 0.95rem; }
  .process-step { padding: 16px; }
  .footer-grid { gap: 24px; }
  .footer-brand h3 { font-size: 1.25rem; }
  .footer-stats { flex-wrap: wrap; justify-content: center; }
}

/* Çok küçük ekran: metin taşması önleme */
@media (max-width: 360px) {
  .container { padding-left: 10px; padding-right: 10px; }
  .hero-cta .btn,
  .cta-buttons .btn { padding: 14px 20px; font-size: 1rem; }
  .card-link { font-size: 0.9rem; }
}

/* Masaüstü: 4’lü grid sadece yeterli alan varsa */
@media (min-width: 993px) and (max-width: 1200px) {
  .services-grid-four { grid-template-columns: repeat(2, 1fr); }
}

/* ========== Hizmet detay sayfaları (instagram, facebook, twitter, vb.) ========== */
.page-wrap { background: var(--bg-dark); min-height: 100vh; }
.breadcrumb { background: var(--bg-card); padding: 14px 0; border-bottom: 1px solid var(--border); }
.breadcrumb .container { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .breadcrumb-sep { color: var(--text-muted); }
.breadcrumb .current { color: var(--text); font-weight: 500; }

.service-hero { padding: 48px 0 40px; text-align: center; background: var(--bg-card); border-bottom: 1px solid var(--border); }
.service-hero h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(1.5rem, 4vw, 2.2rem); color: var(--text); margin: 0 0 16px; line-height: 1.3; }
.service-hero .lead { color: var(--text-muted); font-size: 1.05rem; max-width: 720px; margin: 0 auto 28px; }
.service-hero .cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.service-hero .cta-buttons .btn { text-decoration: none; }

.service-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
.service-stat { text-align: center; }
.service-stat-num { display: block; font-family: 'Montserrat', sans-serif; font-size: 1.75rem; font-weight: 700; color: var(--service-accent, #e1306c); }
.service-stat-label { font-size: 0.9rem; color: var(--text-muted); }

.service-types { padding: 56px 0; }
.service-types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.service-type-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 28px 24px; transition: border-color 0.2s, box-shadow 0.2s; }
.service-type-card:hover { border-color: var(--service-accent, #e1306c); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.service-type-card h3 { font-size: 1.2rem; color: var(--service-accent, #e1306c); margin-bottom: 12px; }
.service-type-card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; }
.service-type-card ul { list-style: none; padding: 0; margin: 0; font-size: 0.9rem; color: var(--text-muted); }
.service-type-card li { padding: 6px 0; padding-left: 20px; position: relative; }
.service-type-card li::before { content: '✓'; position: absolute; left: 0; color: var(--service-accent, #e1306c); font-weight: 700; }

.service-reasons { padding: 40px 0; border-top: 1px solid var(--border); }
.service-reasons ul { max-width: 700px; margin: 0 auto; text-align: left; color: var(--text-muted); line-height: 1.7; }
.service-reasons li { margin-bottom: 8px; }

.service-cta-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; max-width: 600px; margin: 56px auto 56px; text-align: center; }
.service-cta-box h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--text); }
.service-cta-box p { color: var(--text-muted); margin-bottom: 20px; }
.service-cta-box .btn { text-decoration: none; display: inline-block; margin: 4px; }

.service-faq .section-title { color: #000; }
.service-faq .section-desc { color: #333; }

/* ========== Blog sayfası ========== */
.blog-breadcrumb { background: var(--bg-card); padding: 14px 0; border-bottom: 1px solid var(--border); }
.blog-breadcrumb .container { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.blog-breadcrumb a { color: var(--primary); text-decoration: none; }
.blog-breadcrumb a:hover { text-decoration: underline; }
.blog-breadcrumb .breadcrumb-sep { color: var(--text-muted); }
.blog-breadcrumb .current { color: var(--text); font-weight: 500; }

.blog-hero { padding: 48px 0 32px; text-align: center; background: var(--bg-dark); border-bottom: 1px solid var(--border); }
.blog-hero h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(1.5rem, 4vw, 2rem); color: var(--text); margin: 0 0 12px; }
.blog-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 640px; margin: 0 auto; }

.blog-filters { padding: 24px 0; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.blog-filters .filter-btn { padding: 8px 18px; border: 1px solid var(--border); background: var(--bg-card); border-radius: 999px; font-size: 0.9rem; color: var(--text-muted); cursor: pointer; transition: all 0.2s; }
.blog-filters .filter-btn:hover, .blog-filters .filter-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.blog-list { padding: 24px 0 56px; }
.blog-list .container { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 640px) {
  .blog-list .container { grid-template-columns: 1fr; }
}
.blog-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 24px 28px; transition: box-shadow 0.25s, transform 0.25s; position: relative; overflow: hidden; }
.blog-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blog-accent, #0066cc), transparent 50%, var(--blog-accent, #0066cc)); background-size: 200% 100%; animation: blog-shine 3s ease-in-out infinite; opacity: 0.9; }
.blog-card:hover { box-shadow: 0 12px 28px rgba(0,0,0,0.3); transform: translateY(-2px); }
@keyframes blog-shine {
  0%, 100% { background-position: 100% 0; }
  50% { background-position: 0 0; }
}
.blog-card.blog-color-1 { --blog-accent: #c13584; }
.blog-card.blog-color-2 { --blog-accent: #1877F2; }
.blog-card.blog-color-3 { --blog-accent: #0f1419; }
.blog-card.blog-color-4 { --blog-accent: #25D366; }
.blog-card.blog-color-5 { --blog-accent: #4285F4; }
.blog-card.blog-color-6 { --blog-accent: #34A853; }
.blog-card.blog-color-7 { --blog-accent: #FF0000; }
.blog-card.blog-color-8 { --blog-accent: #E1306C; }
.blog-card-category { display: inline-block; padding: 4px 12px; border-radius: 6px; font-size: 0.8rem; font-weight: 600; background: rgba(63, 81, 181, 0.2); color: var(--primary); margin-bottom: 10px; }
.blog-card-date { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.15rem; margin: 0 0 12px; line-height: 1.35; color: var(--text); }
.blog-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin: 0 0 16px; }
.blog-card .blog-link { font-weight: 600; color: var(--primary); text-decoration: none; font-size: 0.95rem; }
.blog-card .blog-link:hover { text-decoration: underline; }

/* ========== Yasal sayfalar (Hakkımızda, Gizlilik, KVKK vb.) ========== */
.legal-content { padding: 48px 0 80px; }
.legal-content .container { max-width: 900px; margin: 0 auto; }
.legal-content h1 { font-family: 'Montserrat', sans-serif; font-size: 1.85rem; color: var(--text); margin-bottom: 24px; }
.legal-content h2 { font-family: 'Montserrat', sans-serif; font-size: 1.25rem; color: var(--text); margin: 28px 0 12px; }
.legal-content h3 { font-size: 1.1rem; color: var(--text); margin: 20px 0 8px; }
.legal-content p, .legal-content li { color: var(--text-muted); line-height: 1.75; margin-bottom: 12px; }
.legal-content ul, .legal-content ol { margin: 0 0 16px 24px; padding: 0; }
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--text); }
.legal-content .legal-update { font-size: 0.9rem; color: var(--text-muted); margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border); }
.footer-links-wrap { display: flex; flex-wrap: wrap; gap: 8px 16px; justify-content: center; }
.footer-links-wrap a { white-space: nowrap; }
