/* ============================================================
   NEXO WEB STUDIO – style.css
   Deep Dark · Electric Indigo · Neon Mint
============================================================ */

/* ── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-950:      #080b14;
  --bg-900:      #0d1020;
  --bg-800:      #131829;
  --bg-700:      #1a2035;
  --bg-card:     #111524;
  --indigo:      #6366f1;
  --indigo-light:#818cf8;
  --violet:      #7c3aed;
  --mint:        #6ee7b7;
  --mint-light:  #a7f3d0;
  --white:       #ffffff;
  --gray-100:    #f1f5f9;
  --gray-300:    #cbd5e1;
  --gray-400:    #94a3b8;
  --gray-500:    #64748b;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --green:       #34d399;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-glow: 0 0 40px rgba(99,102,241,0.18);
  --shadow-card: 0 4px 32px rgba(0,0,0,0.4);
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background-color: var(--bg-950);
  color: var(--gray-300);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

/* ── PARTICLES CANVAS ──────────────────────────────────── */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

/* ── CURSOR GLOW ───────────────────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear;
}

/* ── CONTAINER ─────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 1024px) { .container { padding: 0 40px; } }

/* ── GRADIENT TEXT ─────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, #818cf8 0%, #a78bfa 40%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-text {
  color: #a5b4fc;
  font-weight: 600;
}

/* ── SECTION SHARED ────────────────────────────────────── */
.section-pad { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }

/* Tüm section'lar için scroll offset (fixed navbar) */
section { scroll-margin-top: 72px; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 999px;
  padding: 5px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── SCROLL REVEAL ─────────────────────────────────────── */
/* Default görünür — JS hazır olunca animasyon class'ı eklenir */
.reveal-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
              transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
/* JS aktif olunca "js-ready" body class'ı eklenir, SADECE görünmez elementleri gizle */
.js-ready .reveal-up:not(.visible) {
  opacity: 0;
  transform: translateY(28px);
}
.reveal-up.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
@media print { .reveal-up { opacity: 1 !important; transform: none !important; } }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #6366f1 0%, #7c3aed 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 34px;
  border-radius: var(--radius-md);
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(99,102,241,0.45), 0 4px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  box-shadow: 0 0 44px rgba(99,102,241,0.7), 0 8px 32px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}
.btn-shine {
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  animation: shine-sweep 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine-sweep {
  0%   { left: -60%; }
  35%  { left: 120%; }
  100% { left: 120%; }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-300);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.07);
  color: var(--white);
}
.btn-ghost svg { transition: transform 0.25s ease; }
.btn-ghost:hover svg { transform: translateX(4px); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 17px 40px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  box-shadow: 0 0 28px rgba(37,211,102,0.4), 0 6px 24px rgba(0,0,0,0.3);
  transition: var(--transition);
}
.btn-whatsapp:hover {
  box-shadow: 0 0 48px rgba(37,211,102,0.65), 0 10px 36px rgba(0,0,0,0.4);
  transform: translateY(-3px);
}

/* ── NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  width: 100%;
  background: rgba(15, 18, 32, 0.82);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: rgba(8, 11, 20, 0.95);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 1024px) { .navbar-inner { padding: 0 40px; } }

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(99,102,241,0.25), rgba(110,231,183,0.15));
  border: 1px solid rgba(99,102,241,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(99,102,241,0.3);
  flex-shrink: 0;
}
.logo-icon-sm { width: 30px; height: 30px; border-radius: 8px; }
.logo-text {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo-accent {
  background: linear-gradient(90deg, #818cf8, #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-logo-text { font-size: 1rem; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1280px) { .nav-links { gap: 10px; } }
@media (max-width: 1100px) { .nav-links { display: none !important; } }

.nav-link {
  position: relative;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-400);
  text-decoration: none;
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--indigo), #a78bfa);
  border-radius: 2px;
  transition: width 0.28s cubic-bezier(0.4,0,0.2,1);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(99,102,241,0.35);
  transition: var(--transition);
}
.btn-nav-cta:hover {
  box-shadow: 0 0 28px rgba(99,102,241,0.6);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-400);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1100px) { .hamburger { display: flex !important; } }

/* Mobile Nav */
.mobile-nav {
  display: flex;
  flex-direction: column;
  background: rgba(8,11,20,0.97);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 0 24px;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1),
              opacity 0.3s ease,
              visibility 0s 0.4s;
}
.mobile-nav.open {
  max-height: 480px;
  padding: 16px 24px 24px;
  opacity: 1;
  visibility: visible;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1),
              opacity 0.3s ease,
              visibility 0s 0s;
}
.mobile-nav a {
  color: var(--gray-300);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--white); }
.mobile-cta-btn {
  margin-top: 12px;
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: #fff !important;
  font-weight: 600;
  padding: 13px;
  border-radius: var(--radius-md);
  border: none !important;
  box-shadow: 0 0 18px rgba(99,102,241,0.35);
}

/* ── HERO ──────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(99,102,241,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,1) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 55% at 50% 30%,
    rgba(99,102,241,0.14) 0%, transparent 70%);
  pointer-events: none;
}

/* Ambient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: orb-float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(99,102,241,0.09);
  top: -10%; left: -10%;
  animation-duration: 10s;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: rgba(110,231,183,0.06);
  top: 20%; right: -8%;
  animation-duration: 13s;
  animation-delay: -3s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: rgba(124,58,237,0.08);
  bottom: 5%; left: 30%;
  animation-duration: 9s;
  animation-delay: -5s;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -30px) scale(1.04); }
  66%       { transform: translate(-15px, 20px) scale(0.97); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.28);
  border-radius: 999px;
  padding: 7px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #a5b4fc;
  margin-bottom: 28px;
  animation: badge-pulse 3s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,0.0); }
  50%       { box-shadow: 0 0 0 6px rgba(99,102,241,0.08); }
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--mint);
  animation: dot-blink 2s ease-in-out infinite;
}
@keyframes dot-blink {
  0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
}

.hero-title {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.hero-subtitle strong { color: var(--white); }

.hero-desc {
  font-size: 1rem;
  color: var(--gray-400);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  font-size: 0.8rem;
  color: var(--gray-600);
  letter-spacing: 0.04em;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fade-in-up 1.2s ease 1.5s forwards;
  opacity: 0;
}
@keyframes fade-in-up {
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  margin: 0 auto;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: var(--indigo-light);
  border-radius: 2px;
  animation: scroll-bounce 2.2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%       { transform: translateY(10px); opacity: 0.2; }
}

/* ── STATS ─────────────────────────────────────────────── */
.stats-section {
  padding: 64px 0;
  background: linear-gradient(180deg, var(--bg-950) 0%, var(--bg-900) 100%);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; }
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(99,102,241,0.05), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-card:hover { border-color: rgba(99,102,241,0.3); transform: translateY(-4px); }
.stat-card:hover::before { opacity: 1; }

.stat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.stat-icon-green  { background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.2); color: #34d399; }
.stat-icon-indigo { background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.2); color: #818cf8; }
.stat-icon-violet { background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.2); color: #a78bfa; }

.stat-number {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-green  { color: #34d399; text-shadow: 0 0 20px rgba(52,211,153,0.4); }
.stat-indigo { color: #818cf8; text-shadow: 0 0 20px rgba(129,140,248,0.4); }
.stat-violet { color: #a78bfa; text-shadow: 0 0 20px rgba(167,139,250,0.4); }

.stat-label {
  font-weight: 600;
  color: var(--gray-200, #e2e8f0);
  font-size: 0.92rem;
  margin-bottom: 4px;
}
.stat-sub { font-size: 0.78rem; color: var(--gray-500); }

/* ── SERVICES (Hizmetler) ──────────────────────────────── */
.services-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-950) 0%, var(--bg-900) 50%, var(--bg-950) 100%);
  z-index: 1;
}

.services-bg-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse 70% 60% at 50% 0%,
    rgba(99,102,241,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.services-header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 2;
}

.services-title {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.services-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-500);
  letter-spacing: 0.01em;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: 1fr; gap: 16px; } }

/* Kart */
.svc-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.32s cubic-bezier(0.4,0,0.2,1);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.45), 0 0 0 1px rgba(99,102,241,0.18);
}

/* Parlayan kenar çizgisi — hover'da açılır */
.svc-card-border {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.07);
  pointer-events: none;
  transition: border-color 0.3s ease;
}
.svc-card:hover .svc-card-border {
  border-color: rgba(52,211,153,0.25);
}

.svc-card-inner {
  background: #0e1220;
  padding: 36px 30px 32px;
  border-radius: 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}

/* İnce ışıma — hover'da üst köşe */
.svc-card-inner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52,211,153,0.07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.svc-card:hover .svc-card-inner::before { opacity: 1; }

/* İkon */
.svc-icon-wrap {
  width: 46px; height: 46px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.svc-icon-indigo {
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.22);
  color: #818cf8;
}
.svc-icon-violet {
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.22);
  color: #a78bfa;
}
.svc-icon-green {
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.22);
  color: #34d399;
}

/* Numara */
.svc-number {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gray-600);
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Başlık */
.svc-title {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}

/* Açıklama */
.svc-desc {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.75;
  margin-bottom: 22px;
  flex-grow: 1;
}

/* Teknoloji etiketleri */
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.svc-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-500);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px;
  padding: 3px 9px;
  letter-spacing: 0.03em;
}

/* Alt metrik */
.svc-metric {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #34d399;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.svc-metric-dot {
  width: 6px; height: 6px;
  background: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 7px #34d399;
  flex-shrink: 0;
  animation: dot-blink 2s ease-in-out infinite;
}

/* Eski feature stilleri (artık kullanılmıyor ama silinmedi — temiz tutmak için null) */
.features-grid { display: none; }
.feature-card  { display: none; }


/* ── PRICING ───────────────────────────────────────────── */
/* pulse-dot (shared) */
.pulse-dot {
  width: 6px; height: 6px;
  background: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 6px #34d399;
  animation: dot-blink 2s ease-in-out infinite;
}

.pricing-section { position: relative; overflow: hidden; }

.pricing-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: end;
  overflow: visible;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 36px 28px 32px;
  transition: var(--transition);
  overflow: visible;
}
.pricing-card:hover { border-color: rgba(99,102,241,0.28); }

/* Featured card */
.pricing-card-featured {
  background: linear-gradient(160deg, #161d38 0%, #1b2246 100%);
  border: 1px solid rgba(99,102,241,0.45);
  box-shadow: 0 0 50px rgba(99,102,241,0.12), 0 0 0 1px rgba(99,102,241,0.08);
  transform: translateY(-18px) scale(1.02);
  z-index: 2;
  overflow: visible;
}
@media (max-width: 900px) { .pricing-card-featured { transform: none; } }
.pricing-card-featured:hover { transform: translateY(-24px) scale(1.02); }
@media (max-width: 900px) { .pricing-card-featured:hover { transform: translateY(-4px); } }

.featured-glow {
  position: absolute;
  top: -80px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(99,102,241,0.18), transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  animation: glow-breathe 4s ease-in-out infinite;
  z-index: 0;
}
@keyframes glow-breathe {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.15); }
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(99,102,241,0.4);
  letter-spacing: 0.04em;
  z-index: 10;
}

.pricing-tier {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--indigo-light);
  margin-bottom: 8px;
  margin-top: 10px;
}
.tier-featured { color: #c4b5fd; }
.tier-green    { color: #34d399; }

.pricing-name {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.pricing-tagline {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 22px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}
.price-amount {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-300);
}
.price-period {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-left: 4px;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--gray-400);
  line-height: 1.65;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-300);
}
.check-wrap {
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.22);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check-svg { width: 11px; height: 11px; color: #34d399; }

/* Pricing buttons */
.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
}
.pricing-btn-outline {
  border: 1px solid rgba(99,102,241,0.35);
  color: #a5b4fc;
  background: rgba(99,102,241,0.05);
}
.pricing-btn-outline:hover {
  border-color: rgba(99,102,241,0.65);
  background: rgba(99,102,241,0.12);
  color: var(--white);
}
.pricing-btn-primary {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%);
  color: #fff;
  box-shadow: 0 0 24px rgba(99,102,241,0.4);
}
.pricing-btn-primary:hover {
  box-shadow: 0 0 40px rgba(99,102,241,0.65);
  transform: translateY(-2px);
}
.pricing-btn-green {
  border: 1px solid rgba(52,211,153,0.3);
  color: #34d399;
  background: rgba(52,211,153,0.06);
}
.pricing-btn-green:hover {
  border-color: rgba(52,211,153,0.6);
  background: rgba(52,211,153,0.12);
  color: var(--white);
}

/* ── PORTFOLIO ─────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .portfolio-grid { grid-template-columns: 1fr; } }

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.portfolio-card:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.portfolio-thumb {
  position: relative;
  height: 190px;
  background: var(--bg-800);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.portfolio-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, color-mix(in srgb, var(--card-color) 18%, transparent), transparent 65%);
}

/* Browser mockup inside card */
.portfolio-mockup {
  position: relative;
  width: 160px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transition: transform 0.35s ease;
  z-index: 1;
}
.portfolio-card:hover .portfolio-mockup { transform: scale(1.06) translateY(-4px); }

.pm-bar {
  height: 22px;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 4px;
}
.pm-bar::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  box-shadow: 10px 0 0 rgba(255,255,255,0.15), 20px 0 0 rgba(255,255,255,0.15);
}

.pm-content {
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pm-line {
  height: 4px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
}
.pm-line-wide   { width: 90%; }
.pm-line-medium { width: 65%; }
.pm-line-short  { width: 45%; }

.pm-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 4px;
}
.pm-blocks-4 { grid-template-columns: repeat(4, 1fr); }
.pm-block {
  height: 28px;
  border-radius: 4px;
  background: rgba(255,255,255,0.07);
}

/* Hover overlay */
.portfolio-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,11,20,0.95) 0%, rgba(8,11,20,0.6) 50%, rgba(8,11,20,0.1) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.portfolio-card:hover .portfolio-hover-overlay { opacity: 1; }

.pho-inner { text-align: left; }
.pho-tech   { font-size: 0.72rem; font-weight: 700; color: var(--indigo-light); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 3px; }
.pho-detail { font-size: 0.82rem; color: var(--gray-300); }

.portfolio-info { padding: 18px 18px 20px; }
.portfolio-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.ptag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
}
.ptag-indigo   { background: rgba(99,102,241,0.15);  color: #a5b4fc; border: 1px solid rgba(99,102,241,0.25); }
.ptag-violet   { background: rgba(124,58,237,0.15);  color: #c4b5fd; border: 1px solid rgba(124,58,237,0.25); }
.ptag-green    { background: rgba(52,211,153,0.12);  color: #34d399; border: 1px solid rgba(52,211,153,0.22); }
.ptag-green-dark { background: rgba(5,150,105,0.15); color: #6ee7b7; border: 1px solid rgba(5,150,105,0.25); }
.ptag-pink     { background: rgba(219,39,119,0.15);  color: #f9a8d4; border: 1px solid rgba(219,39,119,0.25); }
.ptag-sky      { background: rgba(2,132,199,0.15);   color: #7dd3fc; border: 1px solid rgba(2,132,199,0.25); }
.ptag-amber    { background: rgba(180,83,9,0.15);    color: #fcd34d; border: 1px solid rgba(180,83,9,0.25); }

.portfolio-name {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.portfolio-sub { font-size: 0.8rem; color: var(--gray-500); line-height: 1.5; }

.portfolio-footer {
  text-align: center;
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.pf-text { font-size: 0.9rem; color: var(--gray-500); }

/* ── CTA SECTION ───────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-900) 0%, var(--bg-950) 100%);
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.cta-orb-1 {
  width: 450px; height: 450px;
  background: rgba(99,102,241,0.1);
  top: -100px; left: -80px;
}
.cta-orb-2 {
  width: 350px; height: 350px;
  background: rgba(110,231,183,0.07);
  bottom: -80px; right: -60px;
}

.cta-box {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: rgba(17,21,36,0.7);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 32px;
  padding: 60px 48px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(99,102,241,0.06),
    0 0 80px rgba(99,102,241,0.08),
    0 40px 80px rgba(0,0,0,0.3);
}
@media (max-width: 640px) { .cta-box { padding: 40px 24px; } }

.cta-glow-ring {
  position: absolute;
  inset: -1px;
  border-radius: 33px;
  background: linear-gradient(135deg, rgba(99,102,241,0.3) 0%, transparent 50%, rgba(110,231,183,0.2) 100%);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
  animation: ring-rotate 6s linear infinite;
}
@keyframes ring-rotate {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.cta-badge { margin-bottom: 20px; }

.cta-title {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.cta-desc {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 36px;
}
.cta-desc strong { color: var(--white); }

.cta-trust {
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-top: 20px;
  letter-spacing: 0.04em;
}

/* ── FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-950);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 32px 0;
  position: relative;
  z-index: 2;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-copy {
  font-size: 0.83rem;
  color: var(--gray-600);
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}
.social-icon {
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
}
.social-icon:hover { color: var(--gray-300); transform: translateY(-2px); }
.social-icon-wa:hover { color: #34d399; }
.social-icon-yt:hover { color: #ff0000; }

/* ── SCROLLBAR ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-950); }
::-webkit-scrollbar-thumb { background: rgba(99,102,241,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(99,102,241,0.5); }

/* ── SELECTION ─────────────────────────────────────────── */
::selection { background: rgba(99,102,241,0.35); color: var(--white); }

/* ============================================================
   SÜREÇ NASIL İŞLER?
============================================================ */
.process-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #080c14 0%, #0a0e17 100%);
}
.process-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(110,231,183,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .process-steps { flex-direction: column; gap: 0; }
}
.process-step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.process-step:hover {
  border-color: rgba(99,102,241,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.process-step-num {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 16px;
}
.process-step-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.22);
  color: #818cf8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.process-icon-violet {
  background: rgba(124,58,237,0.1);
  border-color: rgba(124,58,237,0.22);
  color: #a78bfa;
}
.process-icon-green {
  background: rgba(52,211,153,0.1);
  border-color: rgba(52,211,153,0.22);
  color: #34d399;
}
.process-icon-amber {
  background: rgba(251,191,36,0.1);
  border-color: rgba(251,191,36,0.22);
  color: #fbbf24;
}
.process-step-title {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.process-step-desc {
  font-size: 0.87rem;
  color: var(--gray-400);
  line-height: 1.7;
}
.process-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(99,102,241,0.3), rgba(110,231,183,0.3));
  align-self: center;
  margin-bottom: 4px;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -5px; top: -4px;
  width: 10px; height: 10px;
  border-top: 2px solid rgba(110,231,183,0.4);
  border-right: 2px solid rgba(110,231,183,0.4);
  transform: rotate(45deg);
}
@media (max-width: 900px) {
  .process-connector {
    width: 2px; height: 30px;
    background: linear-gradient(180deg, rgba(99,102,241,0.3), rgba(110,231,183,0.3));
    margin: 0 auto;
  }
  .process-connector::after {
    right: -4px; top: auto;
    bottom: -5px;
    border-top: none;
    border-right: none;
    border-bottom: 2px solid rgba(110,231,183,0.4);
    border-left: 2px solid rgba(110,231,183,0.4);
    transform: rotate(-45deg);
  }
}

/* ============================================================
   KARŞILAŞTIRMA TABLOSU
============================================================ */
.compare-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0e17 0%, #080c14 100%);
}
.compare-bg-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(99,102,241,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.07);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 600px;
}
.compare-table thead tr {
  background: rgba(99,102,241,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.compare-table th {
  padding: 18px 20px;
  text-align: center;
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.compare-feature-col {
  text-align: left !important;
  width: 28%;
}
.compare-nexo-col {
  background: rgba(99,102,241,0.08);
  border-left: 1px solid rgba(99,102,241,0.18);
  border-right: 1px solid rgba(99,102,241,0.18);
}
.compare-nexo-label {
  color: #a5b4fc;
  font-size: 0.85rem;
}
.compare-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.compare-table td {
  padding: 16px 20px;
  text-align: center;
  color: var(--gray-400);
  vertical-align: middle;
}
.compare-feature {
  text-align: left !important;
  font-weight: 600;
  color: var(--gray-300);
  font-size: 0.88rem;
}
.compare-nexo {
  background: rgba(99,102,241,0.05);
  border-left: 1px solid rgba(99,102,241,0.12);
  border-right: 1px solid rgba(99,102,241,0.12);
}
.compare-win {
  color: #34d399;
  font-weight: 700;
  font-size: 0.88rem;
}
.compare-mid {
  color: #fbbf24;
  font-weight: 500;
  font-size: 0.88rem;
}
.compare-bad {
  color: #f87171;
  font-weight: 500;
  font-size: 0.88rem;
}

/* ============================================================
   BLOG / MAKALELER
============================================================ */
.blog-section {
  background: linear-gradient(180deg, #080c14 0%, #0a0e17 100%);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: rgba(99,102,241,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.45);
}
.blog-card-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.blog-card-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.22);
  color: #818cf8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-icon-green {
  background: rgba(52,211,153,0.1);
  border-color: rgba(52,211,153,0.22);
  color: #34d399;
}
.blog-icon-amber {
  background: rgba(251,191,36,0.1);
  border-color: rgba(251,191,36,0.22);
  color: #fbbf24;
}
.blog-card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a5b4fc;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.22);
  border-radius: 5px;
  padding: 3px 10px;
  margin-bottom: 14px;
  width: fit-content;
}
.blog-tag-green {
  color: #34d399;
  background: rgba(52,211,153,0.08);
  border-color: rgba(52,211,153,0.2);
}
.blog-tag-amber {
  color: #fbbf24;
  background: rgba(251,191,36,0.08);
  border-color: rgba(251,191,36,0.2);
}
.blog-title {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.blog-card:hover .blog-title { color: #c4b5fd; }
.blog-excerpt {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.blog-date, .blog-read {
  font-size: 0.76rem;
  color: var(--gray-600);
}
.blog-read::before { content: '·'; margin-right: 12px; }
.blog-footer {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   SSS – ACCORDION
============================================================ */
.faq-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0e17 0%, #080c14 100%);
}
.faq-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item.open {
  border-color: rgba(99,102,241,0.3);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 600;
  font-family: inherit;
  transition: color 0.2s;
}
.faq-question:hover { color: #c4b5fd; }
.faq-icon {
  flex-shrink: 0;
  color: var(--gray-500);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), color 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: #818cf8;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1),
              padding 0.28s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.75;
}
.faq-answer strong { color: var(--gray-200, #e2e8f0); }
.faq-link {
  color: #818cf8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.faq-link:hover { color: #c4b5fd; text-decoration: underline; }

/* ============================================================
   STİCKY WHATSAPP BUTONU
============================================================ */
.sticky-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.25s ease;
  animation: wa-pulse 3s ease-in-out infinite;
}
.sticky-wa:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 36px rgba(37,211,102,0.65), 0 4px 16px rgba(0,0,0,0.4);
  animation: none;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
  50%       { box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0); }
}
.sticky-wa-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(13,16,32,0.95);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(6px);
  border: 1px solid rgba(37,211,102,0.2);
}
.sticky-wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(13,16,32,0.95);
}
.sticky-wa:hover .sticky-wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   BİLGİLENDİRME BANDI
============================================================ */
.legal-banner {
  background: rgba(8, 11, 20, 0.95);
  border-top: 1px solid rgba(251, 191, 36, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 18px 0;
}
.legal-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.legal-icon {
  flex-shrink: 0;
  color: #fbbf24;
  margin-top: 2px;
}
.legal-text {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.legal-text strong {
  color: var(--gray-400);
}


/* ============================================================
   MOBİL RESPONSIVE – 768px ve altı
   PC davranışına dokunulmaz, sadece mobil override
============================================================ */
@media (max-width: 768px) {

  /* ── GENEL ── */
  .section-pad { padding: 64px 0; }
  .container   { padding: 0 18px; }

  .section-title { font-size: 1.75rem; }
  .section-desc  { font-size: 0.92rem; }

  /* ── NAVBAR ── */
  .navbar-inner { padding: 0 16px; }
  .logo-text    { font-size: 1rem; }

  /* ── HERO ── */
  .hero-section  { min-height: 100svh; padding-top: 72px; }
  .hero-content  { padding: 0 18px; }
  .hero-title    { font-size: 1.9rem; letter-spacing: -0.02em; }
  .hero-desc     { font-size: 0.9rem; }
  .hero-btns     { flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary,
  .btn-ghost     { width: 100%; max-width: 320px; justify-content: center; }
  .hero-trust    { font-size: 0.72rem; }
  .hero-orb-1,
  .hero-orb-2,
  .hero-orb-3    { display: none; } /* performans – küçük ekranda gereksiz */

  /* ── İSTATİSTİKLER ── */
  .stats-grid    { grid-template-columns: 1fr; gap: 12px; }
  .stat-card     { padding: 22px 18px; }
  .stat-number   { font-size: 1.8rem; }

  /* ── HİZMETLER ── */
  .services-header { margin-bottom: 40px; }
  .services-title  { font-size: 1.75rem; }
  .svc-card-inner  { padding: 28px 22px 24px; }

  /* ── FİYATLANDIRMA ── */
  .pricing-grid        { gap: 16px; }
  .pricing-card        { padding: 28px 20px 24px; }
  .pricing-card-featured { transform: none !important; }
  .price-amount        { font-size: 2rem; }
  .pricing-features li { font-size: 0.84rem; }

  /* ── PORTFÖY ── */
  .portfolio-grid { grid-template-columns: 1fr; gap: 16px; }
  .portfolio-thumb { height: 200px; }

  /* ── SÜREÇ ── */
  .process-steps  { flex-direction: column; gap: 0; }
  .process-step   { padding: 28px 22px 24px; }
  .process-connector {
    width: 2px; height: 28px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(99,102,241,0.3), rgba(110,231,183,0.3));
  }
  .process-connector::after {
    right: -4px; top: auto; bottom: -5px;
    border-top: none; border-right: none;
    border-bottom: 2px solid rgba(110,231,183,0.4);
    border-left:  2px solid rgba(110,231,183,0.4);
    transform: rotate(-45deg);
  }

  /* ── KARŞILAŞTIRMA ── */
  .compare-table-wrap { border-radius: 12px; }
  .compare-table      { font-size: 0.78rem; min-width: 500px; }
  .compare-table th,
  .compare-table td   { padding: 12px 10px; }

  /* ── BLOG ── */
  .blog-grid   { grid-template-columns: 1fr; gap: 16px; }
  .blog-title  { font-size: 0.95rem; }
  .blog-card-img { height: 110px; }

  /* ── SSS ── */
  .faq-question { font-size: 0.88rem; padding: 18px 18px; }
  .faq-item.open .faq-answer { padding: 0 18px 18px; }
  .faq-answer p { font-size: 0.85rem; }

  /* ── CTA ── */
  .cta-box    { padding: 36px 20px; border-radius: 20px; }
  .cta-title  { font-size: 1.5rem; }
  .btn-whatsapp { font-size: 0.92rem; padding: 14px 28px; }

  /* ── BİLGİLENDİRME BANDI ── */
  .legal-inner { flex-direction: column; gap: 8px; }
  .legal-text  { font-size: 0.78rem; }

  /* ── FOOTER ── */
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  /* ── STİCKY WA ── */
  .sticky-wa { width: 52px; height: 52px; bottom: 20px; right: auto; left: 18px; }
  .sticky-wa-tooltip { display: none; }

  /* ── DİL MODALİ ── */
  .lang-modal-box  { width: 92vw; }
  .lang-modal-btns { gap: 12px; }
  .lang-btn        { padding: 14px 20px; }
}

/* ============================================================
   MOBİL RESPONSIVE – 480px ve altı (küçük telefonlar)
============================================================ */
@media (max-width: 480px) {

  .hero-title   { font-size: 1.6rem; }
  .hero-badge   { font-size: 0.72rem; padding: 5px 14px; }

  .stat-number  { font-size: 1.6rem; }

  .svc-title    { font-size: 1rem; }
  .svc-desc     { font-size: 0.84rem; }

  .pricing-name   { font-size: 1.2rem; }
  .price-amount   { font-size: 1.75rem; }

  .section-title  { font-size: 1.5rem; }

  .compare-table  { font-size: 0.72rem; min-width: 420px; }

  .cta-title { font-size: 1.3rem; }

  .blog-card-body { padding: 18px 18px 22px; }
}

/* ============================================================
   DİL SEÇİCİ (Lang Switcher) — production-safe, data-attr driven
   JS yalnızca data-open attribute'u set/remove eder.
   Hiçbir dinamik class üretilmez → Vite CSS purge'e takılmaz.
============================================================ */
.lang-switcher {
  position: relative;
  flex-shrink: 0;
}

/* Tetikleyici buton */
.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: var(--gray-300);
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 7px 11px;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
  white-space: nowrap;
  user-select: none;
}
.lang-trigger:hover,
.lang-switcher[data-open] .lang-trigger {
  background: rgba(99,102,241,0.1);
  border-color: rgba(99,102,241,0.4);
  color: var(--white);
}

/* Caret ok — açıkken döner */
.lang-caret {
  opacity: 0.6;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.lang-switcher[data-open] .lang-caret {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown panel — kapalı hali */
.lang-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 160px;
  background: rgba(13,16,32,0.98);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(99,102,241,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  /* Kapalı: görünmez ama yer kaplamaz (pointer-events kapalı) */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.97);
  transform-origin: top right;
  transition:
    opacity 0.2s ease,
    visibility 0s 0.2s,
    transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Açık hali — data-open attribute var ise */
.lang-switcher[data-open] .lang-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.2s ease,
    visibility 0s 0s,
    transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Seçenek butonları */
.lang-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 9px 12px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  transition: background 0.15s ease;
  text-align: left;
}
.lang-opt:hover {
  background: rgba(99,102,241,0.12);
}
.lang-opt--active {
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.35);
}

/* Mobilde panel sola açılır */
@media (max-width: 480px) {
  .lang-panel { right: auto; left: 0; transform-origin: top left; }
}


/* ── PAKET İÇERİĞİ BUTONU (pricing kartlarında) ────────── */
.pricing-btn-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 11px;
  border-radius: var(--radius-md);
  text-decoration: none;
  margin-top: 10px;
  color: var(--gray-400);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.pricing-btn-detail:hover {
  color: var(--white);
  border-color: rgba(99,102,241,0.4);
  background: rgba(99,102,241,0.07);
}
.pricing-btn-detail svg {
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s;
}
.pricing-btn-detail:hover svg {
  opacity: 1;
  transform: translateX(2px);
}


/* ============================================================
   MÜŞTERİ YORUMLARI (TESTIMONIALS)
============================================================ */
.testimonials-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-900) 0%, var(--bg-950) 100%);
  z-index: 1;
}

.testimonials-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse 60% 50% at 50% 50%,
    rgba(124,58,237,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Kart */
.tcard {
  position: relative;
  background: #0e1220;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.32s cubic-bezier(0.4,0,0.2,1),
              border-color 0.3s ease;
  overflow: hidden;
}
.tcard:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(124,58,237,0.2);
  border-color: rgba(124,58,237,0.25);
}

/* Arka köşe parıltısı */
.tcard::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.09) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.tcard:hover::before { opacity: 1; }

/* Tırnak işareti ikonu */
.tcard-quote {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.22);
  color: #a78bfa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

/* Yıldızlar */
.tcard-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.tcard-stars svg {
  color: #fbbf24;
  filter: drop-shadow(0 0 4px rgba(251,191,36,0.5));
}

/* Yorum metni */
.tcard-text {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.78;
  flex-grow: 1;
  margin-bottom: 24px;
  font-style: italic;
}

/* Alt kısım: avatar + isim */
.tcard-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.tcard-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.tcard-avatar-1 { background: linear-gradient(135deg, #6366f1, #7c3aed); box-shadow: 0 0 14px rgba(99,102,241,0.4); }
.tcard-avatar-2 { background: linear-gradient(135deg, #059669, #34d399); box-shadow: 0 0 14px rgba(52,211,153,0.35); }
.tcard-avatar-3 { background: linear-gradient(135deg, #db2777, #f472b6); box-shadow: 0 0 14px rgba(219,39,119,0.35); }

.tcard-name {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.tcard-role {
  font-size: 0.76rem;
  color: var(--gray-500);
  letter-spacing: 0.01em;
}

/* tcard-info: isim + rol container */
.tcard-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* mib-content: sarı band içi metin container */
.mib-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

/* Doğrulanmış rozet */
.tcard-verified {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #34d399;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.2);
  border-radius: 999px;
  padding: 3px 9px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .testimonials-section { padding: 64px 0; }
  .tcard { padding: 26px 20px; }
  .tcard-text { font-size: 0.87rem; }
}


/* ============================================================
   BAKIM & DESTEK PAKETLERİ
============================================================ */
.maintenance-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-950) 0%, #0a0e17 100%);
  z-index: 1;
}

.maintenance-bg-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse 70% 60% at 50% 0%,
    rgba(99,102,241,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Bilgilendirme Bandı */
.maintenance-info-band {
  position: relative;
  z-index: 2;
  background: rgba(251,191,36,0.05);
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: 14px;
  padding: 18px 24px;
  margin-bottom: 60px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.mib-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.25);
  color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.mib-title {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fde68a;
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}
.mib-text {
  font-size: 0.84rem;
  color: var(--gray-400);
  line-height: 1.7;
}
.mib-text strong { color: var(--gray-300); }

/* Grid */
.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
@media (max-width: 760px) {
  .maintenance-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Kart */
.mcard {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 36px 32px 32px;
  transition: var(--transition);
  overflow: hidden;
}
.mcard:hover {
  border-color: rgba(99,102,241,0.28);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

/* Premium kart vurgusu */
.mcard-premium {
  background: linear-gradient(160deg, #121830 0%, #181f3a 100%);
  border: 1px solid rgba(99,102,241,0.35);
  box-shadow: 0 0 40px rgba(99,102,241,0.08);
}
.mcard-premium:hover {
  border-color: rgba(99,102,241,0.55);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 50px rgba(99,102,241,0.12);
}

/* Üst parıltı */
.mcard::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.mcard-premium::before { background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%); }
.mcard:hover::before { opacity: 1; }

/* İkon + tier */
.mcard-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.mcard-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mcard-icon-standard {
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.22);
  color: #34d399;
}
.mcard-icon-premium {
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.28);
  color: #818cf8;
}

.mcard-tier {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mcard-tier-standard { color: #34d399; }
.mcard-tier-premium  { color: #818cf8; }

/* Başlık + fiyat */
.mcard-name {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.mcard-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.mcard-price-amount {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.mcard-price-currency {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-300);
}
.mcard-price-period {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-left: 2px;
}

.mcard-optional-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fde68a;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 20px;
}

/* Ayırıcı */
.mcard-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 20px;
}

/* Açıklama */
.mcard-desc {
  font-size: 0.87rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 22px;
}

/* Özellikler listesi */
.mcard-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}
.mcard-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--gray-300);
  line-height: 1.5;
}
.mcard-check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.mcard-check-standard {
  background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.22);
  color: #34d399;
}
.mcard-check-premium {
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.28);
  color: #818cf8;
}
.mcard-check svg { width: 10px; height: 10px; }

/* CTA butonu */
.mcard-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.mcard-btn-standard {
  border: 1px solid rgba(52,211,153,0.3);
  color: #34d399;
  background: rgba(52,211,153,0.06);
}
.mcard-btn-standard:hover {
  border-color: rgba(52,211,153,0.6);
  background: rgba(52,211,153,0.12);
  color: var(--white);
  transform: translateY(-2px);
}
.mcard-btn-premium {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--violet) 100%);
  color: #fff;
  box-shadow: 0 0 24px rgba(99,102,241,0.35);
  border: none;
}
.mcard-btn-premium:hover {
  box-shadow: 0 0 40px rgba(99,102,241,0.6);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .maintenance-section { padding: 64px 0; }
  .maintenance-info-band { flex-direction: column; gap: 10px; padding: 16px 18px; }
  .mcard { padding: 28px 22px 26px; }
  .mcard-price-amount { font-size: 2rem; }
  .mcard-name { font-size: 1.2rem; }
}
