/* ═══════════════════════════════════════════════════════════════
   SAASENERGY — Brand CSS
   Colors: #22C55E (green) | #2563EB (blue) | #0B1320 (dark) | #F8FAFC (light)
═══════════════════════════════════════════════════════════════ */

/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #22C55E;
  --blue: #2563EB;
  --dark: #0B1320;
  --dark2: #0F1A2E;
  --dark3: #162035;
  --light: #F8FAFC;
  --muted: #94A3B8;
  --border: rgba(255,255,255,0.08);
  --grad: linear-gradient(135deg, #22C55E 0%, #2563EB 100%);
  --grad-r: linear-gradient(135deg, #2563EB 0%, #22C55E 100%);
  --shadow: 0 25px 50px rgba(0,0,0,0.4);
  --shadow-sm: 0 8px 20px rgba(0,0,0,0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Orbitron', monospace;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
}

body.rtl { direction: rtl; text-align: right; }
body.rtl .nav-links { flex-direction: row-reverse; }
body.rtl .hero-content { text-align: right; }
body.rtl .hero-cta { flex-direction: row-reverse; }
body.rtl .service-features li { flex-direction: row-reverse; }
body.rtl .value-item { flex-direction: row-reverse; }
body.rtl .footer-grid { direction: rtl; }

::selection { background: var(--green); color: var(--dark); }

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--grad); border-radius: 99px; }

/* ─── UTILITIES ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad);
  color: #fff;
  padding: 12px 28px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(34,197,94,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34,197,94,0.45);
  filter: brightness(1.1);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--light);
  padding: 12px 28px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-wa { border-color: #25D366; color: #25D366; }
.btn-wa:hover { background: rgba(37,211,102,0.1); border-color: #25D366; color: #25D366; }

/* ═══════════════════════════════════════════ LOADER ═══ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo svg { width: 80px; height: 50px; }
.loader-logo { animation: pulse 1s ease-in-out infinite; margin-bottom: 24px; }
.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto 16px;
}
.loader-fill {
  height: 100%;
  background: var(--grad);
  border-radius: 99px;
  animation: loadFill 1.5s ease forwards;
}
@keyframes loadFill { from { width: 0; } to { width: 100%; } }
.loader-text {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }

/* ═══════════════════════════════════════════ NAVBAR ═══ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(11,19,32,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--light);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--grad);
  border-radius: 99px;
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--light); }
.nav-link:hover::after, .nav-link.active::after { width: 60%; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.lang-switcher { display: flex; gap: 4px; }
.lang-btn {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid transparent;
  transition: var(--transition);
  background: transparent;
}
.lang-btn:hover { color: var(--light); border-color: var(--border); }
.lang-btn.active {
  background: rgba(34,197,94,0.15);
  border-color: rgba(34,197,94,0.4);
  color: var(--green);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--light);
  border-radius: 99px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════ HERO ═══ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 60px;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 0; align-items: center; }
.stat-item { display: flex; flex-direction: column; padding: 0 28px 0 0; }
.stat-item:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: inline-block;
}
.stat-label { font-size: 0.75rem; color: var(--muted); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border); margin: 0 28px 0 0; }

/* RTL Fixes for Stats */
body.rtl .stat-item { padding: 0 0 0 28px; }
body.rtl .stat-divider { margin: 0 0 0 28px; }

/* Hero 3D Scene */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-3d-scene {
  position: relative;
  width: 420px; height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
  animation: orbit-spin 8s linear infinite;
}
.orbit-ring-1 {
  width: 300px; height: 300px;
  border-color: rgba(34,197,94,0.2);
  animation-duration: 12s;
}
.orbit-ring-2 {
  width: 370px; height: 370px;
  border-color: rgba(37,99,235,0.15);
  animation-duration: 18s;
  animation-direction: reverse;
}
.orbit-ring-3 {
  width: 420px; height: 420px;
  border-color: rgba(34,197,94,0.08);
  animation-duration: 25s;
}
@keyframes orbit-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.orbit-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 15px var(--green);
}
.dot-1 { animation: dot-orbit1 12s linear infinite; }
.dot-2 { animation: dot-orbit2 18s linear infinite reverse; background: var(--blue); box-shadow: 0 0 15px var(--blue); }
.dot-3 { animation: dot-orbit3 25s linear infinite; width: 6px; height: 6px; }
@keyframes dot-orbit1 {
  from { transform: rotate(0deg) translateX(150px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}
@keyframes dot-orbit2 {
  from { transform: rotate(45deg) translateX(185px) rotate(-45deg); }
  to { transform: rotate(405deg) translateX(185px) rotate(-405deg); }
}
@keyframes dot-orbit3 {
  from { transform: rotate(90deg) translateX(210px) rotate(-90deg); }
  to { transform: rotate(450deg) translateX(210px) rotate(-450deg); }
}
.robot-container {
  position: relative;
  z-index: 2;
  animation: robot-float 3s ease-in-out infinite;
}
@keyframes robot-float {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
.robot-glow {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 160px; height: 40px;
  background: radial-gradient(ellipse, rgba(34,197,94,0.4), transparent 70%);
  filter: blur(10px);
  border-radius: 50%;
}
.robot-body { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.robot-head {
  width: 90px; height: 80px;
  background: linear-gradient(160deg, #e8eef5, #c8d5e2);
  border-radius: 50% 50% 45% 45% / 55% 55% 45% 45%;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), inset 0 2px 6px rgba(255,255,255,0.3);
}
.robot-visor {
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 30px;
  background: #0a0f1a;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 10px;
  box-shadow: 0 0 20px rgba(34,197,94,0.3), inset 0 0 10px rgba(0,0,0,0.5);
}
.robot-eye {
  width: 14px; height: 14px;
  background: #00e5ff;
  border-radius: 50%;
  box-shadow: 0 0 12px #00e5ff, 0 0 6px #00e5ff;
  animation: eye-blink 4s ease-in-out infinite;
}
@keyframes eye-blink {
  0%,90%,100% { transform: scaleY(1); }
  95% { transform: scaleY(0.1); }
}
.robot-mouth {
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 10px;
  border: 2px solid #00e5ff;
  border-top: none;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 0 8px #00e5ff;
}
.robot-ear {
  position: absolute;
  top: 20px;
  width: 16px; height: 24px;
  background: linear-gradient(160deg, #d0dce8, #b0bfc8);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.left-ear { left: -10px; }
.right-ear { right: -10px; }
.robot-torso {
  width: 110px; height: 100px;
  background: linear-gradient(160deg, #dce6f0, #b8c8d8);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25), inset 0 2px 6px rgba(255,255,255,0.3);
  position: relative;
}
.robot-logo-chest {
  background: rgba(0,0,0,0.15);
  border-radius: 10px;
  padding: 4px 8px;
}
.robot-panel {
  width: 60px; height: 14px;
  background: #0a0f1a;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.robot-panel::after {
  content: '';
  position: absolute;
  top: 0; left: -40px;
  width: 30px; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.6), transparent);
  animation: panel-scan 2s linear infinite;
}
@keyframes panel-scan { to { left: 110px; } }
.robot-arms { display: flex; gap: 6px; align-items: flex-start; }
.robot-arm {
  width: 22px; height: 80px;
  background: linear-gradient(160deg, #dce6f0, #b8c8d8);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.left-arm { border-radius: 10px 4px 10px 10px; }
.right-arm { border-radius: 4px 10px 10px 10px; }
.robot-legs { display: flex; gap: 10px; }
.robot-leg {
  width: 30px; height: 55px;
  background: linear-gradient(160deg, #dce6f0, #b8c8d8);
  border-radius: 8px 8px 14px 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.robot-platform {
  width: 160px; height: 16px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.4) 0%, transparent 70%);
  border-radius: 50%;
  margin-top: 8px;
  animation: platform-pulse 2s ease-in-out infinite;
}
@keyframes platform-pulse { 0%,100% { opacity: 0.8; } 50% { opacity: 0.4; } }
.float-card {
  position: absolute;
  background: rgba(15,26,46,0.9);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  animation: card-float 3s ease-in-out infinite;
}
.float-card i { color: var(--green); font-size: 1rem; }
.card-1 { top: 30px; left: -20px; animation-delay: 0s; }
.card-2 { bottom: 80px; left: -30px; animation-delay: 1s; }
.card-3 { top: 60px; right: -20px; animation-delay: 2s; }
@keyframes card-float {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.hero-scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator {
  width: 26px; height: 44px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 99px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: var(--green);
  border-radius: 99px;
  animation: scroll-bounce 1.5s ease-in-out infinite;
}
@keyframes scroll-bounce { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: 0.3; } }

/* ═══════════════════════════════════════════ MARQUEE ═══ */
.marquee-section {
  background: rgba(37,99,235,0.06);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track { overflow: hidden; position: relative; }
.marquee-inner {
  display: flex;
  gap: 48px;
  animation: marquee-run 30s linear infinite;
  white-space: nowrap;
}
.marquee-inner span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.marquee-inner span i { color: var(--green); }
@keyframes marquee-run { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════ ABOUT ═══ */
.about-section { background: var(--dark2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-3d-box {
  width: 180px; height: 180px;
  position: relative;
  transform-style: preserve-3d;
  animation: box-rotate 10s linear infinite;
  margin: 0 auto 32px;
}
@keyframes box-rotate {
  0% { transform: rotateX(15deg) rotateY(0deg); }
  100% { transform: rotateX(15deg) rotateY(360deg); }
}
.box-face {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 180px; height: 180px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--light);
  backface-visibility: visible;
}
.box-face i { font-size: 2rem; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.box-front { transform: translateZ(90px); }
.box-right { transform: rotateY(90deg) translateZ(90px); }
.box-top { transform: rotateX(90deg) translateZ(90px); }
.about-cards-stack { display: flex; flex-direction: column; gap: 12px; }
.acard {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition: var(--transition);
}
.acard:hover { border-color: rgba(34,197,94,0.3); transform: translateX(4px); }
.acard-icon {
  width: 44px; height: 44px;
  background: rgba(34,197,94,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 1.1rem;
}
.acard strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.acard p { color: var(--muted); font-size: 0.8rem; }
.about-content { }
.about-values { margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.value-item { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--muted); }
.value-check {
  width: 22px; height: 22px;
  background: rgba(34,197,94,0.15);
  border: 1px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 0.65rem;
}

/* ═══════════════════════════════════════════ SERVICES ═══ */
.services-section { background: var(--dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.service-card:hover { border-color: rgba(34,197,94,0.25); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  border-color: rgba(34,197,94,0.3);
  background: rgba(34,197,94,0.05);
}
.service-card.featured::before { transform: scaleX(1); }
.service-badge-featured {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--grad);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
}
.service-icon-wrap { position: relative; margin-bottom: 20px; width: fit-content; }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.service-card:hover .service-icon { background: rgba(34,197,94,0.2); transform: scale(1.05); }
.service-icon-glow {
  position: absolute;
  inset: -4px;
  background: radial-gradient(circle, rgba(34,197,94,0.2), transparent 70%);
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover .service-icon-glow { opacity: 1; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--muted);
}
.service-features li i { color: var(--green); font-size: 0.7rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ═══════════════════════════════════════════ HOW IT WORKS ═══ */
.how-section { background: var(--dark2); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.how-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.step-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon {
  width: 64px; height: 64px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue);
  margin: 0 auto 16px;
  transition: var(--transition);
}
.how-step:hover .step-icon {
  background: rgba(37,99,235,0.2);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(37,99,235,0.3);
}
.how-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.how-step p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }
.step-line {
  position: absolute;
  top: 64px;
  right: -24px;
  width: 48px; height: 1px;
  background: linear-gradient(90deg, rgba(37,99,235,0.4), transparent);
}

/* ═══════════════════════════════════════════ STATS ═══ */
.stats-section { padding: 70px 0; position: relative; overflow: hidden; }
.stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34,197,94,0.06), rgba(37,99,235,0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.stats-item {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.stats-item::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border);
}
.stats-item:last-child::after { display: none; }
.stats-icon { font-size: 1.5rem; color: var(--green); margin-bottom: 12px; opacity: 0.6; }
.stats-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}
.stats-plus { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--green); display: inline; }
.stats-label { color: var(--muted); font-size: 0.85rem; margin-top: 8px; font-weight: 500; }

/* ═══════════════════════════════════════════ PORTFOLIO ═══ */
.portfolio-section { background: var(--dark); }
.portfolio-filters { display: flex; gap: 10px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 22px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
  background: transparent;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.4);
  color: var(--green);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-item { border-radius: var(--radius); overflow: hidden; background: var(--dark3); border: 1px solid var(--border); transition: var(--transition); }
.portfolio-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(34,197,94,0.2); }
.portfolio-item.hidden { display: none; }
.portfolio-img { position: relative; height: 200px; overflow: hidden; }
.portfolio-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.portfolio-placeholder i { font-size: 2.5rem; opacity: 0.6; }
.ai-gradient { background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(37,99,235,0.15)); }
.saas-gradient { background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(139,92,246,0.15)); }
.web-gradient { background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(239,68,68,0.15)); }
.bot-gradient { background: linear-gradient(135deg, rgba(6,182,212,0.15), rgba(59,130,246,0.15)); }
.purple-gradient { background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(236,72,153,0.15)); }
.teal-gradient { background: linear-gradient(135deg, rgba(20,184,166,0.15), rgba(34,197,94,0.15)); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,19,32,0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-tags { display: flex; gap: 8px; }
.portfolio-tags span {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 99px;
}
.portfolio-cta {
  background: var(--grad);
  color: white;
  padding: 8px 22px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.portfolio-cta:hover { opacity: 0.9; transform: scale(1.05); }
.portfolio-info { padding: 20px; }
.portfolio-info h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.portfolio-info p { color: var(--muted); font-size: 0.82rem; line-height: 1.6; }

/* ═══════════════════════════════════════════ TESTIMONIALS ═══ */
.testimonials-section { background: var(--dark2); }
.testimonials-slider { position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); gap: 24px; }
.testi-card {
  min-width: calc(33.333% - 16px);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  flex-shrink: 0;
}
.testi-card:hover { border-color: rgba(34,197,94,0.2); transform: translateY(-4px); }
.testi-stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.testi-author span { color: var(--muted); font-size: 0.8rem; }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.testi-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.testi-btn:hover { background: rgba(34,197,94,0.15); border-color: rgba(34,197,94,0.3); color: var(--green); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.testi-dot.active { background: var(--green); width: 24px; border-radius: 99px; }
.chat-quick-replies { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 12px; }

/* ═══════════════════════════════════════════ BLOG ═══ */
.blog-section { background: var(--dark); }
.blog-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
}
.blog-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(37,99,235,0.25); box-shadow: var(--shadow); }
.blog-img { position: relative; height: 180px; }
.blog-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0.5;
}
.featured-blog .blog-img { height: 220px; }
.blog-category {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(34,197,94,0.9);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-content { padding: 20px; }
.blog-meta { display: flex; gap: 16px; color: var(--muted); font-size: 0.78rem; margin-bottom: 10px; }
.blog-meta i { margin-right: 4px; color: var(--green); }
.blog-card h3 { font-size: 0.95rem; font-weight: 700; line-height: 1.45; margin-bottom: 10px; }
.blog-card p { color: var(--muted); font-size: 0.82rem; line-height: 1.6; margin-bottom: 16px; }
.blog-link { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-size: 0.83rem; font-weight: 600; transition: var(--transition); }
.blog-link:hover { gap: 10px; color: var(--green); }

/* ═══════════════════════════════════════════ CONTACT ═══ */
.contact-section { background: var(--dark2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.cinfo-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition: var(--transition);
}
.cinfo-card:hover { border-color: rgba(34,197,94,0.3); }
.cinfo-icon {
  width: 44px; height: 44px;
  background: rgba(34,197,94,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cinfo-card strong { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 2px; }
.cinfo-card a, .cinfo-card span { font-size: 0.9rem; font-weight: 500; color: var(--light); }
.cinfo-card a:hover { color: var(--green); }
.contact-social { display: flex; gap: 12px; margin-top: 4px; }
.csocial-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  transition: var(--transition);
}
.csocial-btn:hover { transform: translateY(-3px); }
.csocial-btn.linkedin { background: #0A66C2; }
.csocial-btn.facebook { background: #1877F2; }
.csocial-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.csocial-btn.whatsapp { background: #25D366; }
.map-container { margin-top: 8px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border); }
.map-placeholder {
  background: rgba(37,99,235,0.05);
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.map-pin { font-size: 2rem; color: var(--green); }
.map-placeholder p { color: var(--muted); font-size: 0.85rem; }
.map-link {
  background: var(--grad);
  color: white;
  padding: 6px 18px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 4px;
  display: inline-block;
  transition: var(--transition);
}
.map-link:hover { opacity: 0.9; }
.contact-form-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--light); }
.form-group input, .form-group textarea, .form-group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--light);
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(148,163,184,0.5); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: rgba(34,197,94,0.5);
  background: rgba(34,197,94,0.04);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}
.form-group select option { background: var(--dark3); color: var(--light); }
.budget-options { display: flex; gap: 10px; flex-wrap: wrap; }
.budget-option {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.budget-option input[type="radio"] { accent-color: var(--green); }
.budget-option span {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}
.budget-option input:checked + span { background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.4); color: var(--green); }
.form-checkbox label { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 0.85rem; color: var(--muted); }
.form-checkbox input { accent-color: var(--green); width: 16px; height: 16px; }
.form-error { color: #EF4444; font-size: 0.78rem; min-height: 18px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--green);
  font-weight: 600;
  margin-top: 16px;
}
#submitBtn { margin-top: 4px; position: relative; overflow: hidden; }
#submitBtn.loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  animation: btn-pulse 1s ease-in-out infinite;
}
@keyframes btn-pulse { 0%,100% { opacity: 0; } 50% { opacity: 1; } }

/* ═══════════════════════════════════════════ CTA BANNER ═══ */
.cta-banner {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg-anim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(37,99,235,0.12));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-bg-anim::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,0.15), transparent 70%);
  border-radius: 50%;
  animation: cta-glow 6s ease-in-out infinite;
}
.cta-bg-anim::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(37,99,235,0.15), transparent 70%);
  border-radius: 50%;
  animation: cta-glow 6s ease-in-out infinite reverse;
}
@keyframes cta-glow { 0%,100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.2); opacity: 0.4; } }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-content p { color: var(--muted); font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════ FOOTER ═══ */
#footer { background: var(--dark); border-top: 1px solid var(--border); }
.footer-top { padding: 70px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--light);
  margin-bottom: 12px;
}
.footer-brand p { color: var(--muted); font-size: 0.88rem; font-style: italic; margin-bottom: 12px; }
.footer-desc { color: var(--muted); font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: rgba(34,197,94,0.15); border-color: rgba(34,197,94,0.3); color: var(--green); transform: translateY(-2px); }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; color: var(--light); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--muted); font-size: 0.85rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--green); padding-left: 4px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 0.83rem; }
.footer-contact-list li i { color: var(--green); width: 16px; margin-top: 2px; }
.footer-contact-list li a { color: var(--muted); }
.footer-contact-list li a:hover { color: var(--green); }
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { color: var(--muted); font-size: 0.82rem; }

/* ═══════════════════════════════════════════ FLOATING SOCIALS ═══ */
.floating-socials {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-social {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.float-social:hover { transform: scale(1.1) translateX(-4px); }
.whatsapp-float { background: #25D366; }
.linkedin-float { background: #0A66C2; }
.facebook-float { background: #1877F2; }
.instagram-float { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }

/* ─── Back to Top ─── */
#backToTop {
  position: fixed;
  bottom: 30px; right: 80px;
  z-index: 500;
  width: 44px; height: 44px;
  background: var(--grad);
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(34,197,94,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}
#backToTop.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#backToTop:hover { transform: translateY(-3px); }

/* ═══════════════════════════════════════════ CHATBOT ═══ */
.chatbot-wrapper {
  position: fixed;
  bottom: 30px; left: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.chatbot-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark3);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 50px;
  padding: 8px 16px 8px 8px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  position: relative;
}
.chatbot-trigger:hover {
  border-color: var(--green);
  box-shadow: 0 12px 30px rgba(34,197,94,0.2);
  transform: translateY(-2px);
}
.chatbot-robot-icon { width: 44px; height: 44px; position: relative; }
.cbot-head {
  width: 44px; height: 34px;
  background: linear-gradient(160deg, #dce6f0, #b8c8d8);
  border-radius: 50% 50% 40% 40% / 60% 60% 40% 40%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cbot-visor {
  width: 30px; height: 14px;
  background: #0a0f1a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 4px;
  margin-top: 4px;
  box-shadow: 0 0 8px rgba(34,197,94,0.3);
}
.cbot-eye {
  width: 8px; height: 8px;
  background: #00e5ff;
  border-radius: 50%;
  box-shadow: 0 0 6px #00e5ff;
  animation: eye-blink 4s ease-in-out infinite;
}
.cbot-body {
  width: 44px; height: 28px;
  background: linear-gradient(160deg, #dce6f0, #b8c8d8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  position: relative;
}
.cbot-logo {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.chatbot-label { font-size: 0.85rem; font-weight: 700; color: var(--light); }
.chatbot-online-dot {
  width: 9px; height: 9px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 8px #22C55E;
  animation: blink 1.5s ease-in-out infinite;
  position: absolute;
  top: 6px; left: 6px;
}
.chatbot-window {
  width: 360px;
  background: var(--dark3);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: none;
  flex-direction: column;
  overflow: hidden;
  max-height: 520px;
}
.chatbot-window.open { display: flex; animation: chat-open 0.3s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes chat-open { from { opacity: 0; transform: translateY(20px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.chatbot-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(37,99,235,0.1));
  border-bottom: 1px solid var(--border);
}
.chatbot-avatar { width: 40px; height: 40px; position: relative; }
.cbot-mini-head {
  width: 40px; height: 32px;
  background: linear-gradient(160deg, #dce6f0, #b8c8d8);
  border-radius: 50% 50% 40% 40% / 60% 60% 40% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cbot-mini-visor {
  width: 26px; height: 12px;
  background: #0a0f1a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 3px;
  margin-top: 2px;
}
.cbot-mini-eye {
  width: 6px; height: 6px;
  background: #00e5ff;
  border-radius: 50%;
  box-shadow: 0 0 4px #00e5ff;
}
.chatbot-info { flex: 1; }
.chatbot-info strong { display: block; font-size: 0.9rem; font-weight: 700; }
.chatbot-info span { display: flex; align-items: center; gap: 5px; color: var(--muted); font-size: 0.75rem; }
.online-dot { width: 7px; height: 7px; background: #22C55E; border-radius: 50%; box-shadow: 0 0 6px #22C55E; }
.chatbot-close {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  transition: var(--transition);
}
.chatbot-close:hover { background: rgba(239,68,68,0.2); color: #EF4444; }
.chatbot-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 300px;
}
.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chat-msg { display: flex; }
.chat-msg.bot { justify-content: flex-start; }
.chat-msg.user { justify-content: flex-end; }
.chat-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.chat-msg.bot .chat-bubble {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  color: var(--light);
}
.chat-msg.user .chat-bubble {
  background: var(--grad);
  color: white;
  border-bottom-right-radius: 4px;
}
.chat-typing {
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}
.chat-typing span {
  width: 6px; height: 6px;
  background: var(--muted);
  border-radius: 50%;
  animation: typing-dot 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-dot { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-6px); } }
.quick-reply {
  padding: 6px 14px;
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 99px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(34,197,94,0.06);
  cursor: pointer;
  transition: var(--transition);
}
.quick-reply:hover { background: rgba(34,197,94,0.15); border-color: var(--green); }
.chatbot-input-area {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
}
.chatbot-input-area input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 10px 16px;
  color: var(--light);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}
.chatbot-input-area input:focus { border-color: rgba(34,197,94,0.4); }
.chatbot-input-area input::placeholder { color: rgba(148,163,184,0.4); }
#chatSend {
  width: 38px; height: 38px;
  background: var(--grad);
  border-radius: 50%;
  color: white;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
#chatSend:hover { transform: scale(1.05); }
.chatbot-footer {
  padding: 8px 16px;
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.chatbot-footer strong { color: var(--green); }

/* ═══════════════════════════════════════════ RESPONSIVE ═══ */

/* Tablet (iPad) - 1024px and below */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  
  /* Navbar */
  .nav-container { gap: 16px; }
  .nav-links { gap: 4px; }
  
  /* Hero */
  .hero-section { padding: 100px 0 40px; }
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-visual { max-width: 100%; margin-top: 20px; }
  .hero-title { font-size: clamp(1.8rem, 3vw, 2.5rem); }
  .hero-sub { max-width: 100%; font-size: 1rem; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-3d-scene { width: 350px; height: 350px; }
  
  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  
  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: none; }
  
  /* How it works */
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .step-line { display: none; }
  
  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  
  /* Portfolio */
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  
  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  
  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 32px; }
  
  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  
  /* Testimonials */
  .testi-card { min-width: calc(50% - 12px); }
  
  /* Floating elements */
  .floating-socials { right: 12px; }
  
  /* Ping pong */
  .pp-arena { height: 240px; }
  .pp-score-num { font-size: 1.4rem; }
}

/* Tablet portrait/Mobile landscape - 768px and below */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }
  
  /* Navbar */
  .nav-container { padding: 0 16px; gap: 12px; }
  .nav-logo { font-size: 18px; }
  .nav-links {
    position: fixed;
    top: 65px; left: 0; right: 0;
    background: rgba(11,19,32,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 8px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link { font-size: 0.85rem; padding: 10px 14px; }
  .hamburger { display: flex; }
  .nav-actions { gap: 12px; }
  .nav-actions .btn-primary { display: none; }
  .lang-btn { padding: 4px 8px; font-size: 0.7rem; }
  
  /* Hero section */
  .hero-section { min-height: auto; padding: 80px 0 40px; }
  .hero-container { gap: 30px; }
  .hero-badge { margin-bottom: 16px; padding: 6px 14px; font-size: 0.75rem; }
  .hero-title { font-size: clamp(1.5rem, 2.5vw, 2.2rem); line-height: 1.2; margin-bottom: 16px; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 24px; }
  .hero-cta { justify-content: center; gap: 12px; }
  .btn-lg { padding: 12px 24px; font-size: 0.9rem; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 0; }
  .stat-item { padding: 0 16px 0 0; }
  .stat-divider { margin: 0 16px 0 0; height: 30px; }
  .stat-num { font-size: 1.4rem; }
  .hero-3d-scene { width: 280px; height: 280px; }
  .hero-scroll { display: none; }
  
  /* Marquee */
  .marquee-section { padding: 12px 0; }
  .marquee-inner { gap: 32px; animation: marquee-run 20s linear infinite; }
  
  /* About */
  .about-grid { gap: 30px; }
  .acard { padding: 14px 16px; gap: 12px; }
  .acard-icon { width: 40px; height: 40px; }
  
  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 24px; }
  
  /* How it works */
  .how-grid { grid-template-columns: 1fr; }
  .how-step { padding: 24px 16px; }
  
  /* Stats */
  .stats-grid { grid-template-columns: 1fr; }
  .stats-item { padding: 24px 16px; }
  .stats-item::after { display: none; }
  .stats-num { font-size: 2rem; }
  
  /* Portfolio */
  .portfolio-filters { gap: 8px; }
  .filter-btn { padding: 6px 16px; font-size: 0.8rem; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 16px; }
  
  /* Testimonials */
  .testi-card { min-width: 100%; }
  .testi-controls { gap: 12px; margin-top: 24px; }
  
  /* Blog */
  .blog-card { border-radius: 12px; }
  .blog-img { height: 160px; }
  .featured-blog .blog-img { height: 160px; }
  
  /* Contact */
  .contact-grid { gap: 32px; }
  .contact-form-wrap { padding: 20px; }
  .form-row { gap: 16px; }
  .form-group { margin-bottom: 16px; }
  
  /* Floating socials */
  .floating-socials { display: none; }
  .chatbot-wrapper { left: 16px; bottom: 16px; }
  .chatbot-window { width: calc(100vw - 32px); max-width: 360px; }
  
  /* Buttons */
  .btn-primary { padding: 11px 24px; font-size: 0.85rem; }
  .btn-outline { padding: 11px 24px; font-size: 0.85rem; }
  
  /* CTA Banner */
  .cta-banner { padding: 60px 0; }
  .cta-content h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
  .cta-actions { flex-direction: column; }
  
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { padding: 50px 0; }
  .footer-logo { font-size: 1rem; }
  
  /* Ping pong */
  .pp-arena { height: 220px; padding: 14px 4px 8px; }
  .pp-score-num { font-size: 1.2rem; }
  .pp-fig-head { width: 28px; height: 26px; }
  .pp-robot-head-fig { width: 28px; height: 26px; }
  .pp-human-head-fig { width: 26px; height: 26px; }
  .pp-fig-torso { width: 32px; height: 40px; }
  .pp-fig-leg { width: 12px; height: 24px; }
  .pp-paddle-head { width: 22px; height: 26px; }
  .pp-table-surface { height: 12px; }
  .pp-net-post { height: 18px; width: 4px; }
  .pp-paddle-handle { width: 6px; height: 18px; }
  
  /* Founder card */
  .founder-card { padding: 16px 20px; gap: 14px; }
  .founder-avatar { width: 56px; height: 56px; }
}

/* Mobile - 600px and below */
@media (max-width: 600px) {
  html { font-size: 14px; }
  .container { padding: 0 12px; }
  .section { padding: 50px 0; }
  
  /* Navbar */
  #navbar { padding: 12px 0; }
  #navbar.scrolled { padding: 10px 0; }
  .nav-container { padding: 0 12px; }
  .nav-logo { font-size: 16px; gap: 6px; }
  .nav-links { padding: 16px 12px; }
  .lang-switcher { gap: 2px; }
  .lang-btn { padding: 3px 6px; font-size: 0.65rem; }
  .hamburger { gap: 4px; }
  .hamburger span { width: 20px; height: 1.5px; }
  
  /* Hero */
  .hero-section { padding: 60px 0 30px; min-height: auto; }
  .hero-container { gap: 20px; padding: 0 12px; }
  .hero-badge { padding: 5px 12px; font-size: 0.7rem; margin-bottom: 12px; }
  .hero-title { font-size: 1.5rem; margin-bottom: 12px; letter-spacing: -0.01em; }
  .hero-sub { font-size: 0.9rem; line-height: 1.5; margin-bottom: 20px; }
  .hero-cta { flex-direction: column; gap: 10px; }
  .btn-lg { width: 100%; padding: 11px 20px; font-size: 0.85rem; }
  .hero-stats { gap: 0; flex-wrap: wrap; justify-content: space-around; }
  .stat-item { padding: 0; }
  .stat-divider { display: none; }
  .stat-num { font-size: 1.1rem; }
  .stat-label { font-size: 0.65rem; }
  .hero-3d-scene { width: 240px; height: 240px; }
  .float-card { display: none; }
  
  /* Sections */
  .section-title { font-size: 1.3rem; }
  .section-subtitle { font-size: 0.9rem; }
  .section-header { margin-bottom: 40px; }
  
  /* Services */
  .services-grid { gap: 12px; }
  .service-card { padding: 18px 16px; }
  .service-icon { width: 48px; height: 48px; font-size: 1.2rem; }
  .service-card h3 { font-size: 1rem; }
  .service-card p { font-size: 0.8rem; }
  
  /* About cards */
  .acard { padding: 12px 14px; flex-direction: column; align-items: flex-start; }
  .acard-icon { width: 36px; height: 36px; }
  
  /* How it works */
  .how-step { padding: 20px 12px; }
  .step-number { font-size: 2rem; }
  .step-icon { width: 52px; height: 52px; font-size: 1.2rem; }
  
  /* Stats */
  .stats-item { padding: 20px 12px; }
  .stats-num { font-size: 1.6rem; }
  
  /* Portfolio */
  .portfolio-filters { gap: 6px; margin-bottom: 30px; }
  .filter-btn { padding: 5px 12px; font-size: 0.75rem; }
  .portfolio-grid { gap: 12px; }
  .portfolio-img { height: 160px; }
  
  /* Blog */
  .blog-grid { gap: 12px; }
  .blog-img { height: 140px; }
  
  /* Contact */
  .contact-info { gap: 12px; }
  .cinfo-card { padding: 12px 14px; }
  .contact-form-wrap { padding: 16px; }
  .form-group { margin-bottom: 14px; }
  .form-group label { font-size: 0.8rem; }
  .form-group input, .form-group textarea { padding: 10px 14px; font-size: 0.85rem; }
  .budget-options { gap: 6px; }
  
  /* Buttons */
  .btn-primary { padding: 10px 20px; font-size: 0.8rem; }
  .btn-outline { padding: 10px 20px; font-size: 0.8rem; }
  
  /* CTA Banner */
  .cta-banner { padding: 40px 0; }
  .cta-content h2 { font-size: 1.4rem; }
  .cta-content p { font-size: 0.95rem; }
  .cta-actions { gap: 10px; }
  
  /* Footer */
  .footer-logo { font-size: 0.95rem; gap: 6px; }
  .footer-desc { font-size: 0.8rem; }
  .footer-col h4 { font-size: 0.85rem; }
  .footer-bottom { padding: 20px 0; }
  .footer-bottom p { font-size: 0.75rem; }
  
  /* Chatbot */
  .chatbot-trigger { padding: 6px 12px 6px 6px; }
  .chatbot-label { font-size: 0.8rem; }
  .chatbot-window { width: calc(100vw - 24px); }
  .chatbot-messages { max-height: 240px; padding: 12px; }
  .chat-bubble { font-size: 0.8rem; padding: 8px 12px; }
  
  /* Ping pong */
  .pp-arena { height: 180px; padding: 10px 2px 6px; }
  .pp-scoreboard { gap: 6px; margin-bottom: 10px; }
  .pp-score-num { font-size: 1rem; }
  .pp-score-side { gap: 4px; font-size: 0.85rem; }
  .pp-score-side i { font-size: 0.9rem; }
  .pp-fig-head { width: 22px; height: 20px; }
  .pp-robot-head-fig { width: 22px; height: 20px; }
  .pp-human-head-fig { width: 20px; height: 20px; }
  .pp-fig-visor { width: 18px; height: 9px; padding: 0 2px; }
  .pp-fig-eye { width: 5px; height: 5px; }
  .pp-fig-torso { width: 26px; height: 32px; }
  .pp-robot-torso-fig { width: 26px; height: 32px; }
  .pp-human-torso-fig { width: 22px; height: 32px; }
  .pp-fig-leg { width: 10px; height: 18px; }
  .pp-paddle-head { width: 18px; height: 22px; }
  .pp-table-surface { height: 10px; }
  .pp-net-post { height: 14px; width: 3px; }
  .pp-paddle-handle { width: 5px; height: 14px; }
  
  /* Founder card */
  .founder-card { gap: 12px; padding: 14px 16px; }
  .founder-avatar { width: 50px; height: 50px; }
  .founder-name-row { gap: 8px; }
  .founder-name-row strong { font-size: 0.9rem; }
  .founder-role { font-size: 0.75rem; }
  .founder-tags { gap: 4px; }
  .founder-tags span { font-size: 0.65rem; padding: 2px 8px; }
}

/* Small mobile - 380px and below */
@media (max-width: 380px) {
  html { font-size: 13px; }
  .container { padding: 0 10px; }
  .section { padding: 40px 0; }
  
  .hero-title { font-size: 1.3rem; }
  .section-title { font-size: 1.15rem; }
  .section-subtitle { font-size: 0.85rem; }
  
  .hero-badge { padding: 4px 10px; }
  .hero-sub { font-size: 0.85rem; }
  .btn-lg { padding: 10px 16px; }
  
  .stat-num { font-size: 1rem; }
  .stat-label { font-size: 0.6rem; }
  
  .service-card { padding: 14px 12px; }
  .service-icon { width: 40px; height: 40px; }
  
  .form-group input, .form-group textarea { font-size: 0.8rem; }
  
  .cta-content h2 { font-size: 1.2rem; }
  
  .pp-arena { height: 160px; }
  .pp-score-num { font-size: 0.9rem; }
}

/* ─── RTL GRADIENT FIX ─── */
body.rtl .gradient-text, 
body.rtl .stat-num, 
body.rtl .price-value {
  background: linear-gradient(-135deg, #22C55E 0%, #2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════ LOGO IMAGES ═══ */
.loader-logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(1.1) contrast(1.15) drop-shadow(0 0 16px rgba(34,197,94,0.3));
  animation: logo-glow 2.5s ease-in-out infinite;
}
@keyframes logo-glow {
  0%,100% { filter: brightness(1.1) contrast(1.15) drop-shadow(0 0 10px rgba(34,197,94,0.3)); }
  50% { filter: brightness(1.15) contrast(1.2) drop-shadow(0 0 24px rgba(34,197,94,0.5)); }
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(1.08) contrast(1.12) drop-shadow(0 0 12px rgba(34,197,94,0.25));
  transition: var(--transition);
}
.nav-logo:hover img {
  filter: brightness(1.15) contrast(1.2) drop-shadow(0 0 20px rgba(34,197,94,0.4));
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(1.08) contrast(1.12) drop-shadow(0 0 12px rgba(34,197,94,0.25));
  transition: var(--transition);
}
.footer-logo:hover img {
  filter: brightness(1.15) contrast(1.2) drop-shadow(0 0 20px rgba(34,197,94,0.4));
}

.loader-tagline {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 14px;
  animation: fadeInUp 1s ease 0.5s both;
}
@keyframes fadeInUp { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

.admin-footer-link {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: var(--transition);
}
.admin-footer-link:hover { color: var(--green); border-color: rgba(34,197,94,0.3); }

/* ═══════════════════════════════════════════ PING PONG SCENE ═══ */
.pp-scene {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}
/* Scoreboard */
.pp-scoreboard {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 8px 24px;
  backdrop-filter: blur(10px);
}
.pp-score-side {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: var(--muted);
}
.pp-score-side i { font-size: 1.2rem; }
.pp-score-side i.fa-robot { color: var(--green); }
.pp-score-side i.fa-user { color: var(--blue); }
.pp-score-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  min-width: 30px;
  text-align: center;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pp-score-colon {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--muted);
}
/* Arena */
.pp-arena {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  position: relative;
  background: rgba(11,19,32,0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 16px 8px 10px;
}
.pp-arena::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34,197,94,0.04) 0%, rgba(37,99,235,0.04) 100%);
  pointer-events: none;
}
/* Players */
.pp-player {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  z-index: 2;
  flex-shrink: 0;
}
.pp-robot-side { flex-direction: row; margin-right: -4px; }
.pp-human-side { flex-direction: row-reverse; margin-left: -4px; }
/* Robot figure */
.pp-robot-fig, .pp-human-fig {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  animation: player-bob 1s ease-in-out infinite;
}
.pp-human-fig { animation-delay: 0.5s; }
@keyframes player-bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.pp-fig-head {
  border-radius: 50% 50% 45% 45% / 55% 55% 45% 45%;
}
.pp-robot-head-fig {
  width: 38px; height: 34px;
  background: linear-gradient(160deg, #e8eef5, #c8d5e2);
  box-shadow: 0 0 12px rgba(34,197,94,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pp-human-head-fig {
  width: 34px; height: 34px;
  background: linear-gradient(160deg, #f0d0b8, #d4a882);
  border-radius: 50%;
}
.pp-fig-visor {
  width: 28px; height: 12px;
  background: #0a0f1a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 4px;
  margin-top: 3px;
  box-shadow: 0 0 8px rgba(34,197,94,0.4);
}
.pp-fig-eye {
  width: 7px; height: 7px;
  background: #00e5ff;
  border-radius: 50%;
  box-shadow: 0 0 6px #00e5ff;
  animation: eye-blink 4s ease-in-out infinite;
}
.pp-fig-torso {
  border-radius: 8px;
}
.pp-robot-torso-fig {
  width: 44px; height: 52px;
  background: linear-gradient(160deg, #dce6f0, #b8c8d8);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.pp-human-torso-fig {
  width: 38px; height: 52px;
  background: linear-gradient(160deg, #2563EB, #1d4ed8);
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}
.pp-fig-legs {
  display: flex;
  gap: 5px;
}
.pp-fig-leg {
  width: 16px; height: 32px;
  background: linear-gradient(160deg, #dce6f0, #b8c8d8);
  border-radius: 5px 5px 8px 8px;
}
.pp-human-side .pp-fig-leg { background: linear-gradient(160deg, #1e3a5f, #162d4a); }
/* Paddles */
.pp-paddle-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}
.pp-paddle {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pp-paddle-head {
  width: 28px; height: 32px;
  border-radius: 50% 50% 40% 40% / 55% 55% 45% 45%;
  border: 3px solid;
}
.pp-paddle-handle {
  width: 7px; height: 22px;
  border-radius: 3px;
  background: #8B6914;
}
.pp-paddle-robot .pp-paddle-head {
  background: var(--green);
  border-color: #15803d;
  box-shadow: 0 0 12px rgba(34,197,94,0.4);
}
.pp-paddle-human .pp-paddle-head {
  background: var(--blue);
  border-color: #1d4ed8;
  box-shadow: 0 0 12px rgba(37,99,235,0.4);
}
.pp-robot-paddle-wrap { animation: robot-swing 2.4s ease-in-out infinite; transform-origin: bottom center; }
.pp-human-paddle-wrap { animation: human-swing 2.4s ease-in-out infinite; transform-origin: bottom center; }
@keyframes robot-swing {
  0%,48%,100% { transform: rotate(-15deg); }
  2%,46% { transform: rotate(25deg) translateY(-6px); }
}
@keyframes human-swing {
  0%,46%,100% { transform: rotate(15deg); }
  50%,96% { transform: rotate(-25deg) translateY(-6px); }
}
/* Table */
.pp-table-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.pp-table-surface {
  width: 100%;
  height: 16px;
  background: linear-gradient(180deg, #1a6b3a, #145e32);
  border: 2px solid #22C55E;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  box-shadow: 0 4px 16px rgba(34,197,94,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}
.pp-table-line {
  position: absolute;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.3);
}
.pp-table-mid { left: 50%; }
.pp-net-post {
  width: 5px; height: 24px;
  background: #aaa;
  border-radius: 2px;
  position: absolute;
  bottom: 14px;
}
.pp-net-post:first-child { left: 47%; }
.pp-net-post:last-child { right: 47%; }
.pp-net-mesh {
  width: 3px;
  height: 22px;
  background: repeating-linear-gradient(
    0deg, rgba(255,255,255,0.7) 0px, rgba(255,255,255,0.7) 2px,
    transparent 2px, transparent 4px
  );
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 1px;
}
.pp-table-legs-row {
  display: flex;
  justify-content: space-between;
  width: 80%;
}
.pp-table-leg-fig {
  width: 8px; height: 32px;
  background: linear-gradient(180deg, #1a6b3a, #0f4023);
  border-radius: 0 0 4px 4px;
}
/* Ball */
.pp-ball {
  position: absolute;
  width: 16px; height: 16px;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #f5e642 40%, #e0c830 100%);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4), 0 0 12px rgba(245,230,66,0.3);
  z-index: 10;
  animation: pp-ball-x 2.4s linear infinite, pp-ball-y 1.2s ease-in-out infinite;
  bottom: 50px;
  left: 12%;
}
.pp-ball-shine {
  position: absolute;
  top: 2px; left: 3px;
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
}
.pp-ball-shadow {
  position: absolute;
  height: 6px;
  background: rgba(0,0,0,0.25);
  border-radius: 50%;
  z-index: 5;
  bottom: 18px;
  animation: pp-shadow-x 2.4s linear infinite, pp-shadow-scale 1.2s ease-in-out infinite;
  left: 13%;
  width: 14px;
  filter: blur(2px);
}
@keyframes pp-ball-x {
  0%,100% { left: 12%; }
  50% { left: 80%; }
}
@keyframes pp-ball-y {
  0%,50%,100% { bottom: 50px; }
  15%,65% { bottom: 110px; }
  30%,80% { bottom: 28px; }
  32%,82% { bottom: 30px; }
}
@keyframes pp-shadow-x {
  0%,100% { left: 13%; }
  50% { left: 81%; }
}
@keyframes pp-shadow-scale {
  0%,50%,100% { transform: scaleX(1); opacity: 0.3; }
  15%,65% { transform: scaleX(0.5); opacity: 0.1; }
  30%,80% { transform: scaleX(1.1); opacity: 0.4; }
}
/* Caption */
.pp-caption {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  opacity: 0.8;
}
/* Flash on score */
@keyframes score-flash {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

/* ═══════════════════════════════════════════ FOUNDER CARD ═══ */
.founder-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0 28px;
  transition: var(--transition);
}
.founder-card:hover {
  border-color: rgba(34,197,94,0.4);
  background: rgba(34,197,94,0.04);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,197,94,0.1);
}
.founder-avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(34,197,94,0.4);
  box-shadow: 0 0 16px rgba(34,197,94,0.2);
}
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.founder-initials {
  width: 100%;
  height: 100%;
  background: var(--grad);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
}
.founder-info { flex: 1; }
.founder-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.founder-name-row strong { font-size: 1rem; font-weight: 700; }
.founder-linkedin {
  width: 26px;
  height: 26px;
  background: #0A66C2;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  transition: var(--transition);
}
.founder-linkedin:hover { transform: scale(1.1); opacity: 0.9; }
.founder-role {
  display: block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.founder-tags span {
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
}

/* Phone icon color in contact */
.cinfo-icon .fa-phone { color: var(--green); }

/* ═══════════════════════════════════════════ ABOUT ROBOT ═══ */
.about-robot-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 36px;
  perspective: 600px;
}
.about-robot-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(34,197,94,0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}
.about-robot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  animation: about-robot-float 3.5s ease-in-out infinite;
  transform-style: preserve-3d;
}
@keyframes about-robot-float {
  0%,100% { transform: translateY(0) rotateY(-8deg); }
  50% { transform: translateY(-14px) rotateY(8deg); }
}
/* Speech bubble */
.about-bubble {
  position: absolute;
  top: 30px;
  right: -50px;
  background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(37,99,235,0.15));
  border: 1.5px solid rgba(34,197,94,0.5);
  border-radius: 16px 16px 16px 4px;
  padding: 8px 16px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--light);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  animation: bubble-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards, bubble-float 2.5s ease-in-out 0.5s infinite;
  box-shadow: 0 4px 20px rgba(34,197,94,0.2);
  z-index: 10;
}
@keyframes bubble-pop { from { opacity:0; transform:scale(0.5); } to { opacity:1; transform:scale(1); } }
@keyframes bubble-float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-5px); } }
.bubble-tail {
  position: absolute;
  bottom: -8px;
  left: 14px;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid rgba(34,197,94,0.5);
}
/* Head */
.ab-head {
  width: 80px; height: 70px;
  background: linear-gradient(160deg, #e8eef5, #c8d5e2);
  border-radius: 50% 50% 45% 45% / 55% 55% 45% 45%;
  position: relative;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3), inset 0 2px 4px rgba(255,255,255,0.3);
}
.ab-visor {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 26px;
  background: #0a0f1a;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
  box-shadow: 0 0 16px rgba(34,197,94,0.3), inset 0 0 8px rgba(0,0,0,0.5);
}
.ab-eye {
  width: 11px; height: 11px;
  background: #00e5ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00e5ff, 0 0 4px #00e5ff;
  animation: eye-blink 4s ease-in-out infinite;
}
.ab-mouth {
  position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 8px;
  border: 1.5px solid #00e5ff;
  border-top: none;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 0 6px #00e5ff;
}
.ab-ear {
  position: absolute;
  top: 16px;
  width: 14px; height: 20px;
  background: linear-gradient(160deg, #d0dce8, #b0bfc8);
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}
.ab-ear-l { left: -9px; }
.ab-ear-r { right: -9px; }
/* Torso */
.ab-torso {
  width: 96px; height: 88px;
  background: linear-gradient(160deg, #dce6f0, #b8c8d8);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25), inset 0 2px 4px rgba(255,255,255,0.3);
}
.ab-chest-logo {
  background: rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 3px 6px;
}
.ab-panel {
  width: 52px; height: 12px;
  background: #0a0f1a;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.ab-panel::after {
  content: '';
  position: absolute;
  top: 0; left: -36px;
  width: 28px; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.7), transparent);
  animation: panel-scan 2s linear infinite;
}
/* Arms */
.ab-arms {
  display: none;
}

/* Propellers for flying robot */
.ab-propellers {
  position: absolute;
  top: 20px;
  left: 50%;
  transformflex;
  align-items: flex-start;
  gap: 5px;
  position: absolute;
  top: 80px;
}
.ab-arm {
  width: 20px; height: 70px;
  background: linear-gradient(160deg, #dce6f0, #b8c8d8);
  border-radius: 9px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  position: relative;
}
.ab-arm::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: linear-gradient(160deg, #dce6f0, #b8c8d8);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.ab-arm-l { border-radius: 9px 4px 9px 9px; }
.ab-arm-r {
  border-radius: 4px 9px 9px 9px;
  transform-origin: top center;
}
/* Wave animation on right arm */
.ab-arm-wave {
  animation: arm-wave 1.4s ease-in-out infinite;
}
@keyframes arm-wave {
  0%,100% { transform: rotate(0deg); }
  20% { transform: rotate(-40deg); }
  40% { transform: rotate(10deg); }
  60% { transform: rotate(-35deg); }
  80% { transform: rotate(5deg); }
}

/* Propellers for flying robot */
.ab-propellers {
  display: none;
}

.ab-propeller {
  display: none;

  background: linear-gradient(160deg, #dce6f0, #b8c8d8);
  border-radius: 9px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  position: relative;
}
.ab-arm::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: linear-gradient(160deg, #dce6f0, #b8c8d8);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.ab-arm-l { border-radius: 9px 4px 9px 9px; }
.ab-arm-r {
  border-radius: 4px 9px 9px 9px;
  transform-origin: top center;
}
/* Slow hand up animation on right arm */
.ab-arm-wave {
  animation: slow-hand-up 4s ease-in-out infinite;
}
@keyframes slow-hand-up {
  0%,100% { transform: rotate(-45deg); }
  50% { transform: rotate(-35deg); }
}
/* Legs */
.ab-legs {
  display: flex;
  gap: 8px;
  margin-top: 2px;
}
.ab-leg {
  width: 26px; height: 48px;
  background: linear-gradient(160deg, #dce6f0, #b8c8d8);
  border-radius: 7px 7px 12px 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
/* Platform */
.about-robot-platform {
  width: 140px; height: 14px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.35) 0%, transparent 70%);
  border-radius: 50%;
  margin-top: 6px;
  animation: platform-pulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════ PRICING ═══ */
.pricing-section { background: var(--dark2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34,197,94,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.pricing-card:hover::before { transform: scaleX(1); }
.pricing-card.featured-price {
  border-color: rgba(34,197,94,0.35);
  background: rgba(34,197,94,0.05);
}
.pricing-card.featured-price::before { transform: scaleX(1); }
.pricing-popular {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--grad);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: 0.03em;
}
.pricing-icon {
  width: 60px; height: 60px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue);
  transition: var(--transition);
  margin-bottom: 4px;
}
.pricing-card:hover .pricing-icon,
.pricing-card.featured-price .pricing-icon {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.3);
  color: var(--green);
  transform: scale(1.08);
}
.pricing-card h3 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  transition: var(--transition);
}
.pricing-card.featured-price h3,
.pricing-card:hover h3 { color: var(--green); }
.pricing-card p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
  flex: 1;
}
.pricing-amount {
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.price-value {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.price-period {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid rgba(34,197,94,0.4);
  color: var(--green);
  padding: 8px 22px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
  margin-top: 4px;
  width: 100%;
  text-decoration: none;
}
.pricing-cta:hover {
  background: rgba(34,197,94,0.12);
  border-color: var(--green);
  transform: none;
}
/* Wide SaaS card */
.pricing-wide {
  grid-column: 1 / -1;
  padding: 28px 36px;
}
.pricing-wide-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
}
.pricing-wide-icon {
  width: 70px; height: 70px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: var(--transition);
}
.pricing-wide:hover .pricing-wide-icon {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.3);
  color: var(--green);
}
.pricing-wide-text { flex: 1; text-align: left; }
.pricing-wide-text h3 {
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
  transition: var(--transition);
}
.pricing-wide:hover .pricing-wide-text h3 { color: var(--green); }
.pricing-wide-text p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }
.pricing-wide-amount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.pricing-wide-amount .price-value { font-size: 1.8rem; }
.pricing-wide-amount .pricing-cta { white-space: nowrap; }
/* Trust bar */
.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.trust-item i { color: var(--green); font-size: 1rem; }
/* Tagline */
.pricing-tagline {
  text-align: center;
  padding: 32px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.pricing-tagline p {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-domain {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad);
  color: white;
  padding: 10px 28px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(34,197,94,0.25);
}
.pricing-domain:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(34,197,94,0.4); }

/* Pricing responsive */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-wide { grid-column: 1 / -1; }
  .pricing-wide-inner { flex-wrap: wrap; }
  .pricing-wide-amount { align-items: flex-start; width: 100%; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-trust { gap: 20px; }
}
