/* ==================== */
/* MODERN TECH GIANT STYLES */
/* ==================== */
:root {
  --tech-dark: #0a0e17;
  --tech-darker: #05080f;
  --tech-blue: #0066ff;
  --tech-blue-light: #3399ff;
  --tech-cyan: #00e5ff;
  --tech-purple: #8a2be2;
  --tech-white: #ffffff;
  --tech-gray-100: #f8fafc;
  --tech-gray-200: #e2e8f0;
  --tech-gray-300: #cbd5e0;
  --tech-gray-400: #94a3b8;
  --tech-gray-500: #64748b;
  --tech-gray-600: #475569;
  --tech-gray-700: #334155;
  --tech-gray-800: #1e293b;
  --tech-gray-900: #0f172a;
  
  --primary: var(--tech-blue);
  --primary-light: var(--tech-blue-light);
  --primary-dark: #0052cc;
  --accent: var(--tech-cyan);
  --accent-alt: var(--tech-purple);
  --background: var(--tech-dark);
  --background-alt: var(--tech-darker);
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-bg-hover: rgba(255, 255, 255, 0.08);
  --text: var(--tech-white);
  --text-light: var(--tech-gray-300);
  --text-muted: var(--tech-gray-400);
  
  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --section-padding: 6rem 1rem;
  --max-width: 1280px;
  --header-height: 80px;
  
  --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  --glow: 0 0 20px rgba(0, 102, 255, 0.3);
  --glow-accent: 0 0 20px rgba(0, 229, 255, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== */
/* CORE STYLES          */
/* ==================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text);
  letter-spacing: -0.025em;
}

h1 { 
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

h2 { 
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

h3 { 
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

h4 { 
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: var(--primary-light);
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

/* Background grid pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(10, 14, 23, 0.9) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 14, 23, 0.9) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.2;
}

/* ==================== */
/* ANIMATION KEYFRAMES  */
/* ==================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes glow {
  0% { box-shadow: 0 0 5px var(--primary); }
  50% { box-shadow: 0 0 20px var(--primary); }
  100% { box-shadow: 0 0 5px var(--primary); }
}

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Reveal animation for scroll */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Animation classes */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-up {
  transform: translateY(50px);
}

.animate-fade-scale {
  transform: scale(0.95);
}

.animate-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stagger-children > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(n+6) { transition-delay: 0.6s; }

/* ==================== */
/* HEADER & NAVIGATION  */
/* ==================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 14, 23, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
}

.logo img {
  height: 40px;
  transition: var(--transition);
  filter: brightness(0) invert(1);
}

.logo img:hover {
  transform: scale(1.05);
  filter: brightness(0) invert(1) drop-shadow(0 0 10px var(--primary));
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.hamburger:focus {
  outline: none;
}

.hamburger .bar {
  width: 30px;
  height: 2px;
  background: var(--text);
  border-radius: 10px;
  transition: var(--transition);
  position: relative;
  transform-origin: center;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 8px);
  background: var(--accent);
}

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

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -8px);
  background: var(--accent);
}

nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(10, 14, 23, 0.98);
  backdrop-filter: blur(15px);
  overflow: hidden;
  transition: height 0.4s ease;
  z-index: 999;
}

nav.active {
  height: calc(100vh - var(--header-height));
}

.nav-list {
  list-style: none;
  padding: 3rem 2rem;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

nav.active .nav-list {
  opacity: 1;
}

.nav-list a {
  color: var(--text);
  font-weight: 600;
  font-size: 1.5rem;
  padding: 0.75rem 0;
  display: block;
  position: relative;
  transition: var(--transition);
}

.nav-list a:hover {
  color: var(--accent);
  transform: translateX(10px);
}

.nav-list a[aria-current="page"] {
  color: var(--accent);
}

.nav-list a[aria-current="page"]::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Dropdown menu */
.dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  background: transparent;
  box-shadow: none;
  padding: 1rem 0 0 1.5rem;
  display: none;
}

.dropdown.active .dropdown-menu {
  display: block;
  animation: slideIn 0.3s ease;
}

.dropdown-menu li {
  margin: 0.5rem 0;
}

.dropdown-menu a {
  font-size: 1.2rem;
  color: var(--text-light);
}

.dropdown-menu a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

/* Language Switcher */
.language-switcher {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  position: relative;
  height: 40px;
  width: 90px;
  transition: var(--transition);
  overflow: hidden;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.language-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 6px);
  height: calc(100% - 6px);
  background: var(--primary);
  border-radius: 50px;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.language-toggle-container {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.language-btn {
  border: none;
  background: transparent;
  border-radius: 50px;
  cursor: pointer;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
  position: relative;
}

.language-btn.active {
  background: rgba(255, 255, 255, 0.1);
}

.language-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* ==================== */
/* HERO SECTION         */
/* ==================== */
.hero {
  padding: 12rem 1rem 8rem;
  text-align: center;
  background: linear-gradient(135deg, var(--tech-darker) 0%, var(--background) 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeInDown 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 3rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

.pricing-hero, .services-hero, .enterprise-hero {
  padding: 15rem 1rem 8rem;
  min-height: 60vh;
}

.contact-hero {
  padding: 8rem 1rem 4rem !important;
  min-height: 40vh !important;
}

/* ==================== */
/* BUTTONS              */
/* ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.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: var(--transition-slow);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--tech-white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--glow);
}

.btn-outline {
  background: transparent;
  color: var(--tech-white);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow);
}

.btn-outline:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--glow);
}

/* ==================== */
/* TRUST INDICATORS     */
/* ==================== */
.trust-indicators {
  background: var(--background-alt);
  padding: 5rem 1rem;
  position: relative;
}

.trust-indicators::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.indicators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.indicator-item {
  padding: 2rem;
  position: relative;
}

.indicator-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.indicator-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.indicator-label {
  color: var(--text-light);
  font-weight: 500;
  font-size: 1.1rem;
}

/* ==================== */
/* SERVICES SECTION     */
/* ==================== */
.core-services {
  background: var(--background);
  position: relative;
  padding: 6rem 1rem;
}

.core-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 90% 10%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(0, 229, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.section-title p {
  max-width: 700px;
  margin: 2.5rem auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  align-items: stretch;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  background: var(--card-bg-hover);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tech-white);
  font-size: 2rem;
  position: relative;
  box-shadow: var(--shadow);
}

.service-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  opacity: 0.3;
  filter: blur(15px);
  z-index: -1;
}

.service-card h3 {
  margin-bottom: 1.5rem;
  color: var(--text);
}

.service-card p {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-card .btn {
  align-self: center;
  min-width: 180px;
  justify-content: center;
}

/* ==================== */
/* ABOUT SECTION        */
/* ==================== */
.about-section {
  background: var(--background-alt);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(0, 229, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.about-text p {
  margin-bottom: 2rem;
}

.about-buttons {
  margin-top: 2.5rem;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
  z-index: 1;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* ==================== */
/* TESTIMONIALS SECTION */
/* ==================== */
.testimonials-section {
  background: var(--background);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0, 229, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-text {
  margin-bottom: 2rem;
  flex-grow: 1;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text p {
  font-style: italic;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.author-info h4 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.author-info span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ==================== */
/* CTA SECTION          */
/* ==================== */
.cta-section, .cta {
  background: linear-gradient(135deg, var(--tech-darker) 0%, var(--background) 100%);
  color: var(--tech-white);
  text-align: center;
  padding: 6rem 1rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before, .cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.cta-content h2 {
  color: var(--tech-white);
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
}

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

/* ==================== */
/* PRICING SECTION      */
/* ==================== */
.pricing-hero {
  text-align: center;
}

.pricing-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  position: relative;
  height: 60px;
  width: 280px;
  margin: 3rem auto;
  transition: all 0.3s ease;
  overflow: hidden;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-toggle-slider {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(50% - 12px);
  height: calc(100% - 12px);
  background: var(--primary);
  border-radius: 50px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: var(--shadow);
  z-index: 1;
}

.pricing-toggle-container {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.pricing-toggle-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
  color: var(--text-muted);
  padding: 0;
  height: 100%;
  font-size: 1rem;
}

.pricing-toggle-btn.active {
  color: var(--tech-white);
}

.pricing-toggle-btn:hover {
  color: var(--tech-white);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin: 4rem auto;
  align-items: stretch;
}

.pricing-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 102, 255, 0.3);
}

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

.pricing-card.popular {
  border-color: var(--primary);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg), var(--glow);
}

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

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--tech-white);
  padding: 0.5rem 2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow);
}

.pricing-card h3 {
  margin-bottom: 1rem;
  color: var(--text);
}

.device-limit {
  color: var(--text-muted);
  margin-bottom: 2rem;
  min-height: 24px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.price-container {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 1.5rem;
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--tech-white);
  margin-bottom: 0.5rem;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.5s ease-out;
}

.billing-cycle {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.annual-savings {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 2rem;
  display: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.5s ease;
  position: relative;
  padding: 0.5rem 0;
  text-align: center;
}

.annual-savings.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInDown 0.6s ease-out;
}

.annual-savings::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25%;
  right: 25%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.pricing-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
}

.pricing-card .btn {
  margin-top: auto;
  align-self: center;
  min-width: 200px;
  justify-content: center;
}

/* Enterprise Card Styles */
.enterprise-card {
  position: relative;
}

.enterprise-card .popular-badge {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
}

.enterprise-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--tech-white);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.enterprise-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
  flex-grow: 1;
}

.enterprise-features li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.enterprise-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
}

/* ==================== */
/* TECHNOLOGIES SECTION */
/* ==================== */
.technologies-section {
  background: var(--background-alt);
  position: relative;
}

.logo-section {
  text-align: center;
  margin: 5rem 0;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
  align-items: center;
  justify-items: center;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 150px;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 102, 255, 0.3);
}

.logo-item img {
  max-height: 50px;
  max-width: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

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

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.partner-logo:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 102, 255, 0.3);
}

.partner-logo img {
  max-height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* ==================== */
/* FAQ SECTION          */
/* ==================== */
.faq-section {
  background: var(--background);
  padding: 6rem 1rem;
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 90% 10%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(0, 229, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-item {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.faq-item h3 {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.faq-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* ==================== */
/* SERVICES TABS        */
/* ==================== */
.services-tabs-section {
  background: var(--background);
  padding: 6rem 1rem;
  position: relative;
}

.services-tabs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.services-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.tab-btn {
  background: none;
  border: none;
  padding: 1.5rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: var(--transition);
}

.tab-btn.active {
  color: var(--text);
}

.tab-btn.active::after {
  width: 100%;
}

.tab-btn:hover {
  color: var(--text);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.service-features {
  list-style: none;
  margin: 2rem 0;
}

.service-features li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
}

.service-features li i {
  color: var(--accent);
  font-size: 1.2rem;
}

/* ==================== */
/* CONTACT SECTION      */
/* ==================== */
.contact-section {
  background: var(--background-alt);
  padding: 6rem 1rem;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(0, 229, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.contact-info h3 {
  margin-bottom: 2.5rem;
  color: var(--text);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-info-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--tech-white);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-info-item h4 {
  margin-bottom: 0.75rem;
  color: var(--text);
}

.contact-form {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--text);
}

.form-control {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

textarea.form-control {
  min-height: 200px;
  resize: vertical;
}

/* ==================== */
/* PROCESS SECTION      */
/* ==================== */
.process-section {
  padding: 6rem 1rem;
  background: var(--background);
  text-align: center;
  position: relative;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0, 229, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.process-section .section-title {
  margin-bottom: 5rem;
}

.process-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.process-step.animate {
  opacity: 1;
  transform: translateY(0);
}

.step-content {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.step-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.step-content:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.step-content:hover::before {
  opacity: 1;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tech-white);
  font-size: 2rem;
  position: relative;
  box-shadow: var(--shadow);
}

.step-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  opacity: 0.3;
  filter: blur(15px);
  z-index: -1;
}

.step-number {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--tech-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
}

.process-step h3 {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.process-step p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ==================== */
/* GUARANTEES SECTION   */
/* ==================== */
.guarantees {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, var(--tech-darker) 0%, var(--background) 100%);
  color: var(--tech-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.guarantees::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.guarantees h2 {
  color: var(--tech-white);
  margin-bottom: 1.5rem;
}

.guarantee-subtitle {
  color: var(--text-light);
  margin-bottom: 4rem;
  font-size: 1.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.guarantee-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.guarantee-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.guarantee-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.guarantee-item:hover::before {
  opacity: 1;
}

.guarantee-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.guarantee-item h3 {
  color: var(--tech-white);
  margin-bottom: 1.5rem;
}

.guarantee-item p {
  color: var(--text-light);
}

/* ==================== */
/* VALUE PROPOSITION    */
/* ==================== */
.value-proposition {
  text-align: center;
  margin: 5rem 0;
}

.value-proposition h2 {
  margin-bottom: 4rem;
  color: var(--text);
}

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

.value-item {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.value-item:hover::before {
  opacity: 1;
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tech-white);
  font-size: 2rem;
  position: relative;
  box-shadow: var(--shadow);
}

.value-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  opacity: 0.3;
  filter: blur(15px);
  z-index: -1;
}

.value-item h3 {
  margin-bottom: 1.5rem;
  color: var(--text);
}

.value-item p {
  color: var(--text-light);
}

/* Section spacing */
.value-proposition-section {
  padding: 6rem 1rem;
  background: var(--background-alt);
}

.technologies-section {
  padding: 6rem 1rem;
  background: var(--background);
}

/* ==================== */
/* FOOTER               */
/* ==================== */
footer {
  background: var(--tech-darker);
  color: var(--tech-white);
  padding: 6rem 0 3rem;
  margin-top: auto;
  width: 100%;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-column h3 {
  color: var(--tech-white);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.footer-column p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.footer-column li {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.footer-column a {
  color: var(--text-light);
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: var(--max-width);
  margin: 5rem auto 0;
  padding: 3rem 2rem 0;
}

/* ==================== */
/* UTILITY CLASSES      */
/* ==================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }
.visible { display: block; }

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1s ease forwards;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

/* ==================== */
/* ACCESSIBILITY        */
/* ==================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* Skip link for keyboard navigation */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 8px;
  z-index: 10000;
  transition: top 0.3s;
}

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

/* ==================== */
/* RESPONSIVE DESIGN    */
/* ==================== */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .hero {
    padding: 10rem 1rem 6rem;
  }
  
  .contact-hero, .pricing-hero, .services-hero, .enterprise-hero {
    padding: 12rem 1rem 6rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hamburger {
    display: flex;
  }

  nav {
    display: none;
  }

  nav.active {
    display: block;
  }

  .hero {
    padding: 8rem 1rem 4rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }

  .contact-hero, .pricing-hero, .services-hero, .enterprise-hero {
    padding: 10rem 1rem 5rem;
  }

  .services-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    justify-content: center;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .tab-btn.active {
    border-bottom: none;
    border-left-color: var(--primary);
  }

  .pricing-toggle {
    width: 250px;
    height: 55px;
  }
  
  .pricing-toggle-btn {
    padding: 0.5rem;
    font-size: 0.9rem;
  }
  
  .language-switcher {
    width: 80px;
    height: 35px;
  }
  
  .language-btn {
    width: 35px;
    height: 30px;
  }
  
  .language-btn img {
    width: 18px;
    height: 18px;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  
  .process-step {
    width: 100%;
    max-width: 350px;
    margin-bottom: 3rem;
  }
  
  .process-step:last-child {
    margin-bottom: 0;
  }
  
  .step-number {
    top: -15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
}

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

  .hamburger {
    display: none;
  }

  nav {
    position: static;
    height: auto;
    width: auto;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .nav-list {
    opacity: 1;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }

  .nav-list a {
    padding: 0;
    color: var(--text);
    font-size: 1rem;
  }

  .nav-list a:hover {
    transform: none;
  }

  .nav-list a[aria-current="page"]::before {
    top: auto;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    border-radius: 2px;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 1rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-menu li {
    margin: 0;
  }

  .dropdown-menu a {
    font-size: 1rem;
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
  }

  .dropdown-menu a:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
  }

  .about-content {
    grid-template-columns: 1fr 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr 1fr;
  }

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

@media (min-width: 1025px) {
  .hero h1 {
    font-size: 4.5rem;
  }

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

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--tech-darker);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

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

/* Selection color */
::selection {
  background: var(--primary);
  color: var(--tech-white);
}

::-moz-selection {
  background: var(--primary);
  color: var(--tech-white);
}

/* ==================== */
/* FLAG FIXES           */
/* ==================== */
.language-btn img {
  width: 24px !important;
  height: 18px !important;
  object-fit: cover;
  border-radius: 2px;
  filter: none !important;
}

/* ==================== */
/* SERVICES TABS ANIMATION */
/* ==================== */
.services-tabs-container {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.tab-content {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.tab-content.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

.tab-content.slide-out-left {
  transform: translateX(-50px);
  opacity: 0;
}

.tab-content.slide-out-right {
  transform: translateX(50px);
  opacity: 0;
}

.service-card {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* ==================== */
/* PRODUCTS DROPDOWN FIX */
/* ==================== */
.products-dropdown {
  position: relative;
  display: inline-block;
}

.products-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 14, 23, 0.98);
  backdrop-filter: blur(15px);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.products-dropdown:hover .products-dropdown-content,
.products-dropdown:focus-within .products-dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.products-dropdown-content a {
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.products-dropdown-content a:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  padding-left: 2rem;
}

/* Mobile dropdown */
@media (max-width: 768px) {
  .products-dropdown-content {
    position: static;
    transform: none;
    display: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    margin: 0.5rem 0;
    border-radius: 8px;
  }
  
  .products-dropdown.active .products-dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

/* ==================== */
/* ENTERPRISE PRICING STYLES */
/* ==================== */
.enterprise-pricing-section {
  padding: 6rem 1rem;
  background: var(--background);
  position: relative;
}

.enterprise-pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.enterprise-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.enterprise-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.enterprise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.enterprise-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 102, 255, 0.3);
}

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

.enterprise-card.popular {
  border-color: var(--primary);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg), var(--glow);
}

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

.enterprise-card h3 {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1.8rem;
}

.enterprise-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--tech-white);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.enterprise-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
  flex-grow: 1;
}

.enterprise-features li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.enterprise-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
}

.enterprise-card .btn {
  margin-top: auto;
  align-self: center;
  min-width: 200px;
  justify-content: center;
}

/* Enterprise Solutions Section */
.enterprise-solutions {
  padding: 6rem 1rem;
  background: var(--background-alt);
  position: relative;
}

.enterprise-content {
  max-width: 1200px;
  margin: 0 auto;
}

.enterprise-content h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.enterprise-content p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

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

.enterprise-feature {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.enterprise-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.enterprise-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tech-white);
  font-size: 1.8rem;
  position: relative;
  box-shadow: var(--shadow);
}

.feature-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  opacity: 0.3;
  filter: blur(15px);
  z-index: -1;
}

.enterprise-feature h3 {
  margin-bottom: 1.5rem;
  color: var(--text);
  font-size: 1.4rem;
}

.enterprise-feature p {
  color: var(--text-light);
  margin-bottom: 0;
  text-align: center;
}

/* Case Studies Section */
.case-studies {
  padding: 6rem 1rem;
  background: var(--background);
  position: relative;
}

.case-studies h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.case-study {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.case-study::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.case-study:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.case-study:hover::before {
  opacity: 1;
}

.case-logo {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.case-logo img {
  max-height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

.case-study h3 {
  margin-bottom: 1.5rem;
  color: var(--text);
}

.case-study p {
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.case-results {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

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

.result-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enterprise CTA Section */
.enterprise-cta {
  background: linear-gradient(135deg, var(--tech-darker) 0%, var(--background) 100%);
  position: relative;
  overflow: hidden;
}

.enterprise-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Animation classes */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.enterprise-card.animate,
.enterprise-feature.animate,
.case-study.animate {
  opacity: 1;
  transform: translateY(0);
}

.enterprise-content h2.animate,
.enterprise-content p.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .enterprise-cards,
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
  
  .case-results {
    flex-direction: column;
    gap: 2rem;
  }
  
  .enterprise-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== */
/* ROADMAP SECTION      */
/* ==================== */
.roadmap-section {
  padding: 6rem 1rem;
  background: var(--background-alt);
  position: relative;
  overflow: hidden;
}

.roadmap-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(0, 229, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.roadmap {
  position: relative;
  max-width: 1000px;
  margin: 5rem auto 0;
}

.roadmap-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  transform: translateX(-50%);
  z-index: 1;
}

.roadmap-step {
  position: relative;
  margin-bottom: 5rem;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.roadmap-step:last-child {
  margin-bottom: 0;
}

.roadmap-step.animate {
  opacity: 1;
  transform: translateY(0);
}

.roadmap-step:nth-child(odd) {
  justify-content: flex-start;
}

.roadmap-step:nth-child(even) {
  justify-content: flex-end;
}

.roadmap-content {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  width: calc(50% - 60px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 2;
}

/* Connector line from content to center */
.roadmap-content::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--primary);
  transform: translateY(-50%);
}

.roadmap-step:nth-child(odd) .roadmap-content::before {
  right: -30px;
}

.roadmap-step:nth-child(even) .roadmap-content::before {
  left: -30px;
}

/* Central bubble that connects to the line */
.roadmap-content::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 8px rgba(0, 102, 255, 0.2);
  transform: translateY(-50%);
}

.roadmap-step:nth-child(odd) .roadmap-content::after {
  right: -40px;
}

.roadmap-step:nth-child(even) .roadmap-content::after {
  left: -40px;
}

.roadmap-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.roadmap-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tech-white);
  font-size: 1.8rem;
  position: relative;
  box-shadow: var(--shadow);
}

.roadmap-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  opacity: 0.3;
  filter: blur(15px);
  z-index: -1;
}

.roadmap-number {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--tech-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
}

.roadmap-step:nth-child(even) .roadmap-number {
  right: auto;
  left: -15px;
}

.roadmap-step h3 {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.roadmap-step p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 968px) {
  .roadmap-line {
    left: 30px;
  }
  
  .roadmap-step {
    justify-content: flex-start !important;
    margin-bottom: 4rem;
  }
  
  .roadmap-content {
    width: calc(100% - 80px);
    margin-left: 60px;
  }
  
  .roadmap-content::before {
    left: -30px !important;
    right: auto !important;
  }
  
  .roadmap-content::after {
    left: -40px !important;
    right: auto !important;
  }
  
  .roadmap-number {
    left: -15px !important;
    right: auto !important;
  }
}

@media (max-width: 576px) {
  .roadmap-content {
    width: calc(100% - 60px);
    padding: 2rem 1.5rem;
  }
  
  .roadmap-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* Update Core Services background */
.core-services {
  background: var(--background-alt);
}

.core-services::before {
  content: none;
}

/* Update About Section background */
.about-section {
  background: var(--background-alt);
}

.about-section::before {
  content: none;
}

/* Update Testimonials background */
.testimonials-section {
  background: var(--background-alt);
}

.testimonials-section::before {
  content: none;
}

/* Update background for Process Roadmap, Zero-Risk Guarantee, and Services Tabs sections */
.roadmap-section,
.guarantees,
.services-tabs-section {
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.roadmap-section::before,
.guarantees::before,
.services-tabs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 90% 10%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(0, 229, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Update Services Tabs Section */
.services-tabs-section {
  background: var(--tech-darker);
}
.services-tabs-section::before {
  content: none;
}

/* Update Zero-Risk Guarantee Section */
.guarantees {
  background: var(--tech-darker);
}
.guarantees::before {
  content: none;
}

/* Update Process Roadmap Section */
.roadmap-section {
  background: var(--tech-darker);
}
.roadmap-section::before {
  content: none;
}

/* Update Technology Partners Section */
.tech-partners-section {
  background: var(--tech-darker);
}

/* Update Footer to match */
footer {
  background: var(--tech-darker);
}

/* Update Pricing Section */
.pricing-section {
  background: var(--tech-darker);
}

/* Update Value Proposition Section */
.value-proposition-section {
  background: var(--tech-darker);
}

/* Update FAQ Section */
.faq-section {
  background: var(--tech-darker);
}
.faq-section::before {
  content: none;
}

/* Keep the CTA section with its gradient background */
.cta-section {
  background: linear-gradient(135deg, var(--tech-darker) 0%, var(--background) 100%);
}

/* Keep the hero section with its gradient background */
.hero.pricing-hero {
  background: 
    linear-gradient(135deg, rgba(10, 14, 23, 0.8) 0%, rgba(5, 8, 15, 0.8) 100%),
    url('assets/home.jpg') center/cover no-repeat;
}

/* Update Pricing Section */
.pricing-section {
  background: var(--tech-darker);
}

/* Update Value Proposition Section */
.value-proposition-section {
  background: var(--tech-darker);
}

/* Update Technologies Section */
.technologies-section {
  background: var(--tech-darker);
}

/* Update FAQ Section */
.faq-section {
  background: var(--tech-darker);
}
.faq-section::before {
  content: none;
}

/* Keep the CTA section with its gradient background */
.cta-section {
  background: linear-gradient(135deg, var(--tech-darker) 0%, var(--background) 100%);
}

/* Keep the hero section with its gradient background */
.hero.pricing-hero {
  background: 
    linear-gradient(135deg, rgba(10, 14, 23, 0.8) 0%, rgba(5, 8, 15, 0.8) 100%),
    url('assets/office.jpg') center/cover no-repeat;
}

/* Update Enterprise Pricing Section */
.enterprise-pricing-section {
  background: var(--tech-darker);
}

/* Update Enterprise Solutions Section */
.enterprise-solutions {
  background: var(--tech-darker);
}

/* Update Case Studies Section */
.case-studies {
  background: var(--tech-darker);
}

/* Keep the CTA section with its gradient background */
.enterprise-cta {
  background: linear-gradient(135deg, var(--tech-darker) 0%, var(--background) 100%);
}

/* Keep the hero section with its gradient background */
.hero.pricing-hero.enterprise-hero {
  background: 
    linear-gradient(135deg, rgba(10, 14, 23, 0.8) 0%, rgba(5, 8, 15, 0.8) 100%),
    url('assets/enterprise.jpg') center/cover no-repeat;
}

/* Blue gradient separator for all sections */
section {
  position: relative;
}

section:not(footer):not(:last-of-type)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  z-index: 2;
}

/* Adjust for sections with different backgrounds */
.hero::after,
.cta-section::after,
.cta::after,
footer::before {
  display: none;
}

/* Add top border to sections that follow heros/CTAs */
.trust-indicators::before,
.core-services::before,
.about-section::before,
.testimonials-section::before,
.services-tabs-section::before,
.guarantees::before,
.roadmap-section::before,
.tech-partners-section::before,
.pricing-section::before,
.value-proposition-section::before,
.technologies-section::before,
.faq-section::before,
.contact-section::before,
.enterprise-pricing-section::before,
.enterprise-solutions::before,
.case-studies::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  z-index: 2;
}

/* ==================== */
/* POPULAR CARD STYLES  */
/* ==================== */
.pricing-card.popular {
  position: relative;
  border: 2px solid transparent;
  background-clip: padding-box;
  z-index: 2;
  transform: scale(1.03);
}

.pricing-card.popular::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.7;
}

.pricing-card.popular::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-10px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 102, 255, 0.4);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--tech-white);
  padding: 0.5rem 2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow);
  z-index: 3;
  animation: pulse 2s infinite;
}

/* Enhanced price toggle styles */
.price-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  position: relative;
  height: 60px;
  width: 280px;
  margin: 3rem auto;
  transition: all 0.3s ease;
  overflow: hidden;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-toggle-slider {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(50% - 12px);
  height: calc(100% - 12px);
  background: var(--primary);
  border-radius: 50px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: var(--shadow);
  z-index: 1;
}

.price-toggle-container {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.price-toggle-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
  color: var(--text-muted);
  padding: 0;
  height: 100%;
  font-size: 1rem;
}

.price-toggle-btn.active {
  color: var(--tech-white);
}

.price-toggle-btn:hover {
  color: var(--tech-white);
}

/* Hero background styles for different pricing pages */
.hero.pricing-hero {
  padding: 12rem 1rem 8rem;
  text-align: center;
  background: 
    linear-gradient(135deg, rgba(10, 14, 23, 0.8) 0%, rgba(5, 8, 15, 0.8) 100%),
    var(--hero-bg-image) center/cover no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero.pricing-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Home pricing page specific */
.pricing-home-hero {
  --hero-bg-image: url('assets/home.jpg');
}

/* Pro pricing page specific */
.pricing-pro-hero {
  --hero-bg-image: url('assets/office.jpg');
}

/* Animation for popular badge */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 102, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 102, 255, 0);
  }
}

/* Ensure products dropdown works on desktop */
@media (min-width: 769px) {
    .products-dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(10, 14, 23, 0.98);
        backdrop-filter: blur(15px);
        min-width: 220px;
        box-shadow: var(--shadow-lg);
        border-radius: var(--radius);
        padding: 0.5rem 0;
        z-index: 1000;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 10px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .products-dropdown:hover .products-dropdown-content,
    .products-dropdown:focus-within .products-dropdown-content {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(5px);
    }

    .products-dropdown-content a {
        color: var(--text-light);
        padding: 0.75rem 1.5rem;
        text-decoration: none;
        display: block;
        transition: all 0.3s ease;
        text-align: center;
        position: relative;
    }

    .products-dropdown-content a:hover {
        color: var(--accent);
        background: rgba(255, 255, 255, 0.05);
        padding-left: 2rem;
    }
}

/* Fix for Products Dropdown Menu */
.products-dropdown {
  position: relative;
  display: inline-block;
}

.products-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 14, 23, 0.98);
  backdrop-filter: blur(15px);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* Create an invisible gap filler between menu and dropdown */
.products-dropdown::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
  z-index: 999;
}

.products-dropdown:hover .products-dropdown-content,
.products-dropdown:focus-within .products-dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.products-dropdown-content a {
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.products-dropdown-content a:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  padding-left: 2rem;
}

/* Mobile dropdown */
@media (max-width: 768px) {
  .products-dropdown::after {
    display: none;
  }
  
  .products-dropdown-content {
    position: static;
    transform: none;
    display: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    margin: 0.5rem 0;
    border-radius: 8px;
  }
  
  .products-dropdown.active .products-dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}