:root {
  --bg: #020617;
  --bg-elevated: rgba(15, 23, 42, 0.9);
  --bg-elevated-soft: rgba(15, 23, 42, 0.7);
  --border-subtle: rgba(148, 163, 184, 0.25);
  --primary: #38bdf8;
  --primary-soft: rgba(56, 189, 248, 0.2);
  --accent: #a855f7;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --danger: #fb7185;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 60px rgba(15, 23, 42, 0.85);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Inter", sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #020617;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.07) 1px, transparent 1px),
    radial-gradient(circle at top, #0f172a 0, #020617 55%, #020617 100%);
  background-size: 24px 24px, 24px 24px, 100% 100%;
  background-position: 0 0, 0 0, 0 0;
}

/* İlk giriş yükleme ekranı */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #0f172a 0%, #020617 60%, #020617 100%);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.site-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(56, 189, 248, 0.15), transparent 50%),
    radial-gradient(circle at 50% 60%, rgba(168, 85, 247, 0.08), transparent 45%);
  pointer-events: none;
}

.site-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader-inner {
  position: relative;
  text-align: center;
  padding: 2rem;
}

.site-loader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.site-loader-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #22d3ee, #0ea5e9, #4f46e5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.6),
    0 0 40px rgba(56, 189, 248, 0.4),
    0 0 80px rgba(56, 189, 248, 0.2);
  animation: loader-logo-pulse 1.5s ease-in-out infinite;
}

@keyframes loader-logo-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

.site-loader-name {
  margin: 0;
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #e0f2fe, #38bdf8, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(56, 189, 248, 0.3));
}

.site-loader-bar-wrap {
  width: 220px;
  height: 4px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.3);
  overflow: hidden;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.4);
}

.site-loader-bar {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #0ea5e9, #38bdf8, #22c55e);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.6);
  transition: width 0.08s linear;
}

.site-loader-text {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.site-loader-percent {
  font-weight: 600;
  color: var(--primary);
  margin-left: 0.25rem;
  min-width: 2.5em;
  display: inline-block;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
}

.bg-blur {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.2), transparent 50%),
    radial-gradient(circle at top right, rgba(168, 85, 247, 0.16), transparent 50%),
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(56, 189, 248, 0.08), transparent 50%);
  opacity: 0.95;
  z-index: -1;
}

.container {
  width: 100%;
  max-width: min(1440px, 94vw);
  padding: 0 2rem;
  margin: 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(24px);
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.92),
    rgba(2, 6, 23, 0.82),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 1px 0 0 rgba(56, 189, 248, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.brand-logo {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #22d3ee, #0ea5e9, #4f46e5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.6),
    0 0 24px rgba(56, 189, 248, 0.5),
    0 0 48px rgba(56, 189, 248, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.brand-name {
  font-size: 1rem;
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links.nav-actions a::after {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-actions .btn {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* Mobil menü butonu (masaüstünde gizli) */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: var(--text);
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  transition: background 0.2s ease, border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover {
  background: rgba(30, 64, 175, 0.4);
  border-color: rgba(56, 189, 248, 0.4);
}
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.navbar.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.navbar.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

body.demo-lock-scroll {
  overflow: hidden;
}

.nav-backdrop {
  display: none;
}

.nav-drawer {
  display: none;
}

/* Hero: Discord yanında Demo butonu – net buton görünümü */
.hero-demo-btn {
  border: 1px solid rgba(56, 189, 248, 0.7);
  color: #e0f2fe;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2) 0%, rgba(56, 189, 248, 0.08) 100%);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.15), 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.18s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.hero-demo-btn:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(56, 189, 248, 0.95);
  color: #fff;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.3) 0%, rgba(56, 189, 248, 0.15) 100%);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.35), 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Demo modu – sağ altta tek “Demo Çık” pill */
.demo-exit-pill {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10000;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem 0.65rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e0f2fe;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96) 0%, rgba(2, 6, 23, 0.99) 100%);
  border: 1px solid rgba(56, 189, 248, 0.55);
  border-radius: var(--radius-pill);
  letter-spacing: 0.03em;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.2),
    0 10px 40px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(56, 189, 248, 0.18);
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.2s ease;
}
.demo-exit-pill:hover {
  border-color: rgba(56, 189, 248, 0.85);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.4),
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 56px rgba(56, 189, 248, 0.35);
  transform: translateY(-2px);
}

.demo-exit-pill:active {
  transform: translateY(0);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.3),
    0 6px 24px rgba(0, 0, 0, 0.4);
}

.demo-exit-pill:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.demo-exit-pill-icon {
  font-size: 1.3rem;
  line-height: 1;
  opacity: 0.95;
}
.demo-exit-pill-text {
  letter-spacing: 0.02em;
}

.demo-exit-pill {
  cursor: pointer;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
}

/* Demo çıkış ekranı – 5 saniye “Demodan ayrılıyorsunuz” */
.demo-exit-screen {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #0f172a 0%, #020617 70%, #020617 100%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.demo-exit-screen.demo-exit-screen-visible {
  opacity: 1;
  visibility: visible;
}

.demo-exit-screen.demo-exit-screen-closing {
  opacity: 0;
  visibility: hidden;
}

.demo-exit-screen.demo-exit-screen-closing .demo-exit-screen-inner {
  transform: scale(0.96);
  opacity: 0;
}

.demo-exit-screen-inner {
  text-align: center;
  padding: 2.5rem;
  max-width: 360px;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.demo-exit-screen-emoji {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1;
  filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.3));
}

.demo-exit-screen-loader {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border: 3px solid rgba(56, 189, 248, 0.25);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: demo-exit-spin 0.9s linear infinite;
}

@keyframes demo-exit-spin {
  to { transform: rotate(360deg); }
}

.demo-exit-screen-title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #e0f2fe;
  letter-spacing: 0.02em;
}

.demo-exit-screen-sub {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.demo-exit-screen-bar-wrap {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.3);
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.demo-exit-screen-bar {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #0ea5e9, #38bdf8, #22c55e);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
  transition: width 0.1s linear;
}

/* Demo modu – bölüm vurgusu ve anlatım kutusu */
.demo-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.demo-overlay.demo-overlay-visible {
  opacity: 1;
}

.demo-spotlight {
  position: fixed;
  border-radius: 24px;
  border: 2px solid rgba(56, 189, 248, 0.9);
  box-shadow:
    0 0 0 9999px rgba(2, 6, 23, 0.82),
    0 0 0 2px rgba(56, 189, 248, 0.5),
    0 0 32px rgba(56, 189, 248, 0.4),
    inset 0 0 24px rgba(56, 189, 248, 0.06);
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1), top 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1), height 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
  pointer-events: none;
}

.demo-spotlight.demo-spotlight-strong {
  border-width: 3px;
  border-color: rgba(56, 189, 248, 1);
  box-shadow:
    0 0 0 9999px rgba(0, 0, 0, 0.88),
    0 0 0 3px rgba(56, 189, 248, 0.7),
    0 0 50px rgba(56, 189, 248, 0.4),
    0 0 80px rgba(56, 189, 248, 0.15),
    inset 0 0 30px rgba(56, 189, 248, 0.08);
}

.demo-caption {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  width: min(540px, 92vw);
  padding: 1.35rem 1.6rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(2, 6, 23, 0.99) 100%);
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(56, 189, 248, 0.1), 0 0 48px rgba(56, 189, 248, 0.12);
  pointer-events: auto;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.demo-caption.demo-caption-visible {
  opacity: 1;
}

.demo-caption-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.demo-caption-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
  margin: 0;
}

.demo-caption-step {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(56, 189, 248, 0.12);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

.demo-caption-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

.demo-caption-next {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.55);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.1);
}

.demo-caption-next:hover {
  background: rgba(56, 189, 248, 0.28);
  color: #bae6fd;
  border-color: rgba(56, 189, 248, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.25), 0 0 0 1px rgba(56, 189, 248, 0.2);
}

.demo-caption-next:active {
  transform: translateY(0);
  box-shadow: 0 2px 12px rgba(56, 189, 248, 0.2);
}

.demo-caption-next:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Buttons */
.btn {
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  padding: 0.45rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: transparent;
  color: var(--text);
}

.btn.primary {
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  color: #0b1120;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.8),
    0 0 24px rgba(56, 189, 248, 0.25),
    0 16px 40px rgba(34, 197, 94, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn.primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.4),
    0 0 32px rgba(56, 189, 248, 0.4),
    0 0 48px rgba(34, 197, 94, 0.3),
    0 20px 48px rgba(34, 197, 94, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn.ghost {
  border-color: rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.7);
}

.btn.ghost:hover {
  border-color: rgba(56, 189, 248, 0.5);
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}

.btn.outline {
  border-color: rgba(56, 189, 248, 0.6);
  background: transparent;
  color: var(--primary);
}

.btn.outline:hover {
  background: rgba(15, 23, 42, 0.85);
}

.btn.lg {
  padding: 0.65rem 1.4rem;
  font-size: 0.95rem;
}

.btn.full {
  width: 100%;
}

/* Hero */
.hero {
  padding: 2.75rem 0 3rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(56, 189, 248, 0.1) 0%,
    rgba(168, 85, 247, 0.05) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  perspective: 1200px;
}

/* Üst: başlık + paragraf tam ortada */
.hero-intro {
  width: 100%;
  text-align: center;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-intro .hero-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Cey ile Software aynı satırda */
.hero-brand-wrap {
  white-space: nowrap;
}

/* Beş buton tek satırda – Status Kurulum’un yanında */
.hero-nav-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.75rem;
  flex-shrink: 0;
}

.hero-nav-row-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.6);
  background: rgba(15, 23, 42, 0.7);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-nav-row-btn:hover {
  border-color: rgba(56, 189, 248, 0.9);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.12);
}

.hero-nav-icon {
  font-size: 1rem;
  opacity: 0.9;
}

.hero-nav-icon-img {
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
}

/* Ana kart – koyu gri, parlayan kenarlık, geniş margin */
.hero-main-card {
  width: 100%;
  max-width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 1.75rem 2rem;
  border-radius: 24px;
  border: 1px solid rgba(56, 189, 248, 0.45);
  background: rgba(15, 23, 42, 0.55);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.12),
    0 0 40px rgba(56, 189, 248, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* Filtre çubuğu – 1. görsel: aralıklı, hizalı */
.hero-filter-bar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1.25rem 2rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  color: var(--text);
  border-radius: 10px;
  border: 1px solid rgba(56, 189, 248, 0.5);
  background: rgba(15, 23, 42, 0.5);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.12);
}

.hero-filter-item:first-child {
  min-width: 0;
}

.hero-filter-arrow {
  font-size: 0.7rem;
  opacity: 0.8;
}

.hero-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  border-radius: 10px;
  border: 1px solid rgba(56, 189, 248, 0.5);
  background: rgba(56, 189, 248, 0.1);
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.15);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-filter-btn:hover {
  background: rgba(56, 189, 248, 0.2);
  border-color: rgba(56, 189, 248, 0.7);
}

.hero-filter-icon {
  font-size: 0.75rem;
}

/* İstatistik kartları – filtre ile hizalı, eşit aralık */
/* İstatistikler artık grid içinde sağda, üst üste – aşağıdaki stil başka yerde kullanılıyorsa bırakıyoruz */
.hero-stats-in-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.5rem;
  margin-bottom: 0;
}

/* Önizlemenin sağında, altlı üstlü 3 kart – ortalanmış */
.hero-stats-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  min-width: 0;
  align-self: start;
  justify-self: center;
}

.hero-stats-stack .stat-with-icon {
  width: 100%;
  max-width: 200px;
}

.stat-with-icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 0.85rem 1.1rem;
  min-width: 0;
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.45);
  background: rgba(15, 23, 42, 0.5);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.stat-icon {
  font-size: 1.25rem;
  margin-bottom: 0.15rem;
}

/* 2 sütun: sol sidebar | sağda tanıtım kartı */
.hero-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 240px) 1fr minmax(0, 200px);
  gap: 2rem 2.5rem;
  align-items: start;
  min-width: 0;
}

.hero-card-wrap {
  align-self: start;
  justify-self: center;
  min-width: 0;
}

.hero-card-centered {
  margin-left: auto;
  margin-right: auto;
}

.hero-sidebar {
  padding: 0.5rem 0;
}

.hero-sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 0.75rem;
}

.hero-product-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero-product-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.6rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-product-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.7), rgba(168, 85, 247, 0.5));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.hero-product-btn:hover {
  border-color: rgba(56, 189, 248, 0.65);
  background: rgba(56, 189, 248, 0.14);
  color: #f0fdfa;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.35),
    0 0 32px rgba(56, 189, 248, 0.22),
    0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-product-btn:hover::before {
  opacity: 1;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.5);
}

.hero-product-btn.active {
  border-color: rgba(56, 189, 248, 0.75);
  background: rgba(56, 189, 248, 0.2);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.4),
    0 0 24px rgba(56, 189, 248, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-product-btn.active::before {
  opacity: 1;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.5);
}

.hero-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.hero-sidebar-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-sidebar-bullet {
  color: var(--primary);
  font-size: 0.6rem;
}

.hero-card-wrap {
  min-width: 0;
}

/* Ürün değişince önizleme alanında kısa fade */
.preview-scene {
  transition: opacity 0.22s ease;
}

.preview-scene.preview-scene-swap {
  opacity: 0;
}

.hero-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 0;
}

.hero-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.4);
  background: rgba(15, 23, 42, 0.6);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.hero-nav-btn:hover {
  transform: translateX(4px);
  border-color: rgba(56, 189, 248, 0.7);
  background: rgba(56, 189, 248, 0.15);
  color: #f0fdfa;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.25);
}

.hero-text h1,
.hero-intro h1 {
  font-size: clamp(2.4rem, 3.1vw, 3.2rem);
  margin: 0.5rem 0 0.75rem;
  letter-spacing: -0.04em;
  filter: drop-shadow(0 0 28px rgba(56, 189, 248, 0.2));
  white-space: nowrap;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 34rem;
}

.hero-subtitle-italic {
  font-style: italic;
}

.hero-subtitle-highlight {
  position: relative;
  color: #e5e7eb;
  font-weight: 500;
  padding-bottom: 2px;
}

.hero-subtitle-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.6), rgba(34, 197, 94, 0.6));
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.25);
}

.hero-shop-icon {
  display: inline-flex;
  align-items: center;
  margin-left: 0.4em;
  vertical-align: middle;
}

.hero-shop-icon img {
  display: block;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.4);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(15, 23, 42, 0.95));
  font-size: 0.75rem;
  color: var(--muted);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.1),
    0 0 20px rgba(56, 189, 248, 0.15);
}

.hero-brand-cey {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #67e8f9, #38bdf8, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.5));
}

.hero-brand-soft {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #2dd4bf, #22c55e, #4ade80);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.5));
}

.hero-meta {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.25rem;
  perspective: 1000px;
}

.meta-item {
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.95),
    rgba(15, 23, 42, 0.75),
    rgba(37, 99, 235, 0.12)
  );
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease-out;
  transform-style: preserve-3d;
}

.meta-label {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.meta-value {
  font-size: 0.86rem;
}

.hero-cta {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.7rem;
}

.hero-stats {
  perspective: 1000px;
}

.stat {
  min-width: 90px;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.5);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.08);
  transition: transform 0.2s ease-out;
  transform-style: preserve-3d;
}

.stat-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(135deg, #e0f2fe, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
}

/* Hero card – sağa hizalı, üstten alttan uzun */
.hero-card {
  max-width: 520px;
  margin-left: auto;
  margin-right: 0;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.98));
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.1),
    0 0 40px rgba(56, 189, 248, 0.12),
    0 18px 60px rgba(15, 23, 42, 0.85);
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 0, rgba(56, 189, 248, 0.25), transparent 55%),
    radial-gradient(circle at 82% 60%, rgba(168, 85, 247, 0.2), transparent 45%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.15),
    0 0 48px rgba(56, 189, 248, 0.15),
    0 24px 56px rgba(0, 0, 0, 0.4);
}

.hero-card-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid rgba(51, 65, 85, 0.9);
  background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.65));
}

.pill {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  opacity: 0.95;
}

.pill.success {
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.7), 0 0 20px rgba(34, 197, 94, 0.3);
}

.pill.warning {
  background: #facc15;
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.6), 0 0 20px rgba(250, 204, 21, 0.25);
}

.pill.error {
  background: #fb7185;
  box-shadow: 0 0 12px rgba(251, 113, 133, 0.6), 0 0 20px rgba(251, 113, 133, 0.25);
}

.hero-card-body {
  position: relative;
  padding: 1.5rem 1.35rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-card-game-title {
  margin-left: auto;
  font-style: italic;
  font-size: 0.7rem;
  color: rgba(226, 232, 240, 0.7);
  font-weight: 500;
}

.chip {
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(15, 23, 42, 0.95);
  font-size: 0.75rem;
  color: var(--muted);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.1);
}

.preview-window {
  margin-top: 1rem;
  flex: 1;
  min-height: 280px;
  border-radius: 18px;
  border: 1px solid rgba(56, 189, 248, 0.5);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.4), rgba(15, 23, 42, 0.98));
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.15),
    0 0 30px rgba(56, 189, 248, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.preview-3d {
  border-radius: 14px;
  border: 1px solid rgba(56, 189, 248, 0.5);
  background: rgba(15, 23, 42, 0.95);
  padding: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.15), inset 0 0 20px rgba(15, 23, 42, 0.5);
}

.preview-desc {
  border-radius: 12px;
  padding: 0.5rem 0.7rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.preview-desc strong {
  color: #e5e7eb;
}

.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 1px;
  background: var(--primary);
  vertical-align: text-bottom;
  animation: typewriter-blink 0.7s step-end infinite;
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.6);
}

@keyframes typewriter-blink {
  50% { opacity: 0; }
}

.preview-scene {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 240px;
  border-radius: 12px;
  background: #020617;
  overflow: hidden;
}

/* Ortadaki mod GIF'i */
.preview-gif {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.preview-3d[data-mode="aimbot"] .char-body {
  box-shadow:
    0 0 26px rgba(56, 189, 248, 0.9),
    0 24px 50px rgba(15, 23, 42, 1);
}

.preview-3d[data-mode="speed"] .preview-scene {
  background:
    radial-gradient(circle at 0 50%, rgba(34, 197, 94, 0.25), transparent 55%),
    radial-gradient(circle at 90% 50%, rgba(56, 189, 248, 0.25), transparent 55%),
    radial-gradient(circle at 50% 120%, rgba(15, 23, 42, 1), rgba(15, 23, 42, 1));
}

.preview-3d[data-mode="fly"] .preview-character {
  bottom: 28%;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  perspective: 1000px;
}

.hero-product-cta-wrap {
  margin-top: 0.5rem;
}

.hero-product-cta-wrap .btn {
  min-height: 48px;
  font-size: 0.95rem;
}

.preview-item {
  border-radius: 10px;
  padding: 0.6rem 0.4rem;
  font-size: 0.78rem;
  text-align: center;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
  transform-style: preserve-3d;
}

.preview-item:hover {
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.2);
}

.preview-item.glow,
.preview-item.active {
  border-color: rgba(56, 189, 248, 0.9);
  color: #e0f2fe;
  box-shadow:
    0 0 20px rgba(56, 189, 248, 0.6),
    0 0 36px rgba(56, 189, 248, 0.25),
    inset 0 0 20px rgba(37, 99, 235, 0.4);
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section.muted {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.98));
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  border-bottom: 1px solid rgba(56, 189, 248, 0.15);
  box-shadow: inset 0 1px 0 0 rgba(56, 189, 248, 0.06);
}

.section[id] {
  scroll-margin-top: 5rem;
}

.section-header {
  text-align: left;
  margin-bottom: 1.75rem;
}

.section-header h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.4rem, 2.2vw, 1.65rem);
  font-weight: 700;
  background: linear-gradient(135deg, #e0f2fe, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.25));
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  perspective: 1200px;
}

.product-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.6), rgba(15, 23, 42, 0.98));
  padding: 1rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.08),
    0 0 24px rgba(56, 189, 248, 0.08),
    0 18px 40px rgba(15, 23, 42, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease-out, box-shadow 0.25s ease, border-color 0.25s ease;
  transform-style: preserve-3d;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.35), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(168, 85, 247, 0.3), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.25),
    0 0 40px rgba(56, 189, 248, 0.2),
    0 0 60px rgba(56, 189, 248, 0.1),
    0 28px 56px rgba(0, 0, 0, 0.5),
    0 16px 32px rgba(15, 23, 42, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.product-thumb {
  margin-top: 0.2rem;
  margin-bottom: 0.6rem;
  border-radius: 12px;
  min-height: 145px;
  height: 145px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow:
    0 0 20px rgba(56, 189, 248, 0.1),
    0 14px 30px rgba(15, 23, 42, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  background-color: rgba(15, 23, 42, 0.6);
  background-size: cover;
  background-position: center;
}

.thumb-apex {
  background-image: url("apex.gif");
}

.thumb-delta {
  background-image: url("delta.gif");
}

.thumb-valorant {
  background-image: url("valorant.gif");
}

.thumb-pubg {
  background-image: url("pubg.gif");
}

.thumb-bf6 {
  background-image: url("bf6.gif");
}

.product-header h3 {
  margin: 0.3rem 0 0.3rem;
  font-size: 1.05rem;
}

.product-header p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(56, 189, 248, 0.5);
  color: #e0f2fe;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.35), rgba(56, 189, 248, 0.15));
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.product-badge.hot {
  border-color: rgba(249, 115, 22, 0.8);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.5), rgba(249, 115, 22, 0.2));
  box-shadow: 0 0 16px rgba(249, 115, 22, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Tabs */
.tabs {
  display: inline-flex;
  flex-wrap: wrap;
  border-radius: var(--radius-pill);
  padding: 0.25rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.25);
  gap: 0.15rem;
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  perspective: 1000px;
}

.tab {
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.95rem;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
  transform-style: preserve-3d;
}

.tab:hover {
  color: #e0f2fe;
}

.tab.active {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.25), rgba(59, 130, 246, 0.2));
  color: #e0f2fe;
  border-radius: var(--radius-pill);
  box-shadow:
    0 0 20px rgba(56, 189, 248, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tab-panels {
  margin-top: 1.4rem;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem 1.1rem;
  font-size: 0.86rem;
}

.feature-grid li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-right: 0.45rem;
  background: radial-gradient(circle at 30% 30%, #22c55e, #0f766e);
  box-shadow:
    0 0 12px rgba(34, 197, 94, 0.8),
    0 0 24px rgba(34, 197, 94, 0.3),
    inset 0 0 6px rgba(255, 255, 255, 0.2);
}

.notice {
  margin-top: 1.6rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(248, 113, 113, 0.5);
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.4), rgba(248, 113, 113, 0.08));
  font-size: 0.8rem;
  color: #fecaca;
  box-shadow: 0 0 24px rgba(248, 113, 113, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Media section */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  perspective: 1200px;
}

.media-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56, 189, 248, 0.3);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.35), rgba(15, 23, 42, 0.98));
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.1),
    0 0 24px rgba(56, 189, 248, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease-out, box-shadow 0.25s ease, border-color 0.25s ease;
  transform-style: preserve-3d;
}

.media-card:hover {
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 0 32px rgba(56, 189, 248, 0.2), 0 0 48px rgba(56, 189, 248, 0.08);
}

.video-card {
  padding: 0;
  overflow: hidden;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  min-height: 150px;
  border: 0;
  border-radius: inherit;
}

.skeleton {
  position: relative;
  overflow: hidden;
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(148, 163, 184, 0.2),
    transparent
  );
  transform: translateX(-100%);
  animation: shimmer 1.8s infinite ease-out;
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  perspective: 1200px;
}

.pricing-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
  padding: 1rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s ease-out;
  transform-style: preserve-3d;
}

.pricing-card.highlighted {
  border-color: rgba(56, 189, 248, 0.9);
  box-shadow:
    0 0 26px rgba(56, 189, 248, 0.75),
    0 20px 60px rgba(15, 23, 42, 0.95);
  transform: translateY(-2px);
}

.pricing-card.outline {
  background: transparent;
}

.badge {
  align-self: flex-start;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--muted);
}

.badge.accent {
  border-color: rgba(56, 189, 248, 0.9);
  color: #e0f2fe;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.3), transparent);
}

.pricing-card h3 {
  margin: 0.1rem 0;
  font-size: 1rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 600;
}

.price-sub {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.pricing-card ul li::before {
  content: "✓";
  color: #4ade80;
  margin-right: 0.4rem;
}

/* Compatibility */
.compat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem 1.1rem;
  perspective: 1000px;
}

.compat-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.92));
  padding: 0.75rem 0.9rem;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.06),
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease, border-color 0.2s ease;
  transform-style: preserve-3d;
}

.compat-item:hover {
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.12);
}

.compat-item .label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.compat-item .value {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.86rem;
}

.compat-item .value.accent {
  color: #fecaca;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  padding: 1.75rem 0 2rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), #020617);
  box-shadow: inset 0 1px 0 0 rgba(56, 189, 248, 0.08);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-meta {
  margin-left: 0.7rem;
}

.footer-right {
  display: flex;
  gap: 0.9rem;
}

.footer-right a {
  color: var(--muted);
}

.footer-right a:hover {
  color: var(--text);
}

.footer-demo-link {
  color: var(--primary) !important;
}
.footer-demo-link:hover {
  color: #7dd3fc !important;
}

/* Responsive – tablet ve mobil */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  /* Masaüstü nav linkleri mobilde gizli; menü body’deki drawer’dan açılır */
  .nav-links {
    display: none !important;
  }

  /* Sağdan kayan menü: önce kararan arka plan */
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 18;
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.25s ease;
    -webkit-tap-highlight-color: transparent;
  }

  body.nav-open .nav-backdrop {
    display: block;
    opacity: 1;
  }

  /* Mobil menü paneli – body’nin doğrudan çocuğu, sağdan kayar */
  .nav-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 88vw);
    max-width: 300px;
    height: 100%;
    z-index: 20;
    padding: 4.5rem 1rem 2rem 1rem;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.99) 0%, rgba(2, 6, 23, 0.99) 100%);
    border-left: 1px solid rgba(56, 189, 248, 0.25);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  body.nav-open .nav-drawer {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-drawer-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav-drawer-inner a {
    display: flex;
    align-items: center;
    padding: 1rem 1rem;
    min-height: 48px;
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    color: var(--text);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    border: 1px solid transparent;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-drawer-inner a:hover,
  .nav-drawer-inner a:focus {
    background: rgba(56, 189, 248, 0.12);
    color: var(--primary);
    border-color: rgba(56, 189, 248, 0.2);
  }

  .nav-drawer-inner a.active {
    background: rgba(56, 189, 248, 0.15);
    color: var(--primary);
    border-color: rgba(56, 189, 248, 0.3);
  }

  .hero-inner {
    gap: 2rem;
  }

  .hero-nav-row {
    flex-wrap: wrap;
  }

  .hero-main-card {
    padding: 1rem;
  }

  .hero-filter-bar {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero-stats-in-card {
    grid-template-columns: 1fr;
  }

  .hero-main-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-text h1,
  .hero-intro h1 {
    font-size: clamp(1.85rem, 5vw, 2.5rem);
    white-space: normal;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid,
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .preview-item {
    min-height: 44px;
    padding: 0.75rem 0.5rem;
    font-size: 0.8rem;
  }

  .section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* Status page */
.status-hero {
  padding: 2.5rem 0 3rem;
  position: relative;
}

.status-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(
    ellipse at center,
    rgba(56, 189, 248, 0.12) 0%,
    rgba(168, 85, 247, 0.06) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.status-hero .container {
  position: relative;
  z-index: 1;
}

.status-header {
  margin-bottom: 2rem;
}

.status-title {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #e0f2fe 0%, #38bdf8 35%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(56, 189, 248, 0.45));
}

.status-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1rem;
  max-width: 36rem;
}

.status-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(56, 189, 248, 0.5);
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.18) 0%,
    rgba(15, 23, 42, 0.95) 50%,
    rgba(168, 85, 247, 0.08) 100%
  );
  font-size: 0.88rem;
  color: #e0f2fe;
  margin-bottom: 1rem;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.2),
    0 0 30px rgba(56, 189, 248, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.status-banner::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e, 0 0 24px rgba(34, 197, 94, 0.6);
  animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px #22c55e, 0 0 24px rgba(34, 197, 94, 0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 16px #22c55e, 0 0 32px rgba(34, 197, 94, 0.8); }
}

.status-updated {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.status-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
  perspective: 1200px;
}

.status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: linear-gradient(
    135deg,
    rgba(30, 64, 175, 0.4) 0%,
    rgba(15, 23, 42, 0.98) 40%,
    rgba(15, 23, 42, 0.95) 100%
  );
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease-out, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transform-style: preserve-3d;
}

.status-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.6), rgba(168, 85, 247, 0.4));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.status-item:hover {
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.3),
    0 0 40px rgba(56, 189, 248, 0.2),
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 12px 24px rgba(0, 0, 0, 0.35);
}

.status-item:hover::before {
  opacity: 1;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.6);
}

.status-name {
  font-weight: 500;
  font-size: 0.95rem;
}

.status-badge {
  font-size: 0.78rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.status-badge.undetected {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.35), rgba(34, 197, 94, 0.2));
  border: 1px solid rgba(34, 197, 94, 0.7);
  color: #86efac;
  box-shadow:
    0 0 0 1px rgba(34, 197, 94, 0.2),
    0 0 20px rgba(34, 197, 94, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.status-item:hover .status-badge.undetected {
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.5), 0 0 40px rgba(34, 197, 94, 0.2);
}

.status-badge.updating {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.3), rgba(250, 204, 21, 0.15));
  border: 1px solid rgba(250, 204, 21, 0.7);
  color: #fde047;
  box-shadow:
    0 0 0 1px rgba(250, 204, 21, 0.2),
    0 0 20px rgba(250, 204, 21, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.status-item:hover .status-badge.updating {
  box-shadow: 0 0 24px rgba(250, 204, 21, 0.5), 0 0 40px rgba(250, 204, 21, 0.2);
}

.status-badge.risk {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(249, 115, 22, 0.15));
  border: 1px solid rgba(249, 115, 22, 0.7);
  color: #fdba74;
  box-shadow:
    0 0 0 1px rgba(249, 115, 22, 0.2),
    0 0 20px rgba(249, 115, 22, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.status-item:hover .status-badge.risk {
  box-shadow: 0 0 24px rgba(249, 115, 22, 0.4), 0 0 40px rgba(249, 115, 22, 0.15);
}

.status-badge.offline {
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.3), rgba(251, 113, 133, 0.15));
  border: 1px solid rgba(251, 113, 133, 0.7);
  color: #fda4af;
  box-shadow:
    0 0 0 1px rgba(251, 113, 133, 0.2),
    0 0 20px rgba(251, 113, 133, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.status-item:hover .status-badge.offline {
  box-shadow: 0 0 24px rgba(251, 113, 133, 0.4), 0 0 40px rgba(251, 113, 133, 0.15);
}

.status-legend {
  padding: 1.4rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(15, 23, 42, 0.98) 100%
  );
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.1),
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.status-legend-title {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.status-legend-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.5rem;
}

.status-legend-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.35rem 0;
}

.status-legend-item strong {
  color: var(--text);
}

.status-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  flex-shrink: 0;
}

.status-legend-dot.undetected {
  background: #22c55e;
  box-shadow:
    0 0 12px rgba(34, 197, 94, 0.8),
    0 0 24px rgba(34, 197, 94, 0.4),
    inset 0 0 6px rgba(255, 255, 255, 0.3);
}

.status-legend-dot.updating {
  background: #facc15;
  box-shadow:
    0 0 12px rgba(250, 204, 21, 0.7),
    0 0 24px rgba(250, 204, 21, 0.35),
    inset 0 0 6px rgba(255, 255, 255, 0.25);
}

.status-legend-dot.risk {
  background: #f97316;
  box-shadow:
    0 0 12px rgba(249, 115, 22, 0.7),
    0 0 24px rgba(249, 115, 22, 0.35),
    inset 0 0 6px rgba(255, 255, 255, 0.2);
}

.status-legend-dot.offline {
  background: #fb7185;
  box-shadow:
    0 0 12px rgba(251, 113, 133, 0.7),
    0 0 24px rgba(251, 113, 133, 0.35),
    inset 0 0 6px rgba(255, 255, 255, 0.2);
}

/* Kurulum dosyaları sayfası */
.kurulum-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  perspective: 1200px;
}

.kurulum-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.4), rgba(15, 23, 42, 0.98));
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.08), 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-out, box-shadow 0.25s ease, border-color 0.25s ease;
  transform-style: preserve-3d;
}

.kurulum-item:hover {
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.2),
    0 0 36px rgba(56, 189, 248, 0.15),
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 12px 24px rgba(0, 0, 0, 0.3);
}

.kurulum-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.4), rgba(34, 197, 94, 0.3));
  border: 1px solid rgba(56, 189, 248, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #e0f2fe;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

.kurulum-body {
  flex: 1;
  min-width: 0;
}

.kurulum-title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.kurulum-desc {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.kurulum-item .btn {
  margin-top: 0.25rem;
}

.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after {
  width: 100%;
}

@media (max-width: 640px) {
  .nav-actions {
    display: none;
  }

  .nav-links {
    top: 72px;
    padding: 1.5rem 1rem 2rem;
  }
  .nav-links a {
    min-height: 48px;
  }

  .hero {
    padding-top: 1.8rem;
    padding-bottom: 1.5rem;
  }

  .hero-inner {
    gap: 1.5rem;
  }

  .hero-text h1,
  .hero-intro h1 {
    font-size: clamp(1.6rem, 6vw, 2rem);
    white-space: normal;
  }

  .hero-meta {
    flex-direction: column;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat {
    min-width: 0;
  }

  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .media-grid,
  .pricing-grid,
  .compat-grid,
  .products-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .btn {
    min-height: 44px;
    padding: 0.6rem 1.2rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .status-legend-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .status-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .kurulum-item {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.25rem;
  }

  .kurulum-num {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .kurulum-item .btn {
    align-self: flex-start;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-header h2 {
    font-size: clamp(1.5rem, 4vw, 1.85rem);
  }

  .product-card,
  .media-card,
  .pricing-card {
    padding: 1.25rem 1rem;
  }

  .site-loader-bar-wrap {
    width: 180px;
  }
}

/* İmleç etrafında küçük, yumuşak aydınlatma (imleç klasik/sistem varsayılanı) */
@media (pointer: fine) {
  .cursor-glow {
    position: fixed;
    width: 56px;
    height: 56px;
    left: 0;
    top: 0;
    margin-left: -28px;
    margin-top: -28px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2147483646;
    background: radial-gradient(
      circle at center,
      rgba(56, 189, 248, 0.14) 0%,
      rgba(168, 85, 247, 0.06) 55%,
      transparent 80%
    );
    box-shadow:
      0 0 24px 12px rgba(56, 189, 248, 0.07),
      0 0 36px 18px rgba(168, 85, 247, 0.03);
    opacity: 0.9;
    transition: opacity 0.3s ease;
    will-change: transform;
  }

  .cursor-glow.hidden {
    opacity: 0;
    pointer-events: none;
  }
}
