/* ==========================================================================
   VEKTRA - 3D HIGH-TECH DIGITAL AGENCY DESIGN SYSTEM
   Faithfully crafted to match the ultra-modern 3D Mockup
   Palette: Deep Space Midnight (#060913), Neon Cyan (#00f2fe), Royal Blue (#2563eb)
   Typography: Outfit (Headings) & Plus Jakarta Sans (Body)
   ========================================================================== */

:root {
  /* Color Tokens: Deep Cosmic Midnight & High-Tech Accents */
  --bg-deep: #020408;
  --bg-surface: #060a17;
  --bg-card: rgba(8, 14, 32, 0.78);
  --bg-card-hover: rgba(14, 24, 52, 0.9);
  --bg-glass-badge: rgba(6, 12, 28, 0.82);

  /* Neon & Accents */
  --neon-cyan: #00f2fe;
  --neon-blue: #38bdf8;
  --laser-blue: #2563eb;
  --electric-violet: #8b5cf6;
  --glow-cyan: 0 0 25px rgba(0, 242, 254, 0.4);
  --glow-subtle: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
  --glow-electric: 0 0 35px rgba(0, 242, 254, 0.4), 0 0 70px rgba(37, 99, 235, 0.25);

  /* Borders & Specular Light */
  --border-subtle: rgba(255, 255, 255, 0.09);
  --border-card: rgba(56, 189, 248, 0.26);
  --border-card-hover: rgba(0, 242, 254, 0.65);
  --specular-inset: inset 0 1px 1px rgba(255, 255, 255, 0.22);

  /* Typography Colors */
  --text-pure: #ffffff;
  --text-bright: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Box Sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-bright);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
}

::selection {
  background: var(--neon-cyan);
  color: #060913;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   WEBGL CANVAS & AURORA BACKGROUND LIGHTING
   ========================================================================== */
#continuous-webgl-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.aurora-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  -webkit-filter: blur(120px);
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.blob-1 {
  top: -12%;
  left: 30%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.28) 0%, rgba(37, 99, 235, 0) 70%);
}

.blob-2 {
  top: 35%;
  right: -5%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.22) 0%, rgba(0, 242, 254, 0) 70%);
}

.blob-3 {
  bottom: 10%;
  left: -10%;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0) 70%);
}

@media (max-width: 768px) {
  .aurora-blob {
    filter: blur(40px);
    -webkit-filter: blur(40px);
    will-change: auto;
  }

  .blob-1 {
    width: 350px;
    height: 350px;
  }

  .blob-2 {
    width: 350px;
    height: 350px;
  }

  .blob-3 {
    width: 350px;
    height: 350px;
  }
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: all 0.35s ease;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(6, 9, 19, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.85rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
}

.site-brand-logo {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(0, 242, 254, 0.22));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.brand-link:hover .site-brand-logo {
  transform: scale(1.03);
  filter: drop-shadow(0 0 24px rgba(0, 242, 254, 0.45));
}

.logo-badge {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.6));
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-item-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-item-link:hover {
  color: var(--neon-cyan);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: none;
  color: #cbd5e1;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  transition: color 0.2s ease;
}

.lang-selector:hover {
  color: #fff;
}

/* White Pill Button */
.btn-pill-white {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #ffffff;
  color: #060913;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.65rem 1.45rem;
  border-radius: 9999px;
  text-decoration: none;
  border: 1px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 14px rgba(255, 255, 255, 0.2);
}

.btn-pill-white:hover {
  transform: translateY(-2px);
  background: #f1f5f9;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.5);
  color: #060913;
}

.btn-pill-white svg {
  transition: transform 0.25s ease;
}

.btn-pill-white:hover svg {
  transform: translateX(3px);
}

/* Translucent Pill Button */
.btn-pill-translucent {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.65rem 1.45rem;
  border-radius: 9999px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-pill-translucent:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 242, 254, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

.play-icon-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #fff;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION (3D MOCKUP LAYOUT)
   ========================================================================== */
.hero-mockup {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: 8.5rem;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  align-items: center;
  gap: 2.5rem;
  position: relative;
}

/* Left Content */
.hero-tagline {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-title-mockup {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.text-neon-cyan {
  color: var(--neon-cyan);
  text-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

.hero-subtext-mockup {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #64748b;
  text-transform: uppercase;
}

.mouse-icon {
  width: 16px;
  height: 26px;
  border: 1.5px solid #64748b;
  border-radius: 12px;
  position: relative;
}

.mouse-icon::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 5px;
  background: var(--neon-cyan);
  border-radius: 2px;
  animation: mouseWheel 1.8s ease-in-out infinite;
}

@keyframes mouseWheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 8px);
  }
}

.scroll-bar {
  width: 45px;
  height: 2px;
  background: linear-gradient(90deg, #64748b, rgba(100, 116, 139, 0.1));
}

/* ==========================================================================
   3D VEKTRA EMBLEM VISUAL & FLOATING GLASS BADGES
   ========================================================================== */
.hero-3d-stage {
  position: relative;
  width: 100%;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

/* Holographic Cyber Aura & Orbital Rings Behind Emblem */
.hero-emblem-aura {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.28) 0%, rgba(37, 99, 235, 0.18) 42%, rgba(2, 6, 23, 0) 72%);
  filter: blur(48px);
  pointer-events: none;
  z-index: 1;
  animation: auraPulse 6s ease-in-out infinite alternate;
}

@keyframes auraPulse {
  0% {
    transform: scale(0.92);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.12);
    opacity: 1;
  }
}

.hero-emblem-orbit-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.hero-emblem-orbit-ring.ring-outer {
  width: 490px;
  height: 490px;
  border: 1px dashed rgba(0, 242, 254, 0.25);
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.1);
  animation: spinOrbit 45s linear infinite;
}

.hero-emblem-orbit-ring.ring-inner {
  width: 390px;
  height: 390px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-top: 2px solid rgba(0, 242, 254, 0.75);
  border-bottom: 2px solid rgba(37, 99, 235, 0.6);
  box-shadow: inset 0 0 25px rgba(0, 242, 254, 0.08);
  animation: spinOrbitReverse 30s linear infinite;
}

@keyframes spinOrbit {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spinOrbitReverse {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.emblem-3d-visual-wrap,
.laptop-3d-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 580px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
}

.emblem-glow-container {
  position: relative;
  width: 330px;
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  animation: emblemLevitate 5s ease-in-out infinite alternate;
  z-index: 8;
  cursor: pointer;
}

@keyframes emblemLevitate {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(0.6deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.emblem-3d-render-img,
.laptop-3d-render-img {
  width: 320px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(0, 242, 254, 0.45)) drop-shadow(0 20px 50px rgba(2, 6, 23, 0.95));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  user-select: none;
}

.emblem-glow-container:hover .emblem-3d-render-img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 60px rgba(0, 242, 254, 0.75)) drop-shadow(0 25px 55px rgba(2, 6, 23, 0.95));
}

.emblem-reflection-sheen {
  position: absolute;
  top: -10%;
  left: -30%;
  width: 30%;
  height: 120%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.22) 50%,
      transparent 100%);
  transform: rotate(25deg);
  pointer-events: none;
  opacity: 0;
  animation: sheenSweep 8s ease-in-out infinite;
}

@keyframes sheenSweep {

  0%,
  35% {
    opacity: 0;
    transform: translateX(-100%) rotate(25deg);
  }

  45% {
    opacity: 1;
  }

  55%,
  100% {
    opacity: 0;
    transform: translateX(400%) rotate(25deg);
  }
}

/* Floating Glass Badges */
.floating-glass-card {
  position: absolute;
  background: rgba(4, 9, 24, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 242, 254, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 22px rgba(0, 242, 254, 0.2), var(--specular-inset);
  border-radius: 16px;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 25;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  cursor: default;
  white-space: nowrap;
}

.floating-glass-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 0 0 32px rgba(0, 242, 254, 0.45);
}

.badge-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  flex-shrink: 0;
}

.badge-icon-box.badge-ig {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(253, 29, 29, 0.2));
  border-color: rgba(225, 48, 108, 0.45);
  color: #f43f5e;
}

.badge-texts h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.badge-texts span {
  font-size: 0.78rem;
  color: #94a3b8;
}

/* Badge Positioning Around 3D Emblem */
.badge-top-left {
  top: 4%;
  left: -6%;
  animation: badgeFloat1 5s ease-in-out infinite alternate;
}

.badge-bottom-left {
  bottom: 6%;
  left: -8%;
  animation: badgeFloat2 6s ease-in-out infinite alternate;
}

.badge-top-right {
  top: 6%;
  right: -6%;
  animation: badgeFloat3 5.5s ease-in-out infinite alternate;
}

.badge-bottom-right {
  bottom: 8%;
  right: -4%;
  animation: badgeFloat4 6.5s ease-in-out infinite alternate;
}

.hero-vertical-motto {
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(148, 163, 184, 0.45);
  pointer-events: none;
  user-select: none;
  z-index: 20;
}

@keyframes badgeFloat1 {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-8px);
  }
}

@keyframes badgeFloat2 {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(8px);
  }
}

@keyframes badgeFloat3 {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-9px);
  }
}

@keyframes badgeFloat4 {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(9px);
  }
}

/* Hero Vertical Right Motto */
.hero-vertical-motto {
  position: absolute;
  right: -25px;
  top: 45%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #64748b;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  pointer-events: none;
}

/* ==========================================================================
   CLIENTS LOGO MARQUEE BAR (DIRECTLY BELOW HERO)
   ========================================================================== */
.metrics-mockup-bar.client-marquee-section {
  position: relative;
  z-index: 15;
  padding: 2.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(4, 8, 20, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

.marquee-subtext-heading {
  text-align: center;
  margin-bottom: 1.25rem;
}

.marquee-subtext-heading span {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #64748b;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.marquee-subtext-heading span::before,
.marquee-subtext-heading span::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: rgba(0, 242, 254, 0.35);
}

.client-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.client-marquee-track {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  width: max-content;
  animation: scrollLogosInfinite 42s linear infinite;
  padding: 0.5rem 0;
}

.client-marquee-track:hover {
  animation-play-state: paused;
}

/* Luxury Uniform Glass Capsule for each logo */
.client-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 64px;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.client-logo-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 242, 254, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 242, 254, 0.25);
  transform: translateY(-3px) scale(1.04);
}

/* Logos: Uniformly scaled, crisp white/light on dark theme */
.marquee-logo-img {
  max-width: 125px;
  max-height: 55px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 0.82;
  filter: brightness(1.2) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: all 0.35s ease;
}

/* For dark/black logos: invert to luminous clean white */
.marquee-logo-img.logo-invert {
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
  opacity: 0.88;
}

.client-logo-card:hover .marquee-logo-img {
  opacity: 1;
  filter: brightness(1.3) drop-shadow(0 0 12px rgba(0, 242, 254, 0.45));
}

.client-logo-card:hover .marquee-logo-img.logo-invert {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(0, 242, 254, 0.55));
}

@keyframes scrollLogosInfinite {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .client-marquee-track {
    gap: 1.2rem;
    animation-duration: 28s;
  }

  .client-logo-card {
    width: 140px;
    height: 54px;
    padding: 0.5rem 0.9rem;
  }

  .marquee-logo-img {
    max-width: 105px;
    max-height: 55px;
  }
}

/* ==========================================================================
   SECTION COMMON HEADERS
   ========================================================================== */
.section-wrapper {
  position: relative;
  z-index: 10;
  padding: 6.5rem 0;
}

.section-label-cyan {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--neon-cyan);
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.section-title-big {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.section-subtext {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 500px;
}

.link-arrow-cyan {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--neon-cyan);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: gap 0.25s ease;
  margin-top: 0.75rem;
}

.link-arrow-cyan:hover {
  gap: 0.8rem;
}

/* Section Header 2-Column Row */
.section-split-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Section Slider Navigation Arrows */
.slider-arrow-controls {
  display: flex;
  gap: 0.75rem;
}

.circle-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.circle-nav-btn:hover {
  background: rgba(0, 242, 254, 0.15);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  transform: scale(1.05);
}

/* Pill Outline Button */
.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.65rem 1.45rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   SECTION 2: HİZMETLERİMİZ (4-COLUMN 3D CARD GRID)
   ========================================================================== */
.services-mockup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-mockup-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-mockup-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-card-hover);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 242, 254, 0.2);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 1.25rem;
  min-height: 2.8rem;
}

.service-card-visual {
  width: 100%;
  height: 190px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #090e1f;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-mockup-card:hover .service-card-visual img {
  transform: scale(1.06);
}

.service-card-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.service-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--neon-cyan);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-explore-btn svg {
  transition: transform 0.3s ease;
}

.service-mockup-card:hover .service-explore-btn {
  background: var(--neon-cyan);
  border-color: var(--neon-cyan);
  color: #060913;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

.service-mockup-card:hover .service-explore-btn svg {
  transform: translateX(4px);
}

.circle-arrow-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-mockup-card:hover .circle-arrow-link {
  background: var(--neon-cyan);
  border-color: var(--neon-cyan);
  color: #060913;
  transform: scale(1.1);
}

/* ==========================================================================
   SECTION 3: SEKTÖRLER (6-CARD HORIZONTAL SLICES)
   ========================================================================== */
.sectors-slider-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0 1.5rem;
}

.sectors-slider-container::-webkit-scrollbar {
  display: none;
}

.sectors-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  min-width: 1000px;
}

.sector-slice-card {
  position: relative;
  height: 310px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  cursor: pointer;
  text-decoration: none;
}

.sector-slice-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 242, 254, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 242, 254, 0.25);
}

.sector-slice-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  z-index: 1;
}

.sector-slice-card:hover .sector-slice-img {
  transform: scale(1.08);
}

.sector-slice-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 9, 19, 0.1) 0%, rgba(6, 9, 19, 0.85) 75%, #060913 100%);
  z-index: 2;
}

.sector-slice-content {
  position: relative;
  z-index: 3;
}

.sector-slice-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

/* ==========================================================================
   SECTION 4: ÖNE ÇIKAN PROJELER (3 WIDE CARDS)
   ========================================================================== */
.projects-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.project-showcase-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: block;
}

.project-showcase-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-cyan);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 242, 254, 0.25);
}

.project-card-image {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
  background: #090e1f;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-showcase-card:hover .project-card-image img {
  transform: scale(1.07);
}

.project-card-info {
  padding: 1.5rem;
}

.project-title-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.project-category-text {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ==========================================================================
   SECTION 5: FULL-WIDTH CTA BANNER (MOCKUP LUXURY POOL RESORT)
   ========================================================================== */
.cta-banner-mockup {
  position: relative;
  z-index: 10;
  margin: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-banner-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 9, 19, 0.95) 0%, rgba(6, 9, 19, 0.75) 45%, rgba(6, 9, 19, 0.5) 100%);
  z-index: 2;
}

.cta-banner-inner {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 4rem 0;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-banner-sub {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.cta-banner-motto {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  line-height: 1.6;
  text-align: right;
}

/* ==========================================================================
   FOOTER (EXACT MOCKUP RECREATION)
   ========================================================================== */
.footer-mockup {
  position: relative;
  z-index: 10;
  padding: 4.5rem 0 2.5rem;
  background: #04060d;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-nav-list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.25s ease;
}

.footer-nav-list a:hover {
  color: var(--neon-cyan);
}

.footer-social-cluster {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-icon-btn:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  transform: translateY(-2px);
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: #94a3b8;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.25rem;
}

.footer-legal-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #cbd5e1;
}

.footer-motto-bold {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #94a3b8;
  text-transform: uppercase;
}

/* ==========================================================================
   MODAL WINDOWS: ESTIMATOR & CONTACT FORM MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 13, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #090e21;
  border: 1px solid var(--border-card);
  border-radius: 24px;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 242, 254, 0.25);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2.5rem;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

/* Modal Form Styles */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-span-2 {
  grid-column: span 2;
}

@media (max-width: 640px) {
  .modal-container {
    padding: 1.75rem 1.25rem;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-span-2 {
    grid-column: span 1;
  }
}

.field-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 0.5rem;
}

.field-input,
.field-select,
.field-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.field-textarea {
  min-height: 110px;
  resize: vertical;
}

/* Captcha Protection in Modal */
.captcha-row-group {
  margin-top: 0.25rem;
}

.captcha-question-badge {
  display: inline-block;
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.35);
  color: var(--neon-cyan);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 2px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  margin-left: 6px;
}

.captcha-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.captcha-field {
  max-width: 200px !important;
}

.btn-captcha-refresh {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--neon-cyan);
  border-radius: 10px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.btn-captcha-refresh:hover {
  background: rgba(0, 242, 254, 0.15);
  border-color: var(--neon-cyan);
  transform: rotate(45deg);
}

/* Service Choice Pills in Modal */
.modal-choices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.modal-choice-label {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.25s ease;
}

.modal-choice-label input {
  display: none;
}

.modal-choice-label:hover {
  border-color: rgba(0, 242, 254, 0.4);
}

.modal-choice-label.active {
  background: rgba(0, 242, 254, 0.12);
  border-color: var(--neon-cyan);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.25);
}

/* Floating WhatsApp Quick Action */
.floating-dock-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.floating-dock-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   DYNAMIC HERO BADGE TICKERS & INTERNAL MICRO-ANIMATIONS
   ========================================================================== */
.badge-ticker-box {
  height: 22px;
  overflow: hidden;
  position: relative;
}

.badge-ticker-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.badge-ticker-item {
  height: 22px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: #cbd5e1;
  white-space: nowrap;
}

.live-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
  animation: dotBlink 1.5s ease-in-out infinite alternate;
}

.live-pulse-dot.dot-green {
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

.live-pulse-dot.dot-amber {
  background: #f59e0b;
  box-shadow: 0 0 8px #f59e0b;
}

@keyframes dotBlink {
  0% {
    opacity: 0.4;
    transform: scale(0.85);
  }

  100% {
    opacity: 1;
    transform: scale(1.15);
  }
}

.trend-pill {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 6px;
  background: rgba(0, 242, 254, 0.15);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 242, 254, 0.3);
}

/* Micro Equalizer Bar Chart Animation */
.mini-equalizer {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 14px;
}

.eq-bar {
  width: 3px;
  background: var(--neon-cyan);
  border-radius: 2px;
  animation: eqJump 1.2s ease-in-out infinite alternate;
}

.eq-bar:nth-child(1) {
  height: 6px;
  animation-delay: 0.1s;
}

.eq-bar:nth-child(2) {
  height: 12px;
  animation-delay: 0.3s;
}

.eq-bar:nth-child(3) {
  height: 9px;
  animation-delay: 0.2s;
}

.eq-bar:nth-child(4) {
  height: 14px;
  animation-delay: 0.4s;
}

@keyframes eqJump {
  0% {
    height: 4px;
  }

  100% {
    height: 14px;
  }
}

/* ==========================================================================
   FLU / LUXURY BLURRED BACKGROUND SECTIONS ("ŞIK & FLU BACKGROUND")
   ========================================================================== */
.luxury-blurred-section {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
}

.luxury-blurred-bg {
  position: absolute;
  inset: -40px;
  background-image: url('../img/bg-luxury-bokeh.webp');
  background-size: cover;
  background-position: center;
  filter: blur(40px) brightness(0.28) contrast(1.15);
  z-index: 1;
  pointer-events: none;
  transform: scale(1.05);
}

.luxury-blurred-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(6, 9, 19, 0.65) 0%, rgba(6, 9, 19, 0.95) 85%);
  z-index: 2;
  pointer-events: none;
}

.luxury-section-content {
  position: relative;
  z-index: 5;
}

/* ==========================================================================
   INTEGRATED 3D PLATFORM SECTION (ORBITAL TECH CORE)
   ========================================================================== */
.platform-orbital-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  gap: 3rem;
  margin-top: 1rem;
}

.orbital-stage {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbital-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(56, 189, 248, 0.25);
  pointer-events: none;
}

.ring-inner {
  width: 300px;
  height: 300px;
  animation: rotateRing 35s linear infinite;
}

.ring-outer {
  width: 440px;
  height: 440px;
  border-style: solid;
  border-color: rgba(56, 189, 248, 0.12);
  animation: rotateRing 50s linear infinite reverse;
}

@keyframes rotateRing {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.orbital-center-cube {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, #090e21, #1e293b);
  border: 2px solid var(--neon-cyan);
  border-radius: 22px;
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.5), inset 0 0 15px rgba(0, 242, 254, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  animation: cubeFloat 4s ease-in-out infinite alternate;
}

/* 3D Center Glowing Emblem */
.orbital-center-emblem {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  animation: emblemFloatStage 4.5s ease-in-out infinite alternate;
}

.orbital-emblem-aura {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.45) 0%, rgba(121, 40, 202, 0.25) 50%, transparent 75%);
  filter: blur(24px);
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.orbital-emblem-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(0, 242, 254, 0.6)) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.9));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  user-select: none;
  position: relative;
  z-index: 2;
}

.orbital-center-emblem:hover .orbital-emblem-img {
  transform: scale(1.12);
  filter: drop-shadow(0 0 45px rgba(0, 242, 254, 0.9)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.95));
}

.orbital-center-emblem:hover .orbital-emblem-aura {
  transform: scale(1.3);
  opacity: 1;
}

@keyframes emblemFloatStage {
  0% {
    transform: translateY(-5px) rotate(0deg);
  }

  50% {
    transform: translateY(6px) rotate(1.5deg);
  }

  100% {
    transform: translateY(-5px) rotate(0deg);
  }
}

@keyframes cubeFloat {
  0% {
    transform: translateY(-4px) rotate(0deg);
  }

  100% {
    transform: translateY(4px) rotate(3deg);
  }
}

.orbital-node {
  position: absolute;
  background: rgba(9, 15, 34, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(56, 189, 248, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 242, 254, 0.15);
  border-radius: 14px;
  padding: 0.65rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  z-index: 12;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.orbital-node:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 242, 254, 0.4);
  transform: scale(1.06);
}

.node-icon-glow {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 242, 254, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
}

/* 6 Orbital Positions */
.pos-top {
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.pos-top:hover {
  transform: translateX(-50%) scale(1.06);
}

.pos-top-right {
  top: 75px;
  right: 10px;
}

.pos-bottom-right {
  bottom: 75px;
  right: 15px;
}

.pos-bottom {
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.pos-bottom:hover {
  transform: translateX(-50%) scale(1.06);
}

.pos-bottom-left {
  bottom: 75px;
  left: 15px;
}

.pos-top-left {
  top: 75px;
  left: 10px;
}

/* ==========================================================================
   ULTRA-SLEEK TESTIMONIAL SLIDER ("GERÇEK SONUÇLAR, GERÇEK HİKAYELER")
   ========================================================================== */
.testimonial-slider-wrap {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track-stage {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 24px;
}

.testimonial-card-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 380px 1fr;
  background: rgba(9, 15, 34, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(56, 189, 248, 0.28);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 242, 254, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px) scale(0.97);
  transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  position: relative;
}

.testimonial-card-slide.exit-left {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-40px) scale(0.97);
}

.testimonial-hotel-image {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.testimonial-hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.testimonial-card-slide:hover .testimonial-hotel-image img {
  transform: scale(1.05);
}

.testimonial-hotel-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(6, 9, 19, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.4rem 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.testimonial-content {
  padding: 2.8rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars-rating-row {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.testimonial-quote {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #f1f5f9;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: contain;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.12) 0%, rgba(6, 10, 23, 0.92) 80%);
  border: 1.5px solid rgba(0, 242, 254, 0.5);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.25);
  padding: 6px;
}

.author-details h5,
.author-details .author-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.author-details span {
  font-size: 0.82rem;
  color: #94a3b8;
}

/* Slider Pagination Dots & Arrows */
.testimonial-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.25rem;
}

.slider-dots-group {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.slider-dot-pill {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
  margin: 0 4px;
}

/* 48px accessible touch target for mobile */
.slider-dot-pill::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 48px;
  min-height: 48px;
}

.slider-dot-pill.active {
  width: 32px;
  border-radius: 9999px;
  background: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.8);
}

/* ==========================================================================
   SEKTÖRDEN HABERLER VE İÇGÖRÜLER (BLOG 3-CARD GRID)
   ========================================================================== */
.insights-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}

.insight-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon-cyan);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 242, 254, 0.2);
}

.insight-thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.insight-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insight-card:hover .insight-thumb img {
  transform: scale(1.06);
}

.insight-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.insight-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(0, 242, 254, 0.12);
  color: var(--neon-cyan);
  text-transform: uppercase;
}

.insight-date {
  font-size: 0.78rem;
  color: #94a3b8;
}

.insight-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 1.25rem;
}

.insight-link {
  margin-top: auto;
  color: var(--neon-cyan);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease;
}

.insight-link:hover {
  gap: 0.7rem;
}

/* ==========================================================================
   VIDEO + 3D DİJİTAL VERİ KATMANI (HUD CINEMATICS & REAL-TIME TELEMETRY)
   Apple + Stripe + Enterprise SaaS Style
   ========================================================================== */
.hud-cinematics-section {
  position: relative;
  padding: 6rem 0 7rem;
  background: radial-gradient(circle at 50% 30%, rgba(10, 20, 48, 0.45) 0%, var(--bg-deep) 70%);
  overflow: hidden;
}

.hud-header-center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem;
}

.hud-visual-showcase {
  position: relative;
  width: 100%;
  max-width: 1140px;
  height: 560px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 242, 254, 0.35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 45px rgba(0, 242, 254, 0.18), var(--specular-inset);
  transform-style: preserve-3d;
  perspective: 1200px;
}

.hud-media-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hud-cinematic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.72) contrast(1.15) saturate(1.1);
}

.hud-visual-showcase:hover .hud-cinematic-img {
  transform: scale(1.08);
}

/* 3D Cyan Wireframe Matrix Grid */
.hud-scan-grid {
  position: absolute;
  inset: 0;
  background-size: 36px 36px;
  background-image:
    linear-gradient(to right, rgba(0, 242, 254, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 242, 254, 0.08) 1px, transparent 1px);
  pointer-events: none;
  z-index: 2;
}

/* Rotating Radar Beam */
.hud-radar-sweep {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg at 50% 50%, rgba(0, 242, 254, 0.15) 0deg, transparent 45deg, transparent 360deg);
  animation: radarRotate 8s linear infinite;
  pointer-events: none;
  z-index: 3;
}

@keyframes radarRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hud-vignette-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(2, 4, 8, 0.85) 90%);
  pointer-events: none;
  z-index: 4;
}

/* Floating 3D Telemetry HUD Glass Widgets */
.hud-glass-widget {
  position: absolute;
  z-index: 10;
  background: rgba(4, 9, 24, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 1.25rem 1.4rem;
  color: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 242, 254, 0.15), var(--specular-inset);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.hud-glass-widget:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 242, 254, 0.35);
}

.hud-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--neon-cyan);
  margin-bottom: 0.6rem;
}

.hud-live-beacon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px #34d399;
  animation: liveBeaconPulse 1.8s infinite;
}

@keyframes liveBeaconPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.hud-stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

.hud-stat-value .hud-unit {
  font-size: 0.95rem;
  color: #94a3b8;
  font-weight: 600;
}

.hud-stat-progress {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  margin: 0.7rem 0 0.5rem;
  overflow: hidden;
}

.hud-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #00f2fe, #38bdf8);
  border-radius: 99px;
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.8);
}

.hud-stat-sub {
  font-size: 0.76rem;
  color: #94a3b8;
  white-space: nowrap;
}

/* Specific HUD Widget Positions */
.hud-occupancy-widget {
  top: 28px;
  left: 28px;
  min-width: 260px;
  animation: badgeFloat1 6s ease-in-out infinite alternate;
}

.hud-revpar-widget {
  top: 28px;
  right: 28px;
  min-width: 280px;
  animation: badgeFloat3 6.5s ease-in-out infinite alternate;
}

.hud-badge-gold {
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  font-size: 0.68rem;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  letter-spacing: 0.08em;
}

.hud-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 32px;
  margin: 0.6rem 0;
}

.hud-mini-chart span {
  flex: 1;
  background: linear-gradient(180deg, #fbbf24, rgba(245, 158, 11, 0.25));
  border-radius: 4px;
  transition: height 0.4s ease;
}

.hud-guest-widget {
  bottom: 28px;
  left: 28px;
  min-width: 320px;
  animation: badgeFloat2 7s ease-in-out infinite alternate;
}

.hud-guest-stream {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.hud-stream-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  border-left: 2px solid var(--neon-cyan);
}

.hud-center-action {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 10;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-title-mockup {
    font-size: 3.2rem;
  }

  .services-mockup-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .site-header {
    padding: 0.8rem 0;
  }

  .site-header.scrolled {
    padding: 0.65rem 0;
  }

  .header-actions {
    gap: 0.65rem;
  }

  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s ease;
  }

  .mobile-nav-toggle:active {
    transform: scale(0.94);
    background: rgba(0, 242, 254, 0.15);
  }

  .mobile-nav-toggle svg {
    transition: transform 0.3s ease;
  }

  .mobile-nav-toggle.is-active svg {
    transform: rotate(90deg);
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(6, 10, 23, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0, 242, 254, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85);
    padding: 1.5rem 1.75rem;
    gap: 1rem;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-list.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-item-link {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: block;
    width: 100%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-tagline,
  .hero-actions-row,
  .hero-scroll-indicator {
    justify-content: center;
  }

  .hero-subtext-mockup {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-3d-stage {
    height: 460px;
    overflow: hidden;
  }

  .emblem-3d-visual-wrap,
  .laptop-3d-visual-wrap {
    max-width: 480px;
    height: 440px;
  }

  .emblem-glow-container {
    width: 260px;
    height: 260px;
  }

  .emblem-3d-render-img,
  .laptop-3d-render-img {
    width: 250px;
  }

  .hero-emblem-aura,
  .hero-emblem-orbit-ring.ring-outer {
    width: 380px;
    height: 380px;
  }

  .hero-emblem-orbit-ring.ring-inner {
    width: 300px;
    height: 300px;
  }

  .hero-vertical-motto {
    display: none;
  }

  .metrics-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .metric-column:not(:last-child)::after {
    display: none;
  }

  .projects-showcase-grid {
    grid-template-columns: 1fr;
  }

  /* Section 2: Platform Orbital Grid Tablet Stack */
  .platform-orbital-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Section 4: Blog 2 Columns on Tablet */
  .insights-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Section 5: Testimonial Card Slide Tablet Proportions */
  .testimonial-card-slide {
    grid-template-columns: 300px 1fr;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .cta-banner-motto {
    text-align: center;
  }

  .footer-top-row {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer-nav-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {

  /* Safari iOS GPU Filter optimization */
  .aurora-blob {
    filter: blur(40px);
    -webkit-filter: blur(40px);
    opacity: 0.55;
  }

  .blob-1 {
    width: 340px;
    height: 340px;
    top: -5%;
  }

  .blob-2 {
    width: 340px;
    height: 340px;
    top: 40%;
  }

  .blob-3 {
    width: 300px;
    height: 300px;
  }

  .luxury-blurred-bg {
    filter: blur(12px) brightness(0.3);
    -webkit-filter: blur(12px) brightness(0.3);
    inset: -10px;
    transform: scale(1.02);
  }

  .hero-mockup {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .hero-title-mockup {
    font-size: 2.35rem;
    line-height: 1.18;
  }

  .services-mockup-grid {
    grid-template-columns: 1fr;
  }

  .metric-number {
    font-size: 2.3rem;
  }

  .hero-3d-stage {
    height: 360px;
    overflow: hidden;
  }

  .emblem-3d-visual-wrap,
  .laptop-3d-visual-wrap {
    max-width: 100%;
    height: 340px;
  }

  .emblem-glow-container {
    width: 220px;
    height: 220px;
  }

  .emblem-3d-render-img,
  .laptop-3d-render-img {
    width: 200px;
  }

  .hero-emblem-aura,
  .hero-emblem-orbit-ring.ring-outer {
    width: 280px;
    height: 280px;
  }

  .hero-emblem-orbit-ring.ring-inner {
    width: 220px;
    height: 220px;
  }

  .floating-glass-card {
    display: none !important;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .form-span-2 {
    grid-column: span 1;
  }

  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
  }

  /* Form iOS Safari Auto-Zoom Fix */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    font-size: 16px !important;
  }

  /* -------------------------------------------------------------
     1. SEKTÖRLER HORIZONTAL SWIPEABLE CAROUSEL (RESPONSIVE FIX)
     ------------------------------------------------------------- */
  .sectors-slider-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0 1.25rem;
    margin: 0 -0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .sectors-track {
    display: flex;
    gap: 1rem;
    min-width: unset;
    width: max-content;
    padding-right: 1.5rem;
  }

  .sector-slice-card {
    flex: 0 0 210px;
    height: 240px;
    scroll-snap-align: start;
    border-radius: 18px;
    padding: 1.25rem 1.15rem;
  }

  .sector-slice-title {
    font-size: 1.05rem;
  }

  /* -------------------------------------------------------------
     2. ENTEGRE ÇÖZÜMLER & ORBITAL STAGE MOBILE MATRIX (RESPONSIVE FIX)
     ------------------------------------------------------------- */
  .platform-orbital-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .orbital-stage {
    height: auto !important;
    min-height: unset !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
    padding: 0.5rem 0 !important;
  }

  .orbital-ring,
  .orbital-center-cube,
  .orbital-center-emblem {
    display: none !important;
  }

  .orbital-node {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    white-space: normal !important;
    width: 100% !important;
    padding: 0.85rem 0.95rem !important;
    font-size: 0.84rem !important;
    line-height: 1.35 !important;
    background: rgba(9, 15, 34, 0.88) !important;
    border: 1px solid rgba(56, 189, 248, 0.28) !important;
    border-radius: 14px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5) !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.65rem !important;
  }

  .orbital-node:hover {
    transform: none !important;
  }

  .node-icon-glow {
    width: 30px !important;
    height: 30px !important;
    font-size: 1rem !important;
    flex-shrink: 0 !important;
  }

  /* -------------------------------------------------------------
     3. SOSYAL MEDYA HUD STACKED CLEAN FLOW (RESPONSIVE FIX)
     ------------------------------------------------------------- */
  .hud-visual-showcase {
    height: auto !important;
    min-height: unset !important;
    padding: 1.25rem 1rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    border-radius: 20px !important;
  }

  .hud-media-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hud-glass-widget,
  .hud-occupancy-widget,
  .hud-revpar-widget,
  .hud-guest-widget {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    min-width: unset !important;
    max-width: 100% !important;
    padding: 1rem 1.15rem !important;
    animation: none !important;
    transform: none !important;
    margin: 0 !important;
  }

  .hud-stat-value {
    font-size: 1.65rem !important;
  }

  .hud-mini-chart {
    height: 28px !important;
    margin: 0.5rem 0 !important;
  }

  .hud-stream-item {
    font-size: 0.78rem !important;
    padding: 0.45rem 0.65rem !important;
  }

  .hud-center-action {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    width: 100% !important;
    margin-top: 0.25rem !important;
    z-index: 10;
  }

  .hud-center-action .btn-pill-white {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.85rem 1.25rem !important;
  }

  /* -------------------------------------------------------------
     4. BAŞARI ORTAKLARI TESTIMONIAL SLIDER RESPONSIVE CARD (RESPONSIVE FIX)
     ------------------------------------------------------------- */
  .testimonial-slider-wrap {
    min-height: unset !important;
  }

  .testimonial-track-stage {
    min-height: unset !important;
    height: auto !important;
  }

  .testimonial-card-slide {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    position: absolute !important;
    inset: 0 !important;
    height: auto !important;
    min-height: unset !important;
    border-radius: 20px !important;
  }

  .testimonial-card-slide.active {
    position: relative !important;
  }

  .testimonial-hotel-image {
    width: 100% !important;
    height: 200px !important;
    flex-shrink: 0 !important;
  }

  .testimonial-hotel-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .testimonial-hotel-badge {
    top: 1rem !important;
    left: 1rem !important;
    padding: 0.35rem 0.75rem !important;
    font-size: 0.75rem !important;
  }

  .testimonial-content {
    padding: 1.35rem 1.15rem !important;
    justify-content: flex-start !important;
  }

  .stars-rating-row {
    font-size: 1rem !important;
    margin-bottom: 0.65rem !important;
  }

  .testimonial-quote {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.25rem !important;
  }

  .testimonial-author-row {
    margin-top: auto !important;
    gap: 0.75rem !important;
  }

  .author-img {
    width: 44px !important;
    height: 44px !important;
    padding: 5px !important;
  }

  .author-details h5,
  .author-details .author-name {
    font-size: 0.95rem !important;
  }

  .author-details span {
    font-size: 0.78rem !important;
  }

  .testimonial-nav-row {
    margin-top: 1.5rem !important;
    gap: 1.15rem !important;
  }

  /* -------------------------------------------------------------
     5. BLOG / İÇGÖRÜLER RESPONSIVE SINGLE-COLUMN (RESPONSIVE FIX)
     ------------------------------------------------------------- */
  .insights-grid-3 {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    margin-top: 1.5rem !important;
  }

  .insight-card {
    border-radius: 18px !important;
  }

  .insight-thumb {
    height: 190px !important;
  }

  .insight-body {
    padding: 1.25rem !important;
  }

  .insight-title {
    font-size: 1.08rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.9rem !important;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 0.65rem 0;
  }

  .site-brand-logo {
    height: 30px;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .lang-selector {
    padding: 0.25rem 0.35rem;
    font-size: 0.8rem;
  }

  .btn-pill-white {
    padding: 0.5rem 0.85rem;
    font-size: 0.82rem;
  }

  .hero-title-mockup {
    font-size: 2.05rem;
  }

  .hero-actions-row {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-actions-row .btn-pill-white,
  .hero-actions-row .btn-pill-translucent {
    width: 100%;
    justify-content: center;
  }

  .metrics-grid-4 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-3d-stage {
    height: 310px;
  }

  .emblem-glow-container {
    width: 180px;
    height: 180px;
  }

  .emblem-3d-render-img,
  .laptop-3d-render-img {
    width: 165px;
  }

  .hero-emblem-aura,
  .hero-emblem-orbit-ring.ring-outer {
    width: 240px;
    height: 240px;
  }

  .hero-emblem-orbit-ring.ring-inner {
    width: 190px;
    height: 190px;
  }

  .orbital-stage {
    grid-template-columns: 1fr !important;
    gap: 0.6rem !important;
  }

  .sector-slice-card {
    flex: 0 0 190px !important;
    height: 230px !important;
  }
}

/* ==========================================================================
   REFERANSLAR SAYFASI (REFERENCES & CLIENT DIRECTORY)
   ========================================================================== */
.references-hero-section {
  position: relative;
  padding-top: 9.5rem;
  padding-bottom: 3.5rem;
  text-align: center;
  overflow: hidden;
}

.ref-stats-banner {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.ref-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ref-stat-num {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #fff 30%, var(--neon-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ref-stat-label {
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Filter & Search Bar */
.ref-controls-wrapper {
  position: sticky;
  top: 75px;
  z-index: 40;
  padding: 1.25rem 0;
  margin-bottom: 3rem;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ref-controls-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.ref-filter-tabs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ref-filter-btn {
  padding: 0.55rem 1.15rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ref-filter-btn:hover {
  color: #fff;
  border-color: rgba(0, 242, 254, 0.4);
  background: rgba(0, 242, 254, 0.08);
}

.ref-filter-btn.active {
  color: #020617;
  background: var(--neon-cyan);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 16px rgba(0, 242, 254, 0.4);
}

.ref-search-input-wrap {
  position: relative;
  min-width: 280px;
}

.ref-search-input-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
}

.ref-search-input {
  width: 100%;
  padding: 0.6rem 1rem 0.6rem 2.6rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.86rem;
  outline: none;
  transition: all 0.25s ease;
}

.ref-search-input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 18px rgba(0, 242, 254, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

/* References Grid */
.references-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.ref-client-card {
  position: relative;
  background: rgba(4, 9, 24, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 242, 254, 0.16);
  border-radius: 20px;
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), var(--specular-inset);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.ref-client-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-cyan);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 242, 254, 0.25);
}

.ref-logo-container {
  width: 100%;
  height: 86px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  margin-bottom: 1.25rem;
  transition: background 0.3s ease;
}

.ref-client-card:hover .ref-logo-container {
  background: rgba(255, 255, 255, 0.065);
}

.ref-client-logo {
  max-width: 85%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.ref-client-logo2 {
    max-width: 85%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}
.ref-client-logo.logo-invert {
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  opacity: 0.92;
}

.ref-client-card:hover .ref-client-logo {
  transform: scale(1.05);
}

.ref-client-card:hover .ref-client-logo.logo-invert {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(0, 242, 254, 0.45));
}

.ref-category-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--neon-cyan);
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.25);
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.ref-client-name {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0.85rem;
}

.ref-services-block {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ref-services-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ref-services-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: #38bdf8;
  line-height: 1.45;
}

.ref-client-desc {
  font-size: 0.84rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.ref-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.ref-tag-pill {
  font-size: 0.7rem;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 0.15rem 0.55rem;
  border-radius: 6px;
}

.ref-card-action {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ref-quote-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--neon-cyan);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.ref-client-card:hover .ref-quote-link {
  color: #fff;
  gap: 0.65rem;
}

.ref-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1rem;
  color: #94a3b8;
  display: none;
}

@media (max-width: 1024px) {
  .references-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .references-grid-container {
    grid-template-columns: 1fr;
  }

  .ref-controls-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .ref-filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }

  .ref-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .ref-filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .ref-search-input-wrap {
    width: 100%;
  }

  .ref-stats-banner {
    gap: 1.5rem;
  }
}

/* ==========================================================================
   BLOG LİSTESİ & MAKALE DETAY SAYFASI (VEKTRAWEB FULL+FULL SEO BLOG)
   ========================================================================== */

/* Blog Hero */
.blog-hero-section {
  position: relative;
  padding-top: 9.5rem;
  padding-bottom: 3.5rem;
  text-align: center;
  overflow: hidden;
}

.blog-featured-section {
  padding-bottom: 3rem;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  background: rgba(8, 14, 32, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 242, 254, 0.15);
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-featured-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon-cyan);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.85), 0 0 40px rgba(0, 242, 254, 0.3);
}

.blog-featured-thumb {
  position: relative;
  height: 100%;
  min-height: 340px;
  overflow: hidden;
}

.blog-featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.blog-featured-card:hover .blog-featured-thumb img {
  transform: scale(1.06);
}

.blog-featured-body {
  padding: 3rem 3rem 3rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Blog Grid */
.blog-grid-section {
  padding-bottom: 6rem;
}

.blog-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-item-card {
  background: rgba(8, 14, 32, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.blog-item-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 242, 254, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 242, 254, 0.2);
}

.blog-item-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-item-card:hover .blog-item-thumb img {
  transform: scale(1.07);
}

.blog-item-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.blog-item-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 0.85rem;
  transition: color 0.3s ease;
}

.blog-item-card:hover .blog-item-title {
  color: var(--neon-cyan);
}

.blog-item-excerpt {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--neon-cyan);
}

/* ==========================================================================
   MAKALE DETAY SAYFASI (ARTICLE DETAIL)
   ========================================================================== */
.article-page-wrap {
  padding-top: 8.5rem;
  padding-bottom: 6rem;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: #64748b;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.article-breadcrumb a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.article-breadcrumb .separator {
  color: #475569;
}

.article-breadcrumb .current {
  color: var(--neon-cyan);
  white-space: normal;
  overflow: visible;
  word-break: break-word;
  max-width: 100%;
}

.article-header {
  margin-bottom: 2.5rem;
  max-width: 100%;
}

.article-title-main {
  font-family: var(--font-heading);
  font-size: 2.65rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin: 1.25rem 0 1.5rem;
  letter-spacing: -0.02em;
  word-break: break-word;
  overflow-wrap: break-word;
}

.article-author-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
}

.author-profile-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.35);
  object-fit: cover;
}

.author-meta-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.author-meta-role {
  font-size: 0.82rem;
  color: #94a3b8;
}

.article-share-buttons {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  max-width: 100%;
}

.share-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.share-pill-btn:hover {
  background: rgba(0, 242, 254, 0.18);
  border-color: var(--neon-cyan);
  color: #ffffff;
  transform: translateY(-2px);
}

.article-hero-banner {
  width: 100%;
  max-width: 100%;
  height: 440px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 3rem;
  border: 1px solid rgba(0, 242, 254, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 242, 254, 0.12);
}

.article-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Article Layout Grid (Content + Sidebar) */
.article-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 3.5rem;
  align-items: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* Article Body Typography */
.article-body-content {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #cbd5e1;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.article-body-content>* {
  max-width: 100%;
  box-sizing: border-box;
}

.article-lead {
  font-size: 1.25rem;
  line-height: 1.75;
  color: #f1f5f9;
  font-weight: 500;
  margin-bottom: 2rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--neon-cyan);
  max-width: 100%;
  box-sizing: border-box;
}

.article-body-content h2 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin: 2.75rem 0 1.2rem;
  letter-spacing: -0.01em;
  scroll-margin-top: 100px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.article-body-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 2rem 0 1rem;
  word-break: break-word;
  overflow-wrap: break-word;
}

.article-body-content p {
  margin-bottom: 1.5rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

.article-body-content ul,
.article-body-content ol {
  margin: 1.5rem 0 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.article-body-content li {
  position: relative;
  padding-left: 0.5rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

.article-body-content strong {
  color: #ffffff;
  font-weight: 700;
}

/* Callout Box */
.article-callout {
  background: rgba(0, 242, 254, 0.06);
  border: 1px solid rgba(0, 242, 254, 0.35);
  border-left: 4px solid var(--neon-cyan);
  border-radius: 16px;
  padding: 1.75rem;
  margin: 2.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(0, 242, 254, 0.05);
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
}

.callout-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  background: rgba(0, 242, 254, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.article-callout p {
  margin-bottom: 0;
  color: #e2e8f0;
  font-size: 1.02rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Article Table */
.article-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 2.5rem 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  display: block;
}

.article-table-wrap::-webkit-scrollbar {
  height: 6px;
}

.article-table-wrap::-webkit-scrollbar-track {
  background: rgba(8, 14, 32, 0.8);
}

.article-table-wrap::-webkit-scrollbar-thumb {
  background: var(--neon-cyan);
  border-radius: 3px;
}

.article-table-wrap table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  text-align: left;
  background: rgba(8, 14, 32, 0.6);
  font-size: 0.92rem;
}

.article-table-wrap th {
  background: rgba(14, 23, 49, 0.9);
  padding: 1rem 1.25rem;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 242, 254, 0.25);
  white-space: nowrap;
}

.article-table-wrap td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
}

.article-table-wrap tr:last-child td {
  border-bottom: none;
}

.article-table-wrap tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

/* Sidebar Widgets */
.article-sidebar {
  position: sticky;
  top: 95px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget-card {
  background: rgba(8, 14, 32, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.sidebar-widget-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toc-link {
  font-size: 0.88rem;
  color: #94a3b8;
  text-decoration: none;
  line-height: 1.4;
  transition: all 0.2s ease;
  display: block;
}

.toc-link:hover {
  color: var(--neon-cyan);
  padding-left: 6px;
}

.sidebar-cta-box {
  background: linear-gradient(135deg, rgba(9, 15, 34, 0.95), rgba(6, 182, 212, 0.15));
  border-color: rgba(0, 242, 254, 0.35);
  text-align: center;
}

.sidebar-cta-box h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.65rem;
}

.sidebar-cta-box p {
  font-size: 0.88rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Related Posts Section */
.related-posts-section {
  margin-top: 5rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Overrides for Blog */
@media (max-width: 1024px) {
  .blog-featured-card {
    grid-template-columns: 1fr;
  }

  .blog-featured-thumb {
    min-height: 280px;
  }

  .blog-featured-body {
    padding: 2rem;
  }

  .article-layout-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    width: 100%;
    min-width: 0;
  }

  .article-sidebar {
    position: static;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .blog-hero-section {
    padding-top: 7.5rem;
    padding-bottom: 2rem;
  }

  .blog-grid-3 {
    grid-template-columns: 1fr;
  }

  .article-page-wrap {
    padding-top: 6.5rem;
    padding-bottom: 4rem;
  }

  .article-title-main {
    font-size: 1.7rem;
    line-height: 1.3;
    margin: 1rem 0;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .article-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    padding-left: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .article-callout {
    padding: 1.25rem 1rem;
    margin: 1.75rem 0;
    border-radius: 14px;
  }

  .article-callout p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .article-hero-banner {
    height: 210px;
    border-radius: 16px;
    margin-bottom: 2rem;
  }

  .article-author-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
  }

  .article-share-buttons {
    width: 100%;
    justify-content: flex-start;
  }

  .article-body-content {
    font-size: 0.98rem;
    line-height: 1.75;
    min-width: 0;
    width: 100%;
  }

  .article-body-content h2 {
    font-size: 1.35rem;
    line-height: 1.35;
    margin: 2rem 0 0.85rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .article-body-content h3 {
    font-size: 1.15rem;
    line-height: 1.35;
    margin: 1.5rem 0 0.75rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .article-body-content ul,
  .article-body-content ol {
    margin: 1rem 0 1.5rem 1.25rem;
  }

  .related-posts-section {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
  }

  .sidebar-widget-card {
    padding: 1.35rem 1.15rem;
  }
}

/* ==========================================================================
   SERVICE LANDING PAGES STYLING (SEO SUITE)
   ========================================================================== */
.service-hero-wrap {
  position: relative;
  padding-top: 8.5rem;
  padding-bottom: 4.5rem;
  text-align: center;
  z-index: 2;
}

.service-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.service-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 1.25rem 0 1.5rem;
}

.service-hero-sub {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.service-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.service-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: rgba(8, 14, 32, 0.65);
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.service-stat-item {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.service-stat-item:last-child {
  border-right: none;
}

.service-stat-val {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--neon-cyan);
  line-height: 1.1;
  display: block;
}

.service-stat-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.35rem;
  display: block;
}

/* Service Pillars Grid */
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.service-feature-card {
  background: rgba(8, 14, 32, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 242, 254, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 242, 254, 0.35);
  box-shadow: 0 16px 40px rgba(0, 242, 254, 0.12);
  background: rgba(12, 20, 44, 0.85);
}

.service-feature-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.15);
}

.service-feature-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.85rem;
}

.service-feature-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.service-feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-feature-bullets li {
  font-size: 0.88rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-feature-bullets li::before {
  content: '✓';
  color: var(--neon-cyan);
  font-weight: 700;
}

/* Process Steps Workflow */
.process-grid-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

.process-step-item {
  background: rgba(8, 14, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-step-item:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.4);
}

.process-step-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(0, 242, 254, 0.25);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.process-step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Tech Badges List */
.tech-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.tech-pill {
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  background: rgba(14, 24, 52, 0.75);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
}

.tech-pill:hover {
  border-color: var(--neon-cyan);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
}

/* FAQ Accordion Styling */
.faq-accordion-wrap {
  max-width: 850px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-accordion-card {
  background: rgba(8, 14, 32, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-accordion-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
}

.faq-question-btn {
  width: 100%;
  padding: 1.35rem 1.75rem;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  outline: none;
}

.faq-icon-arrow {
  width: 20px;
  height: 20px;
  stroke: var(--neon-cyan);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-accordion-card.open .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-answer-body {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  display: none;
}

.faq-accordion-card.open .faq-answer-body {
  display: block;
}

/* CTA Showcase Box */
.service-cta-banner {
  margin-top: 6rem;
  margin-bottom: 2rem;
  padding: 3.5rem 3rem;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 0%, rgba(0, 242, 254, 0.15) 0%, rgba(8, 14, 32, 0.95) 75%);
  border: 1px solid rgba(0, 242, 254, 0.35);
  box-shadow: 0 20px 60px rgba(0, 242, 254, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .service-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .service-stat-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .service-hero-wrap {
    padding-top: 7.5rem;
    padding-bottom: 3rem;
  }

  .service-stats-bar {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem 1.25rem;
  }

  .service-stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
  }

  .service-stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .service-features-grid {
    grid-template-columns: 1fr;
  }

  .process-grid-5 {
    grid-template-columns: 1fr;
  }

  .service-cta-banner {
    padding: 2.5rem 1.5rem;
    margin-top: 4rem;
  }
}

/* ==========================================================================
   HAKKIMIZDA (ABOUT US) SECTION
   ========================================================================== */
.about-section {
  position: relative;
  z-index: 10;
  padding: 6.5rem 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 242, 254, 0.04) 0%, transparent 60%);
}

.about-main-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4.5rem;
}

.about-story-lead {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.about-story-paragraph {
  font-size: 1rem;
  line-height: 1.75;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.about-story-paragraph strong {
  color: var(--neon-cyan);
  font-weight: 600;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-feat-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-feature-item:hover .about-feat-icon {
  transform: scale(1.08);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

.about-feat-text h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.about-feat-text p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.55;
  margin: 0;
}

.about-actions-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* About Visual Stage */
.about-visual-card {
  position: relative;
  width: 100%;
  height: 480px;
  background: rgba(8, 14, 32, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.about-visual-aura {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.22) 0%, rgba(121, 40, 202, 0.15) 50%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.about-visual-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 30%, transparent 75%);
  pointer-events: none;
}

.about-center-stage {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-orbital-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-orbital-ring.ring-1 {
  width: 260px;
  height: 260px;
  border: 1px dashed rgba(0, 242, 254, 0.3);
  animation: spinOrbit 40s linear infinite;
}

.about-orbital-ring.ring-2 {
  width: 210px;
  height: 210px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-top-color: rgba(0, 242, 254, 0.8);
  animation: spinOrbitReverse 25s linear infinite;
}

.about-emblem-wrap {
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: emblemLevitate 4.5s ease-in-out infinite alternate;
  z-index: 2;
}

.about-emblem-img {
  width: 150px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(0, 242, 254, 0.5)) drop-shadow(0 15px 35px rgba(2, 6, 23, 0.9));
  user-select: none;
  transition: transform 0.4s ease;
}

.about-visual-card:hover .about-emblem-img {
  transform: scale(1.08);
}

/* Floating Badges */
.about-glass-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: rgba(14, 23, 49, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  z-index: 5;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-glass-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 242, 254, 0.4);
}

.badge-pos-tl {
  top: 1.5rem;
  left: 1.5rem;
}

.badge-pos-tr {
  top: 1.5rem;
  right: 1.5rem;
}

.badge-pos-bl {
  bottom: 1.5rem;
  left: 1.5rem;
}

.badge-pos-br {
  bottom: 1.5rem;
  right: 1.5rem;
}

.badge-icon-cyan {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-badge-num {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.about-badge-desc {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 500;
  margin-top: 2px;
}

/* 4 Pillars Bento Grid */
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.about-pillar-card {
  position: relative;
  padding: 2.25rem 1.75rem;
  border-radius: 22px;
  background: rgba(8, 14, 32, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.about-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 242, 254, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 242, 254, 0.08);
}

.about-pillar-card:hover::before {
  opacity: 1;
}

.pillar-num-label {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: 0.05em;
}

.pillar-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.about-pillar-card:hover .pillar-icon-box {
  transform: scale(1.1);
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.pillar-text {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.65;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .about-main-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-visual-card {
    height: 400px;
  }
}

@media (max-width: 640px) {
  .about-section {
    padding: 4.5rem 0;
  }

  .about-pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-visual-card {
    height: 360px;
  }

  .about-glass-badge {
    padding: 0.5rem 0.75rem;
  }

  .badge-pos-tl {
    top: 1rem;
    left: 1rem;
  }

  .badge-pos-tr {
    top: 1rem;
    right: 1rem;
  }

  .badge-pos-bl {
    bottom: 1rem;
    left: 1rem;
  }

  .badge-pos-br {
    bottom: 1rem;
    right: 1rem;
  }

  .about-center-stage {
    transform: scale(0.85);
  }

  .about-story-lead {
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   DEDICATED HAKKIMIZDA PAGE EXTENDED STYLES
   ========================================================================== */
.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.vision-card {
  position: relative;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  background: rgba(8, 14, 32, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0.8;
}

.vision-card.mission::before {
  background: linear-gradient(90deg, transparent, #a855f7, transparent);
}

.vision-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 25px 60px rgba(0, 242, 254, 0.12);
}

.vision-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 1rem;
}

.vision-card.mission .vision-badge {
  color: #c084fc;
}

.vision-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.vision-text {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.75;
  margin: 0;
}

/* About Process Grid (4-step) */
.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
}

.about-process-card {
  position: relative;
  padding: 2.25rem 1.75rem;
  border-radius: 20px;
  background: rgba(8, 14, 32, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-process-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 242, 254, 0.07);
}

.about-step-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(0, 242, 254, 0.35);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.about-step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.about-step-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

/* Tech Badges Cluster */
.tech-badges-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.tech-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.tech-badge-chip:hover {
  background: rgba(0, 242, 254, 0.1);
  border-color: rgba(0, 242, 254, 0.35);
  color: var(--neon-cyan);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }

  .about-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .vision-card {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   FORM SUCCESS FEEDBACK & TOAST NOTIFICATION
   ========================================================================== */
.modal-success-screen {
  text-align: center;
  padding: 2.5rem 1rem 1.5rem;
  animation: fadeInSuccess 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInSuccess {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-icon-wrap {
  width: 86px;
  height: 86px;
  margin: 0 auto 1.5rem;
  background: rgba(16, 185, 129, 0.12);
  border: 2px solid rgba(16, 185, 129, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px rgba(16, 185, 129, 0.3);
  animation: pulseEmerald 2.5s infinite;
}

@keyframes pulseEmerald {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.vektra-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 99999;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(16, 185, 129, 0.2);
  border-radius: 14px;
  padding: 1rem 1.4rem;
  color: #f1f5f9;
  font-size: 0.95rem;
  font-weight: 500;
  max-width: 90vw;
  width: auto;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.vektra-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.vektra-toast.error {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(239, 68, 68, 0.2);
}

/* ==========================================================================
   LEGAL PAGES & COOKIE PREFERENCE STYLES
   ========================================================================== */
.legal-hero-wrap {
  padding: 8rem 0 3rem;
  position: relative;
  text-align: center;
}

.legal-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.25);
  padding: 0.4rem 1.25rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.legal-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.legal-hero-meta {
  font-size: 0.95rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.legal-layout-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 6rem;
}

@media (max-width: 991px) {
  .legal-layout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.legal-sidebar-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-menu-card {
  background: rgba(8, 14, 32, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.legal-menu-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.legal-menu-item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  font-size: 0.92rem;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s ease;
}

.legal-menu-item-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.legal-menu-item-link.active {
  color: #00f2fe;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.25);
  font-weight: 600;
}

.legal-content-card {
  background: rgba(8, 14, 32, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #cbd5e1;
  font-size: 1.02rem;
  line-height: 1.8;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .legal-content-card {
    padding: 2rem 1.5rem;
  }
}

.legal-content-card h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legal-content-card h2:first-of-type {
  margin-top: 0;
}

.legal-content-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #00f2fe;
  margin: 1.75rem 0 0.75rem;
}

.legal-content-card p {
  margin-bottom: 1.25rem;
}

.legal-content-card ul,
.legal-content-card ol {
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
}

.legal-content-card li {
  margin-bottom: 0.6rem;
}

.legal-callout-box {
  background: rgba(0, 242, 254, 0.04);
  border-left: 4px solid var(--neon-cyan);
  border-radius: 0 14px 14px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  color: #e2e8f0;
  font-size: 0.98rem;
}

.legal-callout-box.warning {
  background: rgba(245, 158, 11, 0.06);
  border-left-color: #f59e0b;
}

.legal-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 1.75rem 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

.legal-table th {
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  font-weight: 600;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-table td {
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: #94a3b8;
}

.legal-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
  color: #e2e8f0;
}

/* Cookie Preferences Center in cerez-politikasi.php */
.cookie-pref-center {
  background: rgba(13, 20, 44, 0.85);
  border: 1px solid rgba(0, 242, 254, 0.2);
  border-radius: 18px;
  padding: 2rem;
  margin: 2.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-pref-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-pref-item:last-child {
  border-bottom: none;
}

.cookie-pref-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.35rem;
}

.cookie-pref-info p {
  font-size: 0.88rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
}

/* Custom Switch Toggle */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #334155;
  transition: .3s ease;
  border-radius: 34px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .3s ease;
  border-radius: 50%;
}

input:checked+.cookie-slider {
  background-color: #00f2fe;
}

input:focus+.cookie-slider {
  box-shadow: 0 0 1px #00f2fe;
}

input:checked+.cookie-slider:before {
  transform: translateX(24px);
  background-color: #04060d;
}

.cookie-switch.disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.cookie-switch.disabled .cookie-slider {
  cursor: not-allowed;
}

/* Floating Site-Wide Cookie Consent Banner */
#vektra-cookie-consent-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 980px;
  background: rgba(8, 14, 34, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 242, 254, 0.35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 242, 254, 0.2);
  border-radius: 20px;
  padding: 1.35rem 1.85rem;
  z-index: 999999;
  color: #e2e8f0;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  animation: slideUpCookie 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.cookie-banner-icon {
  font-size: 32px;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.4));
  flex-shrink: 0;
}

.cookie-banner-text {
  flex: 1;
  min-width: 0;
}

.cookie-banner-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 4px;
}

.cookie-banner-desc {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.45;
  margin: 0;
}

.cookie-banner-link {
  color: #00f2fe;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: inherit;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cookie-btn-manage {
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-btn-manage:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.cookie-btn-reject {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.cookie-btn-accept {
  padding: 0.55rem 1.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #04060d;
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.4);
}

.cookie-btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(0, 242, 254, 0.6);
}

@keyframes slideUpCookie {
  from {
    opacity: 0;
    transform: translate(-50%, 40px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 900px) {
  #vektra-cookie-consent-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 1.15rem;
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    max-width: none;
    transform: none;
    padding: 1.15rem 1.25rem;
    border-radius: 18px;
  }

  .cookie-banner-content {
    align-items: flex-start;
    gap: 12px;
  }

  .cookie-banner-icon {
    font-size: 26px;
    margin-top: 2px;
  }

  .cookie-banner-title {
    font-size: 0.98rem;
  }

  .cookie-banner-desc {
    font-size: 0.84rem;
  }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }

  .cookie-btn-manage {
    grid-column: 1 / -1;
    order: 3;
    padding: 0.55rem 0.75rem;
    font-size: 0.8rem;
  }

  .cookie-btn-reject {
    order: 1;
    padding: 0.65rem 0.75rem;
    font-size: 0.82rem;
  }

  .cookie-btn-accept {
    order: 2;
    padding: 0.65rem 0.75rem;
    font-size: 0.85rem;
  }

  @keyframes slideUpCookie {
    from {
      opacity: 0;
      transform: translateY(40px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 480px) {
  #vektra-cookie-consent-bar {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 1rem;
    border-radius: 16px;
  }

  .cookie-banner-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cookie-btn-accept {
    order: 1;
  }

  .cookie-btn-reject {
    order: 2;
  }

  .cookie-btn-manage {
    order: 3;
  }
}