:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #050505;
  --cyan: #00f0ff;
  --cyan-dim: rgba(0, 240, 255, 0.15);
  --blue: #0044ff;
  --purple: #7c3aed;
  --white: #ffffff;
  --gray: #a0a0b0;
  --gray-dim: #606070;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.06);
  --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.4), 0 0 60px rgba(0, 240, 255, 0.1);
  --glow-blue: 0 0 20px rgba(0, 68, 255, 0.4), 0 0 60px rgba(0, 68, 255, 0.1);
  --font-heading: 'Orbitron', 'Space Grotesk', sans-serif;
  --font-sub: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--white);
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

section,
div,
nav,
header,
footer {
  max-width: 100%;
  overflow-x: hidden;
}

::selection {
  background: var(--cyan);
  color: var(--bg-primary);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--cyan-dim);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cyan);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  overflow-x: hidden;
}

/* ─── Preloader ─── */
#preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #0a0a0a 0%, #000000 100%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  overflow: hidden;
}

#preloader::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: preloader-pulse 3s ease-in-out infinite;
  filter: blur(60px);
}

#preloader::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: preloader-pulse 4s ease-in-out infinite 1s;
  filter: blur(80px);
}

@keyframes preloader-pulse {

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

  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 768px) {
  #preloader {
    display: none !important;
  }
}

.loader-ring {
  width: 80px;
  height: 80px;
  border: 3px solid transparent;
  border-top: 3px solid var(--cyan);
  border-right: 3px solid var(--cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: relative;
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.4), 0 0 80px rgba(0, 240, 255, 0.2), inset 0 0 20px rgba(0, 240, 255, 0.1);
  z-index: 2;
}

.loader-ring::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 3px solid transparent;
  border-bottom: 3px solid var(--blue);
  border-left: 3px solid var(--blue);
  border-radius: 50%;
  animation: spin 0.7s linear infinite reverse;
  box-shadow: 0 0 30px rgba(0, 68, 255, 0.4), inset 0 0 15px rgba(0, 68, 255, 0.2);
}

.loader-ring::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 2px solid transparent;
  border-top: 2px solid var(--purple);
  border-right: 2px solid var(--purple);
  border-radius: 50%;
  animation: spin 0.5s linear infinite;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

.loader-text {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--cyan);
  animation: text-glow-pulse 2s ease-in-out infinite;
  text-transform: uppercase;
  z-index: 2;
  position: relative;
}

.loader-text::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: var(--purple);
  filter: blur(8px);
  opacity: 0.5;
  animation: text-blur-shift 3s ease-in-out infinite;
}

@keyframes text-blur-shift {

  0%,
  100% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(2px, -2px);
  }

  50% {
    transform: translate(-2px, 2px);
  }

  75% {
    transform: translate(2px, 2px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes text-glow-pulse {

  0%,
  100% {
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.3), 0 0 60px rgba(0, 240, 255, 0.1);
    opacity: 0.8;
  }

  50% {
    text-shadow: 0 0 40px rgba(0, 240, 255, 0.8), 0 0 80px rgba(0, 240, 255, 0.5), 0 0 120px rgba(0, 240, 255, 0.3), 0 0 160px rgba(0, 240, 255, 0.1);
    opacity: 1;
  }
}

/* Preloader particles */
.preloader-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.preloader-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan), 0 0 20px rgba(0, 240, 255, 0.5);
  animation: particle-float-preloader linear infinite;
}

.preloader-particle:nth-child(1) {
  left: 10%;
  animation-duration: 3s;
  animation-delay: 0s;
}

.preloader-particle:nth-child(2) {
  left: 20%;
  animation-duration: 4s;
  animation-delay: 0.5s;
}

.preloader-particle:nth-child(3) {
  left: 30%;
  animation-duration: 3.5s;
  animation-delay: 1s;
}

.preloader-particle:nth-child(4) {
  left: 40%;
  animation-duration: 4.5s;
  animation-delay: 0.3s;
}

.preloader-particle:nth-child(5) {
  left: 50%;
  animation-duration: 3.8s;
  animation-delay: 0.8s;
}

.preloader-particle:nth-child(6) {
  left: 60%;
  animation-duration: 4.2s;
  animation-delay: 0.2s;
}

.preloader-particle:nth-child(7) {
  left: 70%;
  animation-duration: 3.3s;
  animation-delay: 1.2s;
}

.preloader-particle:nth-child(8) {
  left: 80%;
  animation-duration: 4.8s;
  animation-delay: 0.6s;
}

.preloader-particle:nth-child(9) {
  left: 90%;
  animation-duration: 3.6s;
  animation-delay: 0.9s;
}

@keyframes particle-float-preloader {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
    transform: translateY(90vh) scale(1);
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-10vh) scale(0);
    opacity: 0;
  }
}

/* Mobile preloader enhancements */
@media (max-width: 768px) {
  .loader-ring {
    width: 100px;
    height: 100px;
    border-width: 4px;
    box-shadow: 0 0 60px rgba(0, 240, 255, 0.6), 0 0 120px rgba(0, 240, 255, 0.3), inset 0 0 30px rgba(0, 240, 255, 0.2);
  }

  .loader-ring::before {
    border-width: 4px;
    inset: 8px;
  }

  .loader-ring::after {
    border-width: 3px;
    inset: 16px;
  }

  .loader-text {
    font-size: 18px;
    letter-spacing: 8px;
  }

  #preloader::before {
    width: 400px;
    height: 400px;
  }

  #preloader::after {
    width: 300px;
    height: 300px;
  }
}

/* ─── Navigation ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease;
  background: transparent;
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  padding: 14px 48px;
  border-bottom: 1px solid rgba(0, 240, 255, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

@media (max-width: 768px) {
  .nav-logo {
    gap: 0;
  }
}

.nav-logo span {
  color: var(--cyan);
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 6px var(--cyan);
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 4px var(--cyan);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 12px var(--cyan), 0 0 20px rgba(0, 240, 255, 0.1);
    transform: scale(1.2);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--cyan);
}

.nav-links a:hover {
  color: var(--cyan);
}

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

.nav-hamburger {
  display: none;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px 12px;
  z-index: 1001;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--cyan);
}

.nav-hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--cyan);
  transition: all 0.3s ease;
  border-radius: 1px;
}

@media (max-width: 768px) {
  .nav-hamburger-text {
    display: block;
  }
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(0, 240, 255, 0.04);
  top: -200px;
  right: -200px;
  animation: glow-breather 5s ease-in-out infinite;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(124, 58, 237, 0.04);
  bottom: -100px;
  left: -100px;
  animation: glow-breather 7s ease-in-out infinite 1s;
}

.hero-glow-3 {
  width: 300px;
  height: 300px;
  background: rgba(0, 68, 255, 0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glow-breather 6s ease-in-out infinite 0.5s;
}

@keyframes glow-breather {

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

  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, transparent 30%, black 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 30%, black 70%);
}

.hero-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--cyan);
  border-radius: 50%;
  animation: particle-float linear infinite;
  opacity: 0.2;
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.2;
  }

  90% {
    opacity: 0.2;
  }

  100% {
    transform: translateY(-10vh) rotate(360deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 20px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 100px;
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 32px;
  background: rgba(0, 240, 255, 0.04);
  opacity: 0;
  animation: fadeInDown 0.8s ease 0.3s forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

.badge-dot {
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: heroTitleIn 1s ease 0.5s forwards;
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    filter: blur(8px);
  }

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

.hero-title .glitch-text {
  position: relative;
  display: inline-block;
  animation: glitch-skew 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.hero-title .glitch-text::before,
.hero-title .glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-title .glitch-text::before {
  color: var(--cyan);
  z-index: -1;
  animation: glitch-top 3s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.hero-title .glitch-text::after {
  color: var(--purple);
  z-index: -1;
  animation: glitch-bottom 2.5s infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-skew {

  0%,
  85%,
  100% {
    transform: skew(0deg);
  }

  86% {
    transform: skew(0.5deg);
  }

  88% {
    transform: skew(-0.3deg);
  }
}

@keyframes glitch-top {

  0%,
  90%,
  100% {
    transform: translate(0);
  }

  2% {
    transform: translate(-3px, -1px);
  }

  4% {
    transform: translate(2px, 1px);
  }

  6% {
    transform: translate(-1px, -1px);
  }

  8% {
    transform: translate(0);
  }
}

@keyframes glitch-bottom {

  0%,
  90%,
  100% {
    transform: translate(0);
  }

  2% {
    transform: translate(2px, 1px);
  }

  4% {
    transform: translate(-3px, -1px);
  }

  6% {
    transform: translate(1px, 1px);
  }

  8% {
    transform: translate(0);
  }
}

.hero-title .glitch-text {
  position: relative;
  display: inline-block;
  animation: glitch-skew 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

@keyframes glitch-skew {

  0%,
  85%,
  100% {
    transform: skew(0deg);
  }

  86% {
    transform: skew(0.5deg);
  }

  88% {
    transform: skew(-0.3deg);
  }
}

.hero-title .glow-highlight {
  color: var(--cyan);
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.6), 0 0 80px rgba(255, 255, 255, 0.3);
  animation: text-glow-pulse 3s ease-in-out infinite;
}

@keyframes text-glow-pulse {

  0%,
  100% {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 60px rgba(255, 255, 255, 0.2);
  }

  50% {
    text-shadow: 0 0 50px rgba(255, 255, 255, 0.8), 0 0 100px rgba(255, 255, 255, 0.4), 0 0 150px rgba(255, 255, 255, 0.2);
  }
}

.hero-desc {
  font-family: var(--font-sub);
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray);
  margin-bottom: 40px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.7s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.9s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  border-radius: 4px;
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--cyan);
  color: var(--bg-primary);
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5), 0 0 60px rgba(0, 240, 255, 0.15);
  }
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.5), 0 0 80px rgba(0, 240, 255, 0.2);
  animation: none;
}

.btn-secondary {
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(0, 240, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(0, 240, 255, 0.1);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.btn-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-dim);
  font-family: var(--font-sub);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scroll-indicator-pulse 3s ease-in-out infinite;
}

@keyframes scroll-indicator-pulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scroll-line 2s ease-in-out infinite;
  position: relative;
}

@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

.scroll-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  width: 3px;
  height: 3px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--cyan);
  animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% {
    top: 0;
    opacity: 1;
  }

  50% {
    top: 100%;
    opacity: 0;
  }

  51% {
    top: 100%;
    opacity: 0;
  }

  100% {
    top: 0;
    opacity: 1;
  }
}

/* ─── Scanlines & Noise ─── */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.03) 2px,
      rgba(0, 0, 0, 0.03) 4px);
  animation: scanline-scroll 8s linear infinite;
}

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

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

.noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  animation: grain-move 0.6s steps(3) infinite;
}

@keyframes grain-move {
  0% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-5px, -10px);
  }

  20% {
    transform: translate(-15px, 5px);
  }

  30% {
    transform: translate(7px, -12px);
  }

  40% {
    transform: translate(-3px, 8px);
  }

  50% {
    transform: translate(12px, -5px);
  }

  60% {
    transform: translate(-8px, 15px);
  }

  70% {
    transform: translate(18px, 2px);
  }

  80% {
    transform: translate(-12px, -8px);
  }

  90% {
    transform: translate(5px, 18px);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* ─── Reveal on Scroll ─── */
.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.98);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease;
  filter: blur(4px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.25s;
}

.reveal-delay-3 {
  transition-delay: 0.4s;
}

.reveal-delay-4 {
  transition-delay: 0.55s;
}

/* ─── Stats ─── */
.stats {
  padding: 80px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  transition: all 0.4s ease;
  animation: border-glow 4s ease-in-out infinite, float-gentle 8s ease-in-out infinite;
}

@keyframes border-glow {

  0%,
  100% {
    border-color: rgba(0, 240, 255, 0.06);
  }

  50% {
    border-color: rgba(0, 240, 255, 0.2);
  }
}

.stat-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-5px);
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 240, 255, 0.08);
  border-radius: 12px;
  color: var(--cyan);
  transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
  background: var(--cyan);
  color: var(--bg-primary);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.stat-icon .icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .suffix {
  font-size: 0.6em;
}

.stat-label {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
}

/* ─── Section Header ─── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
  opacity: 0.7;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Services ─── */
.services {
  padding: 120px 0;
  background: var(--bg-tertiary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 40px 28px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  cursor: default;
  animation: border-glow 4s ease-in-out infinite;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 4px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--cyan), transparent, var(--purple)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: transparent;
}

.service-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 240, 255, 0.06), transparent 70%);
  border-radius: 50%;
  opacity: 0.4;
  transition: opacity 0.4s ease;
  pointer-events: none;
  animation: glow-pulse-soft 3s ease-in-out infinite;
}

@keyframes glow-pulse-soft {

  0%,
  100% {
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.2);
  }

  50% {
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.4), 0 0 50px rgba(0, 240, 255, 0.1);
  }
}

.service-card:hover .service-card-glow {
  opacity: 1;
  animation-duration: 1.5s;
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon .icon {
  width: 56px;
  height: 56px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.5;
  transition: filter 0.4s ease;
}

.service-card:hover .service-icon .icon {
  filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.5));
}

.service-card h3 {
  font-family: var(--font-sub);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--white);
}

.service-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 16px;
}

.service-features {
  text-align: left;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray);
  padding: 4px 0;
}

.check-icon {
  width: 14px;
  height: 14px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 2;
}

.service-card .service-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 240, 255, 0.2);
  letter-spacing: 1px;
  animation: twinkle 4s ease-in-out infinite;
}

/* ─── Themes ─── */
.themes {
  padding: 120px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.theme-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-card:hover {
  border-color: rgba(0, 240, 255, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0, 240, 255, 0.1);
}

.theme-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bg-primary);
  z-index: 2;
}

.theme-preview {
  height: 180px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(124, 58, 237, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.theme-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
  background-size: 200% 100%;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.theme-preview-inner {
  text-align: center;
  z-index: 1;
}

.preview-label {
  display: block;
  font-size: 11px;
  color: var(--gray-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 100px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.preview-btn:hover {
  background: var(--cyan);
  color: var(--bg-primary);
}

.preview-btn .icon {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.theme-content {
  padding: 24px;
}

.theme-header {
  margin-bottom: 16px;
}

.theme-header h3 {
  font-family: var(--font-sub);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.theme-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.theme-rating .star {
  width: 14px;
  height: 14px;
  stroke: var(--gray-dim);
  fill: none;
}

.theme-rating .star.filled {
  stroke: #ffd700;
  fill: #ffd700;
}

.theme-rating span {
  font-size: 12px;
  color: var(--gray-dim);
  margin-left: 4px;
}

.theme-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.theme-feature {
  padding: 4px 10px;
  background: rgba(0, 240, 255, 0.06);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 100px;
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 0.5px;
}

.theme-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--card-border);
}

.theme-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.old-price {
  font-size: 14px;
  color: var(--gray-dim);
  text-decoration: line-through;
}

.current-price {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--cyan);
}

.theme-btn {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-btn:hover {
  background: var(--cyan);
  color: var(--bg-primary);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

/* ─── Pricing ─── */
.pricing {
  padding: 120px 0;
  background: var(--bg-tertiary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}

.pricing-card {
  position: relative;
  padding: 40px 32px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  text-align: center;
  transition: all 0.4s ease;
  animation: border-glow 4s ease-in-out infinite;
}

.pricing-card:hover {
  border-color: rgba(0, 240, 255, 0.2);
  transform: translateY(-5px);
}

.pricing-card.popular {
  border-color: var(--cyan);
  background: rgba(0, 240, 255, 0.03);
  transform: scale(1.05);
  box-shadow: var(--glow-cyan);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--cyan);
  color: var(--bg-primary);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.pricing-price {
  margin-bottom: 24px;
}

.pricing-price .price {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--cyan);
  text-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.pricing-price .period {
  font-size: 16px;
  color: var(--gray);
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--gray);
}

.pricing-features .check-icon {
  width: 16px;
  height: 16px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 2;
}

.pricing-btn {
  width: 100%;
  padding: 14px 24px;
  border: 1px solid var(--card-border);
  background: transparent;
  color: var(--gray);
  border-radius: 4px;
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.pricing-card.popular .pricing-btn {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--bg-primary);
}

.pricing-card.popular .pricing-btn:hover {
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
}

/* ─── Testimonials ─── */
.testimonials {
  padding: 120px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  transition: all 0.4s ease;
  animation: border-glow 5s ease-in-out infinite;
}

.testimonial-card:hover {
  border-color: rgba(0, 240, 255, 0.2);
  transform: translateY(-5px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars .star {
  width: 16px;
  height: 16px;
  stroke: var(--gray-dim);
  fill: none;
}

.testimonial-stars .star.filled {
  stroke: #ffd700;
  fill: #ffd700;
}

.testimonial-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--bg-primary);
  font-family: var(--font-heading);
}

.author-info strong {
  display: block;
  font-size: 14px;
  color: var(--white);
}

.author-info span {
  font-size: 12px;
  color: var(--gray-dim);
}

/* ─── FAQ ─── */
.faq {
  padding: 120px 0;
  background: var(--bg-tertiary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--card-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: var(--font-sub);
}

.faq-question:hover {
  color: var(--cyan);
}

.faq-icon {
  width: 20px;
  height: 20px;
  stroke: var(--gray-dim);
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ─── Contact ─── */
.contact {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  overflow: hidden;
}

.contact-bg-animated {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.contact-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(0, 240, 255, 0.1);
  animation: contact-circle-float 20s ease-in-out infinite;
}

.contact-circle-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
  animation-delay: 0s;
}

.contact-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -80px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
  animation-delay: 3s;
}

.contact-circle-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 68, 255, 0.05) 0%, transparent 70%);
  animation-delay: 6s;
}

@keyframes contact-circle-float {

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

  25% {
    transform: translate(30px, -30px) scale(1.1);
  }

  50% {
    transform: translate(-20px, 20px) scale(0.9);
  }

  75% {
    transform: translate(40px, -10px) scale(1.05);
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.contact-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  animation: glow-wave 4s ease-in-out infinite, bounce-wave 6s ease-in-out infinite !important;
}

.contact-card:nth-child(1) {
  animation-delay: 0s, 0s !important;
}

.contact-card:nth-child(2) {
  animation-delay: 0.5s, 0.7s !important;
}

.contact-card:nth-child(3) {
  animation-delay: 1s, 1.4s !important;
}

.contact-card:nth-child(4) {
  animation-delay: 1.5s, 2.1s !important;
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cyan-dim) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.contact-card:hover {
  transform: translateY(-15px) scale(1.05) rotate(2deg);
  border-color: var(--cyan);
  box-shadow: 0 25px 70px rgba(0, 240, 255, 0.3), 0 0 50px rgba(0, 240, 255, 0.2);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cyan-dim), rgba(0, 68, 255, 0.1));
  border: 2px solid var(--cyan);
  border-radius: 50%;
  color: var(--cyan);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
  animation: icon-spin-bounce 10s ease-in-out infinite;
}

.contact-card-icon svg {
  width: 36px;
  height: 36px;
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.6), 0 0 80px rgba(0, 240, 255, 0.3);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--bg-primary);
}

.contact-card h3 {
  font-family: var(--font-sub);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.contact-card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.contact-card-btn {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--cyan);
  border-radius: 8px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-card-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cyan);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.contact-card-btn:hover::before {
  transform: translateY(0);
}

.contact-card-btn:hover {
  color: var(--bg-primary);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
  transform: scale(1.05);
}

.contact-socials-section {
  text-align: center;
  padding: 40px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  animation: glow-wave 5s ease-in-out infinite;
}

.contact-socials-section h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.contact-socials-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-socials-grid a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 50%;
  color: var(--gray);
  transition: all 0.4s ease;
  animation: scale-pulse 4s ease-in-out infinite;
}

.contact-socials-grid a:nth-child(1) {
  animation-delay: 0s;
}

.contact-socials-grid a:nth-child(2) {
  animation-delay: 0.3s;
}

.contact-socials-grid a:nth-child(3) {
  animation-delay: 0.6s;
}

.contact-socials-grid a:nth-child(4) {
  animation-delay: 0.9s;
}

.contact-socials-grid a svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.contact-socials-grid a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-dim);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
  transform: translateY(-8px) rotate(360deg) scale(1.2);
}

/* ─── Footer ─── */
footer {
  padding: 80px 0 40px;
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gray-dim);
  display: inline-block;
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--cyan);
}

.footer-brand p {
  font-size: 13px;
  color: var(--gray-dim);
  line-height: 1.6;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--gray-dim);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-newsletter h4 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.footer-newsletter p {
  font-size: 13px;
  color: var(--gray-dim);
  margin-bottom: 12px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  font-size: 13px;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
  border-color: var(--cyan);
}

.newsletter-form button {
  padding: 10px 16px;
  background: var(--cyan);
  color: var(--bg-primary);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 700;
}

.newsletter-form button:hover {
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--card-border);
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--gray-dim);
  letter-spacing: 0.5px;
}

.footer-bottom .footer-year {
  color: rgba(255, 255, 255, 0.15);
}

/* ─── Back to Top ─── */
#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  animation: glow-pulse-soft 3s ease-in-out infinite;
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  background: var(--cyan);
  color: var(--bg-primary);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
  transform: translateY(-4px);
}

#backToTop svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ─── Geometric Decor ─── */
.geo-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.geo-shape {
  position: absolute;
  border: 1px solid rgba(0, 240, 255, 0.04);
}

.geo-shape-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: -100px;
  right: -80px;
  border-color: rgba(0, 240, 255, 0.06);
  animation: drift 20s ease-in-out infinite;
}

.geo-shape-2 {
  width: 200px;
  height: 200px;
  transform: rotate(45deg);
  bottom: 60px;
  left: -60px;
  border-color: rgba(124, 58, 237, 0.05);
  animation: drift-slow 25s ease-in-out infinite;
}

.geo-shape-3 {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  bottom: -200px;
  right: -150px;
  border-color: rgba(0, 68, 255, 0.04);
  animation: drift 18s ease-in-out infinite 2s;
}

.geo-shape-4 {
  width: 150px;
  height: 150px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  top: 40%;
  left: -40px;
  border: none;
  background: rgba(0, 240, 255, 0.03);
  animation: drift-slow 22s ease-in-out infinite 1s;
}

.geo-shape-5 {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(0, 240, 255, 0.05);
  border-radius: 50%;
  top: 20%;
  right: 15%;
  animation: float-up 12s linear infinite;
}

.geo-shape-6 {
  width: 50px;
  height: 50px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  background: rgba(0, 68, 255, 0.04);
  border: none;
  top: 60%;
  left: 10%;
  animation: float-up 15s linear infinite 3s;
}

.geo-shape-7 {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(124, 58, 237, 0.06);
  transform: rotate(45deg);
  top: 30%;
  left: 5%;
  animation: float-up 18s linear infinite 6s;
}

.geo-shape-8 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.03);
  top: 70%;
  right: 5%;
  animation: float-up 14s linear infinite 8s;
}

.geo-shape-9 {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(0, 68, 255, 0.05);
  transform: rotate(30deg);
  top: 10%;
  left: 30%;
  animation: float-up 20s linear infinite 5s;
}

.geo-shape-twinkle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--cyan), 0 0 12px rgba(0, 240, 255, 0.2);
}

.geo-shape-twinkle:nth-child(1) {
  top: 15%;
  left: 20%;
  animation: twinkle 3s ease-in-out infinite 0.5s;
}

.geo-shape-twinkle:nth-child(2) {
  top: 25%;
  right: 30%;
  animation: twinkle 4s ease-in-out infinite 1s;
}

.geo-shape-twinkle:nth-child(3) {
  top: 55%;
  left: 40%;
  animation: twinkle 3.5s ease-in-out infinite 2s;
}

.geo-shape-twinkle:nth-child(4) {
  top: 75%;
  right: 20%;
  animation: twinkle 2.8s ease-in-out infinite 0.3s;
}

.geo-shape-twinkle:nth-child(5) {
  top: 45%;
  left: 15%;
  animation: twinkle 4.2s ease-in-out infinite 1.5s;
}

.geo-shape-twinkle:nth-child(6) {
  top: 85%;
  left: 60%;
  animation: twinkle 3.2s ease-in-out infinite 2.5s;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(15px, -20px) rotate(3deg);
  }

  50% {
    transform: translate(-10px, 10px) rotate(-2deg);
  }

  75% {
    transform: translate(20px, -10px) rotate(4deg);
  }

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

@keyframes drift-slow {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(25px, -10px) rotate(5deg);
  }

  66% {
    transform: translate(-15px, 15px) rotate(-3deg);
  }

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

@keyframes float-up {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-10vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes twinkle {

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

  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

/* ─── Corner Accent ─── */
.corner-accent {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: rgba(0, 240, 255, 0.08);
}

.corner-accent-tl {
  top: 20px;
  left: 20px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.corner-accent-tr {
  top: 20px;
  right: 20px;
  border-top: 1px solid;
  border-right: 1px solid;
}

.corner-accent-bl {
  bottom: 20px;
  left: 20px;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.corner-accent-br {
  bottom: 20px;
  right: 20px;
  border-bottom: 1px solid;
  border-right: 1px solid;
}

/* ─── Section Divider ─── */
.section-divider {
  position: relative;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(0, 240, 255, 0.08), transparent);
  overflow: hidden;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--cyan) 50%, transparent 100%);
  opacity: 0.3;
  animation: wave-line 3s ease-in-out infinite;
}

@keyframes wave-line {
  0% {
    transform: translateX(-100%);
  }

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

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .pricing-card.popular {
    transform: scale(1);
  }

  .pricing-card.popular:hover {
    transform: translateY(-5px);
  }

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



@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── References Section ─── */
.references {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  overflow: hidden;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.reference-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.reference-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cyan-dim) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.reference-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--cyan);
  box-shadow: 0 20px 60px rgba(0, 240, 255, 0.2), 0 0 40px rgba(0, 240, 255, 0.1);
}

.reference-card:hover::before {
  opacity: 1;
}

.reference-card-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, var(--cyan), var(--blue), var(--purple));
  border-radius: 16px;
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.4s ease;
  z-index: -1;
}

.reference-card:hover .reference-card-glow {
  opacity: 0.3;
  animation: rotate-glow 3s linear infinite;
}

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

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

.reference-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cyan-dim), rgba(0, 68, 255, 0.1));
  border: 1px solid var(--cyan);
  border-radius: 12px;
  color: var(--cyan);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.reference-icon svg {
  width: 32px;
  height: 32px;
}

.reference-card:hover .reference-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--bg-primary);
}

.reference-card h3 {
  font-family: var(--font-sub);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.reference-card:hover h3 {
  color: var(--cyan);
}

.reference-category {
  font-size: 13px;
  color: var(--gray);
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.reference-card:hover .reference-category {
  background: var(--cyan-dim);
  border-color: var(--cyan);
  color: var(--cyan);
}

.reference-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--cyan);
  padding: 10px 20px;
  border: 1px solid var(--cyan);
  border-radius: 8px;
  margin-top: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.reference-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cyan);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.reference-link:hover::before {
  transform: translateX(0);
}

.reference-link:hover {
  color: var(--bg-primary);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.reference-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.reference-link:hover svg {
  transform: translate(3px, -3px);
}

/* ─── Enhanced Animations ─── */
@keyframes float-smooth {

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

  25% {
    transform: translateY(-15px) rotate(2deg);
  }

  50% {
    transform: translateY(-8px) rotate(-1deg);
  }

  75% {
    transform: translateY(-20px) rotate(1deg);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2), 0 0 40px rgba(0, 240, 255, 0.1);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.4), 0 0 80px rgba(0, 240, 255, 0.2);
    transform: scale(1.02);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

/* ─── NEW Dynamic Animations for All Cards ─── */
@keyframes bounce-wave {

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

  25% {
    transform: translateY(-12px) scale(1.02);
  }

  50% {
    transform: translateY(0px) scale(1);
  }

  75% {
    transform: translateY(-6px) scale(1.01);
  }
}

@keyframes slide-rotate {

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

  25% {
    transform: translateX(8px) rotate(2deg);
  }

  50% {
    transform: translateX(0px) rotate(0deg);
  }

  75% {
    transform: translateX(-8px) rotate(-2deg);
  }
}

@keyframes scale-pulse {

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

  50% {
    transform: scale(1.05);
  }
}

@keyframes glow-wave {

  0%,
  100% {
    border-color: rgba(0, 240, 255, 0.06);
    box-shadow: 0 0 0 rgba(0, 240, 255, 0);
  }

  50% {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2), 0 0 40px rgba(0, 240, 255, 0.1);
  }
}

.service-card {
  animation: glow-wave 3s ease-in-out infinite, bounce-wave 4s ease-in-out infinite !important;
}

.service-card:nth-child(1) {
  animation-delay: 0s, 0s !important;
}

.service-card:nth-child(2) {
  animation-delay: 0.3s, 0.4s !important;
}

.service-card:nth-child(3) {
  animation-delay: 0.6s, 0.8s !important;
}

.service-card:nth-child(4) {
  animation-delay: 0.9s, 1.2s !important;
}

.theme-card {
  animation: glow-wave 3.5s ease-in-out infinite, slide-rotate 5s ease-in-out infinite !important;
}

.theme-card:nth-child(1) {
  animation-delay: 0s, 0s !important;
}

.theme-card:nth-child(2) {
  animation-delay: 0.4s, 0.6s !important;
}

.theme-card:nth-child(3) {
  animation-delay: 0.8s, 1.2s !important;
}

.theme-card:nth-child(4) {
  animation-delay: 1.2s, 1.8s !important;
}

.theme-card:nth-child(5) {
  animation-delay: 1.6s, 2.4s !important;
}

.theme-card:nth-child(6) {
  animation-delay: 2s, 3s !important;
}

.testimonial-card {
  animation: glow-wave 4s ease-in-out infinite, scale-pulse 6s ease-in-out infinite !important;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0s, 0s !important;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.5s, 0.8s !important;
}

.testimonial-card:nth-child(3) {
  animation-delay: 1s, 1.6s !important;
}

.testimonial-card:nth-child(4) {
  animation-delay: 1.5s, 2.4s !important;
}

.reference-card {
  animation: glow-wave 3s ease-in-out infinite, bounce-wave 5s ease-in-out infinite !important;
}

.reference-card:nth-child(1) {
  animation-delay: 0s, 0s !important;
}

.reference-card:nth-child(2) {
  animation-delay: 0.3s, 0.5s !important;
}

.reference-card:nth-child(3) {
  animation-delay: 0.6s, 1s !important;
}

.reference-card:nth-child(4) {
  animation-delay: 0.9s, 1.5s !important;
}

.reference-card:nth-child(5) {
  animation-delay: 1.2s, 2s !important;
}

.reference-card:nth-child(6) {
  animation-delay: 1.5s, 2.5s !important;
}

.reference-card:nth-child(7) {
  animation-delay: 1.8s, 3s !important;
}

.reference-card:nth-child(8) {
  animation-delay: 2.1s, 3.5s !important;
}

.service-card-glow {
  animation: float-smooth 5s ease-in-out infinite, glow-pulse-soft 2.5s ease-in-out infinite !important;
}

.service-icon {
  animation: icon-spin-bounce 8s ease-in-out infinite !important;
}

@keyframes icon-spin-bounce {

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

  25% {
    transform: rotate(10deg) scale(1.1);
  }

  50% {
    transform: rotate(-5deg) scale(1.05);
  }

  75% {
    transform: rotate(5deg) scale(1.08);
  }
}

.stat-card {
  animation: glow-wave 3.5s ease-in-out infinite, scale-pulse 5s ease-in-out infinite !important;
}

.stat-card:nth-child(1) {
  animation-delay: 0s, 0s !important;
}

.stat-card:nth-child(2) {
  animation-delay: 0.4s, 0.6s !important;
}

.stat-card:nth-child(3) {
  animation-delay: 0.8s, 1.2s !important;
}

.stat-card:nth-child(4) {
  animation-delay: 1.2s, 1.8s !important;
}

/* Glitch text enhancement */
.glitch-text {
  position: relative;
  animation: glitch-subtle 5s ease-in-out infinite;
}

@keyframes glitch-subtle {

  0%,
  90%,
  100% {
    transform: translate(0);
  }

  91% {
    transform: translate(-2px, 2px);
  }

  92% {
    transform: translate(2px, -2px);
  }

  93% {
    transform: translate(-1px, 1px);
  }

  94% {
    transform: translate(1px, -1px);
  }
}

/* Particle enhancement */
.hero-particles::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
  animation: pulse-radial 4s ease-in-out infinite;
}

@keyframes pulse-radial {

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

  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}



/* ─── SVG Logo ─── */
.logo-svg {
  height: 36px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.3));
  transition: filter 0.3s ease;
}

.nav-logo:hover .logo-svg {
  filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.6));
}

/* ─── Mobil Hero Banner ─── */
.mobile-hero-banner {
  display: none;
}

/* ═══════════════════════════════════════════════════
   MOBİL — @media (max-width: 768px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .container {
    padding: 0 16px !important;
    max-width: 100% !important;
  }

  /* Nav */
  nav {
    padding: 14px 16px;
    position: fixed !important;
    top: 0 !important;
  }

  nav.scrolled {
    padding: 10px 16px;
  }

  .logo-svg {
    height: 30px;
  }

  .nav-links {
    position: fixed;
    top: 56px;
    left: -100%;
    width: 70%;
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(0, 10, 20, 0.98));
    backdrop-filter: blur(30px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-top: none;
    box-shadow: 10px 10px 40px rgba(0, 240, 255, 0.15);
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    z-index: 999;
  }

  .nav-links.open {
    left: 0;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(0, 240, 255, 0.05);
  }

  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover {
    background: rgba(0, 240, 255, 0.1);
    color: var(--cyan);
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-hamburger-text {
    display: block;
  }

  /* Hero masaüstü — gizle */
  .hero {
    display: none !important;
  }

  /* Mobil Hero Banner */
  .mobile-hero-banner {
    display: block !important;
    margin-top: 56px;
    padding: 28px 16px 20px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.04) 0%, rgba(0, 0, 0, 0) 60%);
    border-bottom: 1px solid rgba(0, 240, 255, 0.08);
  }

  .mhb-inner {
    text-align: center;
  }

  .mhb-badge {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 12px;
    background: rgba(0, 240, 255, 0.04);
  }

  .mhb-title {
    font-family: var(--font-heading);
    font-size: clamp(18px, 5vw, 26px);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .mhb-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
  }

  /* Sections padding */
  section {
    padding: 40px 0 !important;
  }

  .section-header {
    margin-bottom: 24px !important;
  }

  .section-title {
    font-size: clamp(18px, 5.5vw, 26px) !important;
    letter-spacing: 1px !important;
  }

  .section-desc {
    font-size: 13px !important;
  }

  /* Stats — 2x2 */
  .stats {
    padding: 32px 0 !important;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .stat-card {
    padding: 18px 10px !important;
  }

  .stat-number {
    font-size: 26px !important;
  }

  .stat-label {
    font-size: 9px !important;
  }

  .stat-icon {
    width: 36px !important;
    height: 36px !important;
    margin-bottom: 10px !important;
  }

  /* Services — 2x2 */
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .service-card {
    padding: 18px 14px !important;
    text-align: left !important;
  }

  .service-icon {
    width: 36px !important;
    height: 36px !important;
    margin: 0 0 10px 0 !important;
  }

  .service-icon .icon {
    width: 36px !important;
    height: 36px !important;
  }

  .service-card h3 {
    font-size: 13px !important;
  }

  .service-card p {
    font-size: 11px !important;
  }

  .service-features li {
    font-size: 10px !important;
  }

  /* References — 2x2 */
  .references-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin-top: 24px !important;
  }

  .reference-card {
    padding: 16px 12px !important;
    gap: 10px !important;
  }

  .reference-icon {
    width: 44px !important;
    height: 44px !important;
  }

  .reference-icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .reference-card h3 {
    font-size: 13px !important;
  }

  .reference-category {
    font-size: 10px !important;
  }

  .reference-link {
    font-size: 11px !important;
    padding: 7px 12px !important;
  }

  /* Testimonials — 2x2 */
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .testimonial-card {
    padding: 16px 12px !important;
  }

  .testimonial-text {
    font-size: 11px !important;
    margin-bottom: 12px !important;
  }

  .author-avatar {
    width: 34px !important;
    height: 34px !important;
    font-size: 11px !important;
  }

  .author-info strong {
    font-size: 12px !important;
  }

  .author-info span {
    font-size: 10px !important;
  }

  /* Pricing — 2x2 */
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .pricing-card.popular {
    transform: none !important;
  }

  .pricing-card {
    padding: 20px 14px !important;
  }

  .pricing-price .price {
    font-size: 28px !important;
  }

  .pricing-card h3 {
    font-size: 13px !important;
  }

  .pricing-features li {
    font-size: 11px !important;
    padding: 5px 0 !important;
  }

  .pricing-btn {
    padding: 10px 12px !important;
    font-size: 11px !important;
    letter-spacing: 1px !important;
  }

  /* Contact — 2x2 */
  .contact-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  .contact-card {
    padding: 16px 12px !important;
    border-radius: 10px !important;
  }

  .contact-card-icon {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 12px !important;
  }

  .contact-card-icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .contact-card h3 {
    font-size: 13px !important;
  }

  .contact-card p {
    font-size: 11px !important;
    margin-bottom: 10px !important;
  }

  .contact-card-btn {
    padding: 8px 14px !important;
    font-size: 11px !important;
  }

  .contact-socials-section {
    padding: 20px !important;
  }

  .contact-socials-grid a {
    width: 44px !important;
    height: 44px !important;
  }

  /* FAQ */
  .faq-question {
    font-size: 13px !important;
    padding: 16px 0 !important;
  }

  .faq-answer p {
    font-size: 12px !important;
  }

  /* Footer — 2x2 */
  footer {
    padding: 32px 0 20px !important;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 24px !important;
  }

  .footer-logo {
    font-size: 13px !important;
  }

  .footer-brand p {
    font-size: 11px !important;
  }

  .footer-links h4 {
    font-size: 10px !important;
  }

  .footer-links a {
    font-size: 11px !important;
  }

  .newsletter-form input {
    font-size: 11px !important;
    padding: 8px 10px !important;
  }

  /* Dekoratif elementler gizle */
  .geo-shapes,
  .corner-accent,
  .scanlines,
  .noise,
  .hero-particles,
  .hero-glow,
  .hero-grid,
  .hero-scroll,
  .contact-bg-animated,
  .service-card-glow,
  .reference-card-glow,
  .preloader-particles,
  .logo-dot {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════
   NO-ANIM — html.no-anim class'ı JS ile eklenir
   Tüm animasyonları ve opacity:0 başlangıçlarını kapatır
   ═══════════════════════════════════════════════════ */
html.no-anim *,
html.no-anim *::before,
html.no-anim *::after {
  animation: none !important;
  animation-duration: 0s !important;
  animation-delay: 0s !important;
  animation-fill-mode: none !important;
  transition-duration: 0.1s !important;
  transition-delay: 0s !important;
}

html.no-anim .hero-badge,
html.no-anim .hero-title,
html.no-anim .hero-desc,
html.no-anim .hero-cta,
html.no-anim .hero-content {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

html.no-anim .reveal {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

html.no-anim .scanlines,
html.no-anim .noise,
html.no-anim .hero-particles,
html.no-anim .hero-glow,
html.no-anim .hero-grid,
html.no-anim .geo-shapes,
html.no-anim .corner-accent,
html.no-anim .contact-bg-animated,
html.no-anim .service-card-glow,
html.no-anim .reference-card-glow,
html.no-anim .preloader-particles,
html.no-anim .hero-scroll,
html.no-anim .logo-dot {
  display: none !important;
}