/* ============================================
   0850 NUMARA ALMA — GLOBAL STYLE v2
   Dark theme · FontAwesome · Panel uyumlu
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=Barlow+Condensed:wght@600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
  /* Panel renkleri birebir */
  --bg:        #0d1318;
  --bg2:       #111820;
  --card:      #151c24;
  --card2:     #1a2330;
  --border:    #1e2d3d;
  --border2:   #243447;
  --red:       #e8394a;
  --red-dark:  #c42d3c;
  --red-glow:  rgba(232,57,74,.25);
  --green:     #22c55e;
  --green-bg:  rgba(34,197,94,.12);
  --gold:      #f59e0b;
  --white:     #f1f5f9;
  --muted:     #64748b;
  --muted2:    #94a3b8;
  --text:      #cbd5e1;

  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --radius:    12px;
  --radius-sm: 8px;
  --shadow:    0 4px 24px rgba(0,0,0,.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.6);
  --transition: .2s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 80px 0; }
.section-sm { padding: 52px 0; }
.text-center { text-align: center; }
.text-red  { color: var(--red); }
.text-gold { color: var(--gold); }
.text-green{ color: var(--green); }
.text-muted{ color: var(--muted2); }

/* BADGE */
.badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.badge-red   { background: rgba(232,57,74,.15); color: var(--red); border: 1px solid rgba(232,57,74,.3); }
.badge-green { background: var(--green-bg); color: var(--green); border: 1px solid rgba(34,197,94,.3); }
.badge-gold  { background: rgba(245,158,11,.12); color: var(--gold); border: 1px solid rgba(245,158,11,.3); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 18px var(--red-glow);
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 28px var(--red-glow); }
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
}
.btn-outline-red:hover { background: var(--red); color: #fff; }
.btn-dark {
  background: var(--card2);
  color: var(--white);
  border: 1.5px solid var(--border2);
}
.btn-dark:hover { border-color: var(--red); color: var(--red); }
.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 18px rgba(34,197,94,.3);
}
.btn-green:hover { background: #16a34a; transform: translateY(-2px); }
.btn-lg { padding: 15px 36px; font-size: 1.05rem; border-radius: 10px; }
.btn-sm { padding: 9px 20px; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

/* DIVIDER */
.divider { width: 48px; height: 3px; background: var(--red); border-radius: 3px; margin: 12px 0 28px; }
.divider-center { margin: 12px auto 28px; }

/* SECTION TITLES */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-tag i { font-size: .85rem; }
.section-title {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 14px;
}
.section-title span { color: var(--red); }
.section-sub {
  font-size: 1rem;
  color: var(--muted2);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* CARD BASE */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.card:hover { border-color: var(--border2); box-shadow: var(--shadow); }

/* ══════════════════════════════════
   HEADER / NAV
══════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,19,24,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.logo img { height: 44px; width: auto; }

/* Desktop nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-desktop a {
  color: var(--muted2);
  font-size: .9rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 7px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}
.nav-desktop a i { font-size: .8rem; }
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--white); background: var(--card2); }
.nav-desktop a.active { color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 18px; }
.hamburger span:nth-child(3) { width: 24px; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 24px; }

/* Mobile Nav Drawer */
.nav-drawer {
  position: fixed;
  top: 68px;
  left: 0; right: 0; bottom: 0;
  background: var(--bg2);
  z-index: 999;
  padding: 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  border-top: 1px solid var(--border);
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.nav-drawer-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  transition: var(--transition);
}
.nav-drawer-links a i {
  width: 20px;
  text-align: center;
  color: var(--red);
  font-size: .95rem;
}
.nav-drawer-links a:hover,
.nav-drawer-links a.active { border-color: var(--red); color: var(--white); }
.nav-drawer-cta { display: flex; flex-direction: column; gap: 10px; }
.nav-drawer-cta .btn { font-size: 1rem; padding: 14px; }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(232,57,74,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,57,74,.1);
  border: 1px solid rgba(232,57,74,.25);
  color: var(--red);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-eyebrow i { font-size: .8rem; }
.hero h1 {
  font-family: var(--font-head);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--red); }
.hero-desc {
  font-size: 1.05rem;
  color: var(--muted2);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-item {}
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
  display: block;
}

/* Hero Visual Card */
.hero-visual { position: relative; }
.hero-panel-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hpc-header {
  background: var(--card2);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.hpc-dots { display: flex; gap: 6px; }
.hpc-dot { width: 10px; height: 10px; border-radius: 50%; }
.hpc-dot:nth-child(1) { background: #e8394a; }
.hpc-dot:nth-child(2) { background: #f59e0b; }
.hpc-dot:nth-child(3) { background: #22c55e; }
.hpc-title { font-size: .83rem; color: var(--muted2); font-weight: 600; margin-left: 4px; }
.hpc-body { padding: 20px; }
.hpc-number-display {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
  margin-bottom: 16px;
}
.hpc-number-display span {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .08em;
}
.hpc-number-display small {
  display: block;
  color: var(--green);
  font-size: .75rem;
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hpc-features { display: flex; flex-direction: column; gap: 10px; }
.hpc-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  color: var(--text);
}
.hpc-feat i { color: var(--red); width: 16px; text-align: center; font-size: .85rem; }
.hpc-feat-check { color: var(--green) !important; }

/* ══════════════════════════════════
   TRUST BAR
══════════════════════════════════ */
.trust-bar {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted2);
}
.trust-item i { color: var(--red); font-size: .9rem; }

/* ══════════════════════════════════
   SERVICES / PRODUCTS
══════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover { border-color: var(--border2); box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px;
  background: rgba(232,57,74,.12);
  border: 1px solid rgba(232,57,74,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-icon i { color: var(--red); font-size: 1.2rem; }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.service-card p { font-size: .9rem; color: var(--muted2); margin-bottom: 16px; line-height: 1.6; }
.service-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: .88rem;
  font-weight: 700;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }
.service-link i { font-size: .75rem; }

/* ══════════════════════════════════
   PRICING TABS
══════════════════════════════════ */
.pricing-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.ptab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--muted2);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.ptab i { font-size: .85rem; }
.ptab:hover { border-color: var(--border2); color: var(--white); }
.ptab.active { background: var(--red); border-color: var(--red); color: #fff; }

.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.price-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.price-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), 0 12px 48px rgba(232,57,74,.2);
}
.price-card.featured-green {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), 0 12px 48px rgba(34,197,94,.15);
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.popular-badge.green { background: var(--green); }
.price-icon {
  width: 52px; height: 52px;
  background: rgba(232,57,74,.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.price-icon i { color: var(--red); font-size: 1.3rem; }
.price-icon.green-icon { background: var(--green-bg); }
.price-icon.green-icon i { color: var(--green); }
.price-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.price-amount {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.price-amount.green-price { color: var(--green); }
.price-period {
  font-size: .83rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.price-note { font-size: .8rem; color: var(--muted2); margin-bottom: 20px; line-height: 1.5; }
.price-features {
  text-align: left;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--text);
  padding-bottom: 9px;
  border-bottom: 1px solid var(--border);
}
.price-features li:last-child { border-bottom: none; padding-bottom: 0; }
.price-features li i { color: var(--green); font-size: .8rem; flex-shrink: 0; width: 14px; text-align: center; }

/* ══════════════════════════════════
   HOW IT WORKS
══════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  position: relative;
}
.step-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.step-item:hover { border-color: var(--red); box-shadow: var(--shadow); transform: translateY(-4px); }
.step-num {
  width: 52px; height: 52px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 4px 18px var(--red-glow);
}
.step-item h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step-item p { font-size: .88rem; color: var(--muted2); }

/* ══════════════════════════════════
   WHY US
══════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.why-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.why-item:hover { border-color: var(--border2); box-shadow: var(--shadow); transform: translateY(-3px); }
.why-icon {
  width: 44px; height: 44px;
  background: rgba(232,57,74,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.why-icon i { color: var(--red); font-size: 1.1rem; }
.why-item h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.why-item p { font-size: .87rem; color: var(--muted2); line-height: 1.6; }

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.testi-stars { color: var(--gold); font-size: .95rem; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text {
  font-size: .92rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.65;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .88rem; color: var(--white); }
.testi-role { font-size: .78rem; color: var(--muted); }

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-family: var(--font-body);
  font-size: .97rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.faq-q:hover { background: var(--card2); }
.faq-q[aria-expanded="true"] { background: var(--card2); color: var(--red); }
.faq-q .faq-chevron {
  color: var(--muted2);
  font-size: .85rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--red); }
.faq-a { display: none; padding: 0 22px 18px; font-size: .9rem; color: var(--muted2); line-height: 1.7; }
.faq-a.open { display: block; }

/* ══════════════════════════════════
   BLOG
══════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { border-color: var(--border2); box-shadow: var(--shadow); transform: translateY(-4px); }
.blog-card img { width: 100%; height: 190px; object-fit: cover; }
.blog-card-body { padding: 22px; }
.blog-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
  font-size: .78rem;
  color: var(--muted);
}
.blog-meta i { color: var(--red); font-size: .75rem; }
.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--red); }
.blog-card p { font-size: .87rem; color: var(--muted2); margin-bottom: 14px; line-height: 1.55; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 700;
  font-size: .85rem;
  transition: var(--transition);
}
.read-more:hover { gap: 10px; }
.read-more i { font-size: .75rem; }

/* ══════════════════════════════════
   CTA BAND
══════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, #1a0508 0%, #2a0810 50%, var(--bg) 100%);
  border-top: 1px solid rgba(232,57,74,.2);
  border-bottom: 1px solid rgba(232,57,74,.2);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(232,57,74,.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}
.cta-band h2 span { color: var(--red); }
.cta-band p { font-size: 1.05rem; color: var(--muted2); margin-bottom: 28px; position: relative; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ══════════════════════════════════
   BREADCRUMB
══════════════════════════════════ */
.breadcrumb-bar {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .83rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted2); font-weight: 500; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb i { font-size: .7rem; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: .88rem; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted2);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .87rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-col ul li a i { color: var(--red); font-size: .75rem; width: 12px; }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: .82rem; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: .82rem; color: var(--muted); }
.footer-bottom-links a:hover { color: var(--red); }

/* ══════════════════════════════════
   BLOG ARTICLE PAGE
══════════════════════════════════ */
.blog-hero-bar {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 36px;
}
.blog-hero-bar h1 {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.blog-hero-bar .article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.blog-hero-bar .article-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .83rem;
  color: var(--muted2);
}
.blog-hero-bar .article-meta i { color: var(--red); font-size: .8rem; }

.blog-article {
  max-width: 820px;
  margin: 0 auto;
  padding: 52px 20px 80px;
}
.blog-article h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin: 40px 0 14px;
  padding-left: 16px;
  border-left: 3px solid var(--red);
}
.blog-article h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin: 28px 0 10px;
}
.blog-article p { font-size: .97rem; color: var(--text); margin-bottom: 16px; line-height: 1.75; }
.blog-article ul, .blog-article ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.blog-article li { margin-bottom: 8px; font-size: .97rem; color: var(--text); line-height: 1.65; }
.blog-article a { color: var(--red); font-weight: 500; }
.blog-article img { border-radius: var(--radius); margin: 24px 0; box-shadow: var(--shadow); }
.blog-article blockquote {
  border-left: 3px solid var(--gold);
  padding: 14px 20px;
  background: rgba(245,158,11,.06);
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
  font-style: italic;
  color: var(--muted2);
}

.featured-snippet {
  background: var(--card);
  border: 1px solid var(--border2);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 0 0 28px;
}
.featured-snippet strong {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}
.featured-snippet p { font-size: .93rem; color: var(--muted2); margin: 0; }

.toc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
}
.toc h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toc h4 i { color: var(--red); font-size: .85rem; }
.toc ol { padding-left: 20px; }
.toc li { margin-bottom: 7px; }
.toc a { color: var(--muted2); font-size: .9rem; }
.toc a:hover { color: var(--red); }

.blog-cta {
  background: linear-gradient(135deg, var(--card2), var(--card));
  border: 1px solid rgba(232,57,74,.3);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin: 36px 0;
}
.blog-cta h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.blog-cta p { color: var(--muted2); margin-bottom: 20px; }
.blog-cta .btn { color: #fff !important; }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.tag {
  background: var(--card2);
  color: var(--muted2);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.tag:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ══════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 13px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
  transition: var(--transition);
}
.wa-float:hover { background: #1ebe5a; transform: translateY(-3px); box-shadow: 0 8px 36px rgba(37,211,102,.55); }
.wa-float i { font-size: 1.1rem; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero h1 { font-size: 3rem; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-title { font-size: 2rem; }
  .hero { padding: 64px 0 52px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 2.6rem; }
  .hero-visual { display: none; }
  .nav-desktop { display: none; }
  .header-actions .btn { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .blog-hero-bar h1 { font-size: 1.9rem; }
  .cta-band h2 { font-size: 2rem; }
  .pricing-tabs { gap: 6px; }
  .ptab { padding: 9px 16px; font-size: .83rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.1rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .cta-band h2 { font-size: 1.7rem; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  .wa-float span { display: none; }
  .wa-float { padding: 15px; }
}

/* ══════════════════════════════════
   FIX: Blog CTA buton yazısı beyaz
══════════════════════════════════ */
.blog-cta .btn,
.blog-cta .btn-red,
.blog-cta a.btn { color: #fff !important; }
.blog-cta .btn-red { background: var(--red) !important; }

/* Related articles box */
.related-articles {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 32px;
}
.related-articles h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
.related-articles h4 i { color: var(--red); }
.related-links { display: flex; flex-direction: column; gap: 10px; }
.related-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: .9rem;
  font-weight: 500;
  transition: var(--transition);
}
.related-links a i { color: var(--red); font-size: .8rem; flex-shrink: 0; }
.related-links a:hover { border-color: var(--red); color: var(--white); padding-left: 18px; }

/* ══════════════════════════════════
   404 PAGE
══════════════════════════════════ */
.page-404 { min-height: 100vh; display: flex; flex-direction: column; }
.page-404-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}
.page-404-body::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(232,57,74,.08) 0%, transparent 70%);
  pointer-events: none;
}
.err-wrap { text-align: center; position: relative; z-index: 1; max-width: 600px; }
.err-signal {
  position: relative;
  width: 160px; height: 160px;
  margin: 0 auto 40px;
}
.err-signal-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(232,57,74,.3);
  animation: signalPulse 2s ease-out infinite;
}
.err-signal-ring:nth-child(2) { animation-delay: .6s; }
.err-signal-ring:nth-child(3) { animation-delay: 1.2s; }
@keyframes signalPulse {
  0%   { transform: scale(.4); opacity: 1; border-color: rgba(232,57,74,.6); }
  100% { transform: scale(1.4); opacity: 0; }
}
.err-icon-center {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.err-icon-bg {
  width: 80px; height: 80px;
  background: rgba(232,57,74,.1);
  border: 2px solid rgba(232,57,74,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: floatBob 3s ease-in-out infinite;
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.err-icon-bg i { font-size: 2rem; color: var(--red); }
.err-code {
  font-family: var(--font-head);
  font-size: 7rem;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(135deg, var(--red) 30%, rgba(232,57,74,.3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -.04em;
}
.err-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.err-desc { font-size: 1rem; color: var(--muted2); margin-bottom: 36px; line-height: 1.7; }
.err-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.err-signal-bars {
  display: flex; align-items: flex-end; gap: 4px;
  justify-content: center; margin-top: 32px; opacity: .4;
}
.err-bar {
  width: 6px; background: var(--red); border-radius: 3px;
  animation: barAnim 1.4s ease-in-out infinite;
}
.err-bar:nth-child(1) { height: 12px; animation-delay: 0s; }
.err-bar:nth-child(2) { height: 20px; animation-delay: .2s; }
.err-bar:nth-child(3) { height: 28px; animation-delay: .4s; }
.err-bar:nth-child(4) { height: 20px; animation-delay: .6s; }
.err-bar:nth-child(5) { height: 12px; animation-delay: .8s; }
@keyframes barAnim {
  0%, 100% { opacity: .3; transform: scaleY(.6); }
  50%       { opacity: 1;  transform: scaleY(1); }
}
.err-suggestions {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px; text-align: left; margin-top: 8px;
}
.err-suggestions h4 {
  font-family: var(--font-head); font-size: 1rem;
  color: var(--white); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.err-suggestions h4 i { color: var(--red); }
.err-suggestion-links { display: flex; flex-direction: column; gap: 8px; }
.err-suggestion-links a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-size: .88rem;
  transition: var(--transition);
}
.err-suggestion-links a i { color: var(--red); font-size: .8rem; width: 14px; }
.err-suggestion-links a:hover { border-color: var(--red); color: var(--white); padding-left: 18px; }

@media (max-width: 480px) {
  .err-code { font-size: 5rem; }
  .err-btns { flex-direction: column; align-items: center; }
  .err-btns .btn { width: 100%; max-width: 280px; justify-content: center; }
}
