/* ARQXX Technologies - Services Page Styles */
/* Advanced tech animations and professional design */

/* ===== HERO SECTION ===== */
.services-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-background);
  padding-top: 120px;
  padding-bottom: var(--space-16);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* Matrix Rain Animation */
.matrix-rain {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  overflow: hidden;
}

.matrix-rain::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 200%;
  background-image: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 98px,
      rgba(0, 212, 255, 0.03) 100px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 98px,
      rgba(0, 212, 255, 0.03) 100px
    );
  animation: matrix-scroll 20s linear infinite;
}

@keyframes matrix-scroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(100px); }
}

/* Floating Particles */
.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.floating-particles::before,
.floating-particles::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-blue);
  border-radius: 50%;
  animation: float-particle 15s infinite linear;
  box-shadow: 0 0 10px var(--accent-blue);
}

.floating-particles::before {
  left: 20%;
  animation-delay: -5s;
  animation-duration: 20s;
}

.floating-particles::after {
  left: 80%;
  animation-delay: -10s;
  animation-duration: 25s;
}

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

/* Tech Grid */
.tech-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-pulse 4s ease-in-out infinite;
}

@keyframes grid-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.1; }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.hero-subtitle {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-blue);
  margin-bottom: var(--space-4);
}

.glitch-text {
  position: relative;
  display: inline-block;
}

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

.glitch-text::before {
  animation: glitch-1 2s infinite;
  color: #ff0040;
  z-index: -1;
}

.glitch-text::after {
  animation: glitch-2 2s infinite;
  color: #00ff40;
  z-index: -2;
}

@keyframes glitch-1 {
  0%, 14%, 15%, 49%, 50%, 99%, 100% {
    transform: translate(0);
  }
  15%, 49% {
    transform: translate(-2px, 2px);
  }
}

@keyframes glitch-2 {
  0%, 20%, 21%, 62%, 63%, 99%, 100% {
    transform: translate(0);
  }
  21%, 62% {
    transform: translate(2px, -2px);
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-6);
  background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  word-wrap: break-word;
  max-width: 100%;
}

.typewriter-text {
  display: inline-block;
  border-right: 3px solid var(--accent-blue);
  white-space: normal;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  word-wrap: break-word;
  letter-spacing: normal;
  word-spacing: normal;
}

.typewriter-text.typing {
  animation: blink-cursor 1s infinite;
}

@keyframes typewriter {
  from { 
    width: 0;
  }
  to { 
    width: 100%;
  }
}

@keyframes blink-cursor {
  50% { border-color: transparent; }
}

.hero-description {
  font-size: var(--text-lg);
  color: var(--text-light);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: var(--space-8);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-4);
  max-width: 100%;
  overflow: hidden;
}

.hologram-container {
  position: relative;
  width: min(350px, 80vw);
  height: min(250px, 50vh);
  max-width: 100%;
  margin: 0 auto;
}

.hologram-display {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(0, 212, 255, 0.1);
  border: 2px solid var(--accent-blue);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  overflow: hidden;
  animation: hologram-float 6s ease-in-out infinite;
}

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

.code-visualization {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

.code-lines {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.code-line {
  font-family: var(--font-code);
  font-size: var(--text-sm);
  color: var(--accent-blue);
  opacity: 0;
  animation: code-appear 0.5s ease-out forwards;
}

.code-line:nth-child(1) { animation-delay: 1s; }
.code-line:nth-child(2) { animation-delay: 1.5s; }
.code-line:nth-child(3) { animation-delay: 2s; }
.code-line:nth-child(4) { animation-delay: 2.5s; }
.code-line:nth-child(5) { animation-delay: 3s; }

@keyframes code-appear {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hologram Effects */
.hologram-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
  animation: scan-line-move 3s linear infinite;
}

@keyframes scan-line-move {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(300px); opacity: 0; }
}

.data-stream {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border: 2px solid var(--accent-blue);
  border-radius: 50%;
  animation: data-stream-pulse 2s ease-in-out infinite;
}

.data-stream::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  background: var(--accent-blue);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: data-stream-inner 2s ease-in-out infinite;
}

@keyframes data-stream-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

@keyframes data-stream-inner {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(0.5); }
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
  padding: var(--space-24) 0;
  position: relative;
}

.services-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.02) 50%, transparent 100%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: var(--text-lg);
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-16);
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

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

.loading-logo {
  position: relative;
  margin-bottom: var(--space-8);
}

.circuit-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%);
  border: 2px solid var(--accent-blue);
  border-radius: 50%;
  animation: circuit-rotate 2s linear infinite;
}

.circuit-animation::before,
.circuit-animation::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid var(--accent-blue);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circuit-animation::before {
  animation: circuit-inner 1.5s linear infinite reverse;
}

.circuit-animation::after {
  width: 25px;
  height: 25px;
  animation: circuit-core 1s linear infinite;
}

@keyframes circuit-rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes circuit-inner {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes circuit-core {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.loading-text {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--accent-blue);
  letter-spacing: 3px;
}

.loading-progress {
  width: 200px;
  height: 4px;
  background: rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-accent);
  border-radius: var(--radius-full);
  animation: loading-progress 3s ease-in-out infinite;
}

@keyframes loading-progress {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

/* ===== SERVICE CARDS ===== */
.service-card {
  position: relative;
  background: rgba(26, 35, 50, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
  overflow: hidden;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-glow);
}

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

.service-card:hover .icon-glow {
  opacity: 1;
  animation: icon-pulse 2s ease-in-out infinite;
}

.service-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.service-icon {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-4);
}

.icon-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--accent-blue);
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
}

.service-svg {
  width: 32px;
  height: 32px;
  color: var(--accent-blue);
  z-index: 2;
}

.icon-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

@keyframes icon-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.service-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-2);
}

.service-subtitle {
  font-size: var(--text-sm);
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.service-content {
  margin-bottom: var(--space-8);
}

.service-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-1);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all var(--transition-normal);
}

.feature-item:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: var(--text-xl);
  margin-bottom: 0;
}

.feature-text {
  font-size: var(--text-xs);
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.2;
}

.tech-stack {
  margin-bottom: var(--space-6);
}

.tech-title {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.tech-tag {
  padding: var(--space-1) var(--space-3);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--accent-blue);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.tech-tag:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.service-pricing {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-value {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--accent-blue);
}

.service-btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: var(--gradient-accent);
  border: none;
  border-radius: var(--radius-lg);
  color: var(--text-white);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.service-btn:hover .btn-arrow {
  transform: translate(2px, -2px);
}

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.circuit-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 40% 60%, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px, 30px 30px, 70px 70px;
  animation: circuit-move 10s linear infinite;
}

@keyframes circuit-move {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 50px 50px, 30px 30px, 70px 70px; }
}

.data-flow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
  animation: data-flow-move 3s ease-in-out infinite;
}

@keyframes data-flow-move {
  0%, 100% { transform: translateX(-100px); opacity: 0; }
  50% { transform: translateX(0); opacity: 1; }
}

/* ===== COMING SOON SERVICE ===== */
.service-card.coming-soon {
  background: rgba(26, 35, 50, 0.6);
  border-color: rgba(0, 212, 255, 0.1);
  position: relative;
}

.service-card.coming-soon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0, 212, 255, 0.02) 10px,
    rgba(0, 212, 255, 0.02) 20px
  );
  pointer-events: none;
}

.service-card.coming-soon:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
}

.service-card.coming-soon .service-title {
  color: var(--text-muted);
}

.service-card.coming-soon .service-subtitle {
  color: var(--warning);
  font-weight: 600;
}

.coming-soon-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  opacity: 0.7;
}

.coming-soon-features .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-1);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: rgba(0, 212, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.08);
  transition: all var(--transition-normal);
}

.coming-soon-features .feature-item:hover {
  background: rgba(0, 212, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.15);
  transform: translateY(-2px);
}

.coming-soon-features .feature-icon {
  font-size: var(--text-xl);
  margin-bottom: 0;
}

.coming-soon-features .feature-text {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.2;
}



.coming-soon-badge {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.badge-text {
  padding: var(--space-2) var(--space-4);
  background: var(--gradient-accent);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.notify-btn {
  background: rgba(0, 212, 255, 0.2);
  border: 1px solid var(--accent-blue);
}

.notify-btn:hover {
  background: rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
  padding: var(--space-24) 0;
  background: var(--background-secondary);
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(30, 58, 58, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-16);
}

.feature-card {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow-glow);
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  position: relative;
}

.feature-svg {
  width: 40px;
  height: 40px;
  color: var(--accent-blue);
  z-index: 2;
  position: relative;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-4);
}

.feature-description {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== WORKFLOW PROCESS SECTION ===== */
.workflow-process {
  padding: var(--space-24) 0;
  background: var(--gradient-background);
  position: relative;
}

.process-timeline {
  margin-top: var(--space-16);
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, 
    transparent 0%, 
    var(--accent-blue) 20%, 
    var(--accent-blue) 80%, 
    transparent 100%
  );
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-16);
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
  text-align: right;
}

.step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-white);
  z-index: 2;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.step-content {
  flex: 1;
  max-width: 45%;
  background: rgba(26, 35, 50, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  backdrop-filter: blur(10px);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
}

.step-icon svg {
  width: 30px;
  height: 30px;
  color: var(--text-white);
}

.step-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-4);
}

.step-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.step-features {
  list-style: none;
  padding: 0;
}

.step-features li {
  color: var(--text-light);
  padding: var(--space-2) 0;
  position: relative;
  padding-left: var(--space-6);
}

.step-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: bold;
}

/* ===== BUTTON FIXES ===== */
.cta-actions .btn {
  white-space: nowrap;
}

.cta-actions .btn span {
  display: inline-block;
  white-space: nowrap;
}

/* ===== SERVICES CTA SECTION ===== */
.services-cta {
  padding: var(--space-24) 0;
  background: var(--background-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: var(--space-6);
  line-height: 1.2;
}

.cta-description {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto var(--space-10);
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-16);
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
  margin-top: var(--space-16);
}

.cta-stats .stat-item {
  text-align: center;
}

.cta-stats .stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: var(--space-2);
}

.cta-stats .stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6);
  }
}

@media (max-width: 1024px) {
  .services-hero {
    padding-top: 100px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    text-align: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .process-step {
    flex-direction: column !important;
    text-align: center !important;
  }
  
  .process-step:nth-child(even) .step-content {
    text-align: center;
  }
  
  .step-number {
    position: relative;
    left: auto;
    transform: none;
    margin-bottom: var(--space-4);
  }
  
  .step-content {
    max-width: 100%;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-stats {
    gap: var(--space-8);
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding-top: 100px;
    padding-bottom: var(--space-12);
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
    padding: 0 var(--space-4);
  }
  
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hologram-container {
    width: min(280px, 75vw);
    height: min(180px, 35vh);
  }
  
  .hero-visual {
    padding: var(--space-2);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .service-features {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
  
  .coming-soon-features {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
  
  .service-footer {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
  
  .typewriter-text {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  .services-hero {
    padding-top: 90px;
    padding-bottom: var(--space-10);
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .hologram-container {
    width: min(250px, 80vw);
    height: min(150px, 30vh);
  }
  
  .service-card {
    padding: var(--space-6);
  }
  
  .tech-tags {
    justify-content: center;
  }
  
  .hero-title {
    font-size: var(--text-3xl);
  }
  
  .hero-description {
    font-size: var(--text-base);
  }
  
  .service-title {
    font-size: var(--text-lg);
  }
  
  .feature-card {
    padding: var(--space-6);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .step-content {
    padding: var(--space-6);
  }
  
  .cta-title {
    font-size: var(--text-3xl);
  }
  
  .cta-description {
    font-size: var(--text-base);
  }
  
  .cta-actions {
    gap: var(--space-4);
  }
}
