/* ========================================
   CENTERPOINT - Main Stylesheet
   ======================================== */

/* ========================================
   1. CSS Variables & Reset
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  .clients-track {
    animation: none;
  }

  .clients-slide:last-child {
    display: none;
  }
}

:root {
  --black: #000000;
  --white: #ffffff;
  --gray-dark: #1a1a1a;
  --gray-mid: #333333;
  --gray-light: #666666;
  --gray-lighter: #f5f5f5;
  --accent-primary: #ff006e;
  --accent-secondary: #00d4ff;
  --accent-tertiary: #a8ff00;
  --gradient-1: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  --gradient-2: linear-gradient(
    135deg,
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  --gradient-3: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary)
  );
}

/* ========================================
     2. Base Styles
     ======================================== */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

@media (max-width: 768px) {
  * {
    -webkit-tap-highlight-color: transparent;
  }
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--black);
  color: var(--white);
  padding: 12px 24px;
  text-decoration: none;
  z-index: 10001;
  font-weight: 600;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent-primary);
  outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .mesh-gradient,
  .rotating-text,
  .floater,
  .capability-icon,
  .particle {
    animation: none !important;
  }
}

/* ========================================
     3. Custom Cursor
     ======================================== */
.cursor {
  width: 24px;
  height: 24px;
  background: var(--accent-primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transition: all 0.1s ease;
  opacity: 0.3;
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.15s ease;
  opacity: 0.2;
}

.cursor.hover {
  transform: scale(0.5);
  background: var(--accent-secondary);
}

.cursor-ring.hover {
  transform: scale(1.5);
  border-color: var(--accent-secondary);
  opacity: 0.2;
}

@media (max-width: 1024px) {
  .cursor,
  .cursor-ring {
    display: none;
  }
}

/* ========================================
     4. Navigation
     ======================================== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 3rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0);
}

nav.scrolled {
  padding: 0.75rem 3rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}

.logo {
  width: 300px;
  height: auto;
  transition: all 0.3s ease;
  position: relative;
  animation: logo-entrance 1s ease-out;
  display: block;
}

@keyframes logo-entrance {
  0% {
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
  }
  50% {
    transform: scale(1.1) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.logo::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: var(--gradient-1);
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.5));
}

.logo:hover::after {
  opacity: 0.3;
}

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

.nav-menu a {
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: width 0.3s ease;
}

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

.nav-cta {
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 2rem;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: inline-block;
  z-index: 1;
  cursor: pointer;
  border: none;
}

.nav-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-1);
  transition: left 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

.nav-cta:hover::before {
  left: 0;
}

.nav-cta span {
  position: relative;
  z-index: 2;
  color: var(--white);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  width: 30px;
  height: 30px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.mobile-toggle span:nth-child(1) {
  top: 8px;
}

.mobile-toggle span:nth-child(2) {
  top: 14px;
}

.mobile-toggle span:nth-child(3) {
  top: 20px;
}

.mobile-toggle.active span {
  background: var(--black);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 14px;
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 14px;
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  nav.scrolled {
    padding: 0.5rem 1.5rem;
  }

  .logo {
    width: 200px;
  }

  .mobile-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
    gap: 2rem;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
  }

  .nav-cta {
    padding: 1rem 2.5rem;
    display: inline-block;
    width: fit-content;
    margin: 0 auto;
  }
}

/* ========================================
     5. Hero Section
     ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 3rem;
  padding-top: 100px;
  background: var(--white);
  overflow: hidden;
}

/* Animated background mesh */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.05;
}

.mesh-gradient {
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: radial-gradient(
      circle at 20% 50%,
      var(--accent-primary) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      var(--accent-secondary) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 20%,
      var(--accent-tertiary) 0%,
      transparent 50%
    );
  filter: blur(100px);
  animation: mesh-move 30s ease-in-out infinite;
}

@keyframes mesh-move {
  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  33% {
    transform: translate(-5%, 5%) scale(1.1) rotate(120deg);
  }
  66% {
    transform: translate(5%, -5%) scale(0.9) rotate(240deg);
  }
}

/* Floating particles effect */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-primary);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float 15s infinite;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  background: var(--accent-primary);
}
.particle:nth-child(2) {
  left: 20%;
  animation-delay: 3s;
  background: var(--accent-secondary);
}
.particle:nth-child(3) {
  left: 30%;
  animation-delay: 6s;
  background: var(--accent-tertiary);
}
.particle:nth-child(4) {
  left: 40%;
  animation-delay: 9s;
  background: var(--accent-primary);
}
.particle:nth-child(5) {
  left: 50%;
  animation-delay: 12s;
  background: var(--accent-secondary);
}
.particle:nth-child(6) {
  left: 60%;
  animation-delay: 2s;
  background: var(--accent-tertiary);
}
.particle:nth-child(7) {
  left: 70%;
  animation-delay: 5s;
  background: var(--accent-primary);
}
.particle:nth-child(8) {
  left: 80%;
  animation-delay: 8s;
  background: var(--accent-secondary);
}
.particle:nth-child(9) {
  left: 90%;
  animation-delay: 11s;
  background: var(--accent-tertiary);
}
.particle:nth-child(10) {
  left: 95%;
  animation-delay: 14s;
  background: var(--accent-primary);
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
    transform: translateY(90vh) scale(1);
  }
  90% {
    opacity: 0.6;
    transform: translateY(10vh) scale(1);
  }
  100% {
    transform: translateY(0) scale(0);
    opacity: 0;
  }
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-text h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: word-up 0.6s ease forwards;
}

.hero-text h1 .word:nth-child(1) {
  animation-delay: 0.1s;
}
.hero-text h1 .word:nth-child(2) {
  animation-delay: 0.2s;
}
.hero-text h1 .word:nth-child(3) {
  animation-delay: 0.3s;
}
.hero-text h1 .word:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes word-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gradient-text {
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-text p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--gray-light);
  margin-bottom: 3rem;
  max-width: 500px;
  opacity: 0;
  animation: fade-in-up 0.8s ease 0.6s forwards;
}

@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-in-up 0.8s ease 0.8s forwards;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  padding: 1.2rem 3rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
}

.btn-primary:hover::after {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  border: 2px solid var(--black);
  color: var(--black);
  padding: 1.2rem 3rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--black);
  transition: left 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

.btn-secondary:hover::before {
  left: 0;
}

.btn-secondary:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-graphic {
  position: relative;
  width: 490px;
  height: 490px;
}

.rotating-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

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

.rotating-text svg {
  width: 100%;
  height: 100%;
}

.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 210px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1),
    inset 0 0 30px rgba(255, 0, 110, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: visible; /* Changed to show beams */
  animation: logo-breathe 4s ease-in-out infinite;
}

@keyframes logo-breathe {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.03);
  }
}

/* Diamond background pattern */
.center-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 70%;
  height: 70%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 0, 110, 0.05) 50%,
    transparent 60%
  );
  border: 1px solid rgba(255, 0, 110, 0.1);
  animation: diamond-rotate 10s linear infinite;
}

@keyframes diamond-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) rotate(225deg) scale(1.1);
  }
  100% {
    transform: translate(-50%, -50%) rotate(405deg) scale(1);
  }
}

/* Second diamond for depth */
.center-logo::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 90%;
  height: 90%;
  background: transparent;
  border: 1px solid rgba(0, 212, 255, 0.1);
  animation: diamond-counter-rotate 15s linear infinite;
}

@keyframes diamond-counter-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1.1);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg) scale(1.1);
  }
}

/* Color changing logo */
.center-logo .logo-icon {
  position: relative;
  z-index: 2;
  animation: logo-float 8s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
}

.center-logo .logo-fill {
  fill: #000000;
  animation: logo-color-change 6s ease-in-out infinite;
  transition: fill 0.3s ease;
}

.center-logo .logo-stroke {
  fill: #000000;
  animation: logo-color-change 6s ease-in-out infinite;
  opacity: 0.3;
  animation-delay: -0.5s;
}

@keyframes logo-color-change {
  0%,
  100% {
    fill: #000000;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.2));
  }
  16% {
    fill: var(--accent-primary);
    filter: drop-shadow(0 0 25px rgba(255, 0, 110, 0.4));
  }
  33% {
    fill: #ff1493; /* Deep pink transition */
    filter: drop-shadow(0 0 25px rgba(255, 20, 147, 0.4));
  }
  50% {
    fill: var(--accent-secondary);
    filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.4));
  }
  66% {
    fill: var(--accent-tertiary);
    filter: drop-shadow(0 0 25px rgba(168, 255, 0, 0.4));
  }
  83% {
    fill: #7b68ee; /* Medium slate blue transition */
    filter: drop-shadow(0 0 25px rgba(123, 104, 238, 0.4));
  }
}

/* Pulse effect synchronized with color changes */
@keyframes logo-pulse-rhythm {
  0%,
  70%,
  100% {
    transform: scale(1);
  }
  85% {
    transform: scale(1.08);
  }
}

.center-logo:not(:hover) .logo-icon {
  animation: logo-float 8s ease-in-out infinite,
    logo-pulse-rhythm 6s ease-in-out infinite;
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-3px) rotate(3deg);
  }
  75% {
    transform: translateY(3px) rotate(-3deg);
  }
}

/* Starburst beams */
.logo-beams {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  pointer-events: none;
}

.beam {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 0;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--accent-primary) 30%,
    transparent
  );
  transform-origin: center bottom;
  opacity: 0;
}

/* Four beams for each diamond point */
.beam:nth-child(1) {
  transform: translate(-50%, -50%) rotate(0deg);
  animation: beam-shoot 4s ease-in-out infinite;
}

.beam:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
  animation: beam-shoot 4s ease-in-out infinite 1s;
}

.beam:nth-child(3) {
  transform: translate(-50%, -50%) rotate(180deg);
  animation: beam-shoot 4s ease-in-out infinite 2s;
}

.beam:nth-child(4) {
  transform: translate(-50%, -50%) rotate(270deg);
  animation: beam-shoot 4s ease-in-out infinite 3s;
}

/* Diagonal beams */
.beam:nth-child(5) {
  transform: translate(-50%, -50%) rotate(45deg);
  width: 1px;
  animation: beam-shoot-subtle 6s ease-in-out infinite 0.5s;
}

.beam:nth-child(6) {
  transform: translate(-50%, -50%) rotate(135deg);
  width: 1px;
  animation: beam-shoot-subtle 6s ease-in-out infinite 1.5s;
}

.beam:nth-child(7) {
  transform: translate(-50%, -50%) rotate(225deg);
  width: 1px;
  animation: beam-shoot-subtle 6s ease-in-out infinite 2.5s;
}

.beam:nth-child(8) {
  transform: translate(-50%, -50%) rotate(315deg);
  width: 1px;
  animation: beam-shoot-subtle 6s ease-in-out infinite 3.5s;
}

@keyframes beam-shoot {
  0%,
  70%,
  100% {
    height: 0;
    opacity: 0;
  }
  75% {
    height: 112px;
    opacity: 0;
  }
  85% {
    height: 140px;
    opacity: 0.8;
  }
  95% {
    height: 168px;
    opacity: 0;
  }
}

@keyframes beam-shoot-subtle {
  0%,
  80%,
  100% {
    height: 0;
    opacity: 0;
  }
  85% {
    height: 84px;
    opacity: 0;
  }
  90% {
    height: 112px;
    opacity: 0.4;
  }
  95% {
    height: 140px;
    opacity: 0;
  }
}

/* Remove old orbit particles */
.logo-orbit {
  display: none;
}

.center-logo:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15), 0 0 40px rgba(255, 0, 110, 0.2),
    inset 0 0 30px rgba(255, 0, 110, 0.1);
  animation-play-state: paused;
}

.center-logo:hover img {
  animation-play-state: paused;
  transform: scale(1.1);
}

.center-logo:hover .logo-icon {
  animation-play-state: paused;
  transform: scale(1.1);
}

.center-logo:hover .logo-fill,
.center-logo:hover .logo-stroke {
  animation-play-state: paused;
  fill: var(--accent-primary);
  filter: drop-shadow(0 0 30px rgba(255, 0, 110, 0.6));
}

.center-logo:hover .beam {
  animation-duration: 2s;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    height: 420px;
  }

  .hero-graphic {
    width: 350px;
    height: 350px;
  }

  .mesh-gradient {
    animation: mesh-move 40s ease-in-out infinite;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 0 1.5rem;
    min-height: 100vh;
    padding-top: 100px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .hero-visual {
    height: 350px;
    margin-top: 3rem;
  }

  .hero-graphic {
    width: 280px;
    height: 280px;
  }

  .rotating-text svg text {
    font-size: 25px;
  }

  .center-logo {
    width: 140px;
    height: 140px;
  }

  .center-logo .logo-icon {
    width: 84px;
    height: 81px;
  }

  .rotating-text svg text {
    font-size: 20px;
  }

  .particles {
    display: none;
  }
}

/* ========================================
     6. About Section
     ======================================== */
.about {
  padding: 8rem 3rem;
  background: var(--gray-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--white), transparent);
  transform: skewY(-3deg);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 2rem;
  background: var(--gradient-1);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.section-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-45deg);
  transition: left 0.5s ease;
}

.section-tag:hover::before {
  left: 100%;
}

.about h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about h2 strong {
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.about-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    var(--accent-primary) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.about-card:hover::before {
  opacity: 0.1;
}

.about-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--accent-primary);
  box-shadow: 0 20px 40px rgba(255, 0, 110, 0.2);
}

.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-secondary);
}

.about-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about {
    padding: 4rem 1.5rem;
  }

  .about::before {
    height: 100px;
    top: -50px;
  }

  .about h2 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 2rem;
  }

  .section-tag {
    font-size: 0.75rem;
    padding: 0.4rem 1.5rem;
    margin-bottom: 1.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .about-card {
    padding: 1.5rem;
  }

  .about-card h3 {
    font-size: 1.2rem;
  }

  .about-card p {
    font-size: 0.95rem;
  }
}

/* ========================================
     7. Clients Section
     ======================================== */
.clients {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.clients::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at top,
    rgba(255, 0, 110, 0.02) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.clients::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at top,
    rgba(255, 0, 110, 0.02) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.clients-container {
  position: relative;
  z-index: 1;
}

.clients-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-in-up 0.8s ease forwards;
}

.clients-header h2 {
  font-size: 2.5rem;
  margin: 1rem 0;
  font-weight: 700;
}

.clients-header .gradient-text {
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
}

.clients-header p {
  color: var(--gray-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

.clients-track-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
  opacity: 0;
  animation: fade-in 1s ease 0.4s forwards;
}

.clients-track-wrapper::before,
.clients-track-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.clients-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.clients-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.clients-track {
  display: flex;
  animation: scroll-clients 40s linear infinite;
}

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

@keyframes scroll-clients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.clients-slide {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 0 2.5rem;
  flex-shrink: 0;
}

.client-logo {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s ease;
  cursor: pointer;
}

.client-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/* Special hover effects for specific clients */
.client-logo[alt="Tiësto"]:hover,
.client-logo[alt="Riot Games"]:hover {
  filter: grayscale(0%) opacity(1) drop-shadow(0 0 20px rgba(255, 0, 110, 0.3));
}

.client-logo[alt="Sony Music"]:hover,
.client-logo[alt="NHL"]:hover {
  filter: grayscale(0%) opacity(1) drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
}

.client-logo[alt="Paramount"]:hover,
.client-logo[alt="Tokidoki"]:hover {
  filter: grayscale(0%) opacity(1) drop-shadow(0 0 20px rgba(168, 255, 0, 0.3));
}

/* Special hover effects for specific clients */
.client-logo[alt="Tiësto"]:hover,
.client-logo[alt="Riot Games"]:hover {
  filter: grayscale(0%) opacity(1) drop-shadow(0 0 20px rgba(255, 0, 110, 0.3));
}

.client-logo[alt="Sony Music"]:hover,
.client-logo[alt="NHL"]:hover {
  filter: grayscale(0%) opacity(1) drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
}

.client-logo[alt="Paramount"]:hover,
.client-logo[alt="Tokidoki"]:hover {
  filter: grayscale(0%) opacity(1) drop-shadow(0 0 20px rgba(168, 255, 0, 0.3));
}

@media (max-width: 1024px) {
  .clients-slide {
    gap: 3rem;
    padding: 0 1.5rem;
  }

  .client-logo {
    height: 60px;
    max-width: 150px;
  }
}

@media (max-width: 768px) {
  .clients {
    padding: 4rem 0;
  }

  .clients-header {
    margin-bottom: 3rem;
  }

  .clients-header h2 {
    font-size: 2rem;
  }

  .clients-header p {
    font-size: 1rem;
  }

  .clients-track {
    animation-duration: 20s;
  }

  .clients-slide {
    gap: 2rem;
    padding: 0 1rem;
  }

  .client-logo {
    height: 70px;
    max-width: 160px;
  }

  .clients-track-wrapper::before,
  .clients-track-wrapper::after {
    width: 50px;
  }
}

/* ========================================
     8. Process Timeline
     ======================================== */
.process {
  padding: 8rem 3rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.process-container {
  max-width: 1400px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 6rem;
}

.process h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-lighter);
  transform: translateX(-50%);
}

.timeline-progress {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  background: var(--gradient-1);
  transform: translateX(-50%);
  height: 0;
  transition: height 2s ease;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 6rem;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  gap: 80px;
  padding: 0 40px;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  flex: 1;
  padding: 2rem 3rem;
  background: var(--gray-lighter);
  border-radius: 10px;
  position: relative;
  transition: all 0.3s ease;
  max-width: calc(50% - 80px);
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -15px;
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent var(--gray-lighter);
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -15px;
  border-width: 15px 15px 15px 0;
  border-color: transparent var(--gray-lighter) transparent transparent;
}

.timeline-content:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: var(--white);
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-features {
  justify-content: flex-end;
}

.timeline-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 60px;
  height: 60px;
  background: var(--white);
  border: 3px solid var(--gray-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-node span {
  transform: rotate(-45deg);
  display: block;
}

.timeline-item.visible .timeline-node {
  animation: node-pop 0.5s ease;
}

@keyframes node-pop {
  0% {
    transform: translateX(-50%) rotate(45deg) scale(0);
  }
  80% {
    transform: translateX(-50%) rotate(45deg) scale(1.1);
  }
  100% {
    transform: translateX(-50%) rotate(45deg) scale(1);
  }
}

.timeline-item.active .timeline-node {
  background: var(--gradient-1);
  border-color: transparent;
  color: var(--white);
  transform: translateX(-50%) rotate(45deg) scale(1.2);
  box-shadow: 0 0 30px rgba(255, 0, 110, 0.3);
}

.timeline-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.timeline-description {
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.timeline-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.timeline-item:nth-child(even) .timeline-features {
  justify-content: flex-end;
}

.timeline-features li {
  background: var(--gray-dark);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 20px;
  transition: all 0.3s ease;
  opacity: 0.3;
  transform: scale(0.95);
}

.timeline-features li.highlight {
  opacity: 1;
  transform: scale(1);
  background: var(--gradient-1);
  animation: feature-pulse 1.5s ease;
}

@keyframes feature-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 0, 110, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px 10px rgba(255, 0, 110, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 110, 0);
  }
}

.timeline-features li:hover {
  background: var(--gradient-1);
  transform: translateY(-2px) scale(1.05);
  opacity: 1;
}

@media (max-width: 1024px) {
  .timeline-line {
    left: 30px;
  }

  .timeline-progress {
    left: 30px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 80px;
    padding-right: 20px;
  }

  .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    width: 100%;
    max-width: 100%;
    text-align: left !important;
  }

  .timeline-content::before {
    display: none;
  }

  .timeline-node {
    left: 30px;
    transform: translateX(-50%) rotate(45deg);
  }

  .timeline-item.active .timeline-node {
    transform: translateX(-50%) rotate(45deg) scale(1.2);
  }

  .timeline-features,
  .timeline-item:nth-child(even) .timeline-features {
    justify-content: flex-start !important;
  }
}

@media (max-width: 768px) {
  .process {
    padding: 4rem 1.5rem;
  }

  .process h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .process-header p {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .timeline {
    padding: 2rem 0;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    margin-bottom: 3rem;
    padding: 0 1rem;
    gap: 0;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }

  .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    padding: 1.5rem;
    margin-top: 2rem;
    max-width: 100%;
    width: 100%;
    text-align: center !important;
  }

  .timeline-title {
    font-size: 1.3rem;
  }

  .timeline-description {
    font-size: 0.95rem;
  }

  .timeline-features,
  .timeline-item:nth-child(even) .timeline-features {
    gap: 0.5rem;
    justify-content: center !important;
  }

  .timeline-features li {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .timeline-node {
    position: relative;
    left: auto;
    transform: rotate(45deg);
    margin: 0 auto 0;
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .timeline-item.active .timeline-node {
    transform: rotate(45deg) scale(1.1);
  }

  .timeline-line,
  .timeline-progress {
    display: none;
  }
}

/* ========================================
     9. Capabilities Section
     ======================================== */
.capabilities {
  padding: 8rem 3rem;
  background: linear-gradient(135deg, var(--gray-dark), var(--black));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Animated background pattern */
.capabilities::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(255, 255, 255, 0.02) 35px,
    rgba(255, 255, 255, 0.02) 70px
  );
  animation: pattern-move 20s linear infinite;
}

@keyframes pattern-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(70px, 70px);
  }
}

.capabilities-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.capabilities-header {
  text-align: center;
  margin-bottom: 4rem;
}

.capabilities h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.capability-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.capability-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.capability-card:hover::before {
  transform: translateX(0);
}

.capability-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.capability-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: float-icon 3s ease-in-out infinite;
}

.capability-card:nth-child(1) .capability-icon {
  animation-delay: 0s;
}
.capability-card:nth-child(2) .capability-icon {
  animation-delay: 0.5s;
}
.capability-card:nth-child(3) .capability-icon {
  animation-delay: 1s;
}
.capability-card:nth-child(4) .capability-icon {
  animation-delay: 1.5s;
}
.capability-card:nth-child(5) .capability-icon {
  animation-delay: 2s;
}
.capability-card:nth-child(6) .capability-icon {
  animation-delay: 2.5s;
}

@keyframes float-icon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.capability-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.capability-list {
  list-style: none;
  color: rgba(255, 255, 255, 0.8);
}

.capability-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  opacity: 0.6;
  transition: all 1.2s ease; /* Increased from 0.3s to 0.8s */
}

.capability-list li.highlight {
  opacity: 1;
  transform: translateX(5px);
  color: var(--white);
}

/* REPLACE WITH: */
.capability-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  transition: all 1.2s ease; /* Increased from 0.3s to 0.8s */
}

.capability-list li.highlight::before {
  left: 5px;
  color: var(--accent-secondary);
  animation: arrow-pulse 1s ease;
}

@keyframes arrow-pulse {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

.capability-list li:hover {
  opacity: 1;
  transform: translateX(5px);
  color: var(--white);
}

.capability-list li:hover::before {
  left: 5px;
  color: var(--accent-secondary);
}

@media (max-width: 768px) {
  .capabilities {
    padding: 4rem 1.5rem;
  }

  .capabilities h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .capabilities-header p {
    font-size: 1rem;
  }

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

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

  .capability-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .capability-title {
    font-size: 1.2rem;
  }

  .capability-list {
    font-size: 0.9rem;
  }
}

/* ========================================
     10. Stats Section
     ======================================== */
.stats {
  padding: 6rem 3rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    var(--accent-primary) 0%,
    transparent 70%
  );
  opacity: 0.03;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease;
}

.stat-card.visible {
  opacity: 1;
  transform: scale(1);
}

.stat-card:nth-child(1) {
  transition-delay: 0.1s;
}
.stat-card:nth-child(2) {
  transition-delay: 0.2s;
}
.stat-card:nth-child(3) {
  transition-delay: 0.3s;
}
.stat-card:nth-child(4) {
  transition-delay: 0.4s;
}

.stat-number {
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .stats {
    padding: 3rem 1.5rem;
  }

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

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }
}

/* ========================================
     11. CTA Section
     ======================================== */
.cta {
  padding: 8rem 3rem;
  background: var(--black);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    var(--accent-secondary) 0%,
    transparent 50%
  );
  opacity: 0.1;
  animation: pulse-bg 4s ease-in-out infinite;
}

.cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      45deg,
      transparent 48%,
      rgba(255, 0, 110, 0.1) 49%,
      rgba(255, 0, 110, 0.1) 51%,
      transparent 52%
    ),
    linear-gradient(
      -45deg,
      transparent 48%,
      rgba(0, 212, 255, 0.1) 49%,
      rgba(0, 212, 255, 0.1) 51%,
      transparent 52%
    );
  background-size: 30px 30px;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, 30px);
  }
}

@keyframes pulse-bg {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.2;
  }
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 2rem;
  font-weight: 900;
  opacity: 0;
  transform: scale(0.8);
  animation: scale-in 0.6s ease forwards;
  line-height: 1.1;
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    var(--accent-primary) 50%,
    var(--accent-secondary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: scale-in 0.6s ease forwards, gradient-shift 3s ease infinite;
}

@keyframes scale-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.cta p {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: fade-in 0.6s ease 0.3s forwards;
  font-weight: 300;
  letter-spacing: 0.02em;
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.cta .btn-primary {
  background: var(--white);
  color: var(--black);
  opacity: 0;
  animation: fade-in-up 0.6s ease 0.6s forwards;
  font-size: 1.1rem;
  padding: 1.5rem 4rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.cta .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-1);
  transition: left 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

.cta .btn-primary:hover::before {
  left: 0;
}

.cta .btn-primary:hover {
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 0, 110, 0.3);
}

/* Floating elements */
.cta-floaters {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.floater {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float-up 15s linear infinite;
}

.floater:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 12s;
}
.floater:nth-child(2) {
  left: 30%;
  animation-delay: 2s;
  animation-duration: 15s;
}
.floater:nth-child(3) {
  left: 50%;
  animation-delay: 4s;
  animation-duration: 18s;
}
.floater:nth-child(4) {
  left: 70%;
  animation-delay: 6s;
  animation-duration: 14s;
}
.floater:nth-child(5) {
  left: 90%;
  animation-delay: 8s;
  animation-duration: 16s;
}

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

@media (max-width: 768px) {
  .cta {
    padding: 4rem 1.5rem;
  }

  .cta::after {
    background-size: 20px 20px;
  }

  .cta h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .cta .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }

  .cta-floaters {
    display: none;
  }
}

/* ========================================
     12. Contact Modal
     ======================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 2rem;
  overflow-y: auto;
}

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

.modal-content {
  background: var(--white);
  max-width: 600px;
  width: 100%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  transform: rotate(90deg);
}

.modal-close svg {
  width: 24px;
  height: 24px;
  stroke: var(--gray-light);
  stroke-width: 2;
}

.modal-header {
  padding: 3rem 3rem 2rem;
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--gray-lighter) 0%,
    var(--white) 100%
  );
  border-bottom: 1px solid var(--gray-lighter);
}

.modal-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-header p {
  color: var(--gray-light);
  font-size: 1.1rem;
}

.contact-form {
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--gray-dark);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--gray-lighter);
  background: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-primary);
  background: var(--gray-lighter);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-submit {
  background: var(--black);
  color: var(--white);
  padding: 1.2rem 3rem;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-1);
  transition: left 0.3s ease;
  z-index: 0;
}

.form-submit:hover::before {
  left: 0;
}

.form-submit span {
  position: relative;
  z-index: 1;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-submit:disabled:hover {
  transform: none;
  box-shadow: none;
}

.form-status {
  margin-top: 1rem;
  padding: 1rem;
  text-align: center;
  border-radius: 5px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.form-status.show {
  opacity: 1;
  transform: translateY(0);
}

.form-status.success {
  background: #f8f9fa !important;  /* Clean white background */
  color: #000000 !important;       /* Black text for maximum readability */
  border: 2px solid #28a745 !important;  /* Green border to show success */
  padding: 15px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  text-align: center !important;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.15) !important;
}

.form-status.error {
  background: rgba(255, 0, 110, 0.1);
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
}

@media (max-width: 768px) {
  .modal-overlay {
    padding: 0;
    align-items: flex-start;
  }

  .modal-content {
    max-height: 100vh;
    height: 100%;
    max-width: 100%;
    border-radius: 0;
  }

  .modal-header {
    padding: 2rem 1.5rem 1.5rem;
  }

  .modal-header h2 {
    font-size: 1.8rem;
  }

  .modal-header p {
    font-size: 1rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

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

  .form-submit {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* ========================================
     13. Footer
     ======================================== */
footer {
  padding: 4rem 3rem 2rem;
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-top: 1rem;
}

.footer-logo {
  filter: invert(1);
  margin-bottom: 1rem;
}

.footer-links h4 {
  margin-bottom: 1rem;
  color: var(--accent-primary);
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 20px;
}

.footer-links a:hover::before {
  left: 0;
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  footer {
    padding: 2rem 1.5rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-brand {
    margin-bottom: 1rem;
  }

  .footer-brand p {
    font-size: 0.9rem;
  }

  .footer-links {
    margin-bottom: 1rem;
  }

  .footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .footer-links a {
    font-size: 0.9rem;
    padding: 0.3rem 0;
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .footer-bottom {
    padding-top: 1.5rem;
    font-size: 0.8rem;
  }
}

/* ========================================
     14. Loading Screen
     ======================================== */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 100px;
  margin-bottom: 2rem;
  animation: pulse 1s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--gray-lighter);
  position: relative;
  overflow: hidden;
}

.loader-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--gradient-1);
  animation: load 2s ease infinite;
}

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