/* ============================================
   TechVerse Solutions — Professional Design System
   Stripe / Vercel / Linear inspired
   bg=#FFFFFF  primary=#1E3A8A  accent=#2563EB
   text=#0F172A  border=#E2E8F0
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --bg: #FFFFFF;
  --surface-50: #F8FAFC;
  --surface-100: #F1F5F9;
  --surface-200: #E2E8F0;
  --primary: #1E3A8A;
  --accent: #2563EB;
  --secondary: #334155;
  --success: #16A34A;
  --text-primary: #0F172A;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--surface-100); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ===== SELECTION ===== */
::selection { background: rgba(37,99,235,0.12); color: var(--primary); }

/* ===== NAVBAR ===== */
#navbar .navbar-inner {
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#navbar.scrolled .navbar-inner {
  border-color: var(--border) !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.btn-primary:hover {
  background: #1D4ED8;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: white;
  color: var(--text-primary);
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  transition: all 0.15s ease;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.btn-secondary:hover {
  background: var(--surface-50);
  border-color: var(--secondary);
  color: var(--text-primary);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: var(--secondary);
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.15s ease;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
}
.btn-ghost:hover {
  background: var(--surface-50);
  border-color: var(--border-strong);
  color: var(--text-primary);
  text-decoration: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  border-radius: 8px;
  border: 1.5px solid var(--accent);
  transition: all 0.15s ease;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
}
.btn-outline:hover {
  background: var(--accent);
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

/* ===== INPUTS ===== */
.tv-input {
  width: 100%;
  padding: 10px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
}
.tv-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}
.tv-input::placeholder { color: var(--text-muted); }

.tv-select {
  width: 100%;
  padding: 10px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394A3B8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}
.tv-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}
.tv-select option { background: white; color: var(--text-primary); }

.tv-textarea {
  width: 100%;
  padding: 10px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
  resize: vertical;
}
.tv-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}

/* ===== FORM LABEL ===== */
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 6px;
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-desc {
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* ===== STAT CARDS ===== */
.stat-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--surface-50);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.stat-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ===== SERVICE CARDS ===== */
.service-card {
  padding: 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 12px 12px 0 0;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}
.service-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

/* ===== INDUSTRY CARDS ===== */
.industry-card {
  padding: 24px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
}
.industry-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(37,99,235,0.08);
  transform: translateY(-2px);
}

/* ===== TECH BADGES ===== */
.tech-badge {
  padding: 10px 14px;
  background: var(--surface-50);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  transition: all 0.15s ease;
  font-size: 13px;
  font-weight: 500;
  color: var(--secondary);
}
.tech-badge:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #EFF6FF;
}

/* ===== TAGS ===== */
.tag {
  display: inline-block;
  padding: 3px 10px;
  background: #F0F9FF;
  border: 1px solid #BAE6FD;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  color: #0369A1;
}

/* ===== CASE STUDY CARDS ===== */
.case-study-card {
  padding: 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
}
.case-study-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
  padding: 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.2s ease;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; right: 20px;
  font-size: 72px;
  color: #EFF6FF;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

/* ===== DROPDOWN ===== */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 8px;
  transition: background 0.12s ease;
  text-decoration: none;
}
.dropdown-item:hover { background: var(--surface-50); }

/* ===== MOBILE NAV ===== */
.mobile-nav-item {
  display: block;
  padding: 10px 12px;
  color: var(--secondary);
  font-weight: 500;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.12s ease;
  text-decoration: none;
}
.mobile-nav-item:hover {
  background: var(--surface-50);
  color: var(--primary);
}

/* ===== FOOTER ===== */
.footer-link {
  display: inline-block;
  color: #94A3B8;
  font-size: 14px;
  transition: color 0.12s ease;
  text-decoration: none;
}
.footer-link:hover { color: #FFFFFF; }

/* ===== PROCESS STEPS ===== */
.process-step { text-align: center; }
.process-step h3 { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); margin-top: 12px; }

/* ===== LOGOS SCROLL ===== */
.logos-scroll {
  display: flex;
  gap: 3rem;
  animation: logoScroll 30s linear infinite;
  width: max-content;
}
@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logos-scroll:hover { animation-play-state: paused; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BLOG CARDS ===== */
.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
}
.blog-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 72px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.875rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  justify-content: center;
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.12s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--border-strong); }

/* ===== LINE CLAMP ===== */
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ===== PROSE (Blog) ===== */
.prose { color: var(--secondary); max-width: 72ch; }
.prose h1,.prose h2,.prose h3 { color: var(--text-primary); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; margin: 2em 0 0.75em; letter-spacing: -0.01em; }
.prose h2 { font-size: 1.5rem; }
.prose h3 { font-size: 1.25rem; }
.prose p { line-height: 1.8; margin-bottom: 1.25em; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.prose code { background: var(--surface-100); border: 1px solid var(--border); border-radius: 4px; padding: 2px 6px; font-size: 0.875em; color: var(--primary); }
.prose pre { background: var(--surface-50); border: 1px solid var(--border); border-radius: 10px; padding: 20px; overflow-x: auto; }
.prose ul,.prose ol { padding-left: 1.5em; margin-bottom: 1.25em; }
.prose li { margin-bottom: 0.5em; line-height: 1.7; }
.prose blockquote { border-left: 3px solid var(--accent); padding-left: 1.25em; color: var(--text-secondary); font-style: italic; }

/* ===== PAGINATION ===== */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; }
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: white;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.12s;
}
.page-link:hover,.page-link.active { background: var(--accent); border-color: var(--accent); color: white; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 9999;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: slideInToast 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toast.success { background: #F0FDF4; border: 1px solid #BBF7D0; color: #15803D; }
.toast.error { background: #FEF2F2; border: 1px solid #FECACA; color: #DC2626; }
@keyframes slideInToast {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== STICKY CTA ===== */
#sticky-cta.visible { opacity: 1; transform: translateY(0); }

/* ===== SCROLL TOP ===== */
#scroll-top.visible { opacity: 1; pointer-events: all; }

/* ===== COST ESTIMATOR ===== */
.estimator-option {
  padding: 11px 14px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--secondary);
  user-select: none;
}
.estimator-option:hover { border-color: var(--accent); color: var(--accent); }
.estimator-option.selected {
  border-color: var(--accent);
  background: #EFF6FF;
  color: var(--accent);
}

/* ===== GRADIENT TEXT (used sparingly) ===== */
.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== DIVIDER ===== */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .section-title { font-size: 1.75rem; }
  .page-hero-title { font-size: 1.875rem; }
}

/* ===== ANIMATION KEYFRAMES ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes floatAlt {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes spinReverse {
  from { transform: rotate(360deg); }
  to   { transform: rotate(0deg); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,99,235,0.3); }
  50%       { box-shadow: 0 0 0 16px rgba(37,99,235,0); }
}
@keyframes pulseRing {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
@keyframes slideRight {
  from { transform: translateX(-100%); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}
@keyframes bounceIn {
  0%   { transform: scale(0.8); opacity: 0; }
  60%  { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes drawLine {
  from { stroke-dashoffset: 300; }
  to   { stroke-dashoffset: 0; }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(-3deg); }
  50%       { transform: rotate(3deg); }
}

/* ===== ANIMATION UTILITY CLASSES ===== */
.animate-fade-up        { animation: fadeUp 0.65s ease both; opacity: 0; }
.animate-fade-in        { animation: fadeIn 0.5s ease both; opacity: 0; }
.animate-float          { animation: float 4s ease-in-out infinite; }
.animate-float-alt      { animation: floatAlt 5s ease-in-out infinite 0.8s; }
.animate-float-slow     { animation: floatSlow 7s ease-in-out infinite; }
.animate-spin-slow      { animation: spinSlow 25s linear infinite; }
.animate-spin-reverse   { animation: spinReverse 20s linear infinite; }
.animate-pulse-glow     { animation: pulseGlow 2.5s ease-in-out infinite; }
.animate-pulse-ring     { animation: pulseRing 2s ease-out infinite; }
.animate-gradient       { background-size: 200% 200%; animation: gradientFlow 5s ease infinite; }
.animate-bounce-in      { animation: bounceIn 0.6s ease both; }
.animate-wiggle         { animation: wiggle 1.5s ease-in-out infinite; }
.animate-blink          { animation: blink 1s step-end infinite; }
.animate-draw-line      { animation: drawLine 1.5s ease forwards; }

/* Staggered delay helpers */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }
.delay-1000 { animation-delay: 1s; }
.delay-1200 { animation-delay: 1.2s; }
.delay-1500 { animation-delay: 1.5s; }

/* ===== FLOATING TECH BADGE ===== */
.tech-float-badge {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.tech-float-badge .badge-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.tech-float-badge .badge-label { font-size: 11px; font-weight: 700; color: var(--text-primary); }
.tech-float-badge .badge-sub   { font-size: 10px; color: var(--text-muted); }

/* ===== HERO ILLUSTRATION ===== */
.hero-orbit-ring {
  border-radius: 50%;
  border: 1.5px dashed rgba(203,213,225,0.8);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ===== SHIMMER CARD ===== */
.shimmer-bg {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ===== GRADIENT ANIMATED BORDER ===== */
.gradient-border {
  position: relative;
  border-radius: 16px;
}
.gradient-border::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  background: linear-gradient(135deg, #2563eb, #7c3aed, #059669, #2563eb);
  background-size: 300% 300%;
  animation: gradientFlow 4s ease infinite;
  z-index: -1;
}

/* ===== SERVICE CARD HOVER GLOW ===== */
.service-card:hover .service-icon {
  transform: scale(1.08);
  transition: transform 0.2s ease;
}

/* ===== PROCESS CONNECTOR LINE ===== */
.process-line {
  position: absolute;
  top: 50%;
  left: calc(100% + 8px);
  width: calc(100% - 16px);
  height: 2px;
  background: linear-gradient(90deg, #dbeafe, #c7d2fe);
  z-index: 0;
}
.process-line::after {
  content: '';
  position: absolute;
  right: 0; top: -4px;
  width: 0; height: 0;
  border-left: 8px solid #c7d2fe;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* ===== GLOW CIRCLE ===== */
.glow-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

/* ===== TYPING CURSOR ===== */
.typing-cursor::after {
  content: '|';
  animation: blink 0.8s step-end infinite;
  color: #2563eb;
  margin-left: 2px;
}

/* ===== SCROLL-TRIGGERED COUNTER ===== */
.stat-number { font-variant-numeric: tabular-nums; }

/* ===== GLASSMORPHISM SYSTEM ===== */
.glass {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 8px 32px rgba(30,58,138,0.08), inset 0 1px 0 rgba(255,255,255,0.6);
}
.glass-sm {
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 4px 16px rgba(30,58,138,0.06), inset 0 1px 0 rgba(255,255,255,0.7);
}
.glass-dark {
  background: rgba(15,23,42,0.55);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(96,165,250,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}
.glass-navy {
  background: rgba(30,58,138,0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(96,165,250,0.25);
  box-shadow: 0 8px 32px rgba(30,58,138,0.25);
}
.glass-badge {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 4px 20px rgba(30,58,138,0.10), inset 0 1px 0 rgba(255,255,255,0.8);
}

/* ===== GRADIENT BORDER (glow ring) ===== */
.gradient-ring {
  position: relative;
}
.gradient-ring::before {
  content:'';
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  background: linear-gradient(135deg,#3b82f6,#8b5cf6,#06b6d4,#3b82f6);
  z-index:-1;
  opacity:0;
  transition: opacity 0.3s;
}
.gradient-ring:hover::before { opacity:1; }

/* ===== HERO DARK GRADIENT BACKGROUND ===== */
.hero-dark-bg {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 35%, #0c1445 65%, #0f172a 100%);
}
.hero-mesh-bg {
  background:
    radial-gradient(ellipse 800px 600px at 10% 20%, rgba(37,99,235,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 600px 500px at 90% 80%, rgba(124,58,237,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 50% 50%, rgba(6,182,212,0.06) 0%, transparent 70%),
    #0f172a;
}

/* ===== FLOATING PARTICLES ===== */
@keyframes particleDrift {
  0%   { transform: translateY(0px) translateX(0px) scale(1); opacity:0.6; }
  33%  { transform: translateY(-30px) translateX(15px) scale(1.1); opacity:0.8; }
  66%  { transform: translateY(-10px) translateX(-10px) scale(0.9); opacity:0.5; }
  100% { transform: translateY(0px) translateX(0px) scale(1); opacity:0.6; }
}
.particle { animation: particleDrift linear infinite; }

/* ===== GLOW TEXT ===== */
.glow-text {
  text-shadow: 0 0 40px rgba(59,130,246,0.5), 0 0 80px rgba(59,130,246,0.2);
}

/* ===== AI FLOW LINE ===== */
@keyframes flowDash {
  from { stroke-dashoffset: 200; }
  to   { stroke-dashoffset: 0; }
}
.flow-line { animation: flowDash 3s linear infinite; }

/* ===== SHIMMER CARD ===== */
@keyframes cardShimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.shimmer-card {
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0) 100%);
  background-size: 400px 100%;
  animation: cardShimmer 3s ease-in-out infinite;
}

/* ===== NEON GLOW PULSE ===== */
@keyframes neonPulse {
  0%,100% { box-shadow: 0 0 8px rgba(59,130,246,0.4), 0 0 20px rgba(59,130,246,0.2); }
  50%      { box-shadow: 0 0 20px rgba(59,130,246,0.8), 0 0 40px rgba(59,130,246,0.4); }
}
.neon-pulse { animation: neonPulse 2.5s ease-in-out infinite; }

/* ===== DARK SECTION GLASS STAT ===== */
.glass-stat {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}
.glass-stat:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(96,165,250,0.3);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(30,58,138,0.3);
}

/* ===== TECH PILL GLOW ===== */
.tech-pill-ai {
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  color: #60a5fa;
  transition: all 0.2s;
}
.tech-pill-ai:hover {
  background: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.5);
  box-shadow: 0 0 12px rgba(59,130,246,0.2);
}

/* ===== ORBIT RING GLOW ===== */
.hero-orbit-ring-glow {
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  border-radius:50%;
  border: 1px solid;
  pointer-events:none;
}

/* ===== GRADIENT HIGHLIGHT BAR ===== */
.gradient-bar {
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #7c3aed, #06b6d4);
  border-radius: 999px;
}

/* ===== DARK HERO UTILITIES ===== */
.section-badge-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(96,165,250,0.3);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: #93c5fd;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  transition: all 0.15s ease;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.btn-ghost-dark:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
  color: white;
  text-decoration: none;
}

/* ===== CREATIVE CARD SYSTEM ===== */

/* Colored top-accent bar cards — minimal, subtle */
.card-top-blue    { border-top: 2px solid rgba(37,99,235,0.22) !important; }
.card-top-violet  { border-top: 2px solid rgba(124,58,237,0.22) !important; }
.card-top-sky     { border-top: 2px solid rgba(14,165,233,0.22) !important; }
.card-top-slate   { border-top: 2px solid rgba(71,85,105,0.22) !important; }
.card-top-pink    { border-top: 2px solid rgba(236,72,153,0.22) !important; }
.card-top-emerald { border-top: 2px solid rgba(16,185,129,0.22) !important; }
.card-top-amber   { border-top: 2px solid rgba(245,158,11,0.22) !important; }
.card-top-cyan    { border-top: 2px solid rgba(6,182,212,0.22) !important; }
.card-top-red     { border-top: 2px solid rgba(239,68,68,0.22) !important; }

/* Card hover — clean neutral shadow */
.hover-glow-blue:hover,
.hover-glow-violet:hover,
.hover-glow-sky:hover,
.hover-glow-emerald:hover,
.hover-glow-pink:hover   { box-shadow: 0 8px 30px rgba(0,0,0,0.09), 0 0 0 1px rgba(148,163,184,0.15) !important; }

/* Background number watermark for step cards */
.step-watermark {
  position: absolute;
  right: -8px;
  bottom: -10px;
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  opacity: 0.07;
}

/* Icon glow on hover */
.icon-glow-blue   { box-shadow: 0 0 0 rgba(59,130,246,0); transition: box-shadow 0.3s; }
.icon-glow-blue:hover { box-shadow: 0 0 24px rgba(59,130,246,0.5); }
.group:hover .icon-auto-glow { box-shadow: 0 4px 20px rgba(59,130,246,0.35); }

/* Decorative quote for testimonials */
.quote-card {
  position: relative;
  overflow: hidden;
}
.quote-card::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 16px;
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  font-family: Georgia, 'Times New Roman', serif;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.18;
  pointer-events: none;
}

/* Gradient avatar ring */
.avatar-ring {
  padding: 2px;
  background: linear-gradient(135deg, #2563eb, #7c3aed, #06b6d4);
  border-radius: 9999px;
}
.avatar-ring > * { border-radius: 9999px; display: block; }

/* Industry card gradient overlays */
.ind-card {
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}
.ind-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}
.ind-card:hover::after { opacity: 1; }
.ind-card:hover { transform: translateY(-4px); }

/* Creative dark trust card */
.trust-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}
.trust-card:hover::before { opacity: 1; }
.trust-card:hover { transform: translateY(-3px); }
.trust-card-blue::before   { background: linear-gradient(90deg, #2563eb, #3b82f6); }
.trust-card-violet::before { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.trust-card-emerald::before{ background: linear-gradient(90deg, #10b981, #34d399); }
.trust-card-amber::before  { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.trust-card-cyan::before   { background: linear-gradient(90deg, #06b6d4, #22d3ee); }
.trust-card-pink::before   { background: linear-gradient(90deg, #ec4899, #f472b6); }
.trust-card-red::before    { background: linear-gradient(90deg, #ef4444, #f87171); }
