@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  visibility: visible;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0F0F23;
  color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  visibility: visible;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0F0F23 0%, #16213E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-screen.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
}

.loader-ring {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(0, 212, 255, 0.2);
  border-top: 4px solid #00D4FF;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

.loader-text {
  font-size: 1.25rem;
  font-weight: 600;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.main-content {
  min-height: 100vh;
  background: #0F0F23;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

@media (min-width: 1024px) {
  h1 {
    font-size: 4rem;
  }
}

h2 {
  font-size: 2.5rem;
}

@media (min-width: 1024px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
  color: #A0AEC0;
}

a {
  color: #00D4FF;
  text-decoration: none;
  transition: color 0.25s ease-out;
}

a:hover {
  color: #8B5CF6;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 0.75rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
  z-index: -1;
}

.btn:hover:before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  color: #FFFFFF;
  border-color: transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-outline {
  background: transparent;
  color: #00D4FF;
  border-color: #00D4FF;
}

.btn-outline:hover {
  background: #00D4FF;
  color: #0F0F23;
}

.btn-sm {
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-xl {
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
}

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

.cta-button {
  position: relative;
}

.cta-button .btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  border-radius: 0.75rem;
  opacity: 0.3;
  filter: blur(8px);
  z-index: -1;
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #2D3748;
  transition: all 0.25s ease-out;
}

.main-header .container {
  padding: 0 1rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-img {
  height: 60px;
  width: auto;
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-primary {
  background: linear-gradient(135deg, #00D4FF 0%, #33ddff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-secondary {
  background: linear-gradient(135deg, #8B5CF6 0%, #bfa4fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: block;
  }
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  color: #A0AEC0;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.25s ease-out;
}

.nav-link:hover, .nav-link.active {
  color: #00D4FF;
  background: rgba(0, 212, 255, 0.1);
}

.nav-link i {
  font-size: 0.875rem;
}

.dropdown {
  position: relative;
}

.dropdown .dropdown-icon {
  font-size: 0.75rem;
  transition: transform 0.25s ease-out;
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #1A1A2E;
  border: 1px solid #2D3748;
  border-radius: 0.75rem;
  padding: 1.5rem;
  min-width: 600px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-out;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

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

.dropdown-section h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #00D4FF;
  font-size: 1rem;
}

.dropdown-section a {
  display: block;
  padding: 0.25rem 0.5rem;
  color: #A0AEC0;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.25s ease-out;
}

.dropdown-section a:hover {
  color: #00D4FF;
  background: rgba(0, 212, 255, 0.1);
}

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

.auth-buttons {
  display: none;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .auth-buttons {
    display: flex;
  }
}

.user-menu {
  position: relative;
}

.user-menu-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid #2D3748;
  border-radius: 0.75rem;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.25s ease-out;
}

.user-menu-toggle:hover {
  border-color: #00D4FF;
}

.user-dropdown {
  right: 0;
  left: auto;
  transform: none;
  min-width: 200px;
}

.user-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
}

.user-dropdown hr {
  margin: 0.5rem 0;
  border: none;
  height: 1px;
  background: #2D3748;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  transition: all 0.25s ease-out;
  transform-origin: center;
}

.mobile-menu-open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #1A1A2E;
  z-index: 1001;
  transition: right 0.25s ease-out;
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-content {
  padding: 2rem;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.mobile-nav-header .logo {
  gap: 0.5rem;
}

.mobile-nav-header .logo img {
  height: 30px;
}

.mobile-nav-header .logo span {
  font-size: 1.125rem;
}

.mobile-nav-close {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  color: #A0AEC0;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.25s ease-out;
}

.mobile-nav-link:hover {
  color: #00D4FF;
  background: rgba(0, 212, 255, 0.1);
}

.mobile-nav-group {
  margin: 1rem 0;
}

.mobile-nav-group-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #00D4FF;
  margin-bottom: 0.5rem;
}

.mobile-nav-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.banner-section {
  position: relative;
  background: linear-gradient(135deg, #0F0F23 0%, #16213E 50%, #1A1B3A 100%);
  padding: 6rem 0 6rem;
  margin-top: 80px;
  overflow: hidden;
}

.banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
  animation: quantum-drift 30s ease-in-out infinite;
}

.banner-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="0.5" fill="rgba(0,212,255,0.1)"/></svg>') repeat;
  background-size: 60px 60px;
  animation: quantum-grid-move 25s linear infinite;
  pointer-events: none;
}

.banner-section-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.banner-section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 50%, #00D4FF 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: quantum-gradient 3s ease-in-out infinite;
}

.banner-section-subtitle {
  font-size: 1.25rem;
  color: #A0AEC0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

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

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  animation: float 6s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 20s linear infinite;
}

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

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text {
  max-width: 600px;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-title-main {
  display: block;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-gradient {
  display: block;
  font-size: 0.6em;
  color: #A0AEC0;
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #00D4FF;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 3rem;
  color: #A0AEC0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.875rem;
  color: #A0AEC0;
}

.hero-visual {
  display: none;
}

@media (min-width: 1024px) {
  .hero-visual {
    display: block;
  }
}

.hero-showcase {
  position: relative;
  height: 500px;
}

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

.server-rack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 1rem;
  background: #1A1A2E;
  border: 1px solid #2D3748;
  border-radius: 0.75rem;
}

.server-unit {
  width: 200px;
  height: 40px;
  background: #16213E;
  border: 1px solid #2D3748;
  border-radius: 0.375rem;
  position: relative;
}

.server-unit.active {
  background: linear-gradient(90deg, #16213E, rgba(0, 212, 255, 0.2));
  animation: server-pulse 2s ease-in-out infinite;
}

.server-unit.active:before {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  animation: blink 1s ease-in-out infinite;
}

@keyframes server-pulse {
  0%, 100% {
    border-color: #2D3748;
  }
  50% {
    border-color: #00D4FF;
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.data-flow {
  position: absolute;
  top: 0;
  left: 220px;
  width: 100px;
  height: 100%;
}

.data-stream {
  position: absolute;
  left: 50%;
  width: 2px;
  height: 40px;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  animation: data-flow 1.5s ease-in-out infinite;
}

.data-stream:nth-child(1) {
  top: 20%;
  animation-delay: 0s;
}

.data-stream:nth-child(2) {
  top: 50%;
  animation-delay: 0.5s;
}

.data-stream:nth-child(3) {
  top: 80%;
  animation-delay: 1s;
}

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

.floating-cards {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 100%;
}

.feature-card {
  position: absolute;
  padding: 1rem;
  background: #1A1A2E;
  border: 1px solid #2D3748;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  animation: float 3s ease-in-out infinite;
}

.feature-card:nth-child(1) {
  top: 10%;
  right: 0;
  animation-delay: 0s;
}

.feature-card:nth-child(2) {
  top: 45%;
  right: 20px;
  animation-delay: 1s;
}

.feature-card:nth-child(3) {
  top: 80%;
  right: 0;
  animation-delay: 2s;
}

.feature-card i {
  font-size: 1.5rem;
  color: #00D4FF;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #A0AEC0;
  font-size: 0.875rem;
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid #A0AEC0;
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 2px;
  height: 6px;
  background: #A0AEC0;
  border-radius: 1px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    top: 6px;
  }
  100% {
    opacity: 0;
    top: 16px;
  }
}

section {
  padding: 6rem 0;
}

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

.section-title {
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #A0AEC0;
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card-large {
  position: relative;
  padding: 2rem;
  background: #1A1A2E;
  border: 1px solid #2D3748;
  border-radius: 1rem;
  transition: all 0.25s ease-out;
  overflow: hidden;
}

.feature-card-large:hover {
  transform: translateY(-8px);
  border-color: #00D4FF;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.feature-card-large:hover .feature-hover-effect {
  opacity: 1;
  transform: scale(1);
}

.feature-icon {
  position: relative;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: #0F0F23;
}

.feature-icon .icon-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  border-radius: 0.75rem;
  filter: blur(10px);
  opacity: 0.5;
  z-index: -1;
}

.feature-title {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.feature-description {
  color: #A0AEC0;
}

.feature-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease-out;
  z-index: -1;
}

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

.service-preview-card {
  position: relative;
  background: #1A1A2E;
  border: 1px solid #2D3748;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.25s ease-out;
}

.service-preview-card:hover {
  transform: translateY(-5px);
  border-color: #00D4FF;
}

.service-preview-card:hover .service-card-glow {
  opacity: 1;
}

.service-card-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid #2D3748;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon i {
  font-size: 1.5rem;
  color: #0F0F23;
}

.service-title {
  color: #FFFFFF;
}

.service-list {
  padding: 1.5rem 2rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  color: #A0AEC0;
}

.service-item i {
  color: #10B981;
  font-size: 0.875rem;
}

.service-card-footer {
  padding: 1.5rem 2rem 2rem;
}

.service-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 212, 255, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease-out;
  z-index: -1;
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-out;
}

.testimonial-card {
  min-width: 100%;
  padding: 2rem;
  background: #1A1A2E;
  border: 1px solid #2D3748;
  border-radius: 1rem;
  margin: 0 1rem;
}

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-quote {
  color: #00D4FF;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.125rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
}

.testimonial-rating i {
  color: #F59E0B;
}

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

.author-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F0F23;
}

.author-name {
  font-weight: 600;
  color: #FFFFFF;
}

.author-company {
  color: #A0AEC0;
  font-size: 0.875rem;
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-nav {
  width: 50px;
  height: 50px;
  background: #1A1A2E;
  border: 1px solid #2D3748;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A0AEC0;
  cursor: pointer;
  transition: all 0.25s ease-out;
}

.testimonial-nav:hover {
  border-color: #00D4FF;
  color: #00D4FF;
}

.tech-showcase {
  max-width: 1000px;
  margin: 0 auto;
}

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

.tech-category h4 {
  color: #00D4FF;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.tech-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tech-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tech-name {
  color: #FFFFFF;
  font-weight: 500;
}

.tech-level {
  width: 120px;
  height: 8px;
  background: #16213E;
  border-radius: 4px;
  overflow: hidden;
}

.tech-fill {
  height: 100%;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  border-radius: 4px;
  animation: fill-progress 2s ease-out;
}

@keyframes fill-progress {
  0% {
    width: 0%;
  }
}

.cta-section {
  position: relative;
  background: linear-gradient(135deg, #0F0F23 0%, #16213E 100%);
  text-align: center;
}

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

.cta-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: #A0AEC0;
  margin-bottom: 3rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.cta-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #A0AEC0;
}

.cta-feature i {
  color: #00D4FF;
}

.main-footer {
  background: #1A1A2E;
  border-top: 1px solid #2D3748;
}

.footer-content {
  padding: 6rem 0 2rem;
}

.footer-top {
  margin-bottom: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  }
}

.footer-section h4 {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 40px;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-description {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #16213E;
  border: 1px solid #2D3748;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A0AEC0;
  transition: all 0.25s ease-out;
}

.social-link:hover {
  border-color: #00D4FF;
  color: #00D4FF;
  transform: translateY(-2px);
}

.footer-title {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #A0AEC0;
  text-decoration: none;
  transition: color 0.25s ease-out;
}

.footer-links a:hover {
  color: #00D4FF;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #A0AEC0;
}

.contact-item i {
  color: #00D4FF;
  width: 20px;
}

.contact-item a {
  color: inherit;
  text-decoration: none;
}

.contact-item a:hover {
  color: #00D4FF;
}

.newsletter-signup h5 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input-group {
  display: flex;
  flex: 1;
  background: #16213E;
  border: 1px solid #2D3748;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color 0.25s ease-out;
}

.newsletter-input-group:focus-within {
  border-color: #00D4FF;
}

.newsletter-input-group input {
  flex: 1;
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  color: #FFFFFF;
  outline: none;
}

.newsletter-input-group input::placeholder {
  color: #718096;
}

.newsletter-input-group button {
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  border: none;
  color: #0F0F23;
  cursor: pointer;
  transition: all 0.25s ease-out;
}

.newsletter-input-group button:hover {
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid #2D3748;
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.footer-copyright p {
  margin: 0;
  color: #A0AEC0;
  font-size: 0.875rem;
}

.footer-tagline {
  color: #00D4FF !important;
  font-weight: 500;
}

.footer-certifications {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .footer-certifications {
    justify-content: flex-start;
  }
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #A0AEC0;
  font-size: 0.875rem;
}

.cert-item i {
  color: #10B981;
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .footer-legal-links {
    justify-content: flex-end;
  }
}

.footer-legal-links a {
  color: #A0AEC0;
  text-decoration: none;
  font-size: 0.875rem;
}

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

.separator {
  color: #718096;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  border: none;
  border-radius: 50%;
  color: #0F0F23;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.25s ease-out;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A1A2E;
  border-top: 1px solid #2D3748;
  padding: 1.5rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.25s ease-out;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #A0AEC0;
}

.cookie-text i {
  color: #F59E0B;
  font-size: 1.25rem;
}

.cookie-link {
  color: #00D4FF;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
}

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

.text-gradient {
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-surface {
  background: #1A1A2E;
}

.border-radius {
  border-radius: 0.75rem;
}

.shadow {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 2rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 2rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 1rem;
}

.pt-4 {
  padding-top: 1.5rem;
}

.pt-5 {
  padding-top: 2rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 1rem;
}

.pb-4 {
  padding-bottom: 1.5rem;
}

.pb-5 {
  padding-bottom: 2rem;
}

@media (max-width: 640px) {
  .container {
    padding: 0 0.5rem;
  }
  .hero-content {
    gap: 2rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .tech-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  section {
    padding: 4rem 0;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-actions .btn {
    justify-content: center;
  }
}

@media print {
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
  .main-header,
  .back-to-top,
  .cookie-consent,
  .mobile-nav {
    display: none !important;
  }
  .main-content {
    margin-top: 0 !important;
  }
  a {
    text-decoration: underline;
  }
  .btn {
    border: 1px solid black;
    background: white;
    color: black;
  }
}

.quantum-footer {
  position: relative;
  background: linear-gradient(135deg, #0F0F23 0%, #16213E 50%, #252A4A 100%);
  color: #FFFFFF;
  overflow: hidden;
  margin-top: 6rem;
}

.quantum-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  animation: quantum-pulse 3s ease-in-out infinite;
}

.quantum-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.quantum-bg * {
  pointer-events: none !important;
}

.quantum-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: quantum-grid-move 20s linear infinite;
  pointer-events: none;
}

.quantum-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.quantum-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: radial-gradient(ellipse at center bottom, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  animation: quantum-wave 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.quantum-content {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem;
}

.quantum-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

@media (max-width: 1024px) {
  .quantum-header {
    flex-direction: column;
    gap: 2rem;
  }
}

.quantum-logo-section .quantum-logo {
  text-align: left;
}

@media (max-width: 1024px) {
  .quantum-logo-section .quantum-logo {
    text-align: center;
  }
}

.logo-hologram {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  position: relative;
}

.logo-hologram .logo-primary {
  background: linear-gradient(135deg, #00D4FF 0%, #66e5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.logo-hologram .logo-secondary {
  background: linear-gradient(135deg, #8B5CF6 0%, #d0bdfb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.logo-tagline {
  color: #A0AEC0;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 2px;
}

.quantum-status-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

@media (max-width: 768px) {
  .quantum-status-board {
    grid-template-columns: 1fr;
  }
}

.status-item {
  text-align: center;
  padding: 1rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 0.75rem;
  background: rgba(26, 26, 46, 0.5);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.status-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  animation: status-scan 3s ease-in-out infinite;
}

.status-item[data-status="operational"] .status-indicator {
  background: #10B981;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.status-item[data-status="excellent"] .status-indicator {
  background: #00D4FF;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.status-item[data-status="active"] .status-indicator {
  background: #F59E0B;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.status-item[data-status="low"] .status-indicator {
  background: #10B981;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 auto 0.25rem;
  animation: status-pulse 2s ease-in-out infinite;
}

.status-label {
  display: block;
  font-size: 0.8rem;
  color: #A0AEC0;
  margin-bottom: 0.25rem;
}

.status-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
}

.quantum-grid-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 6rem;
}

.quantum-card {
  background: rgba(26, 26, 46, 0.7);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease-out;
}

.quantum-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, transparent 50%, rgba(139, 92, 246, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.25s ease-out;
}

.quantum-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.4);
}

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

.card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.card-header i {
  font-size: 1.5rem;
  color: #00D4FF;
}

.card-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.services-constellation {
  position: relative;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 0.5rem;
  background: rgba(22, 33, 62, 0.5);
  cursor: pointer;
  transition: all 0.25s ease-out;
  position: relative;
}

.service-node:hover {
  border-color: #00D4FF;
  transform: scale(1.05);
}

.service-node:hover i {
  color: #00D4FF;
}

.service-node i {
  font-size: 1.5rem;
  color: #A0AEC0;
  transition: color 0.25s ease-out;
}

.service-node span {
  font-size: 0.9rem;
  font-weight: 500;
}

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

.channel-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 0.5rem;
  background: rgba(22, 33, 62, 0.3);
  text-decoration: none;
  color: #FFFFFF;
  transition: all 0.25s ease-out;
}

.channel-link:hover {
  border-color: #00D4FF;
  background: rgba(0, 212, 255, 0.1);
}

.channel-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.channel-icon i {
  color: #00D4FF;
}

.channel-info {
  display: flex;
  flex-direction: column;
}

.channel-info .channel-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.channel-info .channel-status {
  font-size: 0.8rem;
  color: #10B981;
}

.timeline-flow {
  position: relative;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 8px;
  top: calc(100% - 8px);
  width: 2px;
  height: calc(100% - 16px);
  background: rgba(0, 212, 255, 0.3);
}

.timeline-item.active .timeline-marker {
  background: #00D4FF;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.timeline-marker {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.5);
  border: 2px solid #1A1A2E;
}

.timeline-content {
  display: flex;
  flex-direction: column;
}

.timeline-content .timeline-year {
  font-weight: 600;
  color: #00D4FF;
}

.timeline-content .timeline-event {
  font-size: 0.9rem;
  color: #A0AEC0;
}

.newsletter-description {
  color: #A0AEC0;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.quantum-form .quantum-input-group {
  display: flex;
  gap: 0.5rem;
}

.quantum-form .quantum-input-group input {
  flex: 1;
  padding: 1rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 0.5rem;
  background: rgba(22, 33, 62, 0.5);
  color: #FFFFFF;
  font-size: 0.95rem;
}

.quantum-form .quantum-input-group input::placeholder {
  color: #718096;
}

.quantum-form .quantum-input-group input:focus {
  outline: none;
  border-color: #00D4FF;
}

.quantum-btn {
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s ease-out;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantum-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.quantum-terminal {
  background: #0a0a0a;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 0.75rem;
  margin-bottom: 6rem;
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
  overflow: hidden;
}

.terminal-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.terminal-controls {
  display: flex;
  gap: 0.25rem;
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dot.red {
  background: #ff5f56;
}

.terminal-dot.yellow {
  background: #ffbd2e;
}

.terminal-dot.green {
  background: #27ca3f;
}

.terminal-title {
  color: #A0AEC0;
  font-size: 0.9rem;
}

.terminal-body {
  padding: 1.5rem;
  min-height: 150px;
}

.terminal-line {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.terminal-prompt {
  color: #10B981;
}

.terminal-command {
  color: #FFFFFF;
}

.terminal-output {
  color: #A0AEC0;
}

.status-active {
  color: #10B981;
}

.terminal-cursor {
  color: #00D4FF;
  animation: terminal-blink 1s infinite;
}

.quantum-navigation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 6rem;
}

.nav-section h4 {
  color: #00D4FF;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.nav-section h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
}

.nav-section a {
  display: block;
  color: #A0AEC0;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: all 0.25s ease-out;
}

.nav-section a:hover {
  color: #00D4FF;
  padding-left: 1rem;
}

.quantum-copyright {
  background: rgba(15, 15, 35, 0.9);
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  padding: 1.5rem 0;
  position: relative;
  z-index: 50;
}

.quantum-copyright * {
  pointer-events: auto !important;
}

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

@media (max-width: 1024px) {
  .copyright-content {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.copyright-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #A0AEC0;
  font-size: 0.9rem;
}

.quantum-separator {
  color: #00D4FF;
  font-weight: bold;
}

.quantum-certifications {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 0.5rem;
  color: #A0AEC0;
  font-size: 0.8rem;
}

.cert-badge i {
  color: #00D4FF;
}

@keyframes quantum-pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

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

@keyframes quantum-wave {
  0% {
    transform: scaleX(1) scaleY(1);
  }
  100% {
    transform: scaleX(1.1) scaleY(1.2);
  }
}

@keyframes status-scan {
  0% {
    left: -100%;
  }
  50% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}

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

@keyframes terminal-blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

.services-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #0F0F23 0%, #16213E 50%, #1A1B3A 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(0,212,255,0.1)"/></svg>') repeat;
  background-size: 50px 50px;
  animation: quantum-grid-move 20s linear infinite;
  pointer-events: none;
}

.services-section::after {
  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(139, 92, 246, 0.05) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
  pointer-events: none;
  animation: quantum-drift 20s ease-in-out infinite;
}

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

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 50%, #00D4FF 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: quantum-gradient 3s ease-in-out infinite;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #A0AEC0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin-bottom: 6rem;
  perspective: 1000px;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

.service-card:nth-child(5) {
  animation-delay: 0.5s;
}

.service-card:nth-child(6) {
  animation-delay: 0.6s;
}

.service-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transform-style: preserve-3d;
  animation: float 6s ease-in-out infinite;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00D4FF 0%, #8B5CF6 50%, #FF6B6B 100%);
  background-size: 200% 100%;
  transform: scaleX(0);
  transition: all 0.6s ease;
  transform-origin: left;
  animation: quantum-gradient 3s ease-in-out infinite;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, rgba(139, 92, 246, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  z-index: 0;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-12px) rotateX(5deg) rotateY(2deg);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15), 0 10px 20px rgba(139, 92, 246, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 212, 255, 0.06) 100%);
}

.service-card:hover::before {
  transform: scaleX(1);
  background-position: 100% 0;
}

.service-card:hover::after {
  width: 300px;
  height: 300px;
}

.service-card:nth-child(even):hover {
  transform: translateY(-12px) rotateX(-3deg) rotateY(-2deg);
}

.service-card:nth-child(3n):hover {
  transform: translateY(-12px) rotateX(2deg) rotateY(5deg);
}

.service-card:nth-child(even) {
  animation: float 8s ease-in-out infinite reverse;
}

.service-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(139, 92, 246, 0.15) 50%, rgba(255, 107, 107, 0.1) 100%);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: icon-pulse 3s ease-in-out infinite;
}

.service-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00D4FF, #8B5CF6, #FF6B6B, #00D4FF);
  background-size: 300% 300%;
  border-radius: 26px;
  z-index: -1;
  opacity: 0;
  transition: all 0.5s ease;
  animation: quantum-gradient 3s ease-in-out infinite;
}

.service-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  opacity: 0;
}

.service-icon i {
  font-size: 2.2rem;
  color: #00D4FF;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 8px rgba(0, 212, 255, 0.3));
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(139, 92, 246, 0.25) 50%, rgba(255, 107, 107, 0.2) 100%);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.3), 0 0 30px rgba(0, 212, 255, 0.2);
}

.service-card:hover .service-icon::before {
  opacity: 1;
  background-position: 100% 100%;
}

.service-card:hover .service-icon::after {
  opacity: 1;
  width: 40px;
  height: 40px;
}

.service-card:hover .service-icon i {
  color: #FFFFFF;
  transform: scale(1.1) rotate(-5deg);
  filter: drop-shadow(0 6px 12px rgba(0, 212, 255, 0.5));
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.service-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-content h3::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00D4FF 0%, #8B5CF6 100%);
  transition: width 0.5s ease;
}

.service-card:hover .service-content h3::after {
  width: 100%;
}

.service-tagline {
  font-size: 1.1rem;
  color: #00D4FF;
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-style: italic;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
  transition: all 0.4s ease;
}

.service-card:hover .service-tagline {
  color: #8B5CF6;
  text-shadow: 0 0 15px rgba(139, 92, 246, 0.7);
  transform: translateX(5px);
}

.service-content p {
  color: #B4BCC8;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.service-card:hover .service-content p {
  color: #D1D9E0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #00D4FF;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  padding: 0.75rem 1.5rem;
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
  background: rgba(0, 212, 255, 0.05);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.service-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.service-link:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
  border-color: rgba(0, 212, 255, 0.6);
  background: rgba(0, 212, 255, 0.15);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.service-link:hover::before {
  left: 100%;
}

.service-link i {
  transition: all 0.4s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 212, 255, 0.3));
}

.service-link:hover i {
  transform: translateX(5px) scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 212, 255, 0.5));
}

.services-cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  animation: quantum-wave 4s ease-in-out infinite;
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.cta-content p {
  color: #A0AEC0;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-preview-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 2rem;
}

.service-preview-image i {
  font-size: 2.5rem;
  color: #00D4FF;
  padding: 1.5rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.service-preview-image i:hover {
  color: #FFFFFF;
  background: rgba(0, 212, 255, 0.2);
  transform: scale(1.1);
}

.about-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #16213E 0%, #1A1B3A 50%, #0F0F23 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  padding-right: 2rem;
}

.about-description {
  font-size: 1.1rem;
  color: #A0AEC0;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-container {
  position: relative;
  max-width: 400px;
  width: 100%;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 2px solid rgba(0, 212, 255, 0.2);
  transition: all 0.4s ease;
}

.about-image:hover {
  border-color: rgba(0, 212, 255, 0.4);
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.about-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: -20px;
  left: -20px;
  pointer-events: none;
}

.decoration-circle {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 50%;
  animation: quantum-pulse 2s ease-in-out infinite;
}

.decoration-dots {
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 2px, transparent 2px);
  background-size: 15px 15px;
  border-radius: 50%;
  animation: quantum-pulse 2s ease-in-out infinite reverse;
}

.company-story {
  padding: 6rem 0;
  background: #0F0F23;
  position: relative;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 6rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.story-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-text {
  font-size: 1.15rem;
  color: #A0AEC0;
  line-height: 1.8;
  margin-bottom: 4rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

.mission, .vision {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: all 0.25s ease-out;
}

.mission:hover, .vision:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.mission h3, .vision h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.mission h3 i, .vision h3 i {
  color: #00D4FF;
  font-size: 1.5rem;
}

.mission p, .vision p {
  color: #A0AEC0;
  line-height: 1.7;
}

.story-visual .timeline {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  position: relative;
}

.story-visual .timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00D4FF 0%, #8B5CF6 50%, #FF6B6B 100%);
  background-size: 200% 100%;
  border-radius: 24px 24px 0 0;
  animation: quantum-gradient 3s ease-in-out infinite;
}

.story-visual .timeline h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  margin-left: 2rem;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: -2rem;
  top: calc(100% - 8px);
  width: 2px;
  height: calc(100% - 8px);
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.5) 0%, rgba(0, 212, 255, 0.1) 100%);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc($spacing-xl + 8px);
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: #00D4FF;
  border: 3px solid #0F0F23;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  z-index: 2;
}

.timeline-year {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00D4FF;
  min-width: 60px;
}

.timeline-event {
  color: #A0AEC0;
  font-size: 1rem;
  line-height: 1.5;
}

.company-values {
  padding: 6rem 0;
  background: linear-gradient(135deg, #16213E 0%, #1A1B3A 50%, #0F0F23 100%);
  position: relative;
}

.company-values::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.value-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 24px;
  padding: 4rem;
  backdrop-filter: blur(20px);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease-out;
  animation: float 6s ease-in-out infinite;
}

.value-card:nth-child(even) {
  animation: float 8s ease-in-out infinite reverse;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00D4FF 0%, #8B5CF6 50%, #FF6B6B 100%);
  background-size: 200% 100%;
  transform: scaleX(0);
  transition: all 0.6s ease;
  transform-origin: left;
  animation: quantum-gradient 3s ease-in-out infinite;
}

.value-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.25s ease-out;
  position: relative;
}

.value-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00D4FF, #8B5CF6, #FF6B6B, #00D4FF);
  background-size: 300% 300%;
  border-radius: 26px;
  z-index: -1;
  opacity: 0;
  transition: all 0.5s ease;
  animation: quantum-gradient 3s ease-in-out infinite;
}

.value-icon i {
  font-size: 2.5rem;
  color: #00D4FF;
  transition: all 0.25s ease-out;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(139, 92, 246, 0.25) 100%);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.15);
}

.value-card:hover .value-icon::before {
  opacity: 1;
}

.value-card:hover .value-icon i {
  color: white;
  transform: scale(1.1);
}

.value-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.value-description {
  color: #A0AEC0;
  line-height: 1.7;
  font-size: 1.05rem;
}

.team-section {
  padding: 6rem 0;
  background: #0F0F23;
  position: relative;
}

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

.team-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.25s ease-out;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15);
}

.team-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.25s ease-out;
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 15, 35, 0.8) 100%);
  opacity: 0;
  transition: all 0.25s ease-out;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

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

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.skill-tag {
  padding: 0.25rem 0.5rem;
  background: rgba(0, 212, 255, 0.2);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 0.5rem;
  color: #00D4FF;
  font-size: 0.8rem;
  font-weight: 500;
}

.team-info {
  padding: 2rem;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.team-position {
  color: #00D4FF;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.team-bio {
  color: #A0AEC0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.certifications-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #16213E 0%, #1A1B3A 50%, #0F0F23 100%);
  position: relative;
}

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

.certification-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: all 0.25s ease-out;
}

.certification-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.cert-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(0, 212, 255, 0.15) 100%);
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.25s ease-out;
}

.cert-badge i {
  font-size: 2rem;
  color: #10B981;
}

.certification-card:hover .cert-badge {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(0, 212, 255, 0.25) 100%);
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.2);
}

.cert-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.cert-description {
  color: #A0AEC0;
  line-height: 1.6;
}

.about-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0F0F23 0%, #16213E 100%);
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  animation: quantum-drift 20s ease-in-out infinite;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.2rem;
  color: #A0AEC0;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

@keyframes team-card-in {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.team-card, .value-card, .certification-card {
  animation: team-card-in 0.6s ease-out forwards;
}

.team-card:nth-child(1) {
  animation-delay: 0.1s;
}

.team-card:nth-child(2) {
  animation-delay: 0.2s;
}

.team-card:nth-child(3) {
  animation-delay: 0.3s;
}

.team-card:nth-child(4) {
  animation-delay: 0.4s;
}

.value-card:nth-child(1) {
  animation-delay: 0.1s;
}

.value-card:nth-child(2) {
  animation-delay: 0.2s;
}

.value-card:nth-child(3) {
  animation-delay: 0.3s;
}

.value-card:nth-child(4) {
  animation-delay: 0.4s;
}

@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-text {
    padding-right: 0;
    text-align: center;
  }
  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 6rem 0 4rem;
  }
  .page-title {
    font-size: 2.5rem;
  }
  .company-story, .company-values, .team-section, .certifications-section, .about-cta {
    padding: 6rem 0;
  }
  .story-content h2 {
    font-size: 2rem;
  }
  .mission-vision {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .certifications-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .page-title {
    font-size: 2rem;
  }
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-left: 1.5rem;
  }
  .timeline-item::before {
    left: calc($spacing-lg + 8px);
  }
  .team-card, .value-card, .certification-card {
    margin: 0 0.5rem;
  }
  .value-card, .certification-card {
    padding: 2rem 1.5rem;
  }
  .team-info {
    padding: 1.5rem;
  }
  .about-section {
    padding: 4rem 0;
  }
}

.why-choose-us {
  padding: 6rem 0;
  background: #0F0F23;
  position: relative;
}

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

.why-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: all 0.25s ease-out;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00D4FF 0%, #8B5CF6 50%, #FF6B6B 100%);
  background-size: 200% 100%;
  transform: scaleX(0);
  transition: all 0.6s ease;
  transform-origin: left;
  animation: quantum-gradient 3s ease-in-out infinite;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.25s ease-out;
}

.why-icon i {
  font-size: 2.5rem;
  color: #00D4FF;
  transition: all 0.25s ease-out;
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(139, 92, 246, 0.25) 100%);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.15);
}

.why-card:hover .why-icon i {
  color: white;
  transform: scale(1.1);
}

.why-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.why-description {
  color: #A0AEC0;
  line-height: 1.7;
  font-size: 1.05rem;
}

.service-category {
  padding: 6rem 0;
  background: linear-gradient(135deg, #16213E 0%, #1A1B3A 50%, #0F0F23 100%);
  position: relative;
}

.service-category:nth-child(even) {
  background: linear-gradient(135deg, #0F0F23 0%, #16213E 100%);
}

.service-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.category-header {
  margin-bottom: 6rem;
}

.category-info {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
}

@media (max-width: 768px) {
  .category-info {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}

.category-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
  border: 3px solid rgba(0, 212, 255, 0.3);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: category-pulse 3s ease-in-out infinite;
}

.category-icon i {
  font-size: 3.5rem;
  color: #00D4FF;
}

.category-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.category-text p {
  color: #A0AEC0;
  font-size: 1.15rem;
  line-height: 1.7;
}

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

.service-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 24px;
  padding: 4rem;
  backdrop-filter: blur(20px);
  transition: all 0.25s ease-out;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00D4FF 0%, #8B5CF6 50%, #FF6B6B 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: all 0.6s ease;
  animation: quantum-gradient 3s ease-in-out infinite;
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 30px 60px rgba(0, 212, 255, 0.15);
}

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

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.service-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.service-price {
  text-align: right;
  font-size: 0.9rem;
  color: #A0AEC0;
}

.service-price .price {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #00D4FF;
  margin-bottom: 0.25rem;
}

.service-price .price-period {
  font-size: 0.85rem;
}

.service-description {
  color: #A0AEC0;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.service-features {
  margin-bottom: 2rem;
}

.service-features h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

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

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #A0AEC0;
}

.features-list li i {
  color: #10B981;
  font-size: 0.9rem;
}

.service-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.featured-services {
  padding: 6rem 0;
  background: #0F0F23;
  position: relative;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 4rem;
}

.featured-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.25s ease-out;
}

.featured-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 30px 60px rgba(0, 212, 255, 0.15);
}

.featured-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.25s ease-out;
}

.featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 15, 35, 0.6) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.5rem;
}

.featured-badge {
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  color: #0F0F23;
  padding: 0.5rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.featured-card:hover .featured-image img {
  transform: scale(1.1);
}

.featured-content {
  padding: 4rem;
}

.featured-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.featured-description {
  color: #A0AEC0;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.featured-features {
  margin-bottom: 2rem;
}

.featured-features h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

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

.featured-features ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #A0AEC0;
}

.featured-features ul li i {
  color: #F59E0B;
  font-size: 0.9rem;
}

.featured-use-cases {
  margin-bottom: 3rem;
}

.featured-use-cases h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.use-cases {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.use-case-tag {
  padding: 0.25rem 1rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 0.75rem;
  color: #00D4FF;
  font-size: 0.85rem;
  font-weight: 500;
}

.featured-actions {
  text-align: center;
}

.pricing-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #16213E 0%, #1A1B3A 50%, #0F0F23 100%);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 6rem;
}

.pricing-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: all 0.25s ease-out;
  position: relative;
  overflow: hidden;
}

.pricing-card.popular {
  border-color: rgba(0, 212, 255, 0.4);
  transform: scale(1.05);
}

.pricing-card.popular::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  animation: quantum-gradient 3s ease-in-out infinite;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 30px 60px rgba(0, 212, 255, 0.15);
}

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

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  color: #0F0F23;
  padding: 0.5rem 2rem;
  border-radius: 0 0 0.75rem 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.popular-badge i {
  font-size: 0.8rem;
}

.pricing-header {
  margin-bottom: 2rem;
}

.tier-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.tier-price {
  margin-bottom: 1.5rem;
}

.tier-price .price {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: #00D4FF;
  line-height: 1;
}

.tier-price .period {
  color: #A0AEC0;
  font-size: 0.9rem;
}

.tier-description {
  color: #A0AEC0;
  line-height: 1.6;
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.pricing-features ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #A0AEC0;
}

.pricing-features ul li i {
  color: #10B981;
  font-size: 0.9rem;
}

.addons-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.addons-section h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.addon-card {
  background: rgba(22, 33, 62, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s ease-out;
}

.addon-card:hover {
  background: rgba(0, 212, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-3px);
}

.addon-info {
  text-align: left;
}

.addon-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.addon-description {
  color: #A0AEC0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.addon-price {
  color: #00D4FF;
  font-weight: 700;
  font-size: 1.1rem;
}

.service-comparison {
  padding: 6rem 0;
  background: #0F0F23;
  position: relative;
}

.comparison-table-wrapper {
  overflow-x: auto;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.comparison-table th, .comparison-table td {
  padding: 1.5rem 2rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.comparison-table th {
  background: rgba(0, 212, 255, 0.05);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-table th:first-child {
  border-radius: 20px 0 0 0;
}

.comparison-table th:last-child {
  border-radius: 0 20px 0 0;
}

.comparison-table td {
  color: #A0AEC0;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: #FFFFFF;
}

.comparison-table .text-green {
  color: #10B981;
}

.comparison-table .text-red {
  color: #FF6B6B;
}

.service-process {
  padding: 6rem 0;
  background: linear-gradient(135deg, #16213E 0%, #1A1B3A 50%, #0F0F23 100%);
  position: relative;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 1024px) {
  .process-steps {
    flex-direction: column;
    gap: 4rem;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 250px;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: #0F0F23;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.step-number::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(45deg, #00D4FF, #8B5CF6, #FF6B6B, #00D4FF);
  background-size: 300% 300%;
  border-radius: 50%;
  z-index: -1;
  animation: quantum-gradient 3s ease-in-out infinite;
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #A0AEC0;
  line-height: 1.6;
}

.process-connector {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
  position: relative;
}

@media (max-width: 1024px) {
  .process-connector {
    display: none;
  }
}

.process-connector::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  animation: process-flow 2s ease-in-out infinite;
}

.services-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0F0F23 0%, #16213E 100%);
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  animation: quantum-drift 20s ease-in-out infinite;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.2rem;
  color: #A0AEC0;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

@keyframes category-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5), 0 0 50px rgba(139, 92, 246, 0.2);
  }
}

@keyframes process-flow {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

.service-card, .featured-card, .pricing-card, .why-card {
  animation: service-fade-in 0.6s ease-out forwards;
}

.service-card:nth-child(1), .why-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2), .why-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3), .why-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card:nth-child(4), .why-card:nth-child(4) {
  animation-delay: 0.4s;
}

.featured-card:nth-child(1) {
  animation-delay: 0.1s;
}

.featured-card:nth-child(2) {
  animation-delay: 0.3s;
}

.pricing-card:nth-child(1) {
  animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
  animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes service-fade-in {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .category-info {
    flex-direction: column;
    text-align: center;
  }
  .category-icon {
    width: 100px;
    height: 100px;
  }
  .category-icon i {
    font-size: 3rem;
  }
  .category-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .banner-section {
    padding: 6rem 0 4rem;
  }
  .page-title {
    font-size: 2.5rem;
  }
  .why-choose-us, .service-category, .featured-services, .pricing-section, .service-comparison, .service-process, .services-cta {
    padding: 6rem 0;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 2rem;
  }
  .featured-content {
    padding: 2rem;
  }
  .pricing-card {
    padding: 2rem;
  }
  .comparison-table-wrapper {
    font-size: 0.9rem;
  }
  .comparison-table-wrapper th, .comparison-table-wrapper td {
    padding: 1rem;
  }
  .process-steps {
    gap: 2rem;
  }
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .page-title {
    font-size: 2rem;
  }
  .service-actions {
    flex-direction: column;
  }
  .service-actions .btn {
    width: 100%;
  }
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .addons-grid {
    grid-template-columns: 1fr;
  }
  .addon-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .comparison-table {
    font-size: 0.85rem;
  }
  .comparison-table th, .comparison-table td {
    padding: 0.5rem 1rem;
  }
  .team-card, .value-card, .certification-card {
    margin: 0 0.5rem;
  }
  .value-card, .certification-card {
    padding: 2rem 1.5rem;
  }
  .team-info {
    padding: 1.5rem;
  }
  .about-section {
    padding: 4rem 0;
  }
}

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

@keyframes icon-pulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 30px rgba(0, 212, 255, 0.3);
  }
}

@keyframes quantum-drift {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1) rotate(180deg);
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  .services-cta {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 4rem 0;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-card {
    padding: 2rem;
  }
  .services-cta {
    padding: 2rem;
  }
  .cta-content h3 {
    font-size: 1.5rem;
  }
  .service-preview-image {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 1rem;
  }
  .service-preview-image i {
    font-size: 2rem;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }
  .service-card {
    padding: 1.5rem;
  }
  .service-icon {
    width: 60px;
    height: 60px;
  }
  .service-icon i {
    font-size: 1.5rem;
  }
}

.enhanced-copyright-section {
  padding: 2rem 0;
  position: relative;
  z-index: 50;
}

.enhanced-copyright-section * {
  position: relative;
  z-index: 51;
  pointer-events: auto !important;
}

.alternateorizon-attribution {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 100;
}

.alternateorizon-attribution * {
  position: relative;
  z-index: 101;
  pointer-events: auto !important;
}

.attribution-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.rights-text {
  color: #A0AEC0;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

.copyright-line {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.5px;
}

.powered-by {
  color: #A0AEC0;
  font-size: 0.95rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.ah-link {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.ah-link:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

.ah-logo-text {
  font-weight: 700;
  font-size: 1rem;
}

.ah-primary {
  color: #00D4FF;
}

.ah-secondary {
  color: #8B5CF6;
}

.quantum-certifications {
  display: flex;
  gap: 1rem;
  position: relative;
  z-index: 100;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 0.5rem;
  color: #A0AEC0;
  font-size: 0.8rem;
  position: relative;
  z-index: 101;
  pointer-events: auto !important;
}

.cert-badge i {
  color: #00D4FF;
}

@media (max-width: 768px) {
  .alternateorizon-attribution {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  .attribution-content {
    gap: 0.75rem;
  }
  .powered-by {
    font-size: 0.9rem;
    text-align: center;
  }
  .ah-logo-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .powered-by {
    flex-direction: column;
    gap: 0.25rem;
  }
}

.contact-content {
  padding: 6rem 0;
  background: #0F0F23;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.contact-form-section {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 24px;
  padding: 4rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00D4FF 0%, #8B5CF6 50%, #FF6B6B 100%);
  background-size: 200% 100%;
  animation: quantum-gradient 3s ease-in-out infinite;
}

.form-header {
  margin-bottom: 3rem;
  text-align: center;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-header p {
  color: #A0AEC0;
  font-size: 1.1rem;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

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

.contact-form .form-group label {
  display: block;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-form .form-group input, .contact-form .form-group select, .contact-form .form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(22, 33, 62, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 0.75rem;
  color: #FFFFFF;
  font-size: 1rem;
  transition: all 0.25s ease-out;
  backdrop-filter: blur(10px);
}

.contact-form .form-group input::placeholder, .contact-form .form-group select::placeholder, .contact-form .form-group textarea::placeholder {
  color: #718096;
}

.contact-form .form-group input:focus, .contact-form .form-group select:focus, .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #00D4FF;
  background: rgba(22, 33, 62, 0.8);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.contact-form .form-group select {
  cursor: pointer;
}

.contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.contact-form .checkbox-group .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-form .checkbox-group .checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.contact-form .checkbox-group .checkbox-label .checkmark {
  width: 20px;
  height: 20px;
  background: rgba(22, 33, 62, 0.5);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 0.375rem;
  position: relative;
  flex-shrink: 0;
  transition: all 0.25s ease-out;
}

.contact-form .checkbox-group .checkbox-label .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: white;
  font-weight: bold;
  font-size: 0.8rem;
  transition: all 0.25s ease-out;
}

.contact-form .checkbox-group .checkbox-label input:checked + .checkmark {
  background: #00D4FF;
  border-color: #00D4FF;
}

.contact-form .checkbox-group .checkbox-label input:checked + .checkmark::after {
  transform: translate(-50%, -50%) scale(1);
}

.contact-form .checkbox-group .checkbox-label a {
  color: #00D4FF;
  text-decoration: underline;
}

.contact-form .checkbox-group .checkbox-label a:hover {
  color: #8B5CF6;
}

.contact-form .form-actions {
  text-align: center;
  margin-top: 3rem;
}

.contact-form .form-actions .btn {
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.contact-form .form-actions .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.contact-form .form-actions .btn:hover::before {
  left: 100%;
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card, .office-hours-card, .quick-actions-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: all 0.25s ease-out;
}

.contact-info-card:hover, .office-hours-card:hover, .quick-actions-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.contact-info-card h3, .office-hours-card h3, .quick-actions-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: all 0.25s ease-out;
}

.contact-method:hover {
  background: rgba(0, 212, 255, 0.05);
  transform: translateX(5px);
}

.method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease-out;
}

.method-icon i {
  font-size: 1.25rem;
  color: #00D4FF;
}

.contact-method:hover .method-icon {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(139, 92, 246, 0.25) 100%);
  border-color: rgba(0, 212, 255, 0.5);
  transform: scale(1.1);
}

.contact-method:hover .method-icon i {
  color: white;
}

.method-content {
  flex: 1;
}

.method-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.method-content a {
  color: #00D4FF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease-out;
}

.method-content a:hover {
  color: #8B5CF6;
}

.method-content .method-note {
  font-size: 0.9rem;
  color: #A0AEC0;
  margin-top: 0.25rem;
}

.method-content address {
  font-style: normal;
  color: #00D4FF;
  font-weight: 500;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.hours-item .day {
  font-weight: 600;
  color: #FFFFFF;
}

.hours-item .time {
  color: #00D4FF;
  font-weight: 500;
}

.hours-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 0.75rem;
  font-size: 0.9rem;
  color: #A0AEC0;
}

.hours-note i {
  color: #00D4FF;
}

.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.quick-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  background: rgba(22, 33, 62, 0.3);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 0.75rem;
  text-decoration: none;
  color: #FFFFFF;
  transition: all 0.25s ease-out;
  text-align: center;
}

.quick-action:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.1);
}

.quick-action.emergency {
  border-color: rgba(255, 107, 107, 0.3);
  color: #FF6B6B;
}

.quick-action.emergency:hover {
  background: rgba(255, 107, 107, 0.1);
  border-color: rgba(255, 107, 107, 0.5);
}

.quick-action i {
  font-size: 1.5rem;
  color: #00D4FF;
  transition: all 0.25s ease-out;
}

.quick-action span {
  font-size: 0.9rem;
  font-weight: 500;
}

.quick-action.emergency i {
  color: #FF6B6B;
}

.quick-action:hover i {
  transform: scale(1.2);
}

.contact-faq {
  padding: 6rem 0;
  background: linear-gradient(135deg, #16213E 0%, #1A1B3A 50%, #0F0F23 100%);
  position: relative;
}

.contact-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s ease-out;
}

.faq-item:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.25s ease-out;
}

.faq-question h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

.faq-question i {
  color: #00D4FF;
  transition: transform 0.25s ease-out;
  font-size: 0.9rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.25s ease-out;
  background: rgba(22, 33, 62, 0.3);
}

.faq-answer p {
  padding: 0 2rem 2rem;
  margin: 0;
  color: #A0AEC0;
  line-height: 1.6;
}

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

.contact-map {
  padding: 6rem 0;
  background: #0F0F23;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
}

.map-placeholder {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 100%);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 20px;
  padding: 6rem;
  text-align: center;
  backdrop-filter: blur(20px);
}

.map-placeholder i {
  font-size: 4rem;
  color: #00D4FF;
  margin-bottom: 1.5rem;
  animation: quantum-pulse 2s ease-in-out infinite;
}

.map-placeholder h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #00D4FF 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.map-placeholder p {
  color: #A0AEC0;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.map-info {
  display: inline-block;
  padding: 1.5rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 0.75rem;
  font-weight: 500;
}

.map-info address {
  font-style: normal;
  color: #00D4FF;
}

@media (max-width: 1024px) {
  .page-title {
    font-size: 2.5rem;
  }
  .contact-form-section, .contact-info-card, .office-hours-card, .quick-actions-card {
    padding: 2rem;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 6rem 0 4rem;
  }
  .page-title {
    font-size: 2rem;
  }
  .contact-content {
    padding: 6rem 0;
  }
  .contact-form-section, .contact-info-card, .office-hours-card, .quick-actions-card {
    padding: 1.5rem;
  }
  .contact-methods {
    gap: 1rem;
  }
  .contact-method {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
  .method-content {
    text-align: center;
  }
  .quick-actions {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .map-placeholder {
    padding: 4rem 1.5rem;
  }
  .map-placeholder i {
    font-size: 3rem;
  }
  .map-placeholder h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  .quick-action {
    padding: 1rem;
  }
  .hours-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

@keyframes contact-fade-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-method, .faq-item, .quick-action {
  animation: contact-fade-in 0.6s ease-out forwards;
}

.contact-method:nth-child(1) {
  animation-delay: 0.1s;
}

.contact-method:nth-child(2) {
  animation-delay: 0.2s;
}

.contact-method:nth-child(3) {
  animation-delay: 0.3s;
}

.contact-method:nth-child(4) {
  animation-delay: 0.4s;
}

.contact-method:nth-child(5) {
  animation-delay: 0.5s;
}

.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
  animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
  animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
  animation-delay: 0.4s;
}
