/* ExcelDosya — bold neon / space theme */
:root {
  --bg: #0a0a1a;
  --bg2: #12122a;
  --text: #f4f4ff;
  --muted: #9ca3c7;
  --neon-purple: #7c3aed;
  --neon-blue: #00d4ff;
  --neon-green: #00ff88;
  --card-bg: rgba(255, 255, 255, 0.05);
  --border: rgba(124, 58, 237, 0.35);
  --glow: 0 0 24px rgba(0, 212, 255, 0.35);
  --radius: 16px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --contact-accent: #f97316;
  --contact-accent-hover: #ea580c;
  --contact-card-bg: rgba(255, 255, 255, 0.045);
  --contact-panel-bg: rgba(18, 18, 42, 0.92);
}

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

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--neon-blue);
  text-decoration: none;
}
a:hover {
  color: var(--neon-green);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

/* Mesh gradient hero background */
.mesh-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 20%, rgba(124, 58, 237, 0.45), transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 30%, rgba(0, 212, 255, 0.35), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 90%, rgba(0, 255, 136, 0.2), transparent 45%),
    linear-gradient(165deg, #0a0a1a, #151530 50%, #0a0a1a);
  animation: meshMove 14s ease-in-out infinite alternate;
}

@keyframes meshMove {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(30deg);
  }
}

/* Floating shapes */
.floating-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  opacity: 0.35;
  animation: float 8s ease-in-out infinite;
}

.shape:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 12%;
  left: 8%;
  background: linear-gradient(135deg, var(--neon-purple), transparent);
  border-radius: 24px;
  rotate: 12deg;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 12%;
  border: 2px solid var(--neon-blue);
  border-radius: 50%;
  animation-delay: -2s;
}

.shape:nth-child(3) {
  width: 0;
  height: 0;
  bottom: 18%;
  left: 25%;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid rgba(0, 255, 136, 0.35);
  animation-delay: -4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-28px) rotate(6deg);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 26, 0.82);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.logo.logo--with-img {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: inherit;
  text-shadow: none;
  line-height: 0;
  display: flex;
  align-items: center;
}

.logo.logo--with-img .logo-img {
  max-height: 44px;
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
  transition: width 0.25s;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
  .nav-desktop {
    display: none;
  }
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 10, 26, 0.96);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: var(--bg);
  background: linear-gradient(120deg, var(--neon-blue), var(--neon-purple));
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.45);
}

.btn:hover {
  transform: translateY(-2px);
  color: var(--bg);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(0, 212, 255, 0.55);
  box-shadow: none;
}

.btn.btn-ghost:hover {
  background: rgba(0, 212, 255, 0.12);
  color: var(--text);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.25);
}

.btn.btn-ghost:focus-visible {
  color: var(--text);
  outline: 2px solid var(--neon-blue);
  outline-offset: 2px;
}

.btn-whatsapp {
  background: linear-gradient(120deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

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

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  max-width: 18ch;
  background: linear-gradient(100deg, #fff 0%, var(--neon-blue) 45%, var(--neon-green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 1.75rem;
}

.search-hero {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  max-width: 520px;
}

.search-hero input {
  flex: 1;
  min-width: 200px;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 212, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1rem;
  outline: none;
  backdrop-filter: blur(8px);
}

.search-hero input:focus {
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.25);
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.stat-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.25s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow);
}

.stat-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.75rem;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section {
  padding: 4rem 0;
  position: relative;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin: 0 0 0.5rem;
}

.section-sub {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 60ch;
}

/* Wave separator */
.wave-top {
  margin-top: -1px;
  line-height: 0;
  color: var(--bg2);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.product-card:hover {
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.25);
}

.product-card-media {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg2);
  border-radius: var(--radius) var(--radius) 0 0;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}

.product-card:hover .product-card-media img {
  transform: scale(1.06);
}

.product-card-body {
  padding: 1.1rem 1.15rem 1.25rem;
  border-radius: 0 0 var(--radius) var(--radius);
}

.product-card-actions {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.product-card-actions .btn-detail {
  font-size: 0.8rem;
  padding: 0.45rem 1rem;
  width: 100%;
  text-align: center;
  margin-top: 0.25rem;
}

/* Ürün detay */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.product-detail-buybox {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card-bg);
}

.product-detail-title {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin: 0 0 1rem;
  line-height: 1.2;
  color: var(--text);
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.product-detail-actions .btn {
  flex: 1 1 auto;
  min-width: 140px;
  justify-content: center;
}

.product-detail-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

/* Demo — okunaklı, satın al / WhatsApp ile uyumlu ikincil CTA */
.product-detail-demo {
  margin: 0.85rem 0 1rem;
}

.btn-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 100%;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #f0f4ff;
  text-decoration: none;
  background: linear-gradient(145deg, rgba(0, 212, 255, 0.22), rgba(124, 58, 237, 0.18));
  border: 1px solid rgba(0, 212, 255, 0.65);
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.2), 0 8px 28px rgba(0, 212, 255, 0.12);
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.btn-demo:hover {
  color: #fff;
  border-color: var(--neon-blue);
  box-shadow: var(--glow);
  transform: translateY(-1px);
}

.btn-demo-icon {
  display: inline-flex;
  opacity: 0.95;
  flex-shrink: 0;
}

.btn-demo-icon svg {
  display: block;
  filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.5));
}

/* Paylaş + güven bandı (ürün kartı içi) */
.product-detail-share-block {
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px dashed rgba(148, 163, 199, 0.35);
}

.product-share-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1.1rem;
}

.product-share-label {
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.product-share-label::before {
  content: "›";
  color: #f97316;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}

.product-share-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  font-family: Georgia, serif;
  line-height: 1;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.share-btn:hover {
  transform: scale(1.06);
  color: #fff;
}

.share-fb {
  background: #1877f2;
}

.share-wa {
  background: #25d366;
}

.share-mail {
  background: linear-gradient(145deg, #f97316, #ea580c);
}

.share-tg {
  background: #26a5e4;
}

.share-x {
  background: #0a0a0a;
  border: 1px solid #334155;
}

.share-x .share-x-txt {
  font-family: system-ui, sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
}

.share-btn svg {
  display: block;
}

.product-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(148, 163, 199, 0.35);
  font-size: 0.82rem;
  color: var(--muted);
}

.product-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.trust-ico-svg {
  flex-shrink: 0;
}

@media (max-width: 520px) {
  .product-share-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-trust-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-trust-item {
    justify-content: flex-start;
  }
}

.product-detail-description-card {
  margin-top: 2rem;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card-bg);
}

.product-detail-description-title {
  font-family: var(--display);
  font-size: 1.25rem;
  margin: 0 0 1rem;
  color: var(--text);
}

.product-detail-description-body {
  color: var(--muted);
}

.product-detail-gallery-empty.gallery-main {
  aspect-ratio: 16 / 9;
  max-height: min(562px, 72vh);
  max-width: 1000px;
  margin-inline: auto;
  width: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg2);
}

@media (max-width: 900px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  .product-detail-buybox {
    order: -1;
  }
  .product-detail-gallery {
    order: 1;
  }
}

@media (hover: hover) and (pointer: fine) {
  .product-card {
    overflow: hidden;
  }
}

.product-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-family: var(--display);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.price {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--neon-green);
}

.price--free {
  color: #4ade80;
  letter-spacing: 0.03em;
}

.btn-download {
  background: linear-gradient(135deg, #15803d, #22c55e);
  color: #fff;
  border: 1px solid rgba(34, 197, 94, 0.5);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.25);
}

.btn-download:hover {
  filter: brightness(1.08);
  color: #fff;
}

.old-price {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.9rem;
}

.badge-sale {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: rgba(255, 0, 110, 0.2);
  color: #ff6ab0;
  animation: pulseBadge 1.5s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}

/* Hex category grid */
.hex-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hex-item {
  width: 140px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.45), rgba(0, 212, 255, 0.15));
  border: 1px solid rgba(0, 212, 255, 0.3);
  transition: transform 0.3s, filter 0.3s;
  padding: 0.5rem;
}

.hex-item:hover {
  transform: scale(1.06) rotate(3deg);
  filter: drop-shadow(0 0 16px rgba(0, 212, 255, 0.5));
}

.hex-item a {
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.breadcrumb a,
.breadcrumb a:visited {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--neon-blue);
}

/* Product detail gallery — 16:9 sabit sahne (1920×1080 ekran görüntüsü oranı), görsel contain ile sığar */
.product-detail-gallery .gallery-main--stage {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  max-height: min(562px, 72vh);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg2);
  cursor: zoom-in;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
}

.product-detail-gallery .gallery-main-inner {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.product-detail-gallery .gallery-main-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Liste / diğer sayfalardaki küçük galeri kutusu */
.gallery-main:not(.gallery-main--stage) {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: zoom-in;
  background: var(--bg2);
}

.gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.gallery-thumbs button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  width: 72px;
  height: 56px;
  flex-shrink: 0;
}

.gallery-thumbs button.is-active {
  border-color: var(--neon-blue);
  box-shadow: var(--glow);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(10, 10, 26, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(94vw, 1200px);
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  z-index: 2;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.45);
  background: rgba(10, 10, 26, 0.85);
  color: var(--neon-blue);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
}

.lightbox-nav:hover {
  background: rgba(124, 58, 237, 0.35);
  box-shadow: var(--glow);
}

.lightbox-nav:disabled,
.lightbox-nav.is-disabled {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}

.lightbox-prev {
  left: max(0.75rem, env(safe-area-inset-left));
}

.lightbox-next {
  right: max(0.75rem, env(safe-area-inset-right));
}

.lightbox:not(.lightbox--has-gallery) .lightbox-nav {
  display: none;
}

/* Footer */
.site-footer {
  position: relative;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 2rem 0 1.25rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: 1.35rem 1.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: minmax(140px, 1fr) repeat(3, minmax(120px, 0.85fr)) minmax(200px, 1.15fr);
  }
}

.footer-col h4 {
  font-family: var(--display);
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  color: var(--neon-blue);
}

.footer-col--brand .footer-tagline {
  color: var(--muted);
  font-size: 0.86rem;
  margin: 0;
  line-height: 1.45;
  max-width: 32ch;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.footer-col--brand .social-row {
  margin-top: 0.65rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.35rem;
}

.footer-legal-list {
  columns: 1;
  column-gap: 1.25rem;
}

@media (min-width: 520px) {
  .footer-legal-list {
    columns: 2;
  }
}

.footer-legal-list li {
  break-inside: avoid;
  margin-bottom: 0.35rem;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-col a:hover {
  color: var(--neon-green);
}

.footer-bottom {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}

.social-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-row a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text);
  transition: transform 0.2s, box-shadow 0.2s;
}

.social-row a:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow);
}

/* Pagination */
.pagination {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.pagination a,
.pagination span {
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.9rem;
}

.pagination .current {
  background: rgba(0, 212, 255, 0.15);
  border-color: var(--neon-blue);
}

/* Content prose */
.prose {
  color: var(--muted);
}

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
  color: var(--text);
  font-family: var(--display);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Forms */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  max-width: 420px;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  max-width: 520px;
}

.alert-error {
  background: rgba(255, 0, 110, 0.15);
  border: 1px solid rgba(255, 0, 110, 0.35);
  color: #ff9ec9;
}

.alert-success {
  background: rgba(0, 255, 136, 0.12);
  border: 1px solid rgba(0, 255, 136, 0.35);
  color: #8fffd4;
}

/* —— İletişim sayfası (iki sütun + kartlar) —— */
.contact-page__intro {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.contact-page__title {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.contact-page__lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.55;
}

.contact-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 2rem 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-page__layout {
    grid-template-columns: 1fr;
  }
}

.contact-page__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 14px;
  background: var(--contact-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
}

.contact-info-card__icon--phone {
  background: rgba(249, 115, 22, 0.25);
  color: #fb923c;
}

.contact-info-card__icon--mail {
  background: rgba(56, 189, 248, 0.2);
  color: #38bdf8;
}

.contact-info-card__icon--addr {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.contact-info-card__body {
  min-width: 0;
}

.contact-info-card__label {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.contact-info-card__value {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}

.contact-info-card__value a {
  color: var(--text);
}
.contact-info-card__value a:hover {
  color: var(--neon-blue);
}

.contact-info-card__value--muted {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-info-card__value--multiline {
  font-weight: 500;
  white-space: pre-line;
}

.contact-info-card__link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--contact-accent);
}
.contact-info-card__link:hover {
  color: var(--contact-accent-hover);
}

.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.65rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(37, 211, 102, 0.2);
  color: #4ade80;
  border: 1px solid rgba(37, 211, 102, 0.45);
}
.contact-wa-btn:hover {
  background: rgba(37, 211, 102, 0.3);
  color: #86efac;
}

.contact-form-panel {
  padding: 1.5rem 1.75rem 1.75rem;
  border-radius: 16px;
  background: var(--contact-panel-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.contact-form-panel__title {
  margin: 0 0 1.25rem;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}

.contact-form-panel__alert {
  max-width: none;
}

.contact-form--split .form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.contact-form--split .req {
  color: var(--contact-accent);
  font-weight: 700;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

@media (max-width: 640px) {
  .contact-form__grid {
    grid-template-columns: 1fr;
  }
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form--split .form-group input,
.contact-form--split .form-group textarea {
  max-width: none;
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-size: 0.95rem;
}

.contact-form--split .form-group input::placeholder,
.contact-form--split .form-group textarea::placeholder {
  color: rgba(156, 163, 199, 0.65);
}

.contact-form--split .form-group input:focus,
.contact-form--split .form-group textarea:focus {
  outline: none;
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.contact-form__actions {
  margin-top: 1.35rem;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border: none;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  color: #0f0f14;
  background: linear-gradient(135deg, #fb923c, var(--contact-accent));
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(249, 115, 22, 0.45);
  color: #0a0a0f;
}

.contact-submit-btn:focus-visible {
  outline: 2px solid var(--neon-blue);
  outline-offset: 3px;
}

/* 404 */
.page-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
}

.page-404 h1 {
  font-family: var(--display);
  font-size: 3rem;
  margin: 0 0 0.5rem;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
