/* =========================================
   LensFuzyon.com — Design System & Styles
   ========================================= */

/* --- Google Fonts --- */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=JetBrains+Mono:wght@400;500&display=swap");

/* --- Design Tokens --- */
:root {
  /* Colors */
  --color-bg: #0a0a0f;
  --color-surface: #1c1c24;
  --color-surface-2: #25252f;
  --color-accent: #e8ff47;
  --color-accent-2: #ff6b35;
  --color-text: #f0f0f5;
  --color-text-muted: #8888a0;
  --color-border: rgba(255, 255, 255, 0.06);

  /* Typography */
  --font-display: "Bebas Neue", "Impact", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "Consolas", monospace;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.375rem;
  --space-md: 0.75rem;
  --space-lg: 1.25rem;
  --space-xl: 1.75rem;
  --space-2xl: 2.75rem;
  --space-3xl: 3.75rem;

  /* Transitions */
  --ease-fast: 150ms ease;
  --ease-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow: 600ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-width: 1400px;
    --nav-height: 72px;
  --banner-height: 40px;


  /* Misc */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* scroll-behavior: smooth KASITLI olarak kaldırıldı:
     GSAP ScrollTrigger pin/scrub ile çakışıp hero scroll-through'u kararsız yapıyordu. */
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  /* overflow-x:hidden -> overflow-x:clip:
     hidden body'yi dikey scroll konteynerine çevirip ScrollTrigger'ın
     position:fixed pin'ini bozuyordu. clip yatay taşmayı kırpar ama konteyner yaratmaz. */
  overflow-x: clip;
  position: relative;
}

/* Grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul,
ol {
  list-style: none;
}

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    var(--color-accent-2) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color-accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  letter-spacing: 1.5px;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 620px;
  line-height: 1.6;
}

/* Fade-in animation class */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity var(--ease-slow),
    transform var(--ease-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-xl);
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition:
    background var(--ease-base),
    box-shadow var(--ease-base);
}

.navbar.scrolled {
  background: transparent !important;
  backdrop-filter: blur(18px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(160%) !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 4px;
  color: var(--color-text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

@media (min-width: 1025px) {
  .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  transition: color var(--ease-base);
}

.nav-links a:not(.btn-cta):hover {
  color: var(--color-text);
}

.nav-links a:not(.btn-cta)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--ease-base);
}

.nav-links a:not(.btn-cta):hover::after {
  width: 100%;
}

/* CTA Button */
.btn-cta {
  background: var(--color-accent);
  color: var(--color-bg) !important;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition:
    transform var(--ease-base),
    box-shadow var(--ease-base);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 255, 71, 0.25);
}

/* ============================================================
   MEGAMENU STYLES
   ============================================================ */
.nav-item.has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.nav-item.has-dropdown:hover .dropdown-arrow,
.nav-item.has-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--color-accent);
}

/* MegaMenu Dropdown Panel */
.megamenu-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(14, 14, 22, 0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 40px rgba(232, 255, 71, 0.05);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.3s;
  z-index: 1200;
}

/* Invisible bridge element to prevent mouse hover drop between link and dropdown */
.megamenu-dropdown::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}

.nav-item.has-dropdown:hover .megamenu-dropdown,
.nav-item.has-dropdown.active .megamenu-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.megamenu-inner {
  display: flex;
  gap: 24px;
  width: max-content;
}

.megamenu-col {
  display: flex;
  flex-direction: column;
  width: 250px;
}

.megamenu-cat-title {
  font-size: 0.70rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-accent);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.megamenu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.megamenu-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-md);
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.2s ease;
}

.megamenu-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(3px);
}

.megamenu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text);
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.megamenu-item:hover .megamenu-icon {
  background: var(--color-accent);
  color: #0a0a0f;
  border-color: var(--color-accent);
  transform: scale(1.06);
}

.megamenu-text strong {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
  transition: color 0.2s ease;
}

.megamenu-item:hover .megamenu-text strong {
  color: var(--color-accent);
}

.megamenu-text p {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.35;
  margin-top: 2px;
  font-weight: 400;
}

/* Mobile Accordion Styles */
.mobile-dropdown-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 0;
  cursor: pointer;
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding-left: 14px;
  margin-bottom: 10px;
  border-left: 2px solid var(--color-accent);
}

.mobile-dropdown-content.open {
  display: flex;
}

.mobile-dropdown-content a {
  font-size: 0.9rem !important;
  color: var(--color-text-muted) !important;
  padding: 4px 0 !important;
}

.mobile-dropdown-content a:hover {
  color: var(--color-accent) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--ease-base);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 3px;
  color: var(--color-text);
  transition: color var(--ease-base);
}

.mobile-menu a:hover {
  color: var(--color-accent);
}

/* ===========================
   HERO SLIDER (NEW)
   =========================== */
.hero-slider {
  min-height: 80vh;
  max-height: 720px;
  /* Sayfa üstünden başlar — fixed elemanlar (ticker, nav) üzerine biner */
  margin-top: 0;
  padding: 0 !important;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(232, 255, 71, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
              var(--color-bg);
}

.slider-track {
  width: 100%;
  height: 80vh;
  max-height: 720px;
  position: relative;
  z-index: 2; /* .hero-bg-video-fixed (z-index:0) üzerinde kalır */
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Üstte ticker + navbar yüksekliği kadar boşluk — içerik görünür alanda ortalanır */
  padding: calc(var(--banner-height) + var(--nav-height) + 1rem) var(--space-xl) var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--ease-slow), visibility 1s var(--ease-slow);
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide .hero-bg,
.hero-slide .hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-slide .hero-bg {
  background-size: cover;
  background-position: center;
}

/* Video arka plan (slide içinde — eski yapı için geriye uyumlu) */
.hero-slide .hero-bg-video {
  overflow: hidden;
}

/* ─── Sabit Arka Plan Video (slider'dan bağımsız) ─── */
.hero-bg-video-fixed {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-video-fixed::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      transparent                   0%,
      transparent                  18%,
      rgba(10, 10, 15, 0.45)       55%,
      rgba(10, 10, 15, 0.70)       85%,
      var(--color-bg)             100%),
    linear-gradient(to right,
      rgba(10, 10, 15, 0.80)        0%,
      rgba(10, 10, 15, 0.10)       60%,
      transparent                 100%);
  z-index: 1;
}

.hero-bg-video-fixed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.hero-slide .hero-bg::after,
.hero-slide .hero-bg-video::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Üst kısım şeffaf — görsel navbar + ticker arkasından görünür.
     Sol taraf metin okunabilirliği için koyu, alt kısım sayfaya bağlanır. */
  background:
    linear-gradient(to bottom,
      transparent                   0%,
      transparent                  18%,
      rgba(10, 10, 15, 0.45)       55%,
      rgba(10, 10, 15, 0.70)       85%,
      var(--color-bg)             100%),
    linear-gradient(to right,
      rgba(10, 10, 15, 0.80)        0%,
      rgba(10, 10, 15, 0.10)       60%,
      transparent                 100%);
  z-index: 1;
}

.hero-content {
  max-width: 850px;
  transform: translateY(30px);
  transition: transform 1.2s var(--ease-slow), opacity 1.2s var(--ease-slow);
  opacity: 0;
  position: relative;
  z-index: 2;
}

.hero-slide.active .hero-content {
  transform: translateY(0);
  opacity: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(232, 255, 71, 0.1);
  border: 1px solid rgba(232, 255, 71, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
  color: #fff;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 580px;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

/* Slider Controls */
.slider-nav {
  position: absolute;
  bottom: var(--space-xl);
  right: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  z-index: 10;
}

.slider-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: rgba(255,255,255,0.03);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--ease-base);
  backdrop-filter: blur(10px);
}

.slider-arrow:hover {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 4px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  transition: all var(--ease-base);
  cursor: pointer;
}

.dot.active {
  width: 32px;
  background: var(--color-accent);
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 5;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Gradient Orb (hero fallback background blob) */
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.35;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-accent) 0%, var(--color-accent-2) 60%, transparent 100%);
  top: -100px;
  right: -100px;
}

/* ===========================
   SECTIONS COMMON
   =========================== */
section {
  padding: 3.25rem 0;
  position: relative;
}

.section-header {
  margin-bottom: var(--space-xl);
}

/* ===========================
   SERVICES
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--ease-slow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card.featured {
  background: linear-gradient(145deg, rgba(28, 28, 36, 1) 0%, rgba(45, 45, 55, 1) 100%);
  border: 1px solid rgba(232, 255, 71, 0.25);
  box-shadow: 0 0 50px rgba(232, 255, 71, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease-base);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: var(--color-accent);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(232, 255, 71, 0.1);
}

.service-img-preview {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-lg);
  position: relative;
}

.service-img-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}

.service-card:hover .service-img-preview img {
  transform: scale(1.1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(232, 255, 71, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

.service-card.featured .service-icon {
  background: var(--color-accent);
  color: var(--color-bg);
  box-shadow: 0 0 25px rgba(232, 255, 71, 0.4);
}

/* Seçicisi kaybolmuş kural — bildirimler sahipsiz kaldığı için
   tarayıcı tarafından yok sayılıyordu. Kart açıklaması geri geldi. */
.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: gap var(--ease-base);
}

.service-link:hover {
  gap: var(--space-md);
}

/* ===========================
   ÇALIŞMA SÜRECİ (PROCESS SECTION)
   =========================== */
.process-section {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

.process-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(circle, rgba(232, 255, 71, 0.03) 0%, rgba(255, 107, 53, 0.02) 50%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  position: relative;
  z-index: 1;
}

/* Connective accent line behind numbers on desktop */
@media (min-width: 1025px) {
  .process-grid::before {
    content: "";
    position: absolute;
    top: 62px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, 
      rgba(232, 255, 71, 0.15) 0%, 
      rgba(229, 46, 46, 0.4) 50%, 
      rgba(232, 255, 71, 0.15) 100%
    );
    z-index: 0;
  }
}

.process-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 20px 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform var(--ease-base), border-color var(--ease-base), box-shadow var(--ease-base);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 255, 71, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 25px rgba(232, 255, 71, 0.1);
}

.process-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d61c1c 0%, #ff3b3b 100%);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(214, 28, 28, 0.45);
  position: relative;
  z-index: 2;
  transition: transform var(--ease-spring), box-shadow var(--ease-base);
}

.process-card:hover .process-badge {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(255, 59, 59, 0.6);
}

.process-card-title {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
  line-height: 1.3;
}

.process-card-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Process section responsive layout */
@media (max-width: 1200px) {
  .process-grid {
    gap: 16px;
  }
  .process-card {
    padding: 30px 16px 24px 16px;
  }
  .process-card-title {
    font-size: 1.15rem;
  }
  .process-card-desc {
    font-size: 0.88rem;
  }
}

@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ===========================
   COUNTERS
   =========================== */
.counters {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
  padding: var(--space-xl) 0;
}

.counter-item {
  padding: var(--space-lg);
}

.counter-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--color-accent);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.counter-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===========================
   PORTFOLIO
   =========================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--color-surface);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 15, 0.9) 0%,
    transparent 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
  opacity: 0;
  transition: opacity var(--ease-base);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay .tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-xs);
}

.portfolio-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.portfolio-more {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Masonry variant for featured items */
.portfolio-grid .portfolio-item:nth-child(1) {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* filter tabs */
.filter-tabs {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.filter-tab {
  background: var(--color-surface);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--ease-base);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: var(--space-lg);
  transition: transform var(--ease-slow);
}

.testimonial-card {
  min-width: calc(33.333% - var(--space-lg));
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  flex-shrink: 0;
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1rem;
}

.testimonial-author-info h5 {
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--ease-base);
}

.testimonial-dot.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.2);
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(232, 255, 71, 0.05) 0%,
    rgba(255, 107, 53, 0.05) 100%
  );
  border-radius: var(--radius-lg);
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  letter-spacing: 1.5px;
  margin-bottom: var(--space-sm);
  position: relative;
}

.cta-banner p {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: var(--space-lg);
  position: relative;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: var(--space-md);
  max-width: 300px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--ease-base);
}

.footer-socials a:hover {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col ul li a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: color var(--ease-base);
}

.footer-col ul li a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  transition: color var(--ease-base);
}

.footer-bottom-links a:hover {
  color: var(--color-accent);
}

/* ===========================
   HIZMETLER PAGE
   =========================== */
.page-header {
  padding: calc(var(--nav-height) + var(--banner-height) + 1.25rem) 0 1.5rem;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(232, 255, 71, 0.03) 0%,
    transparent 100%
  );
}

.service-detail {
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--color-border);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.service-detail:nth-child(even) .service-detail-grid {
  direction: rtl;
}

.service-detail:nth-child(even) .service-detail-grid > * {
  direction: ltr;
}

.service-detail-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  letter-spacing: 1.5px;
  margin-bottom: var(--space-md);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--ease-base);
}

.service-list-item:hover {
  border-color: rgba(232, 255, 71, 0.15);
  transform: translateX(4px);
}

.service-list-item .check {
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* İlgili Paketler (hizmetler.html ↔ urunler.html bağlantısı) */
.service-related {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.service-related-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.service-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: var(--space-md);
}

.srp-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: transform var(--ease-base), border-color var(--ease-base);
}

.srp-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.srp-img {
  height: 80px;
  background: #000;
  overflow: hidden;
}

.srp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.srp-body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.srp-title {
  font-size: 0.82rem;
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.3;
}

.srp-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-accent);
}

.service-related-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity var(--ease-base);
}

.service-related-more:hover {
  opacity: 0.75;
}

.service-related-empty {
  margin-top: var(--space-md);
}

.urun-card-cat-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
}

.urun-card-cat-link:hover {
  color: var(--color-text);
}

.service-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  aspect-ratio: 4/3;
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  letter-spacing: 1.5px;
  margin-bottom: var(--space-md);
}

.about-intro-text p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.mv-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.mv-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
  color: var(--color-accent);
}

.mv-card p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.process-step {
  text-align: center;
  padding: var(--space-xl);
  position: relative;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--color-border);
}

.process-step:last-child::after {
  display: none;
}

.process-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  line-height: 1;
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-sm);
}

.process-step p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.team-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--ease-base);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 255, 71, 0.15);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--color-surface-2);
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-bottom: var(--space-xs);
}

.team-card .role {
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
}

.team-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all var(--ease-base);
}

.team-socials a:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-info-item .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(232, 255, 71, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-info-item h5 {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 1rem;
  color: var(--color-text);
}

.contact-form-wrapper {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--ease-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--color-accent);
  color: var(--color-bg);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--ease-base);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 255, 71, 0.25);
}

/* ===========================
   COOKIE BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform var(--ease-slow);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  max-width: 700px;
}

.cookie-banner p a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--ease-base);
}

.cookie-reject {
  background: transparent;
  color: var(--color-text-muted);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.85rem;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--ease-base);
}

/* ===========================
   RESPONSIVE
   =========================== */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid .portfolio-item:nth-child(1) {
    grid-row: auto;
    aspect-ratio: 4/3;
  }

  .testimonial-card {
    min-width: calc(50% - var(--space-lg));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) .service-detail-grid {
    direction: ltr;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step::after {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --space-xl: 1.5rem;
    --space-2xl: 2.5rem;
    --space-3xl: 3.5rem;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-top: calc(var(--nav-height) + var(--space-xl));
  }

  .hero-title {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* Wide */
@media (min-width: 1440px) {
  .container {
    max-width: var(--max-width);
  }
}

/* ===========================
   FLOATING SOCIAL BUTTONS
   =========================== */
.floating-social-buttons {
  position: fixed;
  bottom: calc(var(--space-xl) + 80px); /* Stacked above chatbot toggle */
  right: var(--space-xl);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* ── WhatsApp Konuşma Balonu ── */
.wa-bubble-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.wa-bubble {
  background: #fff;
  color: #111;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 9px 14px;
  border-radius: 18px 18px 4px 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  white-space: nowrap;
  max-width: 220px;
  white-space: normal;
  position: relative;
  margin-right: 10px;
  /* hidden by default */
  opacity: 0;
  transform: scale(0.85) translateX(10px);
  transform-origin: right center;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

/* Küçük ok (sağa bakan) */
.wa-bubble::after {
  content: '';
  position: absolute;
  right: -8px;
  bottom: 6px;
  border: 5px solid transparent;
  border-left-color: #fff;
}

/* Aktif / görünür durum */
.wa-bubble.visible {
  opacity: 1;
  transform: scale(1) translateX(0);
  pointer-events: auto;
}

/* Çıkış animasyonu */
.wa-bubble.hiding {
  opacity: 0;
  transform: scale(0.85) translateX(10px);
}

/* Base style for floating buttons */
.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
  outline: none;
}

.float-whatsapp {
  background: #25D366;
  animation: whatsapp-breath 3s infinite ease-in-out;
}

.float-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  animation: instagram-breath 3s infinite ease-in-out;
  animation-delay: 0.5s;
}

.float-btn:hover {
  transform: scale(1.12) translateY(-2px);
}

.float-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Breathing Animations */
@keyframes whatsapp-breath {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4), 0 0 0 0px rgba(37, 211, 102, 0.3);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4), 0 0 0 0px rgba(37, 211, 102, 0);
  }
}

@keyframes instagram-breath {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 14px rgba(220, 39, 67, 0.4), 0 0 0 0px rgba(220, 39, 67, 0.3);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 6px 22px rgba(220, 39, 67, 0.6), 0 0 0 10px rgba(220, 39, 67, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 14px rgba(220, 39, 67, 0.4), 0 0 0 0px rgba(220, 39, 67, 0);
  }
}

/* Adjust position if chatbot toggle changes or is hovered */
@media (max-width: 640px) {
  .floating-social-buttons {
    bottom: calc(var(--space-xl) + 70px);
    right: var(--space-xl);
  }
  .float-btn {
    width: 48px;
    height: 48px;
  }
}

/* ===========================
   CHATBOT WIDGET
   =========================== */
.chatbot-widget {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chatbot-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 12px 18px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(232, 255, 71, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  max-width: 60px; /* Sadece ikon görünecek genişlik */
  white-space: nowrap;
}

.chatbot-toggle:hover {
  max-width: 250px; /* Metin için genişler */
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(232, 255, 71, 0.4);
}

.chatbot-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.chatbot-text {
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.3s var(--ease-base);
}

.chatbot-toggle:hover .chatbot-text {
  opacity: 1;
  transition-delay: 0.1s;
}

.chatbot-panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 500px;
  max-height: calc(100vh - 120px);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom right;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.chatbot-panel.open,
#chatbotPanel.open {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
  visibility: visible !important;
}

.chatbot-header {
  padding: var(--space-md) var(--space-lg);
  background: var(--color-surface-2);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.chatbot-header h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.chatbot-status {
  font-size: 0.75rem;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 4px;
}

.chatbot-status::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
}

.chatbot-close {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--ease-base);
}

.chatbot-close:hover {
  color: var(--color-text);
}

.chatbot-messages {
  flex: 1;
  padding: var(--space-lg);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  /* Scrollbar gizleme için */
  scrollbar-width: thin;
  scrollbar-color: var(--color-surface-2) transparent;
}

.chatbot-messages::-webkit-scrollbar {
  width: 6px;
}
.chatbot-messages::-webkit-scrollbar-thumb {
  background-color: var(--color-surface-2);
  border-radius: 10px;
}

.message {
  max-width: 85%;
  animation: fadeIn 0.3s ease;
}

.bot-message {
  align-self: flex-start;
}

.bot-message .message-content {
  background: var(--color-surface-2);
  padding: 12px 16px;
  border-radius: 12px 12px 12px 0;
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.5;
  border: 1px solid var(--color-border);
}

.user-message {
  align-self: flex-end;
}

.user-message .message-content {
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 12px 16px;
  border-radius: 12px 12px 0 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 500;
}

.chatbot-input-area {
  padding: var(--space-md);
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: var(--space-sm);
  background: var(--color-surface);
}

.chatbot-input {
  flex: 1;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 10px 16px;
  color: var(--color-text);
  font-size: 0.9rem;
}

.chatbot-input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.chatbot-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-bg);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--ease-base);
  flex-shrink: 0;
}

.chatbot-send:hover {
  transform: scale(1.05);
}

.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 5px 0;
}

.dot {
  width: 6px;
  height: 6px;
  background: var(--color-text-muted);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) { animation-delay: -0.32s; }
.dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

@media (max-width: 640px) {
  .chatbot-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    bottom: 0;
    border-radius: 0;
  }
}

/* ===========================
   BLOG SECTION & GRID
   =========================== */
.blog-section {
    padding: var(--space-lg) 0 var(--space-3xl);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ===========================
   BLOG CARDS (PREMIUM)
   =========================== */
.blog-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--ease-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.blog-card-image {
    width: 100%;
    height: 160px; /* Fotoğraf alanı küçültüldü */
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ease-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: var(--space-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.8rem; /* Yazı büyütüldü */
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.blog-card-excerpt {
    font-size: 1.05rem; /* Özet metni büyütüldü */
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    margin-top: auto;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

.blog-card-link {
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--ease-base);
}

.blog-card:hover .blog-card-link {
    color: var(--color-accent);
    gap: 12px;
}

/* ============================================================
   MOTION UX LAYER — Framer Motion-style animasyonlar
   ============================================================ */

/* ── Cursor Glow ── */
#lf-cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    circle at center,
    rgba(232, 255, 71, 0.05) 0%,
    transparent 65%
  );
  mix-blend-mode: screen;
  will-change: transform;
  transition: width 0.45s ease, height 0.45s ease;
}

#lf-cursor-glow.active {
  width: 660px;
  height: 660px;
}

/* ── Service Card 3D Tilt (JS sınıfı gelince aktifleşir) ── */
.services-grid {
  perspective: 1200px;
}

.service-card {
  transform-style: preserve-3d;
  position: relative;
}

/* Card yüzeyinde mouse takibi ile parlayan shine */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--shine-x, 50%) var(--shine-y, 50%),
    rgba(255, 255, 255, 0.07) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.service-card:hover::after {
  opacity: 1;
}

/* JS tilt devredeyken CSS hover transform'u devre dışı bırak */
.service-card.js-tilt:hover {
  transform: none;
}

/* Sınır rengi ve gölge kalır — sadece CSS transform iptal edildi */
.service-card.js-tilt:hover {
  border-color: var(--color-accent);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.55), 0 0 40px rgba(232, 255, 71, 0.1);
}

/* ── Float butonlar — JS öncesi geçiş çakışmasını önle ── */
.float-btn {
  will-change: transform, opacity;
}

/* ── Navbar entrance placeholder — JS öncesi gizlilik ── */
.navbar {
  will-change: transform, opacity;
}

/* ── Footer kolonları için smooth transition ── */
.footer-brand,
.footer-col {
  will-change: transform, opacity;
}

/* ── Chatbot panel — Motion animasyonu kullanır ── */
#chatbotPanel {
  transform-origin: bottom right;
}

/* ── Buton press geri bildirimi ── */
.btn-primary,
.btn-cta,
.btn-secondary {
  will-change: transform;
}

/* ── Antigravity Geliştirmeleri (1507.md) ── */

.hero-scroll {
  cursor: pointer;
  text-decoration: none;
}

.service-list-item {
  cursor: pointer;
}

.portfolio-item {
  cursor: pointer;
}

/* Portfolio Lightbox Modal */
.portfolio-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.portfolio-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.lightbox-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  background: var(--color-bg);
  max-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-img-wrapper img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.lightbox-info {
  text-align: center;
  color: var(--color-text);
}

.lightbox-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: var(--space-xs);
}

.lightbox-info .tag {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(232, 255, 71, 0.1);
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid rgba(232, 255, 71, 0.2);
}

.lightbox-close {
  position: absolute;
  top: 40px;
  right: 40px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10001;
  transition: transform 0.3s, color 0.3s;
}

.lightbox-close:hover {
  transform: rotate(90deg) scale(1.1);
  color: var(--color-accent);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10001;
}

.lightbox-nav:hover {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}

.lightbox-prev {
  left: 40px;
}

.lightbox-next {
  right: 40px;
}

/* Service Detail Modal */
.service-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.service-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.service-modal-content {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.service-modal.active .service-modal-content {
  transform: translateY(0);
}

.service-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}

.service-modal-close:hover {
  color: var(--color-accent);
}

.service-modal-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.service-modal-header .icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(232, 255, 71, 0.1);
  border: 1px solid rgba(232, 255, 71, 0.2);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.service-modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.service-modal-body p {
  color: var(--color-text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: var(--space-xl);
}

.service-modal-footer {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .lightbox-close {
    top: 20px;
    right: 20px;
  }
  .lightbox-nav {
    bottom: 20px;
    top: auto;
    transform: none;
  }
  .lightbox-prev {
    left: 20vw;
  }
  .lightbox-next {
    right: 20vw;
  }
  .lightbox-content {
    max-width: 95%;
  }
}

/* ============================================================
   ÜRÜNLER / PAKETLER SAYFASI
   ============================================================ */
.breadcrumb { font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: var(--space-md); letter-spacing: 0.5px; }
.breadcrumb a { color: var(--color-text-muted); text-decoration: none; transition: color .25s; }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb span { margin: 0 6px; }

.urun-trust-badges {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin: 8px 0 40px;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-full); padding: 10px 18px;
  font-size: 0.85rem; color: var(--color-text); font-weight: 500;
}
.trust-badge span { font-size: 1rem; }

.urunler-section { padding: 20px 0 var(--space-3xl); }

/* Toolbar */
.urunler-toolbar {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
  margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--color-border);
}
.urun-categories { display: flex; flex-wrap: wrap; gap: 10px; }
.urun-cat-chip {
  background: var(--color-surface); border: 1px solid var(--color-border);
  color: var(--color-text-muted); padding: 9px 18px; border-radius: var(--radius-full);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: all .25s;
}
.urun-cat-chip:hover { color: var(--color-text); border-color: var(--color-accent); }
.urun-cat-chip.active { background: var(--color-accent); color: #0a0a0f; border-color: var(--color-accent); }

.urun-controls { display: flex; gap: 12px; align-items: center; }
.urun-search {
  display: flex; align-items: center; gap: 8px;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-full); padding: 8px 16px; color: var(--color-text-muted);
}
.urun-search input {
  background: none; border: none; outline: none; color: var(--color-text);
  font-family: var(--font-body); font-size: 0.9rem; width: 160px;
}
.urun-search input::placeholder { color: var(--color-text-muted); }
.urun-sort {
  background: var(--color-surface); border: 1px solid var(--color-border);
  color: var(--color-text); border-radius: var(--radius-full); padding: 10px 16px;
  font-family: var(--font-body); font-size: 0.9rem; cursor: pointer; outline: none;
}
.urun-sort option { background: var(--color-surface); color: var(--color-text); }

/* --- Modern Grid & Derli Toplu Compact Kart Yapısı --- */
.urunler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 280px));
  gap: 20px;
  justify-content: center;
}

.urun-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 330px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.urun-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 255, 71, 0.4);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(232, 255, 71, 0.1);
}

.urun-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  background: linear-gradient(135deg, var(--color-accent) 0%, #c4db1f 100%);
  color: #0a0a0f;
  font-weight: 700;
  font-size: 0.65rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.urun-card-img {
  height: 145px;
  position: relative;
  overflow: hidden;
  background: #000;
}

.urun-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.urun-card:hover .urun-card-img img {
  transform: scale(1.08);
}

.urun-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-surface) 0%, transparent 65%);
  z-index: 1;
}

/* Static Card Content (Temiz Compact Varsayılan Görünüm) */
.urun-card-body {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 2;
}

.urun-card-cat {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 4px;
}

.urun-card-cat-link {
  color: var(--color-accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
.urun-card-cat-link:hover {
  opacity: 0.8;
}

.urun-card-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.urun-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.urun-stars {
  color: #ffc531;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.urun-rating-num {
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.urun-card-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.urun-card-price {
  font-family: var(--font-body);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.3px;
}

.urun-price-note {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-left: 3px;
}

.urun-hover-indicator {
  font-size: 0.78rem;
  color: var(--color-accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.3s ease;
}

.urun-card:hover .urun-hover-indicator {
  transform: translateX(3px);
}

/* --- Hover Reveal Details Overlay (Detayların Açılma Efekti) --- */
.urun-card-hover-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(20, 20, 28, 0.94);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(232, 255, 71, 0.25);
}

.urun-card:hover .urun-card-hover-overlay,
.urun-card.touch-active .urun-card-hover-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.urun-hover-header {
  margin-bottom: 8px;
}

.urun-hover-title {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.urun-hover-desc {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.urun-hover-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.urun-hover-feats li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--color-text);
  line-height: 1.35;
}

.urun-hover-feats .chk {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.85rem;
}

.urun-hover-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.urun-hover-actions .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 8px 14px;
  font-size: 0.82rem;
  text-decoration: none;
}

.urun-hover-actions .btn-outline-sm {
  width: 100%;
  justify-content: center;
  padding: 7px 14px;
  font-size: 0.8rem;
  text-decoration: none;
}

.urun-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.25s ease;
}

.urun-wa-btn:hover {
  background: rgba(37, 211, 102, 0.22);
  border-color: #25d366;
  color: #25d366;
}

/* ============================================================
   ÜRÜN DETAY SAYFASI (urun-detay.html) STİLLERİ
   ============================================================ */
.pdetail-hero-section {
  padding: 20px 0 60px 0;
}

.pdetail-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: flex-start;
}

.pdetail-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  aspect-ratio: 4/3;
}

.pdetail-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdetail-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: var(--color-accent);
  color: #0a0a0f;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pdetail-trust-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.pdetail-pill {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pdetail-pill span {
  font-size: 1.1rem;
}

.pdetail-cat-tag {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.pdetail-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.pdetail-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.pdetail-stars {
  color: #ffc531;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.pdetail-rating-score {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text);
}

.pdetail-review-count {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.pdetail-price-box {
  background: linear-gradient(145deg, rgba(28, 28, 36, 0.9) 0%, rgba(37, 37, 47, 0.9) 100%);
  border: 1px solid rgba(232, 255, 71, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin-bottom: 24px;
  display: inline-block;
  min-width: 280px;
}

.pdetail-price-amount {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.5px;
}

.pdetail-price-sub {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.pdetail-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.pdetail-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
}

.pdetail-btn-primary {
  padding: 16px 28px;
  font-size: 1rem;
  justify-content: center;
  text-align: center;
}

.pdetail-btn-wa {
  padding: 14px 28px;
  font-size: 0.95rem;
  justify-content: center;
}

/* Features Grid on Detail Page */
.pdetail-feats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.pdetail-feat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pdetail-feat-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.pdetail-feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(232, 255, 71, 0.1);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.pdetail-feat-content strong {
  display: block;
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 6px;
}

.pdetail-feat-content p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Reviews Grid on Detail Page */
.pdetail-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

@media (max-width: 992px) {
  .pdetail-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pdetail-actions {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .pdetail-trust-pills {
    grid-template-columns: 1fr;
  }
  .urunler-grid {
    grid-template-columns: 1fr;
  }
}

/* Compare table */

/* Compare table */
.urun-compare-section { padding: var(--space-3xl) 0; background: var(--color-surface); }
.urun-compare-wrap { overflow-x: auto; margin-top: 36px; border-radius: var(--radius-lg); border: 1px solid var(--color-border); }
.urun-compare-table { width: 100%; border-collapse: collapse; min-width: 720px; background: var(--color-bg); }
.urun-compare-table th, .urun-compare-table td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--color-border); font-size: 0.92rem; }
.urun-compare-table th { font-family: var(--font-display); letter-spacing: 1px; color: var(--color-accent); font-size: 0.95rem; }
.urun-compare-table tr.highlight { background: rgba(232,255,71,0.05); }
.urun-badge-inline, .urun-compare-table .urun-badge-inline {
  display: inline-block; background: var(--color-accent); color: #0a0a0f; font-size: 0.65rem;
  font-weight: 700; padding: 2px 8px; border-radius: var(--radius-full); text-transform: uppercase; vertical-align: middle;
}

/* FAQ */
.urun-faq-section { padding: var(--space-3xl) 0; }
.urun-faq-list { max-width: 820px; margin: 36px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; color: var(--color-text);
  font-family: var(--font-body); font-size: 1rem; font-weight: 600; padding: 18px 22px;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-ic { color: var(--color-accent); font-size: 1.4rem; font-weight: 300; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 22px 20px; color: var(--color-text-muted); line-height: 1.7; font-size: 0.92rem; margin: 0; }

/* Product Modal */
.urun-modal { position: fixed; inset: 0; z-index: 9999; display: none; }
.urun-modal.active { display: block; }
.urun-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.72); backdrop-filter: blur(4px); }
.urun-modal-content {
  position: relative; max-width: 860px; width: calc(100% - 32px); max-height: 90vh; overflow-y: auto;
  margin: 5vh auto; background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 36px; z-index: 1;
}
.urun-modal-close {
  position: absolute; top: 16px; right: 20px; background: var(--color-surface); border: 1px solid var(--color-border);
  color: var(--color-text); width: 38px; height: 38px; border-radius: 50%; font-size: 1.4rem; cursor: pointer; z-index: 2;
  transition: all .25s;
}
.urun-modal-close:hover { border-color: var(--color-accent); color: var(--color-accent); }
.umodal-hero { display: grid; grid-template-columns: 1fr 1.2fr; gap: 28px; align-items: center; }
.umodal-img { border-radius: var(--radius-md); overflow: hidden; background: #000; aspect-ratio: 4/3; }
.umodal-img img { width: 100%; height: 100%; object-fit: cover; }
.umodal-head h2 { font-family: var(--font-display); font-size: 2.2rem; letter-spacing: 1px; margin: 6px 0 10px; }
.umodal-desc { color: var(--color-text-muted); line-height: 1.7; }
.umodal-sec-title { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 1px; margin: 32px 0 16px; color: var(--color-accent); }
.umodal-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.umf-item { display: flex; gap: 10px; align-items: flex-start; }
.umf-item strong { display: block; font-size: 0.95rem; }
.umf-item p { color: var(--color-text-muted); font-size: 0.85rem; margin: 3px 0 0; line-height: 1.5; }
.urun-reviews { display: flex; flex-direction: column; gap: 14px; }
.urun-review { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 16px 18px; }
.urun-review-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.urun-review p { color: var(--color-text-muted); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* Responsive */
@media (max-width: 768px) {
  .urunler-toolbar { flex-direction: column; align-items: stretch; }
  .urun-controls { flex-direction: column; }
  .urun-search, .urun-sort { width: 100%; }
  .urun-search input { width: 100%; flex: 1; }
  .umodal-hero { grid-template-columns: 1fr; }
  .umodal-feats { grid-template-columns: 1fr; }
  .urun-modal-content { padding: 24px 18px; }
  .umodal-head h2 { font-size: 1.8rem; }
}

/* WhatsApp sipariş butonu (ürün kartı & modal) */
.urun-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; margin-top: 10px; padding: 12px 16px;
  background: #25D366; color: #05331a; font-weight: 700; font-size: 0.9rem;
  border: none; border-radius: var(--radius-sm); text-decoration: none;
  transition: filter .2s, transform .2s;
}
.urun-wa-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.urun-wa-btn svg { flex-shrink: 0; }
.umodal-cta { display: flex; flex-direction: column; gap: 8px; }
.umodal-cta .btn-primary { text-align: center; }
.umodal-cta .urun-wa-btn { margin-top: 0; }

/* Teklif formu paket rozeti */
.paket-prefill-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(232,255,71,0.08); border: 1px solid var(--color-accent);
  border-radius: var(--radius-md); padding: 14px 18px; margin-bottom: 22px;
  font-size: 0.95rem; color: var(--color-text);
}
.paket-prefill-badge strong { color: var(--color-accent); }
.paket-prefill-badge .ppb-ic { font-size: 1.2rem; }

/* Yasal sayfalar (Gizlilik / KVKK) */
.legal-section { padding: var(--space-2xl) 0 var(--space-3xl); }
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 {
  font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 1px;
  color: var(--color-accent); margin: 32px 0 12px;
}
.legal-content p { color: var(--color-text-muted); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { margin: 0 0 18px; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.legal-content li { color: var(--color-text-muted); line-height: 1.7; }
.legal-content li strong, .legal-content p strong { color: var(--color-text); }
.legal-content a { color: var(--color-accent); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-updated { font-size: 0.85rem; color: var(--color-text-muted); font-style: italic; margin-bottom: 24px; }
.legal-note {
  margin-top: 32px; padding: 16px 18px; background: var(--color-surface);
  border: 1px solid var(--color-border); border-radius: var(--radius-md); font-size: 0.9rem;
}

/* Aktif menü öğesi (bulunulan sayfa basılı/vurgulu kalsın) */
.nav-links a.active:not(.btn-cta) { color: var(--color-accent); font-weight: 700; }
.nav-links a.active:not(.btn-cta)::after { width: 100%; }
.mobile-menu a.active:not(.btn-cta) { color: var(--color-accent); font-weight: 700; }

/* Ürünler sayfası: daha kompakt başlık ve azaltılmış boşluk */
.page-urunler .page-header {
  padding: calc(var(--nav-height) + var(--space-lg)) 0 var(--space-md);
}
.page-urunler .page-header .section-title {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: var(--space-sm);
}
.page-urunler .page-header .section-label { margin-bottom: 6px; }
.page-urunler .page-header .section-subtitle { font-size: 1rem; }
.page-urunler .urun-trust-badges { margin: 4px 0 24px; }
.page-urunler .urunler-section { padding-top: 8px; }

/* =========================================
   FORM: BOT TUZAĞI + KVKK ONAYI
   ========================================= */

/* Honeypot — ekran okuyuculardan ve gözden gizli, ama display:none değil
   (bazı botlar display:none alanları atlar) */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: var(--space-md) 0 var(--space-lg);
}
.form-consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-accent);
  cursor: pointer;
}
.form-consent label {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  cursor: pointer;
}
.form-consent a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-consent a:hover { opacity: 0.85; }

/* =========================================
   ERİŞİLEBİLİRLİK
   ========================================= */

/* İçeriğe geç bağlantısı — sadece klavye odağında görünür */
.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -150%);
  z-index: 10000;
  padding: 12px 22px;
  background: var(--color-accent);
  color: #0a0a0f;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 0 0 var(--radius-md, 10px) var(--radius-md, 10px);
  text-decoration: none;
  transition: transform var(--ease-fast);
}
.skip-link:focus {
  transform: translate(-50%, 0);
}

/* Klavye odak göstergesi — outline:none kurallarını geri alır */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Hareket hassasiyeti olan kullanıcılar için animasyonları durdur */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto !important; }
  .ticker-content,
  .brands-track,
  .marquee-content {
    animation: none !important;
    transform: none !important;
  }
  .hero-bg-video-fixed video { display: none; }
}

/* =========================================
   BLOG YAZISI MODALI
   ========================================= */
.blog-modal-content {
  max-width: 720px;
  width: min(92vw, 720px);
  max-height: 86vh;
  overflow-y: auto;
  text-align: left;
}
.blog-modal-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md, 10px);
  margin-bottom: var(--space-md);
}
.blog-modal-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: 1.5px;
  margin: 6px 0 var(--space-md);
}
.blog-modal-body p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.blog-modal-body p:last-child { margin-bottom: 0; }

/* ============================================================
   E-TİCARET PAKETLERİ SAYFASI (eticaret.html)
   ============================================================ */
.page-eticaret .page-header {
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-md);
  text-align: center;
}
.page-eticaret .page-header .section-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: var(--space-sm);
}

.eticaret-packages-section {
  padding: var(--space-xl) 0 var(--space-3xl);
}

.eticaret-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 20px;
}

.eticaret-plan-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--ease-base), border-color var(--ease-base), box-shadow var(--ease-base);
}

.eticaret-plan-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

/* Gold (Popular) Highlight */
.eticaret-plan-card.featured {
  background: linear-gradient(180deg, #22222d 0%, #171720 100%);
  border: 2px solid var(--color-accent);
  box-shadow: 0 8px 30px rgba(232, 255, 71, 0.12);
  transform: scale(1.01);
}

.eticaret-plan-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 18px 45px rgba(232, 255, 71, 0.2);
}

/* Ultra (Enterprise) Highlight */
.eticaret-plan-card.ultra {
  background: linear-gradient(180deg, #1f1f2e 0%, #151522 100%);
  border: 2px solid #39c7da;
  box-shadow: 0 8px 30px rgba(57, 199, 218, 0.12);
}

.eticaret-plan-card.ultra:hover {
  border-color: #5ce6f7;
  box-shadow: 0 18px 45px rgba(57, 199, 218, 0.22);
}

.plan-header {
  margin-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 14px;
}

.plan-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-muted);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.gold-badge {
  background: var(--color-accent);
  color: #0a0a0f;
  font-weight: 800;
}

.ultra-badge {
  background: linear-gradient(135deg, #39c7da 0%, #7af0ff 100%);
  color: #0a0a0f;
  font-weight: 800;
}

.plan-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.plan-desc {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin-bottom: 10px;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--color-text);
  letter-spacing: 0.5px;
}

.plan-price span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-left: 4px;
  letter-spacing: 0;
}

.plan-body {
  flex: 1;
  margin-bottom: 16px;
}

.plan-features-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.plan-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--color-text);
  line-height: 1.4;
}

.plan-features-list li.inc-starter {
  padding-bottom: 5px;
  border-bottom: 1px dashed var(--color-border);
  color: var(--color-accent);
}

.plan-features-list .chk {
  color: var(--color-accent);
  font-weight: 800;
  font-size: 0.88rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.eticaret-plan-card.ultra .plan-features-list .chk {
  color: #39c7da;
}

.plan-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-footer .btn-primary {
  width: 100%;
  text-align: center;
  padding: 9px 12px;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
}

/* Comparison Table Enhancements */
.urun-compare-table tr.table-group-header td {
  background: var(--color-surface-2);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 1.5px;
  padding: 12px 20px;
  font-weight: 700;
}

.urun-compare-table th.highlight-head {
  background: rgba(232, 255, 71, 0.1);
  border-top: 3px solid var(--color-accent);
}

.chk-yes {
  color: var(--color-accent);
  font-weight: 800;
  margin-right: 4px;
}

.chk-no {
  color: var(--color-text-muted);
  opacity: 0.5;
  margin-right: 4px;
}

@media (max-width: 992px) {
  .eticaret-plan-card.featured {
    transform: none;
  }
  .eticaret-plan-card.featured:hover {
    transform: translateY(-6px);
  }
}

/* ============================================================
   BLOG GRID & CARD STYLES
   ============================================================ */
.blog-section {
  padding: var(--space-xl) 0 var(--space-3xl);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease-base), border-color var(--ease-base), box-shadow var(--ease-base);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.blog-card-image {
  height: 210px;
  overflow: hidden;
  background: #000;
  position: relative;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-date {
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--color-text);
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.blog-card-footer {
  margin-top: auto;
}

.blog-card-linkwrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap var(--ease-fast);
  text-decoration: none;
  cursor: pointer;
}

.blog-card-link:hover {
  gap: 10px;
  text-decoration: underline;
}

/* Tag Pills & SEO Badges */
.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.blog-tag-chip {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
  transition: border-color 0.2s, color 0.2s;
}

.blog-card:hover .blog-tag-chip {
  border-color: rgba(232, 255, 71, 0.3);
  color: var(--color-text);
}

.blog-modal-tags {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.blog-tags-label {
  font-size: 0.82rem;
  color: var(--color-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.blog-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tag-pill {
  display: inline-block;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.blog-tag-pill:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(232, 255, 71, 0.08);
}



