/* ==========================================
   ARGEX YAZILIM â€” WordPress Tema MaÄŸazasÄ±
   Premium Dark Theme Design System
   ========================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors â€” matching Argex License System */
  --primary: #4f46e5;
  --primary-light: #6366f1;
  --primary-dark: #4338ca;
  --accent: #e63946;
  --accent-light: #ff6b6b;

  /* Background layers */
  --bg-deepest: #f4f7fb;
  --bg-deep: #eef2f6;
  --bg-surface: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f9fafb;
  --bg-elevated: #ffffff;

  /* Glass */
  --glass-bg: rgba(0, 0, 0, 0.03);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-hover: rgba(0, 0, 0, 0.06);

  /* Text */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-accent: #4f46e5;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  --gradient-hero: linear-gradient(135deg, #f4f7fb 0%, #e2e8f0 50%, #f4f7fb 100%);
  --gradient-card: linear-gradient(145deg, rgba(79, 70, 229, 0.03) 0%, rgba(124, 58, 237, 0.02) 100%);
  --gradient-glow: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(79, 70, 229, 0.1), transparent 40%);

  /* Borders & Shadows */
  --border-subtle: 1px solid rgba(0, 0, 0, 0.08);
  --border-card: 1px solid rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 32px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 16px 64px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 0 40px rgba(79, 70, 229, 0.15);

  /* Spacing */
  --section-pad: clamp(60px, 8vw, 120px);
  --container-max: 1280px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-deepest);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-smooth);
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

ul, ol { list-style: none; }

/* ---------- Container ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ---------- Ambient Background ---------- */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  animation: orbFloat 20s ease-in-out infinite;
}

.ambient-orb--1 {
  width: 600px;
  height: 600px;
  background: rgba(123, 129, 255, 0.15);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.ambient-orb--2 {
  width: 500px;
  height: 500px;
  background: rgba(168, 85, 247, 0.1);
  bottom: -150px;
  left: -100px;
  animation-delay: -7s;
}

.ambient-orb--3 {
  width: 400px;
  height: 400px;
  background: rgba(123, 129, 255, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(40px, 30px) scale(1.02); }
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: var(--border-subtle);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--text-primary);
}

.navbar__logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: white;
}

.navbar__logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s var(--ease-smooth);
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width 0.3s var(--ease-smooth);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--text-primary);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__cta {
  padding: 10px 24px;
  background: var(--gradient-primary);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 4px 15px rgba(123, 129, 255, 0.3);
}

.navbar__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(123, 129, 255, 0.4);
}

/* Mobile menu toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.navbar__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding-top: 40px;
  overflow: hidden;
}

.hero__grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(123, 129, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 129, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(123, 129, 255, 0.1);
  border: 1px solid rgba(123, 129, 255, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s var(--ease-smooth) both;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.1s var(--ease-smooth) both;
}

.hero__title-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 0.8s 0.2s var(--ease-smooth) both;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: fadeInUp 0.8s 0.3s var(--ease-smooth) both;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  animation: fadeInUp 0.8s 0.4s var(--ease-smooth) both;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 20px rgba(123, 129, 255, 0.3);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(123, 129, 255, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.btn--outline:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.25);
  transform: translateY(-3px);
}

.btn--ghost {
  background: rgba(123, 129, 255, 0.1);
  color: var(--primary-light);
  border: 1px solid rgba(123, 129, 255, 0.2);
}

.btn--ghost:hover {
  background: rgba(123, 129, 255, 0.2);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn__icon {
  font-size: 1.1em;
}

/* ---------- Section ---------- */
.section {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
}

.section__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.section__label-line {
  width: 24px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Theme Cards Grid ---------- */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 32px;
}

.theme-card {
  position: relative;
  background: var(--bg-card);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
  cursor: pointer;
}

.theme-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
  z-index: 0;
}

.theme-card:hover {
  transform: translateY(-8px);
  border-color: rgba(123, 129, 255, 0.2);
  box-shadow: var(--shadow-glow);
}

.theme-card:hover::before {
  opacity: 1;
}

.theme-card__preview {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: var(--border-subtle);
}

.theme-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.theme-card:hover .theme-card__preview img {
  transform: scale(1.05);
}

.theme-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 16, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}

.theme-card:hover .theme-card__overlay {
  opacity: 1;
}

.theme-card__overlay-actions {
  display: flex;
  gap: 12px;
  width: 100%;
}

.theme-card__overlay-btn {
  flex: 1;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-smooth);
}

.theme-card__overlay-btn--demo {
  background: var(--gradient-primary);
  color: white;
}

.theme-card__overlay-btn--detail {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.theme-card__overlay-btn:hover {
  transform: translateY(-2px);
}

.theme-card__badges {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.theme-card__badge {
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  background: rgba(123, 129, 255, 0.9);
  color: white;
  backdrop-filter: blur(4px);
}

.theme-card__badge--new {
  background: rgba(230, 57, 70, 0.9);
}

.theme-card__badge--popular {
  background: rgba(168, 85, 247, 0.9);
}

.theme-card__body {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.theme-card__category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-light);
  margin-bottom: 8px;
}

.theme-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.theme-card__description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.theme-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.theme-card__tag {
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 500;
  background: rgba(123, 129, 255, 0.08);
  border: 1px solid rgba(123, 129, 255, 0.15);
  color: var(--text-secondary);
  border-radius: 50px;
  transition: all 0.3s var(--ease-smooth);
}

.theme-card:hover .theme-card__tag {
  border-color: rgba(123, 129, 255, 0.3);
  color: var(--primary-light);
}

.theme-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: var(--border-subtle);
}

.theme-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.theme-card__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.theme-card__meta-icon {
  font-size: 0.9rem;
}

.theme-card__action {
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 2px 10px rgba(123, 129, 255, 0.2);
}

.theme-card__action:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(123, 129, 255, 0.35);
}

/* ---------- Features Section ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  position: relative;
  padding: 32px;
  background: var(--bg-card);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-smooth);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 129, 255, 0.15);
  background: var(--bg-card-hover);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(123, 129, 255, 0.1);
  border: 1px solid rgba(123, 129, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all 0.3s var(--ease-smooth);
}

.feature-card:hover .feature-card__icon {
  background: rgba(123, 129, 255, 0.15);
  transform: scale(1.05);
}

.feature-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  padding: 80px 0;
}

.cta-box {
  position: relative;
  padding: 60px;
  background: var(--gradient-card);
  border: var(--border-card);
  border-radius: var(--radius-xl);
  text-align: center;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(123, 129, 255, 0.06) 0%, transparent 50%);
  animation: orbFloat 15s ease-in-out infinite;
}

.cta-box__title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-box__text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.cta-box__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

/* ---------- Theme Detail Page ---------- */
.detail-hero {
  padding-top: 120px;
  padding-bottom: 60px;
}

.detail-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.detail-hero__breadcrumb a {
  color: var(--text-secondary);
  transition: color 0.3s;
}

.detail-hero__breadcrumb a:hover {
  color: var(--primary-light);
}

.detail-hero__breadcrumb-sep {
  color: var(--text-muted);
}

.detail-hero__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

.detail__gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-card);
  background: var(--bg-card);
}

.detail__gallery-main {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.detail__gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail__gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px;
  background: var(--bg-deep);
  border-top: var(--border-subtle);
}

.detail__gallery-thumb {
  width: 80px;
  height: 50px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  opacity: 0.6;
}

.detail__gallery-thumb.active,
.detail__gallery-thumb:hover {
  border-color: var(--primary);
  opacity: 1;
}

.detail__gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Detail Info Sidebar */
.detail__info {
  position: sticky;
  top: 100px;
}

.detail__info-card {
  background: var(--bg-card);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.detail__info-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.detail__info-category {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.detail__info-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.detail__info-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.detail__info-actions .btn {
  width: 100%;
  justify-content: center;
}

.detail__info-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: var(--border-subtle);
}

.detail__info-meta-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
}

.detail__info-meta-label {
  color: var(--text-muted);
}

.detail__info-meta-value {
  color: var(--text-primary);
  font-weight: 600;
}

/* Detail Features */
.detail__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.detail__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: var(--border-card);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease-smooth);
}

.detail__feature:hover {
  border-color: rgba(123, 129, 255, 0.2);
  background: var(--bg-card-hover);
}

.detail__feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(123, 129, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.detail__feature-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  padding: 40px;
  background: var(--bg-card);
  border: var(--border-card);
  border-radius: var(--radius-lg);
}

.contact-info__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-info__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info__item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(123, 129, 255, 0.1);
  border: 1px solid rgba(123, 129, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info__item-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info__item-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* Contact Form */
.contact-form {
  padding: 40px;
  background: var(--bg-card);
  border: var(--border-card);
  border-radius: var(--radius-lg);
}

.contact-form__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(123, 129, 255, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select option {
  background: var(--bg-surface);
  color: var(--text-primary);
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 1;
  border-top: var(--border-subtle);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: var(--border-subtle);
}

.footer__brand-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer__heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease-smooth);
}

.footer__link:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease-smooth);
}

.footer__social-link:hover {
  background: rgba(79, 70, 229, 0.1);
  border-color: rgba(79, 70, 229, 0.2);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .detail-hero__grid {
    grid-template-columns: 1fr;
  }

  .detail__info {
    position: static;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    border-left: var(--border-subtle);
    transition: right 0.4s var(--ease-smooth);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .navbar__menu.open {
    right: 0;
  }

  .navbar__toggle {
    display: flex;
    z-index: 1001;
  }

  .navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .navbar__toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero__stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .themes-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-box {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  border: none;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* ---------- Page Transition ---------- */
.page-content {
  animation: fadeIn 0.6s var(--ease-smooth) both;
}

/* ---------- License Badge ---------- */
.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #22c55e;
}

.license-badge__dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deepest);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-elevated);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ---------- Selection ---------- */
::selection {
  background: rgba(123, 129, 255, 0.3);
  color: white;
}
/* ==========================================
   FRONTEND V2: BANNERS, FILTERS, PRICING, FAQ
   ========================================== */

/* Top Promo Banner */
.top-banner {
  background: var(--gradient-primary);
  color: white;
  padding: 10px 20px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  position: relative;
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s var(--ease-smooth);
}
.top-banner-spacer {
  height: 40px;
  display: none;
}
body.has-banner .top-banner-spacer {
  display: block;
}
body.has-banner .navbar {
  top: 40px;
}
body.has-banner .top-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.top-banner.hidden {
  display: none;
}
.top-banner__close {
  position: absolute;
  right: 20px;
  background: rgba(0,0,0,0.2);
  border: none;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.top-banner__close:hover {
  background: rgba(0,0,0,0.4);
}

/* Theme Filter & Search */
.theme-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .theme-controls {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.theme-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-btn {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-smooth);
}
.filter-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--text-primary);
}
.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary-light);
  box-shadow: 0 0 15px rgba(123, 129, 255, 0.3);
}
.theme-search {
  position: relative;
  width: 100%;
  max-width: 320px;
}
.theme-search__input {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 12px 20px 12px 45px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease-smooth);
}
.theme-search__input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(123, 129, 255, 0.15);
}
.theme-search__icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.pricing-card {
  background: var(--bg-card);
  border: var(--border-card);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s var(--ease-smooth);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(123, 129, 255, 0.3);
  box-shadow: var(--shadow-md);
}
.pricing-card--popular {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(123, 129, 255, 0.05) 0%, var(--bg-card) 100%);
  box-shadow: 0 8px 32px rgba(123, 129, 255, 0.15);
}
.pricing-card--popular::before {
  content: 'En Çok Tercih Edilen';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-header {
  margin-bottom: 24px;
}
.pricing-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-currency {
  font-size: 1.2rem;
  color: var(--text-muted);
}
.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.pricing-feature i {
  color: var(--primary);
  margin-top: 4px;
}
.pricing-feature.disabled {
  opacity: 0.5;
}
.pricing-feature.disabled i {
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--bg-card);
  border: var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s var(--ease-smooth);
}
.faq-item.active {
  border-color: rgba(123, 129, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px;
  background: transparent;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question i {
  color: var(--primary-light);
  transition: transform 0.3s var(--ease-smooth);
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  color: var(--text-secondary);
  line-height: 1.7;
  transition: max-height 0.3s var(--ease-smooth), padding 0.3s var(--ease-smooth);
}
.faq-item.active .faq-answer {
  padding: 0 24px 24px 24px;
  max-height: 500px;
}

/* Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-smooth);
}
.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}
.hidden-theme {
  display: none !important;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.testimonial-card i.fa-quote-left {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  color: rgba(123, 129, 255, 0.1);
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}
.testimonial-author-info h4 {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.testimonial-author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
