/* ════════════════════════════════════════════════════════════════════════════
   3C1B Telekom — v2 Design System
   Renk paleti: Lacivert #0d2d6e (primary), Amber #f59e0b (accent), Yeşil #10b981 (live)
   ════════════════════════════════════════════════════════════════════════════ */
:root {
  --p:        #0d2d6e;   /* primary lacivert */
  --p-dark:   #091e4a;
  --p-mid:    #1a3f8a;
  --p-light:  #dbeafe;
  --a:        #f59e0b;   /* amber accent */
  --a-dark:   #d97706;
  --live:     #10b981;   /* canlı yeşil */
  --bg:       #f0f4fb;
  --bg-card:  #ffffff;
  --text:     #0f172a;
  --text-sec: #475569;
  --border:   rgba(13,45,110,0.1);
  --shadow:   0 4px 24px rgba(13,45,110,0.09);
  --shadow-lg:0 12px 48px rgba(13,45,110,0.16);
  --r:        12px;
  --r-lg:     18px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

.main-content { flex: 1; }

img { max-width: 100%; }

/* ── HEADER ──────────────────────────────────────────────────────────────── */
.site-header {
  background: var(--p-dark);
  position: sticky;
  top: 0;
  z-index: 1030;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.site-header .navbar { padding: 0.25rem 0; }

.site-header .navbar-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) { .site-header .navbar-logo { height: 85px; } }

.site-header .nav-link {
  color: rgba(255,255,255,0.82) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.45rem 0.8rem !important;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.01em;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus {
  color: #fff !important;
  background: rgba(255,255,255,0.1);
}

.site-header .dropdown-menu {
  background: #0f2454;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  padding: 0.5rem;
  min-width: 220px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.site-header .dropdown-item {
  color: rgba(255,255,255,0.8);
  border-radius: 7px;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  transition: background 0.15s, color 0.15s;
}

.site-header .dropdown-item:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.site-header .dropdown-divider { border-color: rgba(255,255,255,0.1); }
.site-header .dropdown-header { color: rgba(255,255,255,0.35); font-size: 0.72rem; letter-spacing: 0.08em; }

/* Teklif Al butonu nav */
.btn-warning {
  background: var(--a);
  border-color: var(--a);
  color: #fff;
  font-weight: 700;
}
.btn-warning:hover { background: var(--a-dark); border-color: var(--a-dark); color: #fff; }

/* ── V2 BUTONLAR ─────────────────────────────────────────────────────────── */
.v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.7rem 1.6rem;
  border-radius: 9px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.v2-btn:hover { transform: translateY(-2px); }
.v2-btn:active { transform: translateY(0); }

.v2-btn-primary {
  background: var(--a);
  color: #fff;
  border-color: var(--a);
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
}
.v2-btn-primary:hover {
  background: var(--a-dark);
  border-color: var(--a-dark);
  color: #fff;
  box-shadow: 0 8px 32px rgba(245,158,11,0.5);
}

.v2-btn-ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.25);
}
.v2-btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.v2-btn-ghost-amber {
  background: transparent;
  color: var(--a);
  border-color: rgba(245,158,11,0.4);
}
.v2-btn-ghost-amber:hover {
  background: rgba(245,158,11,0.08);
  border-color: var(--a);
  color: var(--a);
}

.v2-btn-outline {
  background: transparent;
  color: var(--p);
  border-color: var(--p);
}
.v2-btn-outline:hover { background: var(--p-light); color: var(--p); }

.v2-btn-sm { font-size: 0.82rem; padding: 0.45rem 1.1rem; }

.v2-btn-white {
  background: #fff;
  color: var(--a-dark);
  border-color: #fff;
  font-weight: 800;
}
.v2-btn-white:hover { background: #fffbf0; box-shadow: 0 8px 32px rgba(0,0,0,0.15); }

.v2-btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.35);
}
.v2-btn-ghost-white:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ── V2 HERO ─────────────────────────────────────────────────────────────── */
.v2-hero {
  background: var(--p-dark);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.v2-hero-canvas {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(29,99,220,0.18) 0%, transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 55px, rgba(255,255,255,0.022) 55px, rgba(255,255,255,0.022) 56px),
    repeating-linear-gradient(90deg, transparent, transparent 55px, rgba(255,255,255,0.022) 55px, rgba(255,255,255,0.022) 56px);
  pointer-events: none;
}

.v2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--p-dark) 100%);
  pointer-events: none;
}

.v2-hero-inner { position: relative; z-index: 1; }

/* AS badge */
.v2-hero-as-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.3);
  color: #6ee7b7;
  font-size: 0.77rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.v2-as-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.3);
  animation: asPulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes asPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.3); }
  50%       { box-shadow: 0 0 0 6px rgba(16,185,129,0.1); }
}

/* başlık */
.v2-hero-h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.35rem;
}

.v2-hero-accent {
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2-hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.78;
  max-width: 530px;
  margin-bottom: 2rem;
}

/* hero istatistikler */
.v2-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
}

.v2-hstat {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1.25rem;
  gap: 2px;
}

.v2-hstat strong {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.v2-hstat span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  white-space: nowrap;
}

.v2-hstat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.v2-hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* sağ: harita */
.v2-hero-map-wrap {
  position: relative;
  width: 380px;
  height: 340px;
}

.v2-map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.v2-map-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.v2-map-node span {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.v2-map-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #60a5fa;
  border: 2px solid rgba(96,165,250,0.4);
}

.v2-map-dot-ix {
  background: var(--a);
  border-color: rgba(245,158,11,0.5);
  width: 12px;
  height: 12px;
}

.v2-map-ping {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(96,165,250,0.5);
  animation: mapPing 2s ease-out infinite;
}

@keyframes mapPing {
  0%   { transform: translate(-50%,-50%) scale(0.8); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(2.5); opacity: 0; }
}

/* node koordinatları */
.v2-map-ankara   { top: 55%; left: 50%; }
.v2-map-istanbul { top: 42%; left: 28%; }
.v2-map-izmir    { top: 62%; left: 15%; }
.v2-map-antalya  { top: 80%; left: 33%; }
.v2-map-amsterdam{ top: 5%;  left: 22%; }
.v2-map-frankfurt{ top: 5%;  left: 44%; }
.v2-map-sofia    { top: 28%; left: 37%; }

/* ── IX ŞERİDİ ──────────────────────────────────────────────────────────── */
.v2-ix-bar {
  background: #0a1e52;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0.6rem 0;
}

.v2-ix-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.v2-ix-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.v2-ix-logos {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.v2-ix-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.v2-ix-gold {
  background: rgba(245,158,11,0.1);
  border-color: rgba(245,158,11,0.3);
  color: #fbbf24;
}

/* ── SAYAÇLAR ────────────────────────────────────────────────────────────── */
.v2-counters-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.v2-counters-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

@media (max-width: 991px) { .v2-counters-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px) { .v2-counters-grid { grid-template-columns: repeat(2, 1fr); } }

.v2-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.75rem 0.5rem;
  border-right: 1px solid var(--border);
  gap: 2px;
}

.v2-counter:last-child { border-right: none; }

.v2-counter-num {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 900;
  color: var(--p);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
}

.v2-counter-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
  display: block;
}

.v2-counter-sub {
  font-size: 0.63rem;
  color: var(--text-sec);
  display: block;
  line-height: 1.3;
}

/* ── SECTION TEMELLERI ───────────────────────────────────────────────────── */
.v2-section { padding: 5rem 0; }
.v2-section-light { background: var(--bg); }
.v2-section-dark { background: var(--p-dark); }
.scroll-margin-top { scroll-margin-top: 90px; }

.v2-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.v2-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--p);
  margin-bottom: 0.4rem;
}

.v2-section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

.v2-section-sub {
  font-size: 1rem;
  color: var(--text-sec);
  margin: 0;
}

/* ── HİZMET KARTLARI ─────────────────────────────────────────────────────── */
.v2-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 991px) { .v2-svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .v2-svc-grid { grid-template-columns: 1fr; } }

.v2-svc-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  box-shadow: var(--shadow);
  position: relative;
  color: var(--text);
}

.v2-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13,45,110,0.2);
  color: var(--text);
}

.v2-svc-featured {
  border-color: var(--p) !important;
  box-shadow: 0 0 0 3px rgba(13,45,110,0.08), var(--shadow-lg);
}

.v2-svc-featured-badge {
  position: absolute;
  top: -12px;
  left: 1.75rem;
  background: var(--p);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 14px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.v2-svc-dark {
  background: linear-gradient(135deg, #0a1e52, #0d2d6e);
  border-color: rgba(255,255,255,0.1);
  color: #fff;
}

.v2-svc-dark h3 { color: #fff; }
.v2-svc-dark p  { color: rgba(255,255,255,0.7); }
.v2-svc-dark:hover { border-color: rgba(255,255,255,0.25); }

.v2-svc-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--ib, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.v2-svc-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.v2-svc-card p {
  font-size: 0.875rem;
  color: var(--text-sec);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.v2-svc-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}

.v2-svc-bullets li {
  font-size: 0.8rem;
  color: var(--text-sec);
  color: var(--bi, var(--text-sec));
  padding: 0.28rem 0;
  padding-left: 1.2rem;
  position: relative;
  border-bottom: 1px solid rgba(13,45,110,0.05);
}

.v2-svc-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--live);
  font-weight: 800;
  font-size: 0.75rem;
}

.v2-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--p);
  text-decoration: none;
  letter-spacing: 0.01em;
  margin-top: auto;
  transition: gap 0.2s;
}

.v2-svc-link:hover { gap: 8px; }

/* ── AĞ ALTYAPISI ────────────────────────────────────────────────────────── */
.v2-net-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 575px) { .v2-net-grid { grid-template-columns: 1fr; } }

.v2-net-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  transition: background 0.2s;
}

.v2-net-card:hover { background: rgba(255,255,255,0.08); }

.v2-net-card-head { margin-bottom: 1rem; }

.v2-net-badge {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
}

/* IX listesi */
.v2-net-ix-list { display: flex; flex-direction: column; gap: 0.75rem; }

.v2-net-ix-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.v2-net-ix-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  margin-top: 4px;
  flex-shrink: 0;
}

.v2-net-ix-dot-active {
  background: var(--live);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
}

.v2-net-ix-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.v2-net-ix-item span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

/* Upstream listesi */
.v2-net-upstream-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.v2-net-upstream {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 6px;
}

.v2-net-upstream-more {
  background: rgba(245,158,11,0.1);
  border-color: rgba(245,158,11,0.3);
  color: #fbbf24;
}

/* Prefix listesi */
.v2-net-prefix-list { display: flex; flex-direction: column; gap: 0.5rem; }

.v2-net-prefix-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.v2-net-prefix-item:last-child { border-bottom: none; }

.v2-net-prefix-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.v2-net-prefix-val { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.9); }
.v2-rpki-ok { color: var(--live) !important; }

/* Looking Glass */
.v2-net-lg-list { display: flex; flex-direction: column; gap: 0.5rem; }

.v2-net-lg-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

.v2-net-lg-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--live);
  flex-shrink: 0;
}

/* ── KARŞILAŞTIRMA ───────────────────────────────────────────────────────── */
.v2-compare-card {
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 2px solid;
  height: 100%;
}

.v2-compare-bad {
  background: #fff8f8;
  border-color: #fecaca;
}

.v2-compare-good {
  background: #f0fdf4;
  border-color: #bbf7d0;
  box-shadow: 0 4px 24px rgba(16,185,129,0.1);
}

.v2-compare-head { margin-bottom: 1.25rem; }

.v2-compare-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 12px;
  border-radius: 999px;
}

.v2-compare-label-bad { background: #fee2e2; color: #991b1b; }
.v2-compare-label-good { background: #d1fae5; color: #065f46; }

.v2-compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.v2-compare-list li {
  font-size: 0.88rem;
  line-height: 1.55;
  padding-left: 1.5rem;
  position: relative;
}

.v2-compare-list-bad li { color: #64748b; }
.v2-compare-list-bad li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}

.v2-compare-list-good li { color: #374151; }
.v2-compare-list-good li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--live);
  font-weight: 800;
}

/* Trust strip */
.v2-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 767px) { .v2-trust-strip { grid-template-columns: repeat(2, 1fr); } }

.v2-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1rem 1.1rem;
}

.v2-trust-item svg { flex-shrink: 0; margin-top: 2px; }

.v2-trust-item strong {
  display: block;
  font-size: 0.83rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
}

.v2-trust-item span { font-size: 0.73rem; color: var(--text-sec); line-height: 1.4; }

/* ── CTA SECTION ─────────────────────────────────────────────────────────── */
.v2-cta-section {
  background: linear-gradient(135deg, var(--a-dark) 0%, var(--a) 60%, #fbbf24 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.v2-cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.04) 40px, rgba(255,255,255,0.04) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.04) 40px, rgba(255,255,255,0.04) 41px);
  pointer-events: none;
}

.v2-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  z-index: 1;
}

.v2-cta-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

.v2-cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 2rem;
}

.v2-cta-sub strong { color: #fff; }

.v2-cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Pulse görsel */
.v2-cta-pulse {
  position: relative;
  width: 200px;
  height: 200px;
}

.v2-cta-pulse-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  animation: ctaPulse 3s ease-out infinite;
}

.v2-cta-pulse-ring-1 { width: 200px; height: 200px; animation-delay: 0s; }
.v2-cta-pulse-ring-2 { width: 140px; height: 140px; animation-delay: 0.6s; border-color: rgba(255,255,255,0.3); }
.v2-cta-pulse-ring-3 { width: 80px; height: 80px; animation-delay: 1.2s; border-color: rgba(255,255,255,0.4); }

@keyframes ctaPulse {
  0%   { opacity: 0.8; }
  50%  { opacity: 0.3; }
  100% { opacity: 0.8; }
}

.v2-cta-pulse-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.v2-cta-pulse-core span { font-size: 0.6rem; color: rgba(255,255,255,0.7); font-weight: 700; letter-spacing: 0.1em; }
.v2-cta-pulse-core strong { font-size: 1.1rem; color: #fff; font-weight: 900; line-height: 1; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--p-dark);
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer .footer-link {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.18s;
  display: block;
  margin-bottom: 0.35rem;
}

.site-footer .footer-link:hover { color: #fff; }

/* ── DİĞER SAYFALARDA KULLANILAN ─────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--p-dark) 0%, var(--p) 100%);
  color: #fff;
  padding: 2.75rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-hero h1 { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; margin: 0; }

.page-hero .breadcrumb-hero {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
}

.page-hero .breadcrumb-hero a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.18s; }
.page-hero .breadcrumb-hero a:hover { color: #fff; }
.page-hero .breadcrumb-hero span { color: rgba(255,255,255,0.3); }

/* Section genel */
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.section-subtitle { color: var(--text-sec); font-size: 1rem; max-width: 600px; margin-bottom: 2rem; }

/* Tarife sayfaları */
.tarife-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  height: 100%;
  border: 1.5px solid var(--border);
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.tarife-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(13,45,110,0.2);
  transform: translateY(-3px);
}

.tarife-card.tarife-featured {
  border: 2px solid var(--p) !important;
  box-shadow: 0 0 0 3px rgba(13,45,110,0.07), var(--shadow-lg);
}

.tarife-onerilen-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--p);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 16px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tarife-card .tarife-kategori { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; color: var(--p); margin-bottom: 0.5rem; }
.tarife-card .tarife-baslik { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 1rem; letter-spacing: -0.01em; }
.tarife-card .tarife-fiyat { font-size: 2rem; font-weight: 900; color: var(--p); line-height: 1; margin-bottom: 0.2rem; letter-spacing: -0.03em; }
.tarife-card .tarife-periyot { font-size: 0.82rem; color: var(--text-sec); margin-bottom: 0.3rem; }
.tarife-card .tarife-kdv { font-size: 0.72rem; color: #94a3b8; margin-bottom: 1.25rem; border-bottom: 1px solid #f1f5f9; padding-bottom: 0.9rem; }
.tarife-card .tarife-fiyat-teklif { font-size: 1.05rem; font-weight: 700; color: var(--text-sec); margin-bottom: 0.25rem; }

.tarife-card .tarife-ozellikler { list-style: none; padding: 0; margin: 0 0 auto; font-size: 0.85rem; color: var(--text-sec); flex: 1; }
.tarife-card .tarife-ozellikler li { padding: 0.38rem 0; padding-left: 1.5rem; position: relative; border-bottom: 1px solid #f8fafc; }
.tarife-card .tarife-ozellikler li::before { content: '✓'; position: absolute; left: 0; color: var(--live); font-weight: 800; }
.tarife-card .tarife-cta { padding-top: 1.2rem; }

/* Tarife hub */
.tarife-hub-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  border: 1.5px solid var(--border);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.tarife-hub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: inherit; text-decoration: none; }

.tarife-hub-icon { width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.tarife-hub-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 0.4rem; }
.tarife-hub-card p { font-size: 0.875rem; color: var(--text-sec); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.tarife-hub-card .hub-link { font-size: 0.82rem; font-weight: 800; color: var(--p); }
.tarife-hub-card.hub-teklif { background: linear-gradient(135deg, var(--p-dark), var(--p)); }
.tarife-hub-card.hub-teklif h3, .tarife-hub-card.hub-teklif p, .tarife-hub-card.hub-teklif .hub-link { color: rgba(255,255,255,0.9); }

/* Adres callout */
.adres-callout {
  background: var(--p-light);
  border: 1px solid rgba(13,45,110,0.15);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* CTA strip (tarifeler) */
.cta-strip {
  background: linear-gradient(135deg, var(--p-dark), var(--p));
  border-radius: var(--r-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: #fff;
  margin-top: 3rem;
}
.cta-strip h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.25rem; color: #fff; }
.cta-strip p { margin: 0; opacity: 0.8; font-size: 0.875rem; }

/* Teklif form */
.teklif-form-wrap {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.teklif-why-list { list-style: none; padding: 0; margin: 0; }
.teklif-why-list li { padding: 0.6rem 0; padding-left: 1.75rem; position: relative; font-size: 0.92rem; color: var(--text-sec); border-bottom: 1px solid #f1f5f9; }
.teklif-why-list li:last-child { border-bottom: none; }
.teklif-why-list li::before { content: '✓'; position: absolute; left: 0; color: var(--live); font-weight: 800; }

/* Empty state */
.tarifeler-bos { text-align: center; padding: 3rem 2rem; background: var(--bg-card); border-radius: var(--r-lg); box-shadow: var(--shadow); }
.tarifeler-bos p { color: var(--text-sec); margin-bottom: 1rem; }

/* Service card (diğer sayfalar) */
.service-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  height: 100%;
  transition: transform 0.22s, box-shadow 0.22s;
  border: 1px solid var(--border);
}

.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card .card-icon { width: 46px; height: 46px; background: var(--p-light); color: var(--p); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 0.5rem; }
.service-card p { color: var(--text-sec); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }

/* Buttons (Bootstrap uyumlu) */
.btn-primary { background: var(--p); border-color: var(--p); font-weight: 700; }
.btn-primary:hover { background: var(--p-dark); border-color: var(--p-dark); }
.btn-outline-primary { border-color: var(--p); color: var(--p); font-weight: 700; }
.btn-outline-primary:hover { background: var(--p-light); border-color: var(--p); color: var(--p); }

/* Forms */
.form-control:focus, .form-select:focus {
  border-color: var(--p);
  box-shadow: 0 0 0 0.2rem rgba(13,45,110,0.18);
}

/* Kategori pills */
.kategori-pills .nav-link { border-radius: 999px; font-weight: 600; padding: 0.4rem 1rem; color: var(--text-sec); border: 1px solid #e2e8f0; margin: 0 0.25rem 0.5rem 0; font-size: 0.875rem; }
.kategori-pills .nav-link:hover { border-color: var(--p); color: var(--p); }
.kategori-pills .nav-link.active { background: var(--p); border-color: var(--p); color: #fff; }
