/* =============================================================
   MODERN RESET & BASE
   ============================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Modern Color Palette */
  --primary: #6366f1;
  --primary-light: #818cf8;
  --primary-dark: #4f46e5;

  --secondary: #ec4899;
  --secondary-light: #f472b6;

  --accent: #14b8a6;
  --accent-light: #2dd4bf;

  /* Gradients */
  --gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  --gradient-2: linear-gradient(135deg, #14b8a6 0%, #6366f1 100%);
  --gradient-3: linear-gradient(135deg, #ec4899 0%, #f97316 100%);

  /* Backgrounds */
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.08);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);

  /* Borders */
  --border: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.2);

  /* Effects */
  --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
  --glass: rgba(255, 255, 255, 0.03);

  /* Spacing */
  --container: 1200px;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* =============================================================
   ANIMATED BACKGROUND
   ============================================================= */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s infinite ease-in-out;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: var(--gradient-1);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: var(--gradient-2);
  bottom: -150px;
  left: -150px;
  animation-delay: -5s;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: var(--gradient-3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(50px, -50px) scale(1.1);
  }
  50% {
    transform: translate(-30px, 30px) scale(0.9);
  }
  75% {
    transform: translate(40px, 40px) scale(1.05);
  }
}

/* =============================================================
   HEADER & NAVIGATION
   ============================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: var(--spacing-sm) 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
}

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-dot {
  width: 12px;
  height: 12px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  list-style: none;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

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

.nav-link:hover {
  color: var(--text-primary);
}

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

/* Nav Icons */
.nav-icon {
  font-size: 1rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.nav-link:hover .nav-icon {
  color: var(--primary-light);
  transform: scale(1.15);
}

.nav-link.active .nav-icon {
  color: var(--primary-light);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  pointer-events: auto;
  z-index: 1001;
}

.nav__toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.btn-cta {
  padding: 0.75rem 1.5rem;
  background: var(--gradient-1);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

/* =============================================================
   SLOGAN BADGE FLOTANTE
   ============================================================= */
.slogan-badge {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
  z-index: 1000;
  animation: pulse-badge 2s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slogan-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.5);
}

.slogan-badge i {
  font-size: 1.3rem;
  animation: spark 1.5s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
  }
  50% {
    box-shadow: 0 8px 40px rgba(168, 85, 247, 0.6);
  }
}

@keyframes spark {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.2) rotate(10deg);
  }
}

@media (max-width: 768px) {
  .slogan-badge {
    bottom: 20px;
    right: 20px;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
  }

  .slogan-badge i {
    font-size: 1.1rem;
  }
}

/* Language Selector */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: var(--radius-sm);
}

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

.lang-btn.active {
  color: var(--primary-light);
  background: rgba(99, 102, 241, 0.1);
}

.lang-divider {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Hide mobile lang selector on desktop */
.lang-item-mobile {
  display: none;
}

/* =============================================================
   HERO SECTION
   ============================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  text-align: center;
}

.hero-content {
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: var(--spacing-md);
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--spacing-lg);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-1);
  color: white;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-card);
  border-color: var(--border-hover);
}

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

/* =============================================================
   SECTIONS
   ============================================================= */
section {
  padding: var(--spacing-xl) 0;
}

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

.tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* =============================================================
   SERVICES SECTION
   ============================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.service-card {
  padding: var(--spacing-md);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-sm);
  font-size: 1.5rem;
  color: white;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================================================
   ABOUT SECTION
   ============================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.about-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.feature-item {
  display: flex;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: var(--bg-card);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: var(--bg-card-hover);
  transform: translateX(5px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-2);
  border-radius: var(--radius-sm);
  color: white;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

/* =============================================================
   TECH SHOWCASE
   ============================================================= */
.tech-showcase {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8B4513 0%, #1a237e 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Circuit pattern overlay */
.tech-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(100, 181, 246, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 181, 246, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
}

.tech-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at center, #ff6f00 0%, transparent 60%);
  opacity: 0.2;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.25; transform: scale(1.05); }
}

.tech-showcase .tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 85%;
  position: relative;
  z-index: 1;
}

.technologies .tech-grid {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.tech-item {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
}

.tech-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

/* Code Window */
.code-window {
  width: 100%;
  height: 100%;
  background: #1a1a2e;
  border-radius: 8px;
  overflow: hidden;
}

.code-dots {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: #16162a;
}

.code-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}

.code-dots span:nth-child(1) { background: #ff5f57; }
.code-dots span:nth-child(2) { background: #ffbd2e; }
.code-dots span:nth-child(3) { background: #28ca42; }

.code-lines {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.code-line {
  height: 8px;
  background: linear-gradient(90deg, #6366f1, #a855f7);
  border-radius: 4px;
  animation: typing 2s ease-in-out infinite;
}

.code-line:nth-child(2) {
  width: 75%;
  animation-delay: 0.3s;
}

.code-line.short {
  width: 50%;
  animation-delay: 0.6s;
}

@keyframes typing {
  0% { width: 0; opacity: 0; }
  50% { width: 100%; opacity: 1; }
  100% { width: 100%; opacity: 1; }
}

/* Cloud */
.cloud-base {
  width: 60px;
  height: 40px;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  border-radius: 20px;
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.cloud-base::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  border-radius: 50%;
  top: -12px;
  left: 8px;
}

.cloud-base::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  border-radius: 50%;
  top: -5px;
  right: 10px;
}

.cloud-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  animation: orbit 3s linear infinite;
}

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

.particle:nth-child(2) {
  animation-delay: 1s;
  top: 50%;
  right: 15%;
}

.particle:nth-child(3) {
  animation-delay: 2s;
  bottom: 25%;
  left: 30%;
}

@keyframes orbit {
  0% { transform: scale(0) rotate(0deg); opacity: 0; }
  50% { transform: scale(1) rotate(180deg); opacity: 1; }
  100% { transform: scale(0) rotate(360deg); opacity: 0; }
}

/* Neural Network */
.neural-net {
  position: relative;
  width: 100%;
  height: 100%;
}

.neuron {
  position: absolute;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
  animation: neuron-pulse 2s ease-in-out infinite;
}

.neuron.n1 { top: 20%; left: 25%; animation-delay: 0s; }
.neuron.n2 { top: 50%; left: 50%; animation-delay: 0.3s; }
.neuron.n3 { top: 80%; left: 25%; animation-delay: 0.6s; }
.neuron.n4 { top: 20%; left: 65%; animation-delay: 0.9s; }
.neuron.n5 { top: 50%; left: 75%; animation-delay: 1.2s; }
.neuron.n6 { top: 80%; left: 65%; animation-delay: 1.5s; }

@keyframes neuron-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 15px rgba(99, 102, 241, 0.5); }
  50% { transform: scale(1.2); box-shadow: 0 0 25px rgba(168, 85, 247, 0.8); }
}

.connection {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.3), rgba(168, 85, 247, 0.3));
  transform-origin: left center;
  animation: connection-flow 2s ease-in-out infinite;
}

.connection.c1 { top: 24%; left: 31%; width: 38%; transform: rotate(5deg); animation-delay: 0s; }
.connection.c2 { top: 54%; left: 31%; width: 18%; transform: rotate(-15deg); animation-delay: 0.3s; }
.connection.c3 { top: 54%; left: 56%; width: 22%; transform: rotate(10deg); animation-delay: 0.6s; }
.connection.c4 { top: 76%; left: 31%; width: 38%; transform: rotate(-5deg); animation-delay: 0.9s; }
.connection.c5 { top: 28%; left: 31%; width: 25%; transform: rotate(70deg); animation-delay: 1.2s; }
.connection.c6 { top: 54%; left: 56%; width: 25%; transform: rotate(70deg); animation-delay: 1.5s; }

@keyframes connection-flow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* Mobile */
.phone-frame {
  width: 50px;
  height: 80px;
  background: linear-gradient(135deg, #2d2d3a, #1a1a2e);
  border-radius: 10px;
  padding: 6px;
  position: relative;
  animation: phone-bounce 2s ease-in-out infinite;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 3px;
  background: #3d3d4a;
  border-radius: 2px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #6366f1, #a855f7);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 8px;
}

.app-icon {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  animation: app-pop 2s ease-in-out infinite;
}

.app-icon:nth-child(2) { animation-delay: 0.2s; }
.app-icon:nth-child(3) { animation-delay: 0.4s; }

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

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

/* =============================================================
   STORY & MISSION SECTIONS
   ============================================================= */
.story-section,
.mission-section {
  margin-bottom: var(--spacing-md);
}

.story-section h3,
.mission-section h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.story-section h3 i,
.mission-section h3 i {
  color: var(--primary-light);
}

.story-text,
.mission-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}

/* =============================================================
   VALUES SECTION
   ============================================================= */
.values-section {
  margin-top: var(--spacing-md);
}

.values-section h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.values-section h3 i {
  color: var(--secondary-light);
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.value-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.value-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateX(5px);
}

.value-icon-small {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.value-text-inline h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.value-text-inline p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =============================================================
   VALUES SHOWCASE (deprecated)
   ============================================================= */
.values-showcase {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.value-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  transition: all 0.3s ease;
}

.value-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateX(5px);
}

.value-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  color: white;
  flex-shrink: 0;
}

.value-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =============================================================
   TEAM SECTION
   ============================================================= */
/* =============================================================
   SERVICES SECTION
   ============================================================= */
.services {
  background: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  position: relative;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

.service-card.specialty {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
  border-color: var(--primary);
}

.service-card.specialty:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 50px rgba(168, 85, 247, 0.3);
}

.specialty-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  border-radius: var(--radius-md);
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
}

.service-card.specialty .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

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

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.service-card.specialty .service-features li::before {
  color: var(--accent);
}

/* =============================================================
   TECHNOLOGIES SECTION
   ============================================================= */
.technologies {
  background: transparent;
}
.team {
  background: transparent;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
}

.team-member {
  width: calc(33.333% - var(--spacing-md) * 2 / 3);
  max-width: 320px;
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.team-member:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateX(5px);
}

.member-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  border-radius: var(--radius-md);
  font-size: 1.75rem;
  color: white;
  flex-shrink: 0;
}

.member-text-inline h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.member-text-inline p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* =============================================================
   TECHNOLOGIES SECTION
   ============================================================= */
.technologies {
  background: transparent;
}

.tech-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  text-align: center;
  transition: all 0.3s ease;
  min-width: 180px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tech-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.tech-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
  border-radius: var(--radius-md);
  font-size: 1.75rem;
  color: white;
}

.tech-logo.sql-server {
  background: linear-gradient(135deg, #CC2927, #9B1C1B);
}

.tech-logo.nodejs {
  background: linear-gradient(135deg, #68A063, #539152);
}

.tech-logo.dotnet {
  background: linear-gradient(135deg, #512BD4, #3D1F94);
}

.tech-logo.flutter {
  background: linear-gradient(135deg, #02569B, #013D73);
}

.tech-logo.azure {
  background: linear-gradient(135deg, #0078D4, #005A9E);
}

.tech-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tech-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Gradient Card (deprecated, kept for reference) */
.gradient-card {
  width: 100%;
  aspect-ratio: 1;
  background: var(--gradient-1);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.gradient-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

/* =============================================================
   CONTACT SECTION
   ============================================================= */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateX(5px);
}

.contact-link i {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gradient-1);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
}

.contact-form-box {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
}

.form-group {
  margin-bottom: var(--spacing-sm);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group select {
  cursor: pointer;
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: var(--spacing-md);
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* =============================================================
   RESPONSIVE DESIGN
   ============================================================= */
@media (max-width: 768px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
  }

  .nav__list {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-secondary);
    padding: var(--spacing-md);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border);
  }

  .nav__list.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__toggle {
    display: flex;
  }

  /* Show language selector inside mobile menu */
  .nav__list .lang-selector {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-sm);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .lang-item-mobile {
    display: block;
  }

  .btn-cta {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .about-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .technologies .tech-grid {
    justify-content: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
}

@media (min-width: 1200px) {
  .technologies .tech-grid {
    flex-wrap: nowrap;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

  .technologies .tech-grid {
    flex-direction: column;
    align-items: center;
  }

  .technologies .tech-card {
    max-width: 100%;
    min-width: auto;
    width: 100%;
  }
}

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

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

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

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

/* =============================================================
   SELECTION
   ============================================================= */
::selection {
  background: var(--primary);
  color: white;
}
