/* ══════════════════════════════════════════════════════════════
   THEME VARIABLES — Change these to restyle the entire site
   ══════════════════════════════════════════════════════════════ */
:root {
  /* ── Core colors ── */
  --color-bg:             #ffffff;          /* Page background */
  --color-text:           #0a0a1a;          /* Primary text */
  --color-text-muted:     rgba(0,0,0,0.65); /* Secondary / body text */
  --color-text-subtle:    rgba(0,0,0,0.45); /* Labels, captions */
  --color-heading:        #080818;          /* All headings */

  /* ── Accent / Brand colors ── */
  --color-primary:        #6c3ce9;          /* Primary accent (purple) */
  --color-secondary:      #3b82f6;          /* Secondary accent (blue) */
  --color-tertiary:       #00d4aa;          /* Tertiary accent (teal) */
  --color-accent-warm:    #f45d2e;          /* Warm accent (orange) */

  /* ── Gradients ── */
  --gradient-primary:     linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  --gradient-hero-text:   linear-gradient(135deg, var(--color-tertiary) 0%, var(--color-secondary) 50%, #a78bfa 100%);
  --gradient-glow:        linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-tertiary));
  --gradient-label:       linear-gradient(135deg, var(--color-tertiary), var(--color-secondary));

  /* ── Surfaces ── */
  --surface-card:         rgba(255,255,255,0.8);  /* Glass card background */
  --surface-card-alt:     #f8f8fc;                /* Solid card background */
  --surface-dark:         linear-gradient(135deg, #1a1a2e 0%, #2d2b55 100%); /* Dark panels */
  --surface-tag:          #f4f2ff;                /* Tag / chip background */

  /* ── Borders ── */
  --border-light:         rgba(0,0,0,0.06);
  --border-medium:        rgba(0,0,0,0.07);
  --border-accent:        rgba(108,60,233,0.2);
  --border-accent-hover:  rgba(108,60,233,0.3);

  /* ── Shadows ── */
  --shadow-card-hover:    0 20px 60px rgba(0,0,0,0.08);
  --shadow-btn-hover:     0 12px 40px rgba(108,60,233,0.5);
  --shadow-nav-cta:       0 8px 30px rgba(108,60,233,0.4);

  /* ── Nav ── */
  --nav-bg:               rgba(255,255,255,0.7);
  --nav-bg-scrolled:      rgba(255,255,255,0.95);
  --nav-link-color:       rgba(0,0,0,0.6);
  --nav-link-hover:       #1a1a2e;
  --nav-mobile-bg:        rgba(255,255,255,0.97);

  /* ── Glow orbs ── */
  --orb-opacity:          0.07;
  --orb-1-color:          #6c3ce9;
  --orb-2-color:          #00d4aa;
  --orb-3-color:          #3b82f6;

  /* ── Particles (used by JS via CSS custom props) ──
     mode: "antigravity" = float up (for white/light themes)
           "snowflake"   = fall down (for dark themes)
     color: RGB values — dark blue on light bg, white on dark bg */
  --particle-mode:        antigravity;      /* antigravity | snowflake */
  --particle-color:       0, 0, 102 ;      /* (light theme 20, 40, 120) Dark blue for light theme; use 255,255,255 for dark */
  --particle-line-opacity: 0.05;
  --particle-count:       500;
  --particle-max-size:    4;
  --particle-speed:       0.35;

  /* ── Typography ── */
  --font-body:            'Inter', system-ui, sans-serif;
  --font-heading:         'Space Grotesk', 'Inter', sans-serif;

  /* ── Spacing ── */
  --section-padding:      120px 5%;
  --section-padding-sm:   80px 5%;
  --nav-height:           72px;

  /* ── Border radius ── */
  --radius-sm:            10px;
  --radius-md:            16px;
  --radius-lg:            20px;
  --radius-xl:            24px;
  --radius-full:          100px;

  /* ── CTA section ── */
  --cta-heading-color:    var(--color-heading);
  --cta-text-color:       var(--color-text-muted);

  /* ── Footer ── */
  --footer-bg:            #f8f8fc;
  --footer-text:          rgba(0,0,0,0.4);
  --footer-link:          rgba(0,0,0,0.4);
  --footer-link-hover:    var(--color-heading);
  --footer-border:        rgba(0,0,0,0.06);
}


/* ══════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--color-heading);
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }


/* ══════════════════════════════════════
   CANVAS / PARTICLE BACKGROUND
   ══════════════════════════════════════ */
#particle-canvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}


/* ══════════════════════════════════════
   GLOW ORBS (ambient floating lights)
   ══════════════════════════════════════ */
.glow-orb {
  position: fixed; border-radius: 50%;
  filter: blur(100px); opacity: var(--orb-opacity);
  pointer-events: none; z-index: 0;
  animation: orbFloat 20s ease-in-out infinite alternate;
}
.glow-orb.o1 { width: 600px; height: 600px; background: var(--orb-1-color); top: -200px; left: -100px; animation-delay: 0s; }
.glow-orb.o2 { width: 500px; height: 500px; background: var(--orb-2-color); bottom: -150px; right: -100px; animation-delay: -7s; }
.glow-orb.o3 { width: 400px; height: 400px; background: var(--orb-3-color); top: 40%; left: 50%; animation-delay: -14s; }
@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.05); }
  66%  { transform: translate(-20px, 40px) scale(0.95); }
  100% { transform: translate(30px, 20px) scale(1.02); }
}


/* ══════════════════════════════════════
   SCROLL-REVEAL ANIMATION
   ══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }


/* ══════════════════════════════════════
   NAV
   ══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: var(--nav-height);
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.3s;
}
nav.scrolled { background: var(--nav-bg-scrolled); }

.logo {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 1.2rem; color: var(--color-heading);
  letter-spacing: -0.02em; display: flex; align-items: center; gap: 0.4rem;
}
.logo-accent {
  background: var(--gradient-label);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  color: var(--nav-link-color); font-size: 0.88rem; font-weight: 500;
  transition: color 0.25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gradient-label);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.nav-links a:hover { color: var(--nav-link-hover); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gradient-primary);
  color: #fff; padding: 10px 24px; border-radius: var(--radius-full);
  font-size: 0.85rem; font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none; cursor: pointer;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-nav-cta); }

/* Mobile menu toggle */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--color-heading); margin: 5px 0; transition: 0.3s; }


/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 160px 5% 100px;
  position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(108, 60, 233, 0.08);
  border: 1px solid var(--border-accent);
  color: var(--color-primary); font-size: 0.78rem; font-weight: 600;
  padding: 8px 18px; border-radius: var(--radius-full); margin-bottom: 2.5rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  animation: badgePulse 3s ease-in-out infinite;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-tertiary); box-shadow: 0 0 12px var(--color-tertiary);
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(108, 60, 233, 0.15); }
  50%      { box-shadow: 0 0 0 12px rgba(108, 60, 233, 0); }
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem); font-weight: 800;
  letter-spacing: -0.04em; margin-bottom: 1.5rem; max-width: 900px;
}
.hero h1 .gradient-text,
.gradient-text {
  background: var(--gradient-hero-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem); color: var(--color-text-muted);
  max-width: 600px; margin-bottom: 3rem; font-weight: 300; line-height: 1.8;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.btn-glow {
  background: var(--gradient-primary);
  color: #fff; padding: 16px 40px; border-radius: var(--radius-full);
  font-size: 0.95rem; font-weight: 600;
  transition: transform 0.25s, box-shadow 0.25s;
  font-family: var(--font-body); border: none; cursor: pointer;
  position: relative; overflow: hidden;
}
.btn-glow::before {
  content: ''; position: absolute; inset: -2px;
  background: var(--gradient-glow);
  border-radius: var(--radius-full); z-index: -1; opacity: 0;
  transition: opacity 0.3s; filter: blur(12px);
}
.btn-glow:hover { transform: translateY(-2px); box-shadow: var(--shadow-btn-hover); }
.btn-glow:hover::before { opacity: 1; }

.btn-ghost {
  background: transparent; color: var(--color-heading);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 16px 40px; border-radius: var(--radius-full);
  font-size: 0.95rem; font-weight: 500;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  font-family: var(--font-body);
}
.btn-ghost:hover {
  border-color: rgba(0, 0, 0, 0.3); color: var(--color-heading);
  background: rgba(0, 0, 0, 0.03);
}

/* Hero stats */
.hero-stats {
  display: flex; gap: 4rem; margin-top: 6rem;
  padding-top: 3rem; border-top: 1px solid var(--border-light);
}
.hero-stat { text-align: center; }
.stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem; font-weight: 700;
  background: linear-gradient(135deg, var(--color-heading), #3b3b5c);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.75rem; color: var(--color-text-subtle);
  margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em;
}

/* Floating elements in hero */
.float-element {
  position: absolute; border-radius: var(--radius-md);
  background: rgba(108, 60, 233, 0.04);
  border: 1px solid rgba(108, 60, 233, 0.08);
  backdrop-filter: blur(4px); z-index: 0;
  animation: float 6s ease-in-out infinite;
}
.float-element.f1 { width: 80px; height: 80px; top: 20%; left: 8%; animation-delay: 0s; animation-duration: 7s; }
.float-element.f2 { width: 60px; height: 60px; top: 30%; right: 10%; animation-delay: -2s; animation-duration: 5s; border-radius: 50%; }
.float-element.f3 { width: 100px; height: 100px; bottom: 25%; left: 12%; animation-delay: -4s; animation-duration: 8s; }
.float-element.f4 { width: 50px; height: 50px; bottom: 20%; right: 15%; animation-delay: -1s; animation-duration: 6s; border-radius: 50%; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-20px) rotate(5deg); }
}


/* ══════════════════════════════════════
   SECTIONS SHARED
   ══════════════════════════════════════ */
section { padding: var(--section-padding); position: relative; z-index: 1; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 1.2rem;
  background: var(--gradient-label);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700;
  letter-spacing: -0.03em; color: var(--color-heading); margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--color-text-muted);
  max-width: 580px; line-height: 1.8; font-weight: 300;
}
.section-head { margin-bottom: 4rem; }

/* Glass card base */
.glass {
  background: var(--surface-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s, box-shadow 0.3s;
}
.glass:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}


/* ══════════════════════════════════════
   ABOUT
   ══════════════════════════════════════ */
.about { background: transparent; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-text p { color: var(--color-text-muted); margin-bottom: 1.2rem; font-weight: 300; font-size: 1.02rem; }

.about-values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.5rem;
}
.value-card {
  padding: 1.5rem; border-radius: var(--radius-md);
  background: var(--surface-card-alt);
  border: 1px solid var(--border-light);
  transition: border-color 0.3s, transform 0.3s;
}
.value-card:hover { border-color: var(--border-accent-hover); transform: translateY(-2px); }
.value-card h4 {
  font-family: var(--font-heading); font-size: 0.95rem;
  font-weight: 700; margin-bottom: 0.5rem; color: var(--color-heading);
}
.value-card p { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.6; }

.about-visual {
  background: var(--surface-dark);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-xl); padding: 3rem; position: relative; overflow: hidden;
  min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end;
}
.about-visual::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(108, 60, 233, 0.3) 0%, transparent 70%);
}
.about-visual .big-text {
  font-family: var(--font-heading);
  font-size: 5rem; font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  position: absolute; top: 1.5rem; left: 2rem; line-height: 1;
}
.av-items { display: flex; flex-direction: column; gap: 0.75rem; position: relative; z-index: 1; }
.av-item {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px; padding: 1rem 1.25rem;
  transition: background 0.3s;
}
.av-item:hover { background: rgba(255, 255, 255, 0.07); }
.av-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.av-item span { font-size: 0.88rem; color: rgba(255, 255, 255, 0.65); font-weight: 400; }


/* ══════════════════════════════════════
   SERVICES
   ══════════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.service-card {
  padding: 2rem 2rem 2.5rem; position: relative; overflow: hidden;
}
.service-card.featured {
  grid-column: span 2;
  background: var(--surface-dark);
  border-color: transparent;
}
.service-card.featured::after {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(108, 60, 233, 0.2) 0%, transparent 65%);
  pointer-events: none;
}
.service-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem;
  background: rgba(108, 60, 233, 0.06);
}
.service-title {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 700; color: var(--color-heading);
  margin-bottom: 0.75rem; line-height: 1.3;
}
.service-card.featured .service-title { font-size: 1.4rem; color: #fff; }
.service-card.featured .service-desc { color: rgba(255, 255, 255, 0.6); }
.service-card.featured .feature-tag { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.7); }
.service-card.featured .service-icon { background: rgba(255, 255, 255, 0.1); }

.service-desc {
  font-size: 0.9rem; color: var(--color-text-muted);
  line-height: 1.7; margin-bottom: 1.5rem; font-weight: 300;
}
.feature-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.feature-tag {
  font-size: 0.73rem; font-weight: 500;
  background: var(--surface-tag);
  border: 1px solid rgba(108, 60, 233, 0.12);
  color: var(--color-primary);
  padding: 5px 14px; border-radius: var(--radius-full);
  transition: border-color 0.2s;
}
.feature-tag:hover { border-color: var(--border-accent-hover); }


/* ══════════════════════════════════════
   DATA PLATFORM
   ══════════════════════════════════════ */
.platform-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 5rem; align-items: start;
}
.platform-left p { color: var(--color-text-muted); font-size: 0.97rem; line-height: 1.75; font-weight: 300; margin-bottom: 1.2rem; }

.tech-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.tech-tag {
  font-size: 0.78rem; font-weight: 500;
  background: rgba(108, 60, 233, 0.08);
  color: var(--color-primary);
  border: 1px solid var(--border-accent);
  padding: 6px 16px; border-radius: var(--radius-full);
  transition: background 0.2s;
}
.tech-tag:hover { background: rgba(108, 60, 233, 0.15); }

.platform-tiers { display: flex; flex-direction: column; gap: 1rem; }
.tier-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem; border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  background: var(--surface-card-alt);
  transition: border-color 0.3s, background 0.3s;
}
.tier-item:hover { border-color: var(--border-accent-hover); background: rgba(108, 60, 233, 0.03); }
.tier-num {
  font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 1px solid var(--border-accent-hover);
}
.tier-content h4 {
  font-family: var(--font-heading); font-size: 1rem;
  font-weight: 700; color: var(--color-heading); margin-bottom: 0.4rem;
}
.tier-content p { font-size: 0.87rem; color: var(--color-text-muted); line-height: 1.6; font-weight: 300; }


/* ══════════════════════════════════════
   INDUSTRIES
   ══════════════════════════════════════ */
.uc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.uc-card {
  padding: 2rem 1.5rem;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s, box-shadow 0.3s;
}
.uc-card:hover {
  border-color: var(--border-accent-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.uc-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.uc-card h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--color-heading); }
.uc-card p { font-size: 0.84rem; color: var(--color-text-muted); line-height: 1.6; font-weight: 300; }


/* ══════════════════════════════════════
   CTA
   ══════════════════════════════════════ */
.cta-section {
  text-align: center; padding: 140px 5%;
  position: relative; overflow: hidden; z-index: 1;
}
.cta-section::before {
  content: ''; position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(108, 60, 233, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800;
  color: var(--cta-heading-color); margin-bottom: 1.25rem; letter-spacing: -0.03em;
  position: relative;
}
.cta-section p {
  color: var(--cta-text-color); font-size: 1.05rem; font-weight: 300;
  max-width: 520px; margin: 0 auto 3rem; position: relative; line-height: 1.8;
}
.cta-btns { display: flex; justify-content: center; gap: 1rem; position: relative; }


/* ══════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ══════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: whatsappPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50%      { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.12); }
}


/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-border);
  color: var(--footer-text);
  padding: 3rem 5% 2rem;
  font-size: 0.84rem;
  position: relative; z-index: 1;
}
.footer-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--footer-border);
}
.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-brand .logo { font-size: 1rem; }
.footer-tagline { font-size: 0.82rem; color: var(--footer-text); font-weight: 300; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  color: var(--footer-link); transition: color 0.2s; font-weight: 500;
}
.footer-links a:hover { color: var(--footer-link-hover); }
.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contact-item {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--footer-text); font-size: 0.84rem;
  transition: color 0.2s; text-decoration: none;
}
a.footer-contact-item:hover { color: var(--footer-link-hover); }
.footer-contact-item svg { flex-shrink: 0; opacity: 0.6; }
.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
  color: var(--footer-text); font-size: 0.8rem;
}


/* ══════════════════════════════════════
   HORIZONTAL SCROLL LINE
   ══════════════════════════════════════ */
.scroll-line {
  height: 1px; position: relative; overflow: hidden;
  margin: 0 5%; z-index: 1;
}
.scroll-line::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108, 60, 233, 0.15), rgba(0, 212, 170, 0.15), transparent);
}


/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card.featured { grid-column: span 1; }
  .platform-grid, .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .uc-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  nav.menu-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: var(--nav-mobile-bg);
    backdrop-filter: blur(20px);
    padding: 2rem 5%; gap: 1.5rem;
    border-bottom: 1px solid var(--border-light);
  }
  nav.menu-open .nav-cta {
    display: inline-block;
    position: absolute; top: calc(var(--nav-height) + 200px); left: 5%;
  }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .uc-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1.5rem; align-items: center; }
  .about-values { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.5rem; }
  section { padding: var(--section-padding-sm); }
  .float-element { display: none; }
  .footer-top { flex-direction: column; gap: 1.5rem; }
  .footer-links { flex-direction: column; gap: 0.75rem; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}
