/**
 * LAST STOP SOLUTIONS — COMPLETE COMPONENT STYLES
 * Navbar, Hero, Cards, Forms, Footer, etc.
 * Appended to / extends style.css
 * @version 1.0.0
 */

/* =========================================
   CSS CUSTOM PROPERTIES
   ========================================= */
:root {
  /* Brand Colors */
  --color-primary:        #0F172A;
  --color-secondary:      #2563EB;
  --color-accent:         #14B8A6;
  --color-success:        #10B981;
  --color-warning:        #F59E0B;
  --color-danger:         #EF4444;
  --color-background:     #F8FAFC;
  --color-text:           #1E293B;
  --color-text-muted:     #64748B;
  --color-text-light:     #94A3B8;
  --color-border:         #E2E8F0;
  --color-surface:        #FFFFFF;

  /* Gradients */
  --gradient-brand:       linear-gradient(135deg, #2563EB, #7C3AED);
  --gradient-hero:        linear-gradient(135deg, #0F172A 0%, #1E3A6E 50%, #0F172A 100%);
  --gradient-accent:      linear-gradient(135deg, #14B8A6, #10B981);
  --gradient-warm:        linear-gradient(135deg, #F59E0B, #EF4444);

  /* Typography */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --navbar-height: 72px;
  --section-padding: 5rem;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-xl:    0 24px 80px rgba(0,0,0,0.16);
  --shadow-brand: 0 8px 32px rgba(37,99,235,0.25);

  /* Radius */
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --radius-full:  999px;

  /* Transitions */
  --transition-fast:   0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow:   0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Dark Mode */
body.dark-mode {
  --color-primary:     #E2E8F0;
  --color-secondary:   #60A5FA;
  --color-text:        #E2E8F0;
  --color-text-muted:  #94A3B8;
  --color-background:  #0F172A;
  --color-surface:     #1E293B;
  --color-border:      #2D3748;
  background-color: var(--color-background);
  color: var(--color-text);
}

/* =========================================
   BASE STYLES
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-secondary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-accent); }

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Selection */
::selection { background: rgba(37,99,235,0.2); color: var(--color-primary); }

/* =========================================
   SCROLL PROGRESS
   ========================================= */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gradient-brand);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* =========================================
   LOADING SCREEN
   ========================================= */
#loading-screen {
  position: fixed;
  inset: 0;
  background: #0F172A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  /* Auto-hide: fade out after 1.8s, fully gone at 2.4s */
  animation: loaderAutoHide 0.5s ease 1.8s forwards;
}
@keyframes loaderAutoHide {
  0%   { opacity: 1; visibility: visible; pointer-events: all; }
  99%  { opacity: 0; visibility: visible; pointer-events: none; }
  100% { opacity: 0; visibility: hidden;  pointer-events: none; display: none; }
}
#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none !important;
}
.loading-logo {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 1.5s ease-in-out infinite;
}
.loading-bar-wrapper {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  overflow: hidden;
}
.loading-bar {
  height: 100%;
  background: var(--gradient-brand);
  border-radius: 999px;
  animation: loadProgress 2s ease-in-out infinite;
}
@keyframes loadProgress { 0%{width:0%} 80%{width:100%} 100%{width:100%} }
.loading-dots { display: flex; gap: 8px; }
.loading-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  animation: dotBounce 1.2s ease-in-out infinite;
}
.loading-dot:nth-child(2){animation-delay:.2s}
.loading-dot:nth-child(3){animation-delay:.4s}
@keyframes dotBounce { 0%,80%,100%{transform:scale(0.6);opacity:0.3} 40%{transform:scale(1);opacity:1;background:#2563EB} }

/* =========================================
   NAVBAR
   ========================================= */
.navbar-lss {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--navbar-height);
  z-index: 1000;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, height 0.3s ease;
}
.navbar-lss.transparent { background: transparent; }
.navbar-lss.scrolled {
  background: rgba(15,23,42,0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
  height: 64px;
}
.navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img { width: 40px; height: 40px; object-fit: contain; }
.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.logo-subtitle {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.navbar-nav-lss {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
@media (max-width: 991px) { .navbar-nav-lss { display: none; } }
.nav-item-lss { position: relative; }
.nav-link-lss {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link-lss:hover,
.nav-link-lss.active { color: #fff; background: rgba(255,255,255,0.1); }
.nav-link-lss.active { color: #60A5FA; }
.dropdown-arrow { font-size: 10px; transition: transform 0.3s; }
.nav-item-lss:hover .dropdown-arrow { transform: rotate(180deg); }

/* Mega Dropdown */
.dropdown-mega, .dropdown-simple {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(15,23,42,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1001;
}
.nav-item-lss:hover .dropdown-mega,
.nav-item-lss:hover .dropdown-simple {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-mega { width: 720px; padding: 24px; }
.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.dropdown-item-lss {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition-fast);
}
.dropdown-item-lss:hover { background: rgba(255,255,255,0.06); }
.dropdown-item-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.dropdown-item-content .title { font-size: 13px; font-weight: 600; color: #fff; line-height: 1.3; }
.dropdown-item-content .desc { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* Simple Dropdown */
.dropdown-simple { width: 240px; padding: 8px; left: 0; transform: translateX(0) translateY(-8px); }
.nav-item-lss:hover .dropdown-simple { transform: translateX(0) translateY(0); }
.dropdown-simple-item {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.dropdown-simple-item:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* Navbar Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.dark-mode-toggle {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition-fast);
}
.dark-mode-toggle:hover { background: rgba(255,255,255,0.15); }

/* Hamburger */
.hamburger {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
  transition: background var(--transition-fast);
}
.hamburger:hover { background: rgba(255,255,255,0.15); }
.hamburger span {
  display: block;
  width: 18px; height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 999px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--navbar-height);
  right: -100%;
  width: min(340px, 90vw);
  height: calc(100vh - var(--navbar-height));
  background: rgba(15,23,42,0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255,255,255,0.08);
  overflow-y: auto;
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { right: 0; }
.mobile-nav-inner { padding: 1.5rem; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
  cursor: pointer; border: none; background: transparent; width: 100%; text-align: left;
}
.mobile-nav-link:hover { background: rgba(255,255,255,0.08); color: #fff; }
.mobile-nav-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 1rem;
}
.mobile-nav-submenu.open { max-height: 600px; }
.mobile-nav-sublink {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.mobile-nav-sublink:hover { color: #fff; background: rgba(255,255,255,0.06); }
.mobile-nav-actions {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 15px 32px; font-size: 15px; }

.btn-gradient {
  background: var(--gradient-brand);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.45);
  color: #fff !important;
}
.btn-gradient:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn-secondary-lss {
  background: rgba(37,99,235,0.1);
  color: var(--color-secondary) !important;
  border: 1px solid rgba(37,99,235,0.2);
}
.btn-secondary-lss:hover {
  background: rgba(37,99,235,0.18);
  transform: translateY(-2px);
}

.btn-primary-lss {
  background: var(--color-secondary);
  color: #fff !important;
}
.btn-primary-lss:hover { background: #1D4ED8; transform: translateY(-2px); }

.btn-dark {
  background: var(--color-primary);
  color: #fff !important;
}
.btn-dark:hover { background: #1E293B; transform: translateY(-2px); color: #fff !important; }

.btn-accent {
  background: var(--color-accent);
  color: #fff !important;
}
.btn-accent:hover { background: #0D9488; transform: translateY(-2px); }

/* =========================================
   BADGES
   ========================================= */
.badge-lss {
  display: inline-flex; align-items: center;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid;
  line-height: 1;
  white-space: nowrap;
}
.badge-blue { background: rgba(37,99,235,0.08); color: #2563EB; border-color: rgba(37,99,235,0.2); }
.badge-purple { background: rgba(124,58,237,0.08); color: #7C3AED; border-color: rgba(124,58,237,0.2); }
.badge-teal { background: rgba(20,184,166,0.08); color: #14B8A6; border-color: rgba(20,184,166,0.2); }
.badge-green { background: rgba(16,185,129,0.08); color: #10B981; border-color: rgba(16,185,129,0.2); }
.badge-warm { background: rgba(245,158,11,0.08); color: #F59E0B; border-color: rgba(245,158,11,0.2); }

/* =========================================
   SECTION LABELS & HEADINGS
   ========================================= */
.section-label {
  display: inline-flex; align-items: center;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(37,99,235,0.06);
  color: var(--color-secondary);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-hero);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(37,99,235,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(124,58,237,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(20,184,166,0.1) 0%, transparent 40%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat 15s linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}
.floating-icons {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.floating-icon {
  position: absolute;
  font-size: 24px;
  opacity: 0.15;
  animation: floatUp 6s ease-in-out infinite;
}
.fi-1 { top: 15%; right: 8%; animation-delay: 0s; }
.fi-2 { top: 30%; right: 15%; animation-delay: 1s; }
.fi-3 { bottom: 30%; right: 5%; animation-delay: 2s; }
.fi-4 { top: 60%; right: 25%; animation-delay: 0.5s; }
.fi-5 { bottom: 20%; right: 18%; animation-delay: 1.5s; }
.fi-6 { top: 45%; right: 10%; animation-delay: 3s; }
@keyframes floatUp { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }
@keyframes rotateSlow { from{transform:translate(-50%,-50%) rotate(0deg)} to{transform:translate(-50%,-50%) rotate(360deg)} }
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10B981;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(16,185,129,0.5)} 50%{box-shadow:0 0 0 8px rgba(16,185,129,0)} }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-title .highlight {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 540px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500;
}
.hero-trust-item i { color: #10B981; font-size: 14px; }
.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); text-decoration: none;
  animation: floatUp 2s ease-in-out infinite;
}
.scroll-indicator-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
.typed-cursor {
  display: inline-block; width: 2px; height: 1em;
  background: var(--color-secondary);
  margin-left: 2px; vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* =========================================
   STATS SECTION
   ========================================= */
.stats-section {
  background: var(--color-primary);
  padding: 0;
}
.stat-card {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition-normal);
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: rgba(255,255,255,0.03); }
.stat-icon { font-size: 2rem; margin-bottom: 12px; }
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
  padding: var(--section-padding) 0;
  background: var(--color-background);
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,99,235,0.2);
}
.service-card:hover::before { opacity: 1; }
.service-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s, transform 0.3s;
}
.service-card:hover .service-icon-wrap {
  background: rgba(37,99,235,0.12);
  transform: scale(1.05);
}
.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.service-tag {
  padding: 3px 10px;
  background: rgba(37,99,235,0.05);
  color: var(--color-secondary);
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: var(--radius-full);
  font-size: 11px; font-weight: 600;
}
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--color-secondary);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.service-card-link:hover { gap: 10px; color: var(--color-secondary); }

/* =========================================
   WHY US SECTION
   ========================================= */
.why-us-section { padding: var(--section-padding) 0; background: #fff; }
.usp-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.usp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.usp-icon { font-size: 2rem; margin-bottom: 16px; }
.usp-title { font-size: 1.05rem; font-weight: 700; color: var(--color-primary); margin-bottom: 10px; }
.usp-desc { font-size: 13px; color: var(--color-text-muted); line-height: 1.7; }
.highlight-box {
  background: rgba(37,99,235,0.04);
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.3s;
}
.highlight-box:hover { border-color: rgba(37,99,235,0.25); }

/* =========================================
   INDUSTRIES SECTION
   ========================================= */
.industries-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
  overflow: hidden;
}
.industry-scroll-wrapper {
  overflow-x: auto;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(37,99,235,0.2) transparent;
}
.industry-scroll-wrapper::-webkit-scrollbar { height: 4px; }
.industry-scroll-wrapper::-webkit-scrollbar-track { background: transparent; }
.industry-scroll-wrapper::-webkit-scrollbar-thumb { background: rgba(37,99,235,0.2); border-radius: 999px; }
.industry-cards-row {
  display: flex;
  gap: 16px;
  padding: 1rem 0.5rem 1.5rem;
  width: max-content;
}
.industry-card {
  width: 220px;
  flex-shrink: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex; flex-direction: column;
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37,99,235,0.2);
}
.industry-icon { font-size: 2.5rem; margin-bottom: 12px; }
.industry-name { font-weight: 700; font-size: 1rem; color: var(--color-primary); margin-bottom: 8px; }
.industry-desc { font-size: 12px; color: var(--color-text-muted); line-height: 1.6; flex: 1; }

/* =========================================
   PORTFOLIO SECTION
   ========================================= */
.portfolio-section { padding: var(--section-padding) 0; background: #fff; }
.portfolio-filter-wrap { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover { border-color: var(--color-secondary); color: var(--color-secondary); }
.filter-btn.active {
  background: var(--gradient-brand);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
@media (max-width: 768px) { .portfolio-grid { grid-template-columns: 1fr; } }
.portfolio-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-img-wrap { position: relative; height: 200px; overflow: hidden; }
.portfolio-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #F8FAFC, #EFF6FF);
}
.portfolio-category-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gradient-brand);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: var(--radius-full);
}
.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(15,23,42,0.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-body { padding: 1.5rem; }
.portfolio-client { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-secondary); margin-bottom: 8px; }
.portfolio-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--color-primary); margin-bottom: 10px; }
.portfolio-desc { font-size: 13px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 16px; }
.portfolio-tech-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tech-tag { padding: 3px 8px; background: var(--color-background); border: 1px solid var(--color-border); border-radius: var(--radius-sm); font-size: 11px; font-weight: 600; color: var(--color-text-muted); }

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, #0F172A, #1E3A6E, #0F172A);
  overflow: hidden;
}
.testimonial-slider-wrapper { overflow: hidden; border-radius: var(--radius-xl); }
.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-slide { flex: 0 0 100%; padding: 0 1rem; }
.testimonial-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 3rem;
  position: relative;
  max-width: 900px; margin: 0 auto;
}
.testimonial-quote {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 5rem; line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  opacity: 0.3;
}
.testimonial-stars { color: #F59E0B; font-size: 1.2rem; margin-bottom: 1rem; }
.testimonial-text { font-size: 1.1rem; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: #fff; font-size: 1rem; }
.testimonial-position { font-size: 13px; color: rgba(255,255,255,0.5); }
.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 2rem; }
.testimonial-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, transform 0.25s;
}
.testimonial-btn:hover { background: rgba(255,255,255,0.15); transform: scale(1.05); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: none; cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.testimonial-dot.active { background: var(--color-secondary); width: 24px; border-radius: 999px; }

/* =========================================
   LEAD / CTA SECTION
   ========================================= */
.lead-section { padding: var(--section-padding) 0; background: linear-gradient(180deg, #F8FAFC, #EFF6FF); }
.lead-form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.feature-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.feature-list li {
  padding: 10px 14px;
  background: rgba(37,99,235,0.04);
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--color-text);
  padding-left: 36px;
  position: relative;
}
.feature-list li::before {
  content: '✅';
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  font-size: 14px;
}

/* =========================================
   FORMS
   ========================================= */
.form-group-lss { margin-bottom: 0; }
.form-label-lss { display: block; font-size: 13px; font-weight: 600; color: var(--color-text); margin-bottom: 6px; }
.form-control-lss {
  display: block; width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
}
.form-control-lss:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-control-lss.error {
  border-color: var(--color-danger);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.form-control-lss.success-field { border-color: var(--color-success); }
select.form-control-lss {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2364748B' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 36px;
  cursor: pointer;
}
.form-error-text {
  display: none;
  font-size: 12px; color: var(--color-danger);
  margin-top: 4px;
}

/* =========================================
   PARTNERS SECTION
   ========================================= */
.partners-section { padding: 3rem 0; background: #fff; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); overflow: hidden; }
.partners-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-light); text-align: center; margin-bottom: 24px; }
.partners-strip-wrapper { overflow: hidden; }
.partners-strip {
  display: flex; gap: 40px;
  animation: stripScroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.partner-logo-text {
  font-size: 14px; font-weight: 600;
  color: var(--color-text-light);
  padding: 8px 20px;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: color 0.25s, border-color 0.25s;
}
.partner-logo-text:hover { color: var(--color-secondary); border-color: var(--color-secondary); }
@keyframes stripScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* =========================================
   BLOG SECTION
   ========================================= */
.blog-section { padding: var(--section-padding) 0; background: var(--color-background); }
.blog-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img-wrap { position: relative; height: 180px; overflow: hidden; }
.blog-category-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gradient-brand); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: var(--radius-full);
}
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--color-text-muted); margin-bottom: 12px; }
.blog-meta-divider { width: 3px; height: 3px; background: var(--color-border); border-radius: 50%; }
.blog-card-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--color-primary); line-height: 1.4; margin-bottom: 10px; }
.blog-card-excerpt { font-size: 13px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: auto; padding-bottom: 16px; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--color-secondary); text-decoration: none; transition: gap 0.2s; }
.blog-read-more:hover { gap: 10px; color: var(--color-secondary); }
.blog-featured-post {
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.3s;
}
.blog-featured-post:hover { box-shadow: var(--shadow-lg); }
.blog-category-tab {
  padding: 8px 20px; background: transparent; border: 1px solid var(--color-border); border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600; color: var(--color-text-muted); cursor: pointer; transition: all 0.25s;
}
.blog-category-tab:hover { border-color: var(--color-secondary); color: var(--color-secondary); }
.blog-category-tab.active { background: var(--gradient-brand); border-color: transparent; color: #fff; }

/* =========================================
   PROCESS SECTION
   ========================================= */
.process-section { padding: var(--section-padding) 0; background: linear-gradient(180deg, #F8FAFC, #EFF6FF); }
.process-step { position: relative; }
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px; left: calc(50% + 40px);
  width: calc(100% - 80px); height: 2px;
  background: linear-gradient(90deg, var(--color-secondary), rgba(37,99,235,0.1));
}
@media (max-width: 991px) { .process-step:not(:last-child)::after { display: none; } }
.process-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff; font-family: var(--font-heading); font-weight: 900; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}
.process-title { font-weight: 700; font-size: 1rem; color: var(--color-primary); margin-bottom: 8px; }
.process-desc { font-size: 12px; color: var(--color-text-muted); line-height: 1.6; }

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0F172A, #1a2e6e, #0F172A);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(37,99,235,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(124,58,237,0.2) 0%, transparent 50%);
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; color: #fff;
  letter-spacing: -0.02em; margin-bottom: 1rem;
}
.cta-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.6);
  max-width: 560px; margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* =========================================
   PAGE HERO (Inner Pages)
   ========================================= */
.page-hero {
  padding: calc(var(--navbar-height) + 4rem) 0 4rem;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(37,99,235,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(124,58,237,0.15) 0%, transparent 50%);
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; color: #fff;
  letter-spacing: -0.02em; margin-bottom: 1rem;
}
.page-hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.6);
  max-width: 640px; line-height: 1.7;
}
.breadcrumb-lss {
  font-size: 13px; color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  display: flex; align-items: center; flex-wrap: wrap;
}
.breadcrumb-lss a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.25s; }
.breadcrumb-lss a:hover { color: #fff; }
.breadcrumb-lss .separator { margin: 0 8px; }
.breadcrumb-lss .current { color: rgba(255,255,255,0.8); font-weight: 500; }

/* =========================================
   FOOTER
   ========================================= */
.footer-lss {
  background: linear-gradient(180deg, #0F172A 0%, #0a1122 100%);
  padding: 5rem 0 0;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 991px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-col { }
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; margin-bottom: 20px;
}
.footer-logo-text {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 1.1rem; color: #fff;
}
.footer-tagline {
  font-size: 14px; color: rgba(255,255,255,0.45);
  line-height: 1.7; margin-bottom: 24px; max-width: 340px;
}
.footer-socials { display: flex; gap: 8px; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.footer-social-link:hover {
  background: var(--color-secondary); border-color: var(--color-secondary);
  color: #fff; transform: translateY(-3px);
}
.footer-col-title {
  font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  color: #fff; text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-link {
  font-size: 13px; color: rgba(255,255,255,0.45);
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  transition: color 0.25s, gap 0.25s; padding: 2px 0;
}
.footer-link:hover { color: rgba(255,255,255,0.85); gap: 10px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-contact-icon { font-size: 16px; color: var(--color-secondary); flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.25s; }
.footer-contact-item a:hover { color: rgba(255,255,255,0.8); }
.footer-newsletter-form { display: flex; gap: 8px; }
.footer-newsletter-input {
  flex: 1; padding: 10px 14px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm);
  color: #fff; font-size: 13px; font-family: var(--font-body); outline: none;
  transition: border-color 0.25s;
}
.footer-newsletter-input:focus { border-color: var(--color-secondary); }
.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.25); }
.footer-newsletter-btn {
  padding: 10px 16px; background: var(--gradient-brand);
  border: none; border-radius: var(--radius-sm);
  color: #fff; font-size: 13px; font-weight: 600; cursor: pointer;
  white-space: nowrap; transition: opacity 0.25s;
}
.footer-newsletter-btn:hover { opacity: 0.85; }
.footer-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copyright { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-link {
  font-size: 12px; color: rgba(255,255,255,0.3);
  text-decoration: none; transition: color 0.25s;
}
.footer-bottom-link:hover { color: rgba(255,255,255,0.6); }

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
#whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 26px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: whatsappPulse 3s ease-in-out infinite;
}
#whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
  color: #fff;
}
@keyframes whatsappPulse {
  0%,100%{box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.3)}
  50%{box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 12px rgba(37,211,102,0)}
}
.whatsapp-tooltip {
  position: absolute; right: 68px;
  background: var(--color-primary); color: #fff;
  padding: 6px 14px; border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--color-primary);
  border-right: none;
}
#whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* =========================================
   BACK TO TOP
   ========================================= */
#back-to-top {
  position: fixed; bottom: 96px; right: 28px; z-index: 900;
  width: 44px; height: 44px;
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: #fff; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(20px);
}
#back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#back-to-top:hover { background: var(--color-secondary); }

/* =========================================
   COOKIE BANNER
   ========================================= */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
  background: var(--color-primary);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-text { font-size: 13px; color: rgba(255,255,255,0.6); max-width: 700px; line-height: 1.6; }
.cookie-text a { color: var(--color-secondary); }
.cookie-actions { display: flex; gap: 10px; }
.cookie-btn-accept {
  padding: 8px 20px; background: var(--gradient-brand);
  border: none; border-radius: var(--radius-sm);
  color: #fff; font-size: 13px; font-weight: 600; cursor: pointer;
}
.cookie-btn-reject {
  padding: 8px 20px; background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.5); font-size: 13px; cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}
.cookie-btn-reject:hover { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }

/* =========================================
   EXIT POPUP
   ========================================= */
#exit-popup, [id$="-modal"] {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
#exit-popup.visible, [id$="-modal"].visible { opacity: 1; pointer-events: auto; }
.exit-popup-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
}
.exit-popup-modal {
  position: relative; z-index: 1;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 3rem;
  max-width: 500px; width: 90%;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9);
  transition: transform 0.3s;
  text-align: center;
}
#exit-popup.visible .exit-popup-modal,
[id$="-modal"].visible .exit-popup-modal { transform: scale(1); }
.exit-popup-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--color-background); border: none;
  color: var(--color-text-muted); font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
}
.exit-popup-close:hover { background: var(--color-border); }
.exit-popup-badge {
  display: inline-block; padding: 6px 16px;
  background: rgba(37,99,235,0.06); border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--radius-full); font-size: 13px; font-weight: 600;
  color: var(--color-secondary); margin-bottom: 16px;
}

/* =========================================
   TOAST NOTIFICATION
   ========================================= */
.toast-lss {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--color-primary); color: #fff;
  padding: 14px 24px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-xl);
  z-index: 10000;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: min(500px, 90vw);
  white-space: nowrap;
}
.toast-lss.visible { transform: translateX(-50%) translateY(0); }
.toast-lss.success { background: var(--color-success); }
.toast-lss.error { background: var(--color-danger); }
.toast-lss.info { background: var(--color-secondary); }

/* =========================================
   PRICING
   ========================================= */
.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1), var(--shadow-lg);
  transform: translateY(-8px);
}
.pricing-plan-badge {
  display: inline-flex; padding: 4px 14px;
  background: var(--gradient-brand); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  border-radius: var(--radius-full); margin-bottom: 16px;
}
.pricing-plan-name {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 1.5rem; color: var(--color-primary); margin-bottom: 10px;
}
.pricing-plan-desc {
  font-size: 13px; color: var(--color-text-muted);
  line-height: 1.7; margin-bottom: 24px;
}
.pricing-price { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--color-border); }
.pricing-price-amount { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: var(--color-primary); }
.pricing-price-suffix { font-size: 1rem; font-weight: 500; color: var(--color-text-muted); }
.pricing-price-note { font-size: 12px; color: var(--color-text-light); margin-top: 4px; }
.pricing-features { list-style: none; padding: 0; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--color-text); }
.pricing-feature-icon {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: var(--color-success); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 10px;
}
.pricing-toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 16px; }
.pricing-toggle-label { font-size: 14px; font-weight: 600; color: var(--color-text-muted); transition: color 0.25s; }
.pricing-toggle-label.active { color: var(--color-primary); }
.pricing-badge-save {
  display: inline-block; padding: 2px 8px;
  background: rgba(16,185,129,0.1); color: var(--color-success);
  border-radius: var(--radius-full); font-size: 11px; font-weight: 700;
}
.pricing-switch { position: relative; display: inline-block; width: 52px; height: 28px; }
.pricing-switch input { display: none; }
.pricing-switch-slider {
  position: absolute; inset: 0; background: var(--color-border);
  border-radius: 999px; cursor: pointer; transition: background 0.3s;
}
.pricing-switch-slider::before {
  content: '';
  position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}
.pricing-switch input:checked + .pricing-switch-slider { background: var(--gradient-brand); }
.pricing-switch input:checked + .pricing-switch-slider::before { transform: translateX(24px); }

/* =========================================
   FAQ ACCORDION
   ========================================= */
.faq-section { padding: var(--section-padding) 0; background: #fff; }
.faq-accordion { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item:hover { border-color: rgba(37,99,235,0.2); }
.faq-item.open { border-color: var(--color-secondary); box-shadow: 0 4px 20px rgba(37,99,235,0.08); }
.faq-question {
  padding: 20px 24px;
  font-size: 15px; font-weight: 600; color: var(--color-primary);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  user-select: none;
}
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(37,99,235,0.06); border: 1px solid rgba(37,99,235,0.12);
  color: var(--color-secondary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px;
  transition: background 0.25s, transform 0.3s;
}
.faq-item.open .faq-icon { background: var(--color-secondary); color: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 14px; color: var(--color-text-muted); line-height: 1.8; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-info-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-icon-wrap {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-muted); margin-bottom: 4px; }
.contact-info-value { font-size: 15px; font-weight: 700; color: var(--color-primary); }
.map-placeholder {
  background: linear-gradient(135deg, #EFF6FF, #F0FDF4);
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
}
.map-pin { font-size: 40px; animation: floatUp 2s ease-in-out infinite; }

/* =========================================
   CAREERS
   ========================================= */
.job-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.job-card:hover { border-color: rgba(37,99,235,0.2); box-shadow: var(--shadow-md); }
.job-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.job-tag {
  padding: 4px 12px; background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: var(--radius-full); font-size: 12px; font-weight: 600;
  color: var(--color-secondary);
}

/* =========================================
   TEAM CARDS
   ========================================= */
.team-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}
.team-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--color-primary); margin-bottom: 4px; }
.team-role { font-size: 13px; font-weight: 600; color: var(--color-secondary); margin-bottom: 12px; }
.team-socials { display: flex; justify-content: center; gap: 8px; }
.team-social-link {
  width: 32px; height: 32px; border-radius: var(--radius-sm);
  background: var(--color-background); border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.team-social-link:hover { background: var(--color-secondary); color: #fff; border-color: var(--color-secondary); }

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.94); }
.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* Stagger parent triggers children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-children.revealed > *:nth-child(1){opacity:1;transform:none;transition-delay:0ms}
.stagger-children.revealed > *:nth-child(2){opacity:1;transform:none;transition-delay:80ms}
.stagger-children.revealed > *:nth-child(3){opacity:1;transform:none;transition-delay:160ms}
.stagger-children.revealed > *:nth-child(4){opacity:1;transform:none;transition-delay:240ms}
.stagger-children.revealed > *:nth-child(5){opacity:1;transform:none;transition-delay:320ms}
.stagger-children.revealed > *:nth-child(6){opacity:1;transform:none;transition-delay:400ms}
.stagger-children.revealed > *:nth-child(7){opacity:1;transform:none;transition-delay:480ms}
.stagger-children.revealed > *:nth-child(8){opacity:1;transform:none;transition-delay:560ms}
.stagger-children.revealed > *:nth-child(n+9){opacity:1;transform:none}

/* Delay helpers */
.anim-delay-1{transition-delay:0.1s!important}
.anim-delay-2{transition-delay:0.2s!important}
.anim-delay-3{transition-delay:0.3s!important}
.anim-delay-4{transition-delay:0.4s!important}
.anim-delay-5{transition-delay:0.5s!important}

/* =========================================
   METRIC / ANALYTICS COMPONENTS
   ========================================= */
.metric-value {
  font-family: var(--font-heading); font-weight: 900;
  font-size: 2rem; color: var(--color-primary); line-height: 1;
}
.metric-label { font-size: 12px; color: var(--color-text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* =========================================
   ERROR PAGE
   ========================================= */
.error-page {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: calc(var(--navbar-height) + 2rem) 1rem 3rem;
}
.error-page::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(37,99,235,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(124,58,237,0.2) 0%, transparent 50%);
}
.error-number {
  font-family: var(--font-heading); font-weight: 900; font-size: clamp(5rem, 20vw, 12rem);
  background: var(--gradient-brand); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 16px;
}
.error-title { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
.error-desc { font-size: 1.1rem; color: rgba(255,255,255,0.55); margin-bottom: 32px; line-height: 1.7; max-width: 480px; }

/* =========================================
   SPINNER (Form Loading)
   ========================================= */
.spinner {
  display: inline-block; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================
   HIDDEN UTILITY
   ========================================= */
.hidden { display: none !important; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
  :root { --section-padding: 3rem; --navbar-height: 64px; }
  .hero-title { font-size: 2.2rem; }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat-card:last-child { border-bottom: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  #whatsapp-float { bottom: 20px; right: 20px; }
  #back-to-top { bottom: 88px; right: 20px; }
}
@media (max-width: 480px) {
  .navbar-inner { padding: 0 1rem; }
  .btn-lg { padding: 13px 24px; font-size: 14px; }
}

/* Print */
@media print {
  #scroll-progress, #loading-screen, .navbar-lss, #whatsapp-float, #back-to-top, #cookie-banner, #exit-popup { display: none !important; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
