@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  /* Renk Paleti - Kırmızı & Beyaz (Agresif ve Saf) */
  --color-bg-base: #0A0A0C;
  --color-bg-surface: #121215;
  --color-bg-surface-hover: #18181C;
  
  --color-primary: #FF2A2A; /* Kan Kırmızısı */
  --color-primary-hover: #FF4D4D;
  --color-primary-glow: rgba(255, 42, 42, 0.4);
  
  --color-text-main: #FFFFFF;
  --color-text-muted: #A0A5B5;
  --color-border: #2A2A35;
  --color-accent: #FFFFFF; /* Vurgular için saf beyaz */

  /* Tipografi */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* 8px Tabanlı Boşluk Sistemi */
  --space-8: 8px;
  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;
  --space-48: 48px;
  --space-64: 64px;
  --space-96: 96px;

  /* Radius & Shadow */
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-primary: 0 4px 24px -8px var(--color-primary-glow);
  --shadow-primary-hover: 0 8px 32px -4px var(--color-primary-glow);
  --shadow-surface: 0 8px 32px -8px rgba(0,0,0,0.8);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg-base);
  color: var(--color-text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- Animasyonlar --- */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(255, 42, 42, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(255, 42, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 42, 42, 0); }
}

@keyframes grid-move {
  0% { background-position: 0 0; }
  100% { background-position: 32px 32px; }
}

@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Dinamik Arka Plan Grid */
.bg-grid {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: -1;
  animation: grid-move 15s linear infinite;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text-main);
}

h1 { font-size: 3.8rem; letter-spacing: -0.02em; text-transform: uppercase; }
h2 { font-size: 2.8rem; letter-spacing: -0.01em; text-transform: uppercase; }
h3 { font-size: 1.5rem; text-transform: uppercase; letter-spacing: 0.05em; }

p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-24);
  position: relative;
}

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  padding: var(--space-16) var(--space-32);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::after {
  left: 100%;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
  animation: pulse-glow 3s infinite;
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: var(--shadow-primary-hover);
  transform: translateY(-3px) scale(1.02);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text-main);
  border: 1px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-text-main);
  background-color: rgba(255,255,255,0.05);
  transform: translateY(-3px);
}

/* Navbar */
.navbar {
  padding: var(--space-32) 0 var(--space-64) 0;
  border-bottom: none;
  background: linear-gradient(to bottom, rgba(10,10,12,0.9) 0%, rgba(10,10,12,0) 100%);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--space-8);
  letter-spacing: 2px;
}

.brand-accent { color: var(--color-primary); }

.nav-links {
  display: flex;
  gap: var(--space-32);
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--color-text-main); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  gap: var(--space-16);
}

/* Hero Section */
.hero {
  padding: var(--space-96) 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-64);
  align-items: flex-start;
  animation: fadeIn 1s ease-out;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  text-shadow: 0 0 40px rgba(255,255,255,0.1);
}

.highlight {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 30%;
  background: var(--color-primary);
  opacity: 0.2;
  z-index: -1;
  transform: skewX(-15deg);
}

.hero-content p {
  font-size: 1.125rem;
  max-width: 480px;
  border-left: 2px solid var(--color-primary);
  padding-left: var(--space-16);
}

.hero-actions {
  display: flex;
  gap: var(--space-16);
  margin-top: var(--space-16);
}

/* Mockup / Visual - Hareketli */
.hero-visual {
  position: relative;
  height: 450px;
  animation: float 6s ease-in-out infinite;
  perspective: 1000px;
}

.mockup-window {
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-24);
  box-shadow: var(--shadow-surface), 0 0 40px rgba(255, 42, 42, 0.1);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotateY(-5deg);
  width: 100%;
  z-index: 2;
  overflow: hidden;
}

/* Scanline efekti */
.mockup-window::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255, 42, 42, 0.1), transparent);
  animation: scanline 4s linear infinite;
  pointer-events: none;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-24);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid var(--color-border);
}

.mockup-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-text-main);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mockup-stat {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-8);
  font-family: monospace;
  color: var(--color-text-muted);
}

.mockup-stat span:last-child {
  color: var(--color-text-main);
}

.status-active {
  color: var(--color-primary) !important;
  text-shadow: 0 0 10px var(--color-primary-glow);
  font-weight: bold;
}

.terminal-box {
  margin-top: 24px; 
  padding: 16px; 
  border: 1px solid var(--color-border); 
  background: #000; 
  font-family: monospace; 
  font-size: 0.85rem; 
  color: var(--color-text-muted);
  border-radius: 4px;
}

.terminal-line {
  margin-bottom: 4px;
}

.terminal-line span {
  color: var(--color-primary);
}

.accent-grid {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 300px;
  height: 300px;
  background-image: radial-gradient(var(--color-primary) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.15;
  z-index: 1;
  transform: rotate(15deg);
}

/* Section */
.section { padding: var(--space-96) 0; }

.section-header {
  margin-bottom: var(--space-64);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}

.section-title h2 { margin-bottom: var(--space-16); }
.section-title p { max-width: 500px; }

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-32);
}

.product-card {
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-24);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-primary);
  transform: translateY(-8px) scale(1.02);
  background-color: var(--color-bg-surface-hover);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--color-primary);
  transition: height 0.4s ease;
}

.product-card:hover::before { height: 100%; }

.product-image {
  width: 100%;
  height: 180px;
  background-color: #000;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-image::after {
  content: '';
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
}

.badge {
  position: absolute;
  top: var(--space-16);
  right: var(--space-16);
  background-color: var(--color-text-main);
  color: var(--color-bg-base);
  padding: 4px 12px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 2px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.badge.premium {
  background-color: var(--color-primary);
  color: #fff;
  animation: pulse-glow 2s infinite;
}

.product-info {
  z-index: 2;
}

.product-info h3 { 
  margin-bottom: var(--space-8); 
  font-size: 1.4rem; 
}

.product-info p { 
  font-size: 0.9rem; 
  color: var(--color-text-muted);
}

.feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: var(--space-8);
}

.feature-tag {
  font-size: 0.75rem;
  font-family: monospace;
  padding: 2px 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  color: var(--color-text-muted);
}

.product-card:hover .feature-tag {
  border-color: rgba(255, 42, 42, 0.3);
  color: var(--color-text-main);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: var(--space-16);
  border-top: 1px solid var(--color-border);
  z-index: 2;
}

.product-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-text-main);
}

/* Features List */
.features {
  display: flex;
  flex-direction: column;
  gap: var(--space-96);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-64);
  align-items: center;
}

.feature-content h3 { margin-bottom: var(--space-16); font-size: 2rem;}
.feature-content p { margin-bottom: var(--space-24); font-size: 1.1rem;}

.icon-box {
  width: 56px;
  height: 56px;
  background: rgba(255, 42, 42, 0.1);
  border: 1px solid rgba(255, 42, 42, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-24);
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.feature-row:hover .icon-box {
  background: var(--color-primary);
  color: #fff;
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 0 20px var(--color-primary-glow);
}

.feature-visual {
  background-color: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-32);
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  box-shadow: var(--shadow-surface);
  transition: transform 0.5s ease;
}

.feature-row:hover .feature-visual {
  transform: scale(1.02);
  border-color: var(--color-border);
}

.status-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-16);
  background-color: var(--color-bg-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: monospace;
  transition: all 0.3s;
}

.status-row:hover {
  border-color: rgba(255,255,255,0.2);
}

.status-row.success { 
  border-left: 2px solid var(--color-primary); 
}

/* Footer */
.footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-64) 0 var(--space-32);
  margin-top: var(--space-96);
  background-color: var(--color-bg-surface);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0.5;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-48);
  margin-bottom: var(--space-48);
}

.footer-col h4 { margin-bottom: var(--space-24); font-size: 1.1rem; color: #fff;}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-16); }
.footer-col a { color: var(--color-text-muted); font-size: 0.9rem; }
.footer-col a:hover { color: #fff; padding-left: 4px;}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-24);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* =========================================
   Mobile Responsiveness
   ========================================= */
@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
    gap: 16px;
    padding-bottom: 16px;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 2rem;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-visual {
    margin-top: 3rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-row {
    flex-direction: column;
    text-align: center;
  }
  .feature-row.reverse {
    flex-direction: column;
  }
  .feature-content h2 {
    font-size: 2rem;
  }
  .feature-content ul li {
    justify-content: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .footer-social {
    justify-content: center;
  }
}

/* =========================================
   Text Morph Component Styles
   ========================================= */
.hero-morph-title {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: var(--space-24);
}

.morph-text-container {
  display: inline-block;
  position: relative;
  min-height: 1.2em;
  vertical-align: bottom;
}

.text-morph-dynamic {
  display: inline-block;
  color: var(--color-primary);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity, filter;
  filter: drop-shadow(0 0 16px var(--color-primary-glow));
}

.text-morph-dynamic.morph-out {
  opacity: 0;
  transform: translateY(-16px) scale(0.95);
  filter: blur(10px);
}

.text-morph-dynamic.morph-in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* =========================================
   Tema uyumlu Mesh Text Hover
   Normal renk aktif temadan gelir. İmlecin bulunduğu bölüm beyazlaşır.
   Efekt yalnızca harflerin içine kırpılır; dikdörtgen katman oluşturmaz.
   ========================================= */
.mesh-hover-text {
  position: relative;
  display: inline-block;
}

.text-morph-dynamic.mesh-hover-text {
  --mesh-x: 50%;
  --mesh-y: 50%;
  --mesh-shift-x: 0px;
  --mesh-shift-y: 0px;

  color: var(--color-primary) !important;
  -webkit-text-fill-color: var(--color-primary) !important;
  background: none;
  text-shadow:
    0 0 14px var(--color-primary-glow),
    0 0 30px var(--color-primary-glow) !important;
  cursor: pointer;
  transition:
    color 160ms ease,
    -webkit-text-fill-color 160ms ease,
    text-shadow 160ms ease,
    filter 160ms ease,
    transform 120ms ease-out;
}

/* Eski pseudo-element katmanlarını kesin olarak kapat. */
.text-morph-dynamic.mesh-hover-text::before,
.text-morph-dynamic.mesh-hover-text::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  background: none !important;
}

.text-morph-dynamic.mesh-hover-text:hover {
  background-image:
    radial-gradient(
      circle 58px at var(--mesh-x) var(--mesh-y),
      #ffffff 0%,
      #ffffff 17%,
      rgba(255, 255, 255, 0.92) 29%,
      rgba(255, 255, 255, 0.48) 49%,
      transparent 73%
    ),
    linear-gradient(
      90deg,
      var(--color-primary) 0%,
      var(--color-primary) 100%
    );
  background-size: 100% 100%, 100% 100%;
  background-position: center, center;
  background-repeat: no-repeat;

  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
  filter:
    drop-shadow(0 0 12px var(--color-primary-glow))
    drop-shadow(0 0 22px var(--color-primary-glow));
  transform: translate(var(--mesh-shift-x), var(--mesh-shift-y));
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .text-morph-dynamic.mesh-hover-text:hover {
    background: none !important;
    color: var(--color-primary) !important;
    -webkit-text-fill-color: var(--color-primary) !important;
    text-shadow: 0 0 18px var(--color-primary-glow) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .text-morph-dynamic.mesh-hover-text {
    animation: none !important;
    transition: none !important;
  }
}

/* Product badge palette */
.badge-product,
.product-badge-animated {
  animation: badge-float-pulse 2.4s ease-in-out infinite !important;
  border: 1px solid rgba(255,255,255,0.14);
}
.badge-starter { background: linear-gradient(135deg,#2563eb,#1d4ed8) !important; color:#fff !important; box-shadow:0 0 18px rgba(37,99,235,.35) !important; }
.badge-bestseller { background: linear-gradient(135deg,#ef4444,#b91c1c) !important; color:#fff !important; box-shadow:0 0 20px rgba(239,68,68,.38) !important; }
.badge-discount { background: linear-gradient(135deg,#10b981,#047857) !important; color:#fff !important; box-shadow:0 0 20px rgba(16,185,129,.36) !important; }
.badge-new { background: linear-gradient(135deg,#8b5cf6,#6d28d9) !important; color:#fff !important; box-shadow:0 0 20px rgba(139,92,246,.35) !important; }
.badge-premium-plus { background: linear-gradient(135deg,#f59e0b,#d97706) !important; color:#111 !important; box-shadow:0 0 20px rgba(245,158,11,.35) !important; }
.badge-limited { background: linear-gradient(135deg,#ec4899,#be185d) !important; color:#fff !important; box-shadow:0 0 20px rgba(236,72,153,.35) !important; }
.badge-hardware { background: linear-gradient(135deg,#22c55e,#15803d) !important; color:#fff !important; box-shadow:0 0 20px rgba(34,197,94,.35) !important; }
.badge-default { background:linear-gradient(135deg,#475569,#334155) !important; color:#fff !important; }
@keyframes badge-float-pulse {
  0%,100% { transform:translateY(0) scale(1); filter:brightness(1); }
  50% { transform:translateY(-3px) scale(1.025); filter:brightness(1.12); }
}

/* =========================================
   Homepage content system
   ========================================= */
.home-section-block { scroll-margin-top: 110px; }
.section-kicker { display:inline-flex; align-items:center; gap:8px; color:var(--color-primary); font-size:.78rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; margin-bottom:14px; }
.section-kicker svg { width:17px; height:17px; }
.product-price small { font-size:.72rem; color:var(--color-text-muted); font-weight:500; margin-left:3px; }
.btn-3d { box-shadow:0 7px 0 color-mix(in srgb, var(--color-primary) 62%, #000), 0 18px 32px var(--color-primary-glow); transform:translateY(-3px); }
.btn-3d:hover { transform:translateY(-6px) scale(1.025); box-shadow:0 10px 0 color-mix(in srgb, var(--color-primary) 58%, #000),0 24px 38px var(--color-primary-glow); }
.btn-3d:active { transform:translateY(2px); box-shadow:0 2px 0 color-mix(in srgb, var(--color-primary) 58%, #000),0 8px 18px var(--color-primary-glow); }

/* Comparison */
.comparison-showcase { display:grid; grid-template-columns:.75fr 1.35fr; gap:42px; align-items:center; padding:34px; border:1px solid var(--color-border); border-radius:24px; background:radial-gradient(circle at 15% 20%,var(--color-primary-glow),transparent 26%),linear-gradient(145deg,#151519,#0c0c0f); box-shadow:0 28px 70px rgba(0,0,0,.4); overflow:hidden; }
.comparison-copy { position:relative; z-index:2; }
.comparison-copy h2 { font-size:clamp(2.2rem,4vw,4rem); margin-bottom:18px; }
.comparison-copy p { line-height:1.75; margin-bottom:20px; }
.comparison-points { display:grid; gap:10px; margin-bottom:26px; }
.comparison-points span { display:flex; align-items:center; gap:10px; color:#d8dbe5; font-size:.9rem; }
.comparison-points svg { width:18px; color:var(--color-primary); }
.comparison-slider { position:relative; min-height:440px; border-radius:22px; overflow:hidden; border:1px solid rgba(255,255,255,.12); background:#09090b; box-shadow:0 28px 70px rgba(0,0,0,.42); }
.comparison-slider img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; user-select:none; pointer-events:none; }
.comparison-overlay { position:absolute; inset:0; clip-path:inset(0 50% 0 0); overflow:hidden; }
.comparison-slider input[type=range] { position:absolute; inset:0; width:100%; height:100%; opacity:0; cursor:ew-resize; z-index:4; }
.comparison-line { position:absolute; top:0; bottom:0; left:50%; width:3px; background:#fff; transform:translateX(-50%); z-index:3; box-shadow:0 0 18px rgba(255,255,255,.7); pointer-events:none; }
.comparison-line span { position:absolute; left:50%; top:50%; width:58px; height:58px; border-radius:50%; display:grid; place-items:center; transform:translate(-50%,-50%); background:var(--color-primary); border:4px solid rgba(255,255,255,.9); color:#fff; box-shadow:0 12px 30px var(--color-primary-glow); }
.comparison-line svg { width:28px; height:28px; }
.comparison-label { position:absolute; top:18px; z-index:2; padding:7px 11px; background:rgba(0,0,0,.6); border:1px solid rgba(255,255,255,.14); border-radius:999px; color:#fff; font-size:.72rem; font-weight:800; letter-spacing:.08em; }
.comparison-label-left { left:18px; }.comparison-label-right { right:18px; }

/* Gallery / video */
.gallery-grid-home { display:grid; grid-template-columns:repeat(auto-fill,minmax(250px,1fr)); gap:18px; }
.gallery-card-home { appearance:none; padding:0; position:relative; border-radius:15px; overflow:hidden; border:1px solid var(--color-border); background:#0b0b0e; cursor:pointer; box-shadow:0 8px 24px rgba(0,0,0,.24); transition:.35s ease; }
.gallery-card-home:hover { transform:translateY(-8px) scale(1.018); border-color:var(--color-primary); box-shadow:0 18px 36px rgba(0,0,0,.42),0 0 22px var(--color-primary-glow); }
.gallery-card-home img { width:100%; height:220px; object-fit:cover; display:block; transition:transform .5s ease; }
.gallery-card-home:hover img { transform:scale(1.08); }
.gallery-card-home span { position:absolute; right:12px; bottom:12px; display:inline-flex; align-items:center; gap:6px; padding:7px 10px; border-radius:999px; background:rgba(0,0,0,.72); color:#fff; font-size:.72rem; border:1px solid rgba(255,255,255,.15); }
.gallery-card-home svg { width:15px; }
.video-showcase-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.video-showcase-card { border:1px solid var(--color-border); border-radius:16px; overflow:hidden; background:linear-gradient(180deg,var(--color-primary-glow),#111114 28%); box-shadow:0 12px 30px rgba(0,0,0,.28); transition:.3s ease; }
.video-showcase-card:hover { transform:translateY(-7px); border-color:var(--color-primary); box-shadow:0 20px 40px rgba(0,0,0,.4),0 0 20px var(--color-primary-glow); }
.video-frame { position:relative; padding-bottom:56.25%; height:0; background:#030304; }
.video-frame iframe { position:absolute; inset:0; width:100%; height:100%; }
.video-showcase-meta { display:flex; justify-content:space-between; align-items:center; gap:12px; padding:15px 17px; }
.video-showcase-meta strong { color:#fff; font-size:.9rem; }.video-showcase-meta span { color:var(--color-primary); font-size:.7rem; font-weight:800; letter-spacing:.1em; }
.media-lightbox { position:fixed; inset:0; z-index:9999; display:flex; align-items:center; justify-content:center; padding:32px; background:rgba(0,0,0,.9); opacity:0; visibility:hidden; transition:.25s ease; }
.media-lightbox.active { opacity:1; visibility:visible; }
.media-lightbox img { max-width:min(1120px,92vw); max-height:88vh; border-radius:18px; border:1px solid rgba(255,255,255,.13); box-shadow:0 30px 80px rgba(0,0,0,.6); transform:scale(.9); transition:.25s ease; }
.media-lightbox.active img { transform:scale(1); }
.lightbox-close { position:absolute; top:24px; right:24px; width:46px; height:46px; border-radius:50%; border:1px solid rgba(255,255,255,.14); background:rgba(255,255,255,.08); color:#fff; font-size:1.6rem; cursor:pointer; }

/* Reviews */
.carousel-controls { display:flex; gap:10px; }
.carousel-controls button { width:48px; height:48px; display:grid; place-items:center; border-radius:50%; border:1px solid var(--color-border); background:#121217; color:#fff; cursor:pointer; transition:.25s ease; }
.carousel-controls button:hover { background:var(--color-primary); border-color:var(--color-primary); transform:translateY(-3px); box-shadow:0 10px 25px var(--color-primary-glow); }
.review-carousel { overflow-x:auto; scrollbar-width:none; scroll-snap-type:x mandatory; padding:10px 4px 24px; }
.review-carousel::-webkit-scrollbar { display:none; }
.review-track { display:flex; gap:20px; width:max-content; }
.review-card-3d { width:min(370px,82vw); min-height:300px; scroll-snap-align:start; position:relative; overflow:hidden; display:flex; flex-direction:column; justify-content:space-between; padding:28px; border-radius:22px; border:1px solid var(--color-border); background:linear-gradient(145deg,#18181d,#0e0e12); box-shadow:0 18px 45px rgba(0,0,0,.34),inset 0 1px 0 rgba(255,255,255,.04); transition:.35s cubic-bezier(.2,.8,.2,1); }
.review-card-3d:hover { transform:translateY(-10px) rotateX(2deg) rotateY(-2deg); border-color:var(--color-primary); box-shadow:0 28px 55px rgba(0,0,0,.48),0 0 26px var(--color-primary-glow); }
.review-glow { position:absolute; width:180px; height:180px; border-radius:50%; right:-70px; top:-90px; background:var(--color-primary); filter:blur(75px); opacity:.22; }
.review-stars { display:flex; gap:5px; position:relative; z-index:1; }.review-stars svg { width:19px; height:19px; color:#494952; }.review-stars svg.filled { color:#fbbf24; fill:#fbbf24; filter:drop-shadow(0 0 7px rgba(251,191,36,.35)); }
.review-card-3d blockquote { position:relative; z-index:1; color:#f1f2f7; font-size:1.05rem; line-height:1.75; margin:22px 0 26px; }
.review-person { position:relative; z-index:1; display:flex; align-items:center; gap:12px; }
.review-person img,.review-person>span { width:48px; height:48px; border-radius:50%; object-fit:cover; display:grid; place-items:center; background:var(--color-primary); color:#fff; font-weight:900; }
.review-person div { flex:1; }.review-person strong { display:block; color:#fff; }.review-person small { color:var(--color-text-muted); font-size:.78rem; }.review-verified { color:#3b82f6; fill:rgba(59,130,246,.16); }

/* FAQ */
.faq-layout { display:grid; grid-template-columns:.65fr 1.35fr; gap:50px; align-items:start; }
.faq-intro { position:sticky; top:120px; }.faq-intro h2 { font-size:clamp(2.4rem,4vw,4rem); margin-bottom:16px; }.faq-intro p { margin-bottom:24px; }
.faq-list { display:grid; gap:12px; }.faq-item { border:1px solid var(--color-border); border-radius:14px; background:#111115; overflow:hidden; transition:.25s ease; }.faq-item.open { border-color:var(--color-primary); box-shadow:0 14px 34px rgba(0,0,0,.3),0 0 18px var(--color-primary-glow); }
.faq-question { width:100%; display:flex; align-items:center; justify-content:space-between; gap:18px; padding:20px 22px; border:0; background:transparent; color:#fff; text-align:left; font:700 1rem var(--font-display); cursor:pointer; }.faq-question svg { flex:0 0 auto; color:var(--color-primary); transition:.25s ease; }.faq-item.open .faq-question svg { transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .35s ease; }.faq-answer p { padding:0 22px 22px; line-height:1.7; }.faq-item.open .faq-answer { max-height:360px; }

/* Rating strip */
.rating-strip-section { padding-top:18px; padding-bottom:18px; }
.rating-strip { display:grid; grid-template-columns:1.2fr .7fr .8fr 1.3fr; gap:24px; align-items:center; padding:24px 28px; border-top:1px solid var(--color-border); border-bottom:1px solid var(--color-border); background:rgba(255,255,255,.012); }
.rating-strip>div { display:flex; align-items:baseline; gap:12px; }.rating-strip span { color:var(--color-text-muted); font-size:.9rem; }.rating-strip strong { color:#fff; font-size:1.15rem; }.rating-brand { display:inline-flex; align-items:center; gap:8px; }.rating-brand svg { color:#fbbf24; width:18px; }.rating-strip p { display:flex; align-items:center; gap:9px; justify-self:end; font-size:.86rem; }.rating-strip p svg { color:#fbbf24; }

/* Feature highlights */
.highlight-heading { display:grid; grid-template-columns:1fr .75fr; gap:40px; align-items:end; margin-bottom:44px; }.highlight-heading h2 { font-size:clamp(2.5rem,4vw,4rem); }.highlight-heading>p { line-height:1.75; }
.highlight-card-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:20px; }
.highlight-3d-card { min-height:330px; display:flex; flex-direction:column; justify-content:space-between; padding:28px; border-radius:24px; border:1px solid rgba(255,255,255,.055); background:linear-gradient(155deg,#19191e,#101013); box-shadow:0 20px 50px rgba(0,0,0,.32),inset 0 1px 0 rgba(255,255,255,.035); transition:.38s cubic-bezier(.2,.8,.2,1); overflow:hidden; position:relative; }
.highlight-3d-card::after { content:''; position:absolute; inset:auto -30% -55% 15%; height:55%; background:var(--color-primary); filter:blur(75px); opacity:.18; transition:.4s ease; }.highlight-3d-card:hover { transform:translateY(-12px) rotateX(3deg); border-color:var(--color-primary); box-shadow:0 30px 60px rgba(0,0,0,.48),0 0 24px var(--color-primary-glow); }.highlight-3d-card:hover::after { opacity:.3; transform:translateY(-20px); }
.highlight-3d-icon { width:150px; height:150px; align-self:center; display:grid; place-items:center; border-radius:38% 62% 55% 45%/45% 44% 56% 55%; color:#fff; background:linear-gradient(145deg,var(--color-primary-hover),var(--color-primary)); box-shadow:inset 12px 12px 28px rgba(255,255,255,.13),inset -16px -16px 30px rgba(0,0,0,.26),0 28px 40px var(--color-primary-glow); transform:rotate(-5deg); animation:featureFloat 5s ease-in-out infinite; }.highlight-3d-icon svg { width:66px; height:66px; stroke-width:1.7; filter:drop-shadow(0 8px 12px rgba(0,0,0,.35)); }.highlight-3d-card h3 { font-size:1.35rem; margin-bottom:8px; }.highlight-3d-card p { font-size:.92rem; }
@keyframes featureFloat { 0%,100%{transform:translateY(0) rotate(-5deg)}50%{transform:translateY(-9px) rotate(2deg)} }

/* Trust cards */
.trust-card-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }.trust-card { display:flex; align-items:center; gap:12px; padding:16px; background:#09090b; border:1px solid var(--color-border); border-radius:12px; transition:.25s ease; }.trust-card:hover { transform:translateY(-3px); border-color:#22c55e; }.trust-icon { width:42px; height:42px; border-radius:10px; display:grid; place-items:center; color:#4ade80; background:rgba(34,197,94,.1); border:1px solid rgba(34,197,94,.22); flex:0 0 auto; }.trust-card small { display:block;color:var(--color-text-muted);font-size:.77rem;margin-top:3px; }.reverse-feature { direction:rtl; }.reverse-feature>* { direction:ltr; }.compat-warning { margin-top:16px;padding:12px 14px;border-left:3px solid #f59e0b;background:rgba(245,158,11,.08);color:#fbbf24;font-size:.86rem;border-radius:6px; }.compat-list { display:grid; gap:10px; }.compat-item { display:flex; justify-content:space-between; align-items:center; gap:14px; padding:15px 16px; background:#09090b; border:1px solid var(--color-border); border-radius:10px; }.compat-item span { font-weight:700; }.compat-item small { display:block;color:var(--color-text-muted);font-weight:400;font-size:.75rem;margin-top:3px; }.compat-item b { display:inline-flex;align-items:center;gap:6px;color:#4ade80;font-size:.76rem;white-space:nowrap; }.compat-item svg { width:17px; }

/* Latest blogs */
.latest-blog-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:20px; }.latest-blog-card { display:flex; flex-direction:column; min-width:0; border:1px solid var(--color-border); border-radius:17px; overflow:hidden; background:#111115; transition:.3s ease; }.latest-blog-card:hover { transform:translateY(-8px); border-color:var(--color-primary); box-shadow:0 18px 38px rgba(0,0,0,.4),0 0 18px var(--color-primary-glow); }.latest-blog-image { height:190px; overflow:hidden; }.latest-blog-image img { width:100%;height:100%;object-fit:cover;transition:.5s ease; }.latest-blog-card:hover img { transform:scale(1.08); }.latest-blog-body { display:flex;flex-direction:column;flex:1;padding:20px; }.latest-blog-body time { color:var(--color-primary);font-size:.75rem;margin-bottom:8px; }.latest-blog-body h3 { font-size:1.2rem;line-height:1.35;margin-bottom:12px; }.latest-blog-body p { font-size:.85rem;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;margin-bottom:18px; }.latest-blog-body .btn { margin-top:auto;padding:10px 14px;font-size:.76rem; }

/* Real-order notification */
.recent-order-popup { position:fixed; z-index:9900; display:flex; align-items:center; gap:12px; width:min(430px,calc(100vw - 28px)); padding:14px 16px; border-radius:999px; background:linear-gradient(135deg,var(--popup-color),color-mix(in srgb,var(--popup-color) 76%,#000)); color:#fff; border:1px solid rgba(255,255,255,.25); box-shadow:0 18px 45px color-mix(in srgb,var(--popup-color) 32%,transparent); opacity:0; visibility:hidden; transform:translateY(24px) scale(.95); transition:.35s cubic-bezier(.2,.8,.2,1); }.recent-order-popup.show { opacity:1;visibility:visible;transform:translateY(0) scale(1); }.popup-bottom-left{left:22px;bottom:22px}.popup-bottom-right{right:22px;bottom:22px}.popup-top-left{left:22px;top:22px}.popup-top-right{right:22px;top:22px}.recent-order-icon { width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.16);flex:0 0 auto; }.recent-order-icon svg { width:21px; }.recent-order-popup div { flex:1;min-width:0; }.recent-order-popup strong { display:block;font-size:.92rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis; }.recent-order-popup small { display:block;color:rgba(255,255,255,.82);font-size:.73rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin-top:2px; }.recent-order-popup button { width:30px;height:30px;border-radius:50%;border:0;background:rgba(0,0,0,.16);color:#fff;cursor:pointer; }

@media(max-width:1100px){.comparison-showcase{grid-template-columns:1fr}.comparison-slider{min-height:400px}.video-showcase-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.highlight-card-grid,.latest-blog-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.rating-strip{grid-template-columns:repeat(2,minmax(0,1fr))}.rating-strip p{justify-self:start}.faq-layout{grid-template-columns:1fr}.faq-intro{position:static}.highlight-heading{grid-template-columns:1fr}}
@media(max-width:720px){.comparison-showcase{padding:22px;gap:28px}.comparison-slider{min-height:300px}.video-showcase-grid,.highlight-card-grid,.latest-blog-grid,.trust-card-grid{grid-template-columns:1fr}.rating-strip{grid-template-columns:1fr;padding:20px}.rating-strip>div{justify-content:space-between}.section-header{align-items:flex-start}.carousel-controls{margin-top:10px}.highlight-3d-card{min-height:290px}.comparison-line span{width:50px;height:50px}.recent-order-popup{border-radius:16px;left:14px!important;right:14px!important;bottom:14px!important;top:auto!important;width:auto}.feature-row,.reverse-feature{grid-template-columns:1fr!important;direction:ltr!important}.compat-item{align-items:flex-start;flex-direction:column}}

/* Platform status trust panel */
.compat-trust-points{display:grid;gap:9px;margin-top:18px}.compat-trust-points span{display:flex;align-items:center;gap:9px;color:#dce3df;font-size:.88rem}.compat-trust-points svg{width:18px;height:18px;color:#4ade80;filter:drop-shadow(0 0 7px rgba(74,222,128,.45))}.compat-status-card{position:relative;overflow:hidden}.compat-status-card::before{content:'';position:absolute;inset:0 auto 0 0;width:3px;background:#22c55e;box-shadow:0 0 16px rgba(34,197,94,.7)}.compat-status-card b svg{animation:compat-check-pulse 2s ease-in-out infinite}@keyframes compat-check-pulse{0%,100%{filter:drop-shadow(0 0 2px rgba(74,222,128,.35));transform:scale(1)}50%{filter:drop-shadow(0 0 10px rgba(74,222,128,.8));transform:scale(1.08)}}
