/* public/css/style.css - Main stylesheet */
:root {
  --primary-color: #6366f1;
  --secondary-color: #8b5cf6;
  --accent-color: #06b6d4;
  --neon-green: #10ffb0;
  --neon-purple: #a855f7;
  --neon-blue: #3b82f6;
  --dark-bg: #050510;
  --darker-bg: #020208;
  --card-bg: rgba(255,255,255,0.03);
  --light-text: #f1f5f9;
  --gray-text: #94a3b8;
  --success-color: #10ffb0;
  --warning-color: #f59e0b;
  --gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
  --gradient-2: linear-gradient(135deg, #06b6d4 0%, #6366f1 100%);
  --gradient-3: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
  --gradient-neon: linear-gradient(135deg, #10ffb0 0%, #06b6d4 50%, #6366f1 100%);
  --shadow-lg: 0 25px 50px -12px rgba(99, 102, 241, 0.3);
  --shadow-xl: 0 35px 60px -15px rgba(99, 102, 241, 0.4);
  --shadow-neon: 0 0 30px rgba(99, 102, 241, 0.4), 0 0 60px rgba(139, 92, 246, 0.2);
  --border-glow: rgba(99, 102, 241, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: #030309;
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(99,102,241,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(139,92,246,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 50%, rgba(6,182,212,0.06) 0%, transparent 70%);
  background-attachment: fixed;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #030309; }
::-webkit-scrollbar-thumb { background: rgba(99,102,241,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(99,102,241,0.7); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
  overflow: hidden;
  width: 100%;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(99,102,241,0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139,92,246,0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(6,182,212,0.12) 0%, transparent 60%);
}

.hero-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(99,102,241,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at center, black 0%, transparent 75%);
}

/* Noise texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.45;
  animation: float 7s ease-in-out infinite;
  will-change: transform;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  border-radius: 50%;
  border: 1px solid rgba(99,102,241,0.1);
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);
  top: 50%;
  right: 8%;
  animation-delay: 2s;
  border-radius: 50%;
  border: 1px solid rgba(139,92,246,0.1);
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
  bottom: 20%;
  left: 55%;
  animation-delay: 4s;
  border-radius: 50%;
  border: 1px solid rgba(6,182,212,0.1);
}

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

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: transparent;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-image {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: transparent;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  letter-spacing: -0.5px;
}

.footer-brand h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-brand span {
  display: none;
}

.navbar nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

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

.navbar nav a:hover {
  color: var(--light-text);
}

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

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

.cta-btn {
  background: var(--gradient-1) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-neon);
  transform: translateY(0);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.cta-btn:hover::before {
  opacity: 1;
}

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

/* =============================================
   HERO MAIN LAYOUT - FULL WIDTH
   Robot bord gauche | Contenu centre | Main bord droit
   ============================================= */
.hero-main {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: calc(100vh - 88px);
  z-index: 10;
  overflow: hidden;
}

/* --- ROBOT : bord gauche de l'écran --- */
.hero-robot {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  z-index: 5;
}

.hero-robot-img {
  width: clamp(280px, 28vw, 520px);
  max-width: none;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 40px rgba(99,102,241,0.45)) drop-shadow(0 0 80px rgba(6,182,212,0.2));
  animation: robot-float 6s ease-in-out infinite;
}

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

/* --- CONTENU : parfaitement centré --- */
.hero-content {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0px 20px 170px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-main {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .hero-robot,
  .hero-hand {
    display: none !important;
  }
  .hero-stats {
    gap: 16px !important;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
    margin-top: 24px;
  }
  .hero-stat .stat-number {
    font-size: 1.8rem !important;
  }
  .hero-stat .stat-label {
    font-size: 0.8rem !important;
  }
  .hero-content {
    padding: 40px 20px 60px !important;
  }
}

.hero-content h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #ffffff 0%, #e0d7ff 30%, #c4b5fd 55%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: 150%;
}

@media (max-width: 768px) {
  .hero-content h2 {
    width: 100% !important;
    font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
  }
}

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

.hero-content p {
  font-size: 0.98rem;
  color: #94a3b8;
  margin-bottom: 20px;
  line-height: 1.8;
  max-width: 600px;
}

/* --- MAIN : bord droit de l'écran --- */
.hero-hand {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  z-index: 5;
}

.hero-hand-img {
  width: clamp(600px, 22vw, 400px);
  max-width: none;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 30px rgba(6,182,212,0.45)) drop-shadow(0 0 60px rgba(99,102,241,0.2));
  animation: hand-float 6s ease-in-out infinite;
  animation-delay: 1s;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 50px;
  padding: 11px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #a5b4fc;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(99,102,241,0.08), inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: #10ffb0;
  border-radius: 50%;
  box-shadow: 0 0 8px #10ffb0;
  animation: pulse-dot 2s infinite;
}

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

.hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hero-stat {
  position: relative;
}

.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
}

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

.hero-stat .stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  letter-spacing: -1px;
}

.hero-stat .stat-label {
  font-size: 1rem;
  color: var(--gray-text);
  margin-top: 4px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.primary-btn, .secondary-btn {
  padding: 18px 38px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  letter-spacing: 0.2px;
}

.primary-btn {
  background: var(--gradient-1);
  color: white;
  box-shadow: var(--shadow-neon);
  position: relative;
  overflow: hidden;
}

.primary-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.5s ease;
}

.primary-btn:hover::after {
  transform: rotate(45deg) translateX(100%);
}

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

.secondary-btn {
  background: rgba(99,102,241,0.08);
  color: #c4b5fd;
  border: 1px solid rgba(99,102,241,0.3);
  backdrop-filter: blur(8px);
}

.secondary-btn:hover {
  background: rgba(99,102,241,0.2);
  border-color: rgba(99,102,241,0.6);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(99,102,241,0.2);
}

/* Section Styling */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #a5b4fc;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-header h3 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -1.2px;
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--gray-text);
  max-width: 600px;
  margin: 0 auto;
}

/* About Us Section */
.about-us {
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.about-us .container {
  max-width: 1200px;
  padding: 0 40px;
}

.about-us {
  padding-left: 0;
}

.about-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.2), transparent);
}

.about-us-inner {
  display: grid;
  grid-template-columns: 10fr 10fr;
  gap: 60px;
  align-items: center;
}

.about-us-content .section-tag {
  margin-bottom: 18px;
}

.about-us-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  color: #f1f5f9;
}

.about-gradient {
  background: linear-gradient(135deg, #a5b4fc 0%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-us-desc {
  font-size: 1.08rem;
  color: #94a3b8;
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 100%;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 40px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(99,102,241,0.05);
  border: 1px solid rgba(99,102,241,0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.pillar:hover {
  background: rgba(99,102,241,0.09);
  border-color: rgba(99,102,241,0.25);
  transform: translateX(4px);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #a5b4fc;
}

.pillar h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.pillar p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-1);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-neon);
  position: relative;
  overflow: hidden;
}

.about-cta::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(transparent, rgba(255,255,255,0.12), transparent);
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.5s ease;
}

.about-cta:hover::after {
  transform: rotate(45deg) translateX(100%);
}

.about-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* Video Frame */
.about-us-video {
  position: relative;
  width: 100%;
}

.video-frame-wrapper {
  position: relative;
  width: 100%;
}

.video-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.2) 0%, rgba(139,92,246,0.1) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

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

.video-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(99,102,241,0.2);
  box-shadow:
    0 0 0 1px rgba(99,102,241,0.1),
    0 32px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(99,102,241,0.2);
  background: rgba(99,102,241,0.08);
  aspect-ratio: 16/9;
  width: 100%;
  min-height: 0;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  display: block;
  border-radius: 24px;
}

.yt-embed-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}
.yt-embed-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
.yt-thumb-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  text-decoration: none;
  border-radius: 24px;
  overflow: hidden;
}

.yt-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.yt-thumb-link:hover .yt-thumb-img {
  transform: scale(1.04);
}

.yt-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 24px;
}

.yt-play-btn i {
  font-size: 2.2rem;
  color: #ff3333;
  filter: drop-shadow(0 0 8px rgba(255,0,0,0.5));
}

.yt-thumb-link:hover .yt-play-btn {
  opacity: 1;
}

.video-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-1);
  color: white;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-neon);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* Features Section */
.features {
  padding: 60px 0 80px;
  background: transparent;
  position: relative;
}

/* AI Manifesto Card */
.ai-manifesto-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(6,182,212,0.05) 50%, rgba(139,92,246,0.06) 100%);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 28px;
  padding: 44px 48px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}

.ai-manifesto-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #6366f1, #06b6d4, #8b5cf6, transparent);
  animation: borderFlow 4s linear infinite;
}

.ai-manifesto-card::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(99,102,241,0.12), transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.ai-manifesto-left {
  flex-shrink: 0;
}

.ai-manifesto-icon {
  width: 90px;
  height: 90px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-manifesto-icon i {
  font-size: 2.2rem;
  background: linear-gradient(135deg, #a5b4fc, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
  animation: iconSpin 6s ease-in-out infinite;
}

.icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(99,102,241,0.35);
  animation: orb-ring 4s linear infinite;
}

.icon-ring.ring-2 {
  inset: -12px;
  border-color: rgba(6,182,212,0.2);
  border-style: dashed;
  animation-duration: 7s;
  animation-direction: reverse;
}

.ai-manifesto-right {
  flex: 1;
}

.manifesto-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #a5b4fc;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.m-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10ffb0;
  box-shadow: 0 0 8px #10ffb0;
  animation: pulse-dot 2s infinite;
}

.manifesto-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.manifesto-desc {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 22px;
}

.manifesto-highlight {
  color: #a5b4fc;
  font-weight: 700;
  position: relative;
}

.manifesto-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, #6366f1, #06b6d4);
  border-radius: 1px;
}

.manifesto-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.manifesto-tags span {
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #c4b5fd;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.manifesto-tags span:hover {
  background: rgba(99,102,241,0.22);
  border-color: rgba(99,102,241,0.5);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .ai-manifesto-card {
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    text-align: center;
  }
  .manifesto-tags {
    justify-content: center;
  }
  .manifesto-title {
    font-size: 1.35rem;
  }
}

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

.feature-card {
  background: linear-gradient(135deg, rgba(99,102,241,0.06) 0%, rgba(139,92,246,0.03) 100%);
  padding: 44px 36px;
  border-radius: 28px;
  text-align: center;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(99,102,241,0.12);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.04);
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

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

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-neon);
  border-color: rgba(99,102,241,0.4);
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 1.8rem;
  color: #a5b4fc;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  background: var(--gradient-1);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-neon);
}

.feature-card h4 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.feature-card p {
  color: var(--gray-text);
  line-height: 1.8;
}

/* Projects Section */
.projects {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.projects::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(6,30,80,0.6) 0%, rgba(2,5,20,0.92) 100%);
  pointer-events: none;
}

.projects .container {
  position: relative;
  z-index: 2;
}

/* Circuit board canvas behind projects */
#circuit-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.25;
  overflow: hidden;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.project-card:nth-child(n+6) { animation-delay: calc(0.05s * var(--i, 6)); }

.project-card {
  background: linear-gradient(135deg, rgba(99,102,241,0.06) 0%, rgba(6,182,212,0.03) 100%);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  border: 1px solid rgba(6,243,252,0.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  animation: cardFadeIn 0.5s ease forwards;
  isolation: isolate;
  position: relative;
}

.project-card:nth-child(1)  { animation-delay: 0.04s; }
.project-card:nth-child(2)  { animation-delay: 0.08s; }
.project-card:nth-child(3)  { animation-delay: 0.12s; }
.project-card:nth-child(4)  { animation-delay: 0.16s; }
.project-card:nth-child(5)  { animation-delay: 0.20s; }
.project-card:nth-child(6)  { animation-delay: 0.24s; }
.project-card:nth-child(7)  { animation-delay: 0.28s; }
.project-card:nth-child(8)  { animation-delay: 0.32s; }
.project-card:nth-child(9)  { animation-delay: 0.36s; }
.project-card:nth-child(10) { animation-delay: 0.40s; }
.project-card:nth-child(11) { animation-delay: 0.44s; }
.project-card:nth-child(12) { animation-delay: 0.48s; }
.project-card:nth-child(13) { animation-delay: 0.52s; }
.project-card:nth-child(14) { animation-delay: 0.56s; }

@keyframes cardFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.project-card:hover {
  box-shadow: var(--shadow-neon);
  border-color: rgba(99,102,241,0.35);
  transform: translateY(-6px);
}

.project-card:hover .project-overlay {
  opacity: 1 !important;
}

.project-image {
  height: 180px;
  background: linear-gradient(135deg, rgba(99,102,241,0.2) 0%, rgba(139,92,246,0.15) 50%, rgba(6,182,212,0.1) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(99,102,241,0.12);
  overflow: visible;
  isolation: isolate;
}

.project-icon {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.project-card:hover .project-icon {
  transform: scale(1.12);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 5;
  border-radius: inherit;
}

@media (hover: none) {
  .project-overlay {
    opacity: 0 !important;
    pointer-events: none !important;
  }
  .project-card .project-view-btn {
    display: inline-flex !important;
  }
  .project-card {
    pointer-events: auto;
  }
}

.view-project {
  background: var(--gradient-1);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-neon);
  text-decoration: none;
  position: relative;
  z-index: 10;
  pointer-events: none;
}

.project-card:hover .view-project {
  transform: scale(1.05);
}

.project-info {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-view-btn {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  background: var(--gradient-1);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-neon);
  width: fit-content;
  transition: all 0.3s ease;
  pointer-events: auto;
  position: relative;
  z-index: 10;
}

.project-view-btn:hover {
  transform: scale(1.05);
}

.project-category {
  display: inline-block;
  background: rgba(99,102,241,0.15);
  color: #a5b4fc;
  border: 1px solid rgba(99,102,241,0.3);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.project-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #f1f5f9;
}

.project-info p {
  color: var(--gray-text);
  line-height: 1.6;
  font-size: 0.9rem;
  flex: 1;
}

.project-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: #a5b4fc;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.project-link-btn:hover {
  color: #fff;
}

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

/* Team Section */
.team {
  padding: 60px 0 80px;
  background: transparent;
  position: relative;
}

.team::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.2), transparent);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.team-card {
  background: linear-gradient(135deg, rgba(99,102,241,0.06) 0%, rgba(139,92,246,0.03) 100%);
  border: 1px solid rgba(99,102,241,0.15);
  border-radius: 28px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.04);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99,102,241,0.35);
  box-shadow: var(--shadow-neon);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #a5b4fc;
}

.team-card h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.team-role {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #a5b4fc;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.team-card p {
  color: var(--gray-text);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.team-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.team-tags span {
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #c4b5fd;
}

.team-footer {
  text-align: center;
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Tools Section */
.tools {
  padding: 60px 0 80px;
  background: transparent;
  overflow: hidden;
  position: relative;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.tool-card {
  background: linear-gradient(145deg, rgba(6,182,212,0.05) 0%, rgba(99,102,241,0.04) 100%);
  padding: 36px 28px;
  border-radius: 28px;
  text-align: center;
  border: 1px solid rgba(6,182,212,0.1);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.03);
}

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

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

.tool-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-neon);
  border-color: rgba(99,102,241,0.3);
}

.tool-icon {
  width: 60px;
  height: 60px;
  background: rgba(6,182,212,0.12);
  border: 1px solid rgba(6,182,212,0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.5rem;
  color: #67e8f9;
  transition: all 0.3s;
}

.tool-card:hover .tool-icon {
  background: var(--gradient-2);
  color: white;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(6,182,212,0.4);
}

.tool-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.tool-card p {
  color: var(--gray-text);
  margin-bottom: 20px;
  line-height: 1.6;
}

.tool-status {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.tool-status.available {
  background: rgba(16,255,176,0.12);
  color: #10ffb0;
  border: 1px solid rgba(16,255,176,0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tool-status.available::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10ffb0;
  box-shadow: 0 0 6px #10ffb0;
  animation: pulse-dot 2s infinite;
}

.tool-status.coming-soon {
  background: var(--warning-color);
  color: white;
}

/* Contact Product Cards */
.contact-products {
  width: 100%;
  margin-bottom: 1.2rem;
}
.contact-products-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
  display: block;
}
.contact-product-cards {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.contact-product-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(99,102,241,0.18);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.contact-product-card:hover {
  background: rgba(99,102,241,0.1);
  border-color: rgba(99,102,241,0.45);
  transform: translateY(-2px);
}
.cp-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6366f1, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #fff;
  margin-top: 2px;
}
.cp-body {
  flex: 1;
  min-width: 0;
}
.cp-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #67e8f9;
  margin-bottom: 0.15rem;
}
.cp-tag::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
  flex-shrink: 0;
}
.cp-body h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.25rem;
}
.cp-body p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.45;
  margin: 0;
}
.cp-arrow {
  flex-shrink: 0;
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
  margin-top: 6px;
  transition: color 0.2s, transform 0.2s;
}
.contact-product-card:hover .cp-arrow {
  color: #6366f1;
  transform: translateX(3px);
}
.contact-divider {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  color: rgba(255,255,255,0.2);
  font-size: 0.72rem;
}
.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.07);
}

/* Contact Section */
.contact {
  padding: 40px 0 20px;
}

.contact-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.contact-robot-img {
  width: clamp(140px, 16vw, 220px);
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 30px rgba(99,102,241,0.6)) drop-shadow(0 0 60px rgba(6,182,212,0.3));
  animation: robot-float 6s ease-in-out infinite;
  margin-bottom: -20px;
  z-index: 2;
  position: relative;
  background: transparent;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info h3 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
}

.contact-info p {
  font-size: 1.05rem;
  color: var(--gray-text);
  margin-bottom: 24px;
  line-height: 1.7;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 16px 10px;
  border-radius: 16px;
  background: rgba(99,102,241,0.06);
  border: 1px solid rgba(99,102,241,0.15);
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

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

.contact-method:hover {
  background: rgba(99,102,241,0.15);
  border-color: rgba(99,102,241,0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(99,102,241,0.2);
}

.contact-method i {
  color: #a5b4fc;
  font-size: 1.4rem;
  margin-bottom: 2px;
}

.contact-form {
  background: rgba(99,102,241,0.05);
  padding: 44px;
  border-radius: 24px;
  border: 1px solid rgba(99,102,241,0.15);
  backdrop-filter: blur(20px);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(99,102,241,0.06);
  border: 1px solid rgba(99,102,241,0.15);
  border-radius: 14px;
  padding: 16px 18px;
  color: var(--light-text);
  font-family: inherit;
  margin-bottom: 16px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(99,102,241,0.5);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.12), 0 0 20px rgba(99,102,241,0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-text);
}

.submit-btn {
  width: 100%;
  background: var(--gradient-1);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-neon);
  letter-spacing: 0.3px;
}

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

/* Footer */
.footer {
  background: rgba(2,2,8,0.9);
  border-top: 1px solid rgba(99,102,241,0.15);
  padding: 60px 0 30px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 1px;
  background: var(--gradient-1);
  opacity: 0.6;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-brand h4 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand span {
  color: var(--primary-color);
}

.footer-brand p {
  color: var(--gray-text);
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: var(--gray-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a5b4fc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gradient-1);
  color: white;
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: var(--shadow-neon);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-text);
}

/* Divider line between sections */
.features, .projects, .tools, .contact {
  position: relative;
}

.features::before, .tools::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.2), transparent);
}

/* Typewriter Animation */
@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: transparent; }
}

.typewriter-wrap {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid transparent;
  width: 0;
  animation: typewriter 2s steps(40, end) forwards;
}

.typewriter-wrap.typed {
  border-right: none;
  width: 100%;
}

.typewriter-wrap.done {
  border-right: none;
}

/* Responsive Design */
@media (max-width: 900px) {
  .about-us-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-us-title {
    font-size: 2.4rem;
  }
  .about-us-desc {
    max-width: 100%;
  }
  .video-frame-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-us-video {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .contact-methods {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .carousel-stage .project-card {
    flex-direction: column !important;
    height: auto !important;
    max-height: 420px;
  }
  .project-image {
    width: 100% !important;
    min-width: unset !important;
    height: 160px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(99,102,241,0.12) !important;
    border-radius: 28px 28px 0 0 !important;
  }
  .about-us {
    padding: 80px 0;
  }
  .about-us-title {
    font-size: 2.2rem;
  }
  .hero-content h2 {
    font-size: 2.4rem;
    letter-spacing: -0.8px;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-main {
    min-height: 80vh;
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
  }

  .hero-robot-img {
    width: clamp(160px, 30vw, 280px);
  }

  .hero-hand-img {
    width: clamp(120px, 22vw, 200px);
  }

  .hero-content {
    max-width: 360px;
    padding: 60px 16px 50px;
  }
  
  .navbar nav {
    display: none;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .section-header h3 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 1.9rem;
    letter-spacing: -0.5px;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .tools-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .tool-card {
    padding: 20px 14px !important;
    border-radius: 18px !important;
  }
  .tool-icon {
    width: 42px !important;
    height: 42px !important;
    font-size: 1.1rem !important;
    margin-bottom: 12px !important;
  }
  .tool-card h4 {
    font-size: 0.82rem !important;
    margin-bottom: 6px !important;
  }
  .tool-card p {
    font-size: 0.74rem !important;
    margin-bottom: 10px !important;
    line-height: 1.35 !important;
  }
  .tool-live {
    font-size: 0.62rem !important;
    margin-bottom: 6px !important;
  }
  .tool-status {
    font-size: 0.72rem !important;
    padding: 4px 10px !important;
  }

  .container {
    padding: 0 15px;
  }
  
  .primary-btn, .secondary-btn {
    padding: 14px 24px;
    font-size: 1rem;
  }
}