/* ============================================
   CANOPUS — Enterprise Design System
   Version 3.0 — Clean, professional, selective accents
   Blue primary · Coral sparingly · Solid surfaces
   ============================================ */

/* ----- DESIGN TOKENS ----- */
:root {
  --blue: #1783f7;
  --coral: #f2644b;
  --purple: #8b5cf6;
  --green: #22c55e;
  /* Gradients reserved for hero + primary CTAs only */
  --gradient: linear-gradient(135deg, #1783f7 0%, #0d6efd 55%, #1783f7 100%);
  --gradient-hero: linear-gradient(135deg, #1783f7 0%, #f2644b 100%);
  --gradient-alt: linear-gradient(135deg, #f2644b 0%, #1783f7 100%);
  --gradient-emerald: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
  --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  --gradient-soft: rgba(23,131,247,0.08);
  --gradient-animated: transparent;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'Consolas', ui-monospace, monospace;
  /* Consistent radius scale */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-full: 9999px;
  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-section: 112px;
  --text-measure: 65ch;
  --transition: 0.2s ease;
  --transition-slow: 0.35s ease;
}

/* Dark Theme (default) — solid surfaces */
[data-theme="dark"] {
  --bg: #07070b;
  --bg-elevated: #0e0e14;
  --bg-card: #111118;
  --bg-glass: #111118;
  --bg-glass-hover: #16161f;
  --bg-glass-strong: #14141c;
  --bg-muted: #0a0a10;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.14);
  --border-glow: rgba(23,131,247,0.25);
  --text: #f4f4f8;
  --text-secondary: #9b9baf;
  --text-muted: #6b6b80;
  --text-inverse: #0a0a0f;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.25);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.28);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.35);
  --shadow-glow: none;
  --shadow-neon: none;
}

/* Light Theme */
[data-theme="light"] {
  --bg: #f7f8fb;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-glass: #ffffff;
  --bg-glass-hover: #f3f4f8;
  --bg-glass-strong: #eef4ff;
  --bg-muted: #eef0f5;
  --border: rgba(0,0,0,0.08);
  --border-hover: rgba(0,0,0,0.14);
  --border-glow: rgba(23,131,247,0.2);
  --text: #0c0c14;
  --text-secondary: #4a4a5c;
  --text-muted: #7a7a8c;
  --text-inverse: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 28px rgba(0,0,0,0.08);
  --shadow-glow: none;
  --shadow-neon: none;
}

/* ----- RESET ----- */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body { 
  font-family:var(--font); 
  background:var(--bg); 
  color:var(--text); 
  line-height:1.65; 
  overflow-x:hidden; 
  -webkit-font-smoothing:antialiased; 
  transition:background var(--transition-slow),color var(--transition-slow);
  background-image: none;
}
img,svg { display:block; max-width:100%; }
a { color:inherit; text-decoration:none; }
ul,ol { list-style:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }
h1,h2,h3,h4 { line-height:1.15; font-weight:700; letter-spacing:-0.025em; color:var(--text); }
h1 { font-size:clamp(2.6rem,5vw,4.5rem); letter-spacing:-0.035em; font-weight:800; }
h2 { font-size:clamp(1.85rem,3.2vw,2.75rem); letter-spacing:-0.025em; font-weight:750; }
h3 { font-size:1.2rem; font-weight:650; letter-spacing:-0.015em; }

/* ----- LAYOUT ----- */
.container { max-width:1200px; margin:0 auto; padding:0 28px; }
.section { padding:var(--space-section) 0; position:relative; background: var(--bg); }
.section-header { text-align:center; margin-bottom:var(--space-8); position:relative; max-width:720px; margin-left:auto; margin-right:auto; }
.section-header::before { display: none; }
.section-title { margin-bottom:var(--space-4); position:relative; }
.section-title .text-gradient,
.page-hero-title .text-gradient,
.cta-title .text-gradient {
  /* Prefer solid emphasis outside hero */
  background: none;
  -webkit-text-fill-color: unset;
  color: var(--text);
  font-weight: inherit;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
}
.section-description { max-width:560px; margin:0 auto; color:var(--text-secondary); font-size:1.05rem; font-weight:400; line-height:1.75; }

/* Solid elevated bands for section variety */
.section.section-alt,
.products-section,
.cta-section {
  background: var(--bg-elevated);
}

/* ----- TYPOGRAPHY HELPERS ----- */
.eyebrow { 
  display:inline-block; 
  font-size:0.75rem; 
  font-weight:600; 
  text-transform:uppercase; 
  letter-spacing:0.12em; 
  color:var(--blue); 
  margin-bottom:var(--space-4);
  position:relative;
  padding-left: 0;
}
.eyebrow::before { display: none; }

/* Default: solid text; gradient only on main hero title */
.text-gradient {
  background: none;
  -webkit-text-fill-color: unset;
  color: inherit;
}
.hero-title .text-gradient { 
  background:var(--gradient-hero); 
  -webkit-background-clip:text; 
  -webkit-text-fill-color:transparent; 
  background-clip:text; 
  color:transparent; 
  background-size: 100% 100%;
}

.text-gradient-alt { color: var(--blue); background: none; -webkit-text-fill-color: unset; }
.text-gradient-cta { color: var(--blue); background: none; -webkit-text-fill-color: unset; }
.text-gradient-purple { color: var(--blue); background: none; -webkit-text-fill-color: unset; }

/* ----- BUTTONS ----- */
.btn { 
  display:inline-flex; 
  align-items:center; 
  justify-content:center; 
  gap:8px; 
  padding:12px 24px; 
  border-radius:var(--radius-md); 
  font-weight:600; 
  font-size:0.95rem; 
  transition:background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition); 
  white-space:nowrap; 
  line-height:1;
  position:relative;
  overflow:hidden;
  letter-spacing: -0.01em;
}
.btn::before { display: none; }
.btn > span { position: relative; z-index: 1; }
/* Primary CTA — solid brand blue, clear hierarchy */
.btn-primary { background:var(--blue); color:#fff; box-shadow:0 1px 2px rgba(0,0,0,0.2), 0 4px 14px rgba(23,131,247,0.28); border:1px solid transparent; }
.btn-primary:hover { transform:translateY(-1px); box-shadow:0 4px 18px rgba(23,131,247,0.38); background:#2b91f8; filter: none; }
/* Secondary — quiet outline */
.btn-outline { border:1.5px solid var(--border-hover); color:var(--text-secondary); background:transparent; backdrop-filter:none; -webkit-backdrop-filter:none; }
.btn-outline:hover { border-color:var(--text-muted); color:var(--text); transform:none; box-shadow: none; }
.btn-white { background:#fff; color:#0a0a0f; box-shadow:0 2px 8px rgba(0,0,0,0.08); border:1px solid rgba(255,255,255,0.2); }
.btn-white:hover { transform:translateY(-1px); box-shadow:0 4px 14px rgba(0,0,0,0.12); }
.btn-outline-white { border:1.5px solid rgba(255,255,255,0.35); color:#fff; background:transparent; }
.btn-outline-white:hover { background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.55); box-shadow: none; }
.btn-lg { padding:15px 32px; font-size:1.02rem; border-radius:var(--radius-md); }
.btn-sm { padding:9px 18px; font-size:0.88rem; }

.btn-shimmer::after { display: none; }
.btn-shimmer:hover::after { display: none; }

/* ----- NAVBAR & MOBILE ----- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 10px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(5, 5, 9, 0.75);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 8px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 8px 32px rgba(0,0,0,0.4);
}
.nav-container { 
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  max-width:1280px; 
  margin:0 auto; 
  padding:0 24px; 
}
.nav-logo { 
  display:flex; 
  align-items:center; 
  gap:12px; 
  font-weight:700; 
  font-size:1.25rem; 
  transition:transform var(--transition); 
}
.nav-logo:hover { 
  transform:translateY(-2px); 
}
.logo-img {
  height: 38px;
  width: auto;
  max-width: 175px;
  display: block;
}
.logo-icon { 
  border-radius:var(--radius-sm); 
  filter:none; 
}
.nav-logo:hover .logo-icon { 
  filter:none; 
}
.logo-text { 
  font-size:1.25rem; 
  font-weight:700; 
  letter-spacing:-0.02em; 
}
.nav-links { 
  display:flex; 
  align-items:center; 
  gap:36px; 
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: all 0.25s ease;
  position: relative;
  padding: 7px 14px;
  border-radius: 8px;
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.01em;
}
.nav-link:hover {
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.07);
}
.nav-link.active {
  color: #fff;
  background: rgba(23,131,247,0.15);
  box-shadow: inset 0 0 0 1px rgba(23,131,247,0.2);
}
.nav-link::after { display:none; }

/* ----- MEGA MENU ----- */
.nav-item-mega { position:relative; }

.mega-menu-trigger {
  display:flex;
  align-items:center;
  gap:6px;
  cursor:pointer;
}
.mega-menu-trigger .chevron {
  font-size:0.65rem;
  transition:transform var(--transition);
  display:inline-block;
}
.nav-item-mega:hover .mega-menu-trigger .chevron,
.nav-item-mega.active .mega-menu-trigger .chevron {
  transform:rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  background: rgba(10, 10, 18, 0.9);
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px) scale(0.98);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  pointer-events: none;
}
.mega-menu::before {
  content:'';
  position:absolute;
  top:-16px;
  left:0;
  right:0;
  height:16px;
  background:transparent;
}
.nav-item-mega:hover .mega-menu,
.nav-item-mega.active .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.mega-menu-list {
  display:flex;
  flex-direction:column;
  gap:0;
}
.mega-menu-link {
  display: block;
  padding: 9px 16px;
  color: rgba(255,255,255,0.55);
  font-size: 0.87rem;
  font-weight: 500;
  transition: all 0.18s ease;
  white-space: nowrap;
  position: relative;
  border-left: 2px solid transparent;
  border-radius: 8px;
}
.mega-menu-link:hover,
.mega-menu-link.active {
  color: #fff;
  background: rgba(255,255,255,0.06);
  border-left-color: var(--blue);
  border-radius: 8px;
  padding-left: 22px;
}

/* Mega menu divider */
.mega-menu-divider {
  height:1px;
  background:var(--border);
  margin:4px 12px;
}

/* Mobile mega menu expand items */
.mobile-mega-toggle {
  display:none;
}

.nav-actions { 
  display:flex; 
  align-items:center; 
  gap:16px; 
}
.theme-toggle { 
  width:42px; 
  height:42px; 
  border-radius:50%; 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  background:var(--bg-card); 
  border:1px solid var(--border); 
  transition:all var(--transition); 
  position:relative; 
  overflow:hidden; 
  min-width:44px; 
  min-height:44px; 
}
.theme-toggle:hover { 
  border-color:var(--blue); 
  background:var(--bg-glass); 
  transform:rotate(15deg); 
}
.theme-toggle svg { 
  width:20px; 
  height:20px; 
  stroke:var(--text-secondary); 
  transition:transform var(--transition); 
}
.theme-toggle:hover svg { 
  transform:scale(1.1); 
}
[data-theme="dark"] .sun-icon { 
  display:block; 
}
[data-theme="dark"] .moon-icon { 
  display:none; 
}
[data-theme="light"] .sun-icon { 
  display:none; 
}
[data-theme="light"] .moon-icon { 
  display:block; 
}

.hamburger { 
  display:none; 
  flex-direction:column; 
  gap:6px; 
  padding:6px; 
  cursor:pointer; 
  min-width:44px; 
  min-height:44px; 
  justify-content:center; 
  align-items:center; 
}
.hamburger span { 
  width:24px; 
  height:2px; 
  background:var(--text); 
  border-radius:2px; 
  transition:all var(--transition); 
  display:block; 
  transform-origin:center; 
}
.hamburger.active span:nth-child(1) { 
  transform:rotate(45deg) translate(6px,6px); 
}
.hamburger.active span:nth-child(2) { 
  opacity:0; 
  transform:scaleX(0); 
}
.hamburger.active span:nth-child(3) { 
  transform:rotate(-45deg) translate(6px,-6px); 
}

/* ===== HERO SECTION — clean, selective gradient accents ===== */
.hero { 
  position:relative; 
  min-height:100vh; 
  min-height:100dvh; 
  display:flex; 
  align-items:center; 
  padding:140px 0 88px;
  contain: layout style;
  background: var(--bg);
}

.hero-bg { 
  position:absolute; 
  inset:0;
  pointer-events:none; 
  z-index:0; 
  background:
    radial-gradient(ellipse 70% 55% at 70% 0%, rgba(23,131,247,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(242,100,75,0.06) 0%, transparent 50%);
}
.hero-bg::after { display: none; }
.hero-video {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: center;
  z-index:0;
  pointer-events:none;
  opacity:0.22;
  -webkit-mask-image: none;
  mask-image: none;
}
/* Soft static orbs only in hero — no continuous animation */
.hero-orb { position:absolute; border-radius:50%; filter:blur(100px); opacity:0.18; z-index:0; pointer-events:none; animation:none !important; will-change:auto; }
.orb-1 { width:520px; height:520px; background:var(--blue); top:-100px; right:-160px; }
.orb-2 { width:400px; height:400px; background:var(--coral); bottom:-120px; left:-120px; opacity:0.1; }
.orb-3 { width:280px; height:280px; background:var(--blue); top:45%; left:45%; opacity:0.08; transform:translate(-50%,-50%); }

@keyframes orbHyperFloat { 
  0%,100% { transform: none; } 
}
@keyframes orbHyperPulse { 
  0%,100% { transform: translate3d(-50%, -50%, 0); opacity: 0.1; } 
}
@keyframes orbColorShift {
  0%, 100% { background:var(--blue); }
}

/* Subtle static grid — no animation */
.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:56px 56px; mask-image:radial-gradient(ellipse at center, black 40%, transparent 75%); -webkit-mask-image:radial-gradient(ellipse at center, black 40%, transparent 75%); opacity:0.5; animation:none; }
@keyframes gridHyperPulse { 0%, 100% { opacity:0.4; } 50% { opacity:0.9; } }
@keyframes gridMove { 0% { background-position:0 0; } 100% { background-position:50px 50px; } }
[data-theme="light"] .hero-grid { background-image:linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px); }

.hero-content { position:relative; z-index:10; max-width:880px; margin:0 auto; text-align:center; padding:0 24px; }

/* Quiet badge */
.badge { display:inline-flex; align-items:center; gap:10px; padding:8px 16px; border-radius:100px; background:var(--bg-card); backdrop-filter:none; -webkit-backdrop-filter:none; border:1px solid var(--border); font-size:0.82rem; font-weight:600; color:var(--text-secondary); margin-bottom:28px; transition:border-color var(--transition); box-shadow:none; animation:none; }
.badge:hover { transform:none; box-shadow:none; border-color:var(--border-hover); }
@keyframes badgeGlow { 0%, 100% { box-shadow:none; } }
.badge-dot { width:8px; height:8px; border-radius:50%; background:var(--green); animation:none; box-shadow:none; opacity:1; }
@keyframes pulseDot { 0%,100% { opacity:1; transform:scale(1); } }

.hero-title { margin-bottom:24px; font-weight:800; font-size:clamp(2.6rem,5vw,4.5rem); line-height:1.1; letter-spacing:-0.035em; }
.hero-title span { display:inline; text-shadow:none; filter:none; }
.hero-subtitle { font-size:1.125rem; color:var(--text-secondary); max-width:560px; margin:0 auto 40px; font-weight:400; line-height:1.75; text-shadow:none; }
.hero-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-bottom:56px; }

/* Hero Metrics — solid, quiet */
.hero-metrics { display:flex; align-items:center; justify-content:center; gap:0; padding:20px 32px; border-radius:var(--radius-lg); background:var(--bg-card); backdrop-filter:none; -webkit-backdrop-filter:none; border:1px solid var(--border); max-width:760px; margin:0 auto; box-shadow:var(--shadow-sm); animation:none; }
.hero-metrics:hover { box-shadow:var(--shadow-sm); transform:none; }
@keyframes metricsPulse { 0%, 100% { transform:none; } }
.metric { padding:0 24px; text-align:center; transition:none; }
.metric:hover { transform:none; }
.metric-value { display:block; font-size:1.4rem; font-weight:750; color:var(--text); background:none; -webkit-text-fill-color:unset; letter-spacing:-0.02em; text-shadow:none; }
.metric-label { font-size:0.75rem; color:var(--text-muted); font-weight:500; display:block; margin-top:4px; text-transform:uppercase; letter-spacing:0.06em; }
.metric-divider { width:1px; height:32px; background:var(--border); flex-shrink:0; box-shadow:none; }

/* ===== CARDS — clean solid surfaces ===== */
.cards-grid { display:grid; gap:var(--space-5); }
.cards-3col { grid-template-columns:repeat(3, 1fr); }
.glass-card { background:var(--bg-card); backdrop-filter:none; -webkit-backdrop-filter:none; border:1px solid var(--border); border-radius:var(--radius-lg); padding:var(--space-6); transition:border-color var(--transition), box-shadow var(--transition), transform var(--transition); position:relative; overflow:hidden; isolation:isolate; box-shadow:var(--shadow-sm); }
.glass-card:hover { border-color:var(--border-hover); transform:translateY(-2px); box-shadow:var(--shadow-md); }
.glass-card::before { display: none; }
.glass-card:hover::before { display: none; }
.glass-card::after { display: none; }
.glass-card:hover::after { display: none; }

.card-icon { width:48px; height:48px; border-radius:var(--radius-md); background:var(--bg-elevated); display:flex; align-items:center; justify-content:center; margin-bottom:var(--space-5); transition:border-color var(--transition); border:1px solid var(--border); }
.glass-card:hover .card-icon { background:var(--bg-elevated); transform:none; box-shadow:none; border-color:var(--border-hover); }
.card-title { margin-bottom:10px; font-size:1.15rem; font-weight:650; transition:color var(--transition); }
.glass-card:hover .card-title { color:var(--text); }
.card-text { color:var(--text-secondary); font-size:0.95rem; font-weight:400; margin-bottom:16px; line-height:1.7; max-width:var(--text-measure); }
.card-link { font-size:0.9rem; font-weight:600; color:var(--blue); transition:gap var(--transition); display:inline-flex; align-items:center; gap:4px; }
.card-link:hover { gap:8px; color:var(--blue); }

.featured-card { padding-top:44px; position:relative; border-color: rgba(23,131,247,0.25); }
.featured-card::before { display: none; }
.card-badge { position:absolute; top:16px; right:16px; padding:4px 12px; border-radius:100px; font-size:0.72rem; font-weight:600; background:var(--blue); color:#fff; z-index:1; box-shadow:none; }
.badge-new { background:var(--green); }
.card-features { margin:14px 0 18px; display:flex; flex-direction:column; gap:8px; }
.card-features li { font-size:0.88rem; color:var(--text-secondary); padding-left:22px; position:relative; transition:color var(--transition); }
.card-features li:hover { color:var(--text); }
.card-features li::before { content:'✓'; position:absolute; left:0; color:var(--blue); font-weight:700; }

.section-cta { text-align:center; margin-top:var(--space-7); }

/* ===== PARTICLE EFFECTS — disabled for cleaner enterprise look ===== */
.particles { display:none !important; }
.particle { display:none !important; }

@keyframes particleFloat { 
  0%, 100% { opacity:0; }
}

/* ===== TESTIMONIALS & FAQ ===== */
.testimonials-carousel { overflow:hidden; position:relative; }
.testimonial-track { display:flex; transition:transform 0.4s ease; }
.testimonial-card { flex:0 0 calc(100%); min-width:100%; padding:36px; }
.testimonial-quote { font-size:1.1rem; font-weight:400; color:var(--text); margin-bottom:22px; line-height:1.8; font-style:normal; max-width:var(--text-measure); position:relative; padding-left:0; }
.testimonial-quote::before { display:none; }
.testimonial-author { display:flex; align-items:center; gap:16px; }
.author-avatar { width:44px; height:44px; border-radius:50%; background:var(--blue); display:flex; align-items:center; justify-content:center; font-size:0.95rem; font-weight:700; color:#fff; flex-shrink:0; box-shadow:none; }
.author-info strong { display:block; font-size:1rem; color:var(--text); }
.author-info span { font-size:0.88rem; color:var(--text-muted); }
.carousel-dots { display:flex; justify-content:center; gap:8px; margin-top:28px; }
.dot { width:8px; height:8px; border-radius:50%; background:var(--border-hover); transition:all var(--transition); cursor:pointer; }
.dot.active { background:var(--blue); width:24px; border-radius:4px; box-shadow:none; }
.dot:hover { background:var(--blue); transform:none; }

.faq-list { display:flex; flex-direction:column; gap:12px; max-width:720px; margin:0 auto; }
.faq-item { border:1px solid var(--border); border-radius:var(--radius-md); overflow:hidden; transition:border-color var(--transition); background:var(--bg-card); backdrop-filter:none; -webkit-backdrop-filter:none; }
.faq-item:hover { border-color:var(--border-hover); }
.faq-question { width:100%; text-align:left; padding:18px 24px; display:flex; justify-content:space-between; align-items:center; gap:16px; font-weight:600; font-size:0.95rem; background:transparent; transition:background var(--transition); cursor:pointer; }
.faq-question:hover { background:var(--bg-elevated); }
.faq-icon { flex-shrink:0; width:22px; height:22px; transition:transform var(--transition); }
.faq-item.active .faq-icon { transform:rotate(45deg); }
.faq-item.active .faq-answer { max-height:300px; }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.35s ease; }
.faq-answer p { padding:0 24px 18px; color:var(--text-secondary); font-size:0.95rem; line-height:1.75; max-width:var(--text-measure); }

/* ===== CTA SECTION ===== */
.cta-section { position:relative; padding:var(--space-section) 0; overflow:hidden; background:var(--bg-elevated); isolation:isolate; border-top:1px solid var(--border); }
.cta-bg { position:absolute; inset:0; pointer-events:none; }
.cta-orb { display:none; }
.cta-orb-1, .cta-orb-2, .cta-orb-3 { display:none; }
.cta-content { position:relative; z-index:2; text-align:center; max-width:640px; margin:0 auto; }
.cta-title { font-size:clamp(1.85rem,3.2vw,2.6rem); margin-bottom:16px; font-weight:750; }
.cta-text { color:var(--text-secondary); font-size:1.05rem; font-weight:400; margin-bottom:32px; line-height:1.75; max-width:var(--text-measure); margin-left:auto; margin-right:auto; }
.cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

@keyframes pulse { 0%, 100% { box-shadow:0 4px 14px rgba(23,131,247,0.28); } }
.btn-primary.btn-lg { animation:none; }

/* ===== WHY CANOPUS ===== */
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }

/* ── ROI Calculator Layout ── */
.roi-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:stretch; }
.roi-params { padding:40px; display:flex; flex-direction:column; gap:0; }
.roi-results { display:flex; flex-direction:column; gap:20px; }
.roi-main-stat { padding:36px; text-align:center; flex:1; display:flex; flex-direction:column; justify-content:center; border-color:var(--border); background:var(--bg-elevated); }
.roi-sub-stats { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.why-content { display:flex; flex-direction:column; }
.why-content .section-description { margin:0 0 28px; text-align:left; max-width:var(--text-measure); }
.why-stats { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.stat-card { padding:24px 20px; text-align:center; border-radius:var(--radius-lg); transition:border-color var(--transition), box-shadow var(--transition); background:var(--bg-card); backdrop-filter:none; -webkit-backdrop-filter:none; border:1px solid var(--border); box-shadow:var(--shadow-sm); }
.stat-card:hover { transform:none; box-shadow:var(--shadow-md); border-color:var(--border-hover); }
.stat-value { display:block; font-size:2rem; font-weight:750; color:var(--text); background:none; -webkit-text-fill-color:unset; margin-bottom:6px; letter-spacing:-0.02em; }
.stat-label { font-size:0.85rem; color:var(--text-muted); font-weight:500; }
.feature-checklist { display:flex; flex-direction:column; gap:12px; margin-top:8px; }
.feature-checklist li { display:flex; align-items:flex-start; gap:12px; font-size:0.95rem; color:var(--text-secondary); line-height:1.65; transition:color var(--transition); padding:6px 0; }
.feature-checklist li:hover { color:var(--text); transform:none; }
.check-icon { color:var(--blue); font-weight:700; font-size:1.1rem; flex-shrink:0; text-shadow:none; }

/* ===== PAGE HERO — clean solid ===== */
.page-hero { 
  padding: 140px 0 72px; 
  text-align: center; 
  position: relative; 
  overflow: hidden; 
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero .hero-bg { 
  position: absolute; 
  inset: 0;
  z-index: 0; 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: 
    radial-gradient(ellipse 55% 45% at 50% 0%, rgba(23,131,247,0.08) 0%, transparent 60%);
  animation: none;
  will-change: auto;
}

@keyframes backgroundZoomShift {
  0%, 100% { transform: none; }
}
.page-hero .hero-orb { 
  display: none;
}
.page-hero .orb-1,
.page-hero .orb-2 {
  display: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-title { 
  font-size: clamp(2.2rem, 4.5vw, 3.4rem); 
  margin-bottom: 16px; 
  font-weight: 750; 
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.page-hero-subtitle { 
  color: var(--text-secondary); 
  font-size: 1.05rem; 
  max-width: 560px; 
  margin: 0 auto; 
  font-weight: 400; 
  line-height: 1.75; 
}

/* ===== DETAIL CARDS ===== */
.detail-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:var(--space-5); }
.detail-card { padding:32px 28px; }
.detail-card .card-icon { width:48px; height:48px; margin-bottom:20px; }
.detail-card .card-title { font-size:1.2rem; margin-bottom:12px; }
.detail-card.featured { border-color:rgba(23,131,247,0.25); }
.detail-card.featured::after { display:none; }

/* ===== PROCESS SECTION ===== */
.process-grid { display:grid; grid-template-columns:repeat(4, 1fr); gap:var(--space-5); }
.process-step { padding:28px 24px; text-align:left; position:relative; }
.process-number { font-size:1.75rem; font-weight:750; color:var(--blue); background:none; -webkit-text-fill-color:unset; margin-bottom:14px; letter-spacing:-0.02em; line-height:1; }
.process-title { font-size:1.05rem; margin-bottom:10px; font-weight:650; }
.process-text { color:var(--text-secondary); font-size:0.9rem; line-height:1.7; font-weight:400; max-width:var(--text-measure); }

/* ===== REVEAL ANIMATIONS — subtle ===== */
.reveal { opacity:0; transform:translateY(16px); transition:opacity 0.45s ease, transform 0.45s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal:nth-child(1) { transition-delay:0ms; }
.reveal:nth-child(2) { transition-delay:40ms; }
.reveal:nth-child(3) { transition-delay:80ms; }
.reveal:nth-child(4) { transition-delay:120ms; }

/* ===== CLIENTS STRIP ===== */
.clients-strip { padding:36px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); background:var(--bg); position:relative; overflow:hidden; }
.clients-strip::before { display:none; }
@keyframes scanline { 0%, 100% { transform:none; } }
.clients-label { text-align:center; font-size:0.75rem; text-transform:uppercase; letter-spacing:0.1em; color:var(--text-muted); margin-bottom:20px; font-weight:600; position:relative; }
.clients-logos { display:flex; justify-content:center; align-items:center; gap:36px; flex-wrap:wrap; user-select:none; }
.client-logo { font-size:0.95rem; font-weight:600; color:var(--text-muted); transition:color var(--transition); opacity:0.65; position:relative; }
.client-logo:hover { color:var(--text); opacity:1; transform:none; }

/* ===== FOOTER ===== */
.footer { background:var(--bg); padding:80px 0 32px; border-top:1px solid var(--border); position:relative; }
.footer::before { display:none; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr 1fr; gap:40px; margin-bottom:40px; }
.footer-brand { display:flex; flex-direction:column; gap:14px; }
.footer-logo { display:flex; align-items:center; gap:10px; font-weight:700; font-size:1.2rem; }
.footer-logo:hover { transform:none; }
.footer-desc { color:var(--text-muted); font-size:0.9rem; line-height:1.7; max-width:260px; }
.footer-social { display:flex; gap:12px; }
.footer-social a { color:var(--text-muted); transition:color var(--transition), background var(--transition), border-color var(--transition); display:flex; align-items:center; justify-content:center; width:34px; height:34px; border-radius:50%; background:var(--bg-card); border:1px solid var(--border); }
.footer-social a:hover { color:#fff; background:var(--blue); transform:none; border-color:var(--blue); }
.footer-col h4 { font-size:0.78rem; text-transform:uppercase; letter-spacing:0.08em; color:var(--text); margin-bottom:18px; font-weight:600; }
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col ul li a { font-size:0.9rem; color:var(--text-muted); transition:color var(--transition); position:relative; padding-left:0; }
.footer-col ul li a::before { display:none; }
.footer-col ul li a:hover { color:var(--text); padding-left:0; }
.footer-col ul li a:hover::before { display:none; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding-top:28px; border-top:1px solid var(--border); flex-wrap:wrap; gap:16px; font-size:0.85rem; color:var(--text-muted); }
.footer-bottom p { margin:0; max-width:none; }
.footer-legal { display:flex; gap:20px; align-items:center; flex-wrap:wrap; }
.footer-legal a { color:var(--text-muted); transition:color var(--transition); position:relative; }
.footer-legal a:hover { color:var(--text); }

/* Quiet studio credit — approved, intentionally understated */
.site-credit {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  opacity: 0.72;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.site-credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition), opacity var(--transition);
}
.site-credit a:hover {
  color: var(--text-secondary);
  border-bottom-color: var(--border-hover);
  opacity: 1;
}
.site-credit .credit-sep {
  opacity: 0.45;
  user-select: none;
}
.footer-bottom .site-credit {
  width: 100%;
  order: 3;
  margin-top: 4px;
  opacity: 0.55;
}
.footer-bottom:hover .site-credit {
  opacity: 0.85;
}

/* ===== INDUSTRY CLIENTS ===== */
.clients-section { padding:40px 0 32px; border-bottom:1px solid var(--border); background:var(--bg); }
.industry-clients { display:flex; flex-direction:column; gap:24px; }
.industry-group { display:flex; align-items:center; gap:16px; }
.industry-tag { font-size:0.72rem; font-weight:600; text-transform:uppercase; letter-spacing:0.1em; color:var(--text-muted); min-width:140px; flex-shrink:0; padding:6px 14px; border:1px solid var(--border); border-radius:var(--radius-full); background:var(--bg-card); text-align:center; }
.industry-logos { display:flex; gap:24px; flex-wrap:wrap; align-items:center; }
.client-logo-wrap { display:flex; align-items:center; gap:8px; opacity:0.55; transition:opacity var(--transition); cursor:default; }
.client-logo-wrap:hover { opacity:1; transform:none; }
.client-logo-wrap svg { color:var(--text-muted); transition:color var(--transition); }
.client-logo-wrap:hover svg { color:var(--text); }
.client-name { font-size:0.9rem; font-weight:600; color:var(--text-muted); transition:color var(--transition); }
.client-logo-wrap:hover .client-name { color:var(--text); }

/* ===== SERVICES GRID ===== */
.services-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:var(--space-5); }
.service-block { display:flex; flex-direction:column; gap:12px; text-decoration:none; padding:28px; }
.service-icon { width:44px; height:44px; border-radius:var(--radius-md); background:var(--bg-elevated); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; transition:border-color var(--transition); }
.service-block:hover .service-icon { transform:none; box-shadow:none; border-color:var(--border-hover); }
.service-block h3 { font-size:1.1rem; font-weight:650; transition:color var(--transition); }
.service-block:hover h3 { color:var(--text); }
.service-block p { color:var(--text-secondary); font-size:0.9rem; line-height:1.7; font-weight:400; flex:1; max-width:var(--text-measure); }
.service-arrow { font-size:0.85rem; color:var(--blue); font-weight:600; opacity:0; transform:translateX(-4px); transition:all var(--transition); }
.service-block:hover .service-arrow { opacity:1; transform:translateX(0); }

/* ===== PRODUCT SHOWCASE ===== */
.products-section { background:var(--bg-elevated); }
.product-showcase { margin-top:24px; }
.product-tabs { display:flex; gap:12px; margin-bottom:32px; justify-content:center; }
.product-tab { display:flex; flex-direction:column; align-items:center; gap:4px; padding:14px 28px; border-radius:var(--radius-md); border:1.5px solid var(--border); background:var(--bg-card); backdrop-filter:none; -webkit-backdrop-filter:none; transition:border-color var(--transition), background var(--transition); cursor:pointer; min-width:150px; box-shadow:var(--shadow-sm); }
.product-tab:hover { border-color:var(--border-hover); transform:none; }
.product-tab.active { border-color:var(--blue); background:var(--bg-card); box-shadow:0 0 0 1px rgba(23,131,247,0.2); }
.tab-icon { font-size:1.1rem; transition:none; }
.product-tab.active .tab-icon { transform:none; }
.tab-name { font-size:0.95rem; font-weight:650; }
.tab-desc { font-size:0.75rem; color:var(--text-muted); font-weight:500; }
.product-panels { position:relative; }
.product-panel { display:none; animation:panelFade 0.3s ease; }
.product-panel.active { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; background:var(--bg-card); backdrop-filter:none; -webkit-backdrop-filter:none; border:1px solid var(--border); border-radius:var(--radius-lg); padding:40px; box-shadow:var(--shadow-sm); }
@keyframes panelFade { from { opacity:0; } to { opacity:1; } }
.panel-badge { display:inline-block; padding:4px 12px; border-radius:var(--radius-full); font-size:0.72rem; font-weight:600; background:var(--blue); color:#fff; margin-bottom:14px; box-shadow:none; }
.badge-new { background:var(--green); }
.panel-content h3 { font-size:1.5rem; font-weight:750; margin-bottom:12px; }
.panel-desc { color:var(--text-secondary); font-size:0.95rem; line-height:1.7; margin-bottom:20px; max-width:var(--text-measure); }
.panel-features { display:flex; flex-direction:column; gap:10px; margin-bottom:24px; }
.panel-features li { display:flex; align-items:center; gap:10px; font-size:0.9rem; color:var(--text-secondary); line-height:1.5; }
.pf-icon { color:var(--blue); font-weight:700; font-size:1rem; flex-shrink:0; }

/* Product Visual Dashboards */
.panel-visual { position:relative; }
.visual-dashboard { background:var(--bg); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-sm); }
.dash-header { display:flex; align-items:center; gap:12px; padding:12px 16px; border-bottom:1px solid var(--border); background:var(--bg-elevated); }
.dash-dots { display:flex; gap:6px; }
.dash-dots span { width:10px; height:10px; border-radius:50%; }
.dash-dots span:nth-child(1) { background:#ff5f57; }
.dash-dots span:nth-child(2) { background:#febc2e; }
.dash-dots span:nth-child(3) { background:#28c840; }
.dash-title { font-size:0.8rem; color:var(--text-muted); font-weight:500; }
.dash-body { padding:20px; display:flex; flex-direction:column; gap:16px; }
.dash-metric { display:flex; justify-content:space-between; align-items:center; padding:10px 14px; background:var(--bg-card); border-radius:var(--radius-sm); border:1px solid var(--border); }
.dm-val { font-size:1.1rem; font-weight:750; color:var(--text); background:none; -webkit-text-fill-color:unset; }
.dm-label { font-size:0.8rem; color:var(--text-muted); }
.dash-chart { display:flex; align-items:end; gap:6px; height:80px; padding:10px 0; }
.chart-bar { flex:1; background:var(--blue); border-radius:3px 3px 0 0; opacity:0.75; transition:opacity var(--transition); animation:none; }
.chart-bar:hover { opacity:1; }
@keyframes barGrow { from { height:0; } }

/* Nexus Data Flow */
.data-flow { display:flex; justify-content:center; gap:10px; flex-wrap:wrap; }
.flow-source, .flow-dest { padding:8px 14px; border-radius:var(--radius-sm); font-size:0.8rem; font-weight:600; border:1px solid var(--border); background:var(--bg-card); }
.flow-source { border-color:var(--blue); color:var(--blue); }
.flow-dest { border-color:var(--border-hover); color:var(--text-secondary); }
.flow-arrow { color:var(--text-muted); font-size:1.2rem; display:flex; align-items:center; }
.flow-center { display:flex; justify-content:center; padding:16px 0; }
.flow-hub { padding:14px 40px; border-radius:var(--radius-md); background:var(--blue); color:#fff; font-weight:750; font-size:1.05rem; box-shadow:var(--shadow-sm); animation:none; }

/* Prism Workbench */
.prism-prompt, .prism-response { padding:14px; border-radius:var(--radius-sm); border:1px solid var(--border); background:var(--bg-card); }
.prompt-label, .response-label { font-size:0.7rem; font-weight:600; text-transform:uppercase; letter-spacing:0.1em; margin-bottom:8px; display:block; }
.prompt-label { color:var(--blue); }
.response-label { color:var(--coral); }
.prompt-text, .response-text { font-size:0.85rem; color:var(--text-secondary); line-height:1.6; }

/* ===== INDUSTRIES GRID ===== */
.industries-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:var(--space-5); }
.industry-card { padding:28px; text-align:left; }
.ic-icon { font-size:1.5rem; margin-bottom:14px; }
.industry-card h3 { font-size:1.1rem; font-weight:650; margin-bottom:10px; transition:color var(--transition); }
.industry-card:hover h3 { color:var(--text); }
.industry-card p { color:var(--text-secondary); font-size:0.9rem; line-height:1.7; font-weight:400; max-width:var(--text-measure); }

/* ===== FOOTER ADDRESS ===== */
.footer-address { font-style:normal; font-size:0.88rem; color:var(--text-muted); line-height:1.7; max-width:280px; }
.footer-address a { color:var(--blue); transition:color var(--transition); }
.footer-address a:hover { color:var(--coral); }

/* ===== CONTACT FORM — 2026 Premium ===== */
.contact-form { display:flex; flex-direction:column; gap:20px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}
.form-group:focus-within label { color: var(--blue); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: all 0.2s ease;
  outline: none;
  width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:hover, .form-group select:hover, .form-group textarea:hover {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(23,131,247,0.5);
  background: rgba(23,131,247,0.04);
  box-shadow: 0 0 0 3px rgba(23,131,247,0.1), 0 1px 2px rgba(0,0,0,0.2);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23606078' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* Fix drop-down select option background contrast and label override */
.form-group select option {
  background-color: #0d0d14;
  color: var(--text);
}
.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

/* ===== CONTACT INFO ===== */
.contact-info-list { display:flex; flex-direction:column; gap:14px; }
.contact-info-item { 
  display:flex; 
  gap:16px; 
  align-items:flex-start; 
  padding:20px; 
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.contact-info-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(5, 5, 9, 0.85), rgba(5, 5, 9, 0.95)), url('../assets/images/contact-office.webp');
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.15;
  transition: transform var(--transition-slow);
}
.contact-info-item:hover::before {
  transform: scale(1.1);
  opacity: 0.3;
}
.ci-icon { font-size:1.4rem; flex-shrink:0; margin-top:2px; z-index: 2; }
.contact-info-item h4 { font-size:0.95rem; font-weight:700; margin-bottom:4px; z-index: 2; }
.contact-info-item p { color:var(--text-secondary); font-size:0.9rem; line-height:1.6; z-index: 2; }
.contact-info-item a { color:var(--blue); transition:color var(--transition); z-index: 2; }
.contact-info-item a:hover { color:var(--coral); }

/* ===== RESPONSIVE ===== */
@media (max-width:1200px) {
  .hero-title { font-size:clamp(2.4rem,4.5vw,4rem); }
  .footer-grid { grid-template-columns:1.5fr 1fr 1fr 1fr; }
}
@media (max-width:1024px) {
  .cards-3col, .detail-grid { grid-template-columns:repeat(2, 1fr); }
  .process-grid { grid-template-columns:repeat(2, 1fr); }
  .footer-grid { grid-template-columns:repeat(3, 1fr); }
  .why-grid { grid-template-columns:1fr; gap:48px; }
  .roi-grid { grid-template-columns:1fr; gap:24px; }
  .roi-sub-stats { grid-template-columns:1fr 1fr; }
  .hero-metrics { flex-wrap:wrap; gap:16px; padding:20px; }
  .metric-divider { display:none; }
  .metric { padding:0 16px; }
  .services-grid { grid-template-columns:repeat(2, 1fr); }
  .industries-grid { grid-template-columns:repeat(2, 1fr); }
  .product-panel.active { grid-template-columns:1fr; }
  .industry-group { flex-direction:column; align-items:flex-start; gap:10px; }
  .careers-grid { grid-template-columns:1fr; }
}
@media (max-width:992px) {
  .section, .page-hero { padding:72px 0; }
  .hero { padding:120px 0 64px; min-height:auto; }
  
  /* Simplified hero-bg on mobile */
  .hero-bg {
    background-image:
      radial-gradient(ellipse at center, rgba(5, 5, 9, 0.82) 20%, rgba(5, 5, 9, 0.97) 90%),
      url('../assets/images/hero-digital-grid.webp');
    background-size: cover;
    background-position: center;
    animation: none;
  }
  .hero-bg::after { display: none; }
  .hero-video {
    opacity: 0.18;
    object-position: center;
  }
  /* Kill orbs 4 & 5 on mobile — saves 2 blurred layer repaints */
  .orb-4, .orb-5 { display: none; }
  /* Reduce remaining orb blur on mobile */
  .hero-orb { filter: blur(60px); opacity: 0.18; }

  /* Mobile Navigation - Improved for clicking */
  .nav-links {
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:var(--bg-elevated);
    border-bottom:1px solid var(--border);
    padding:16px 24px;
    gap:0;
    flex-direction:column;
    align-items:stretch;
    /* Removed backdrop-filter on mobile nav — causes scroll jank on WebKit */
    background: rgba(8, 8, 18, 0.98);
    box-shadow:var(--shadow-lg);
    max-height:calc(100vh - 70px);
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
  }
  .nav-links.active { display:flex; }
  .nav-links { display:none; }
  .nav-cta { display:none; }
  .hamburger { display:flex; }

  /* Mobile nav links - emphasized for clicking */
  .nav-links li { margin-bottom:8px; }
  .nav-links .nav-link,
  .nav-links .mega-menu-trigger {
    display:flex;
    padding:16px 20px;
    border-radius:var(--radius-sm);
    background:var(--bg-card);
    border:1px solid var(--border);
    font-size:1rem;
    min-height:52px;
    align-items:center;
    transition:all var(--transition);
    width:100%;
  }
  .nav-links .nav-link:hover,
  .nav-links .mega-menu-trigger:hover {
    background:var(--gradient-soft);
    border-color:var(--blue);
    color:var(--text);
    transform:translateX(4px);
  }

  /* Mobile mega menu: becomes inline expandable section */
  .nav-item-mega {
    position:static;
  }
  .mega-menu {
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    border:none;
    background:transparent;
    backdrop-filter:none;
    padding:0 0 0 16px;
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s cubic-bezier(0.4,0,0.2,1);
    pointer-events:auto;
  }
  .nav-item-mega.active .mega-menu {
    max-height:500px;
  }
  .mega-menu-link {
    padding:12px 16px;
    border-left:2px solid var(--border);
    margin-bottom:4px;
    border-radius:0 var(--radius-sm) var(--radius-sm) 0;
    background:var(--bg-card);
  }
  .mega-menu-link:hover,
  .mega-menu-link.active {
    padding-left:20px;
  }
  .mega-menu::before {
    display:none;
  }

  /* Grids */
  .cards-3col, .detail-grid, .process-grid { grid-template-columns:1fr; }
  .services-grid { grid-template-columns:1fr; }
  .industries-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }

  /* Hero */
  .hero-metrics { padding:18px; flex-wrap:wrap; justify-content:center; }
  .metric { padding:0 10px; min-width:100px; }
  .hero-actions { flex-direction:column; align-items:center; gap:12px; }
  .hero-actions .btn { width:100%; max-width:320px; }

  /* Product Tabs */
  .product-tabs { flex-wrap:nowrap; overflow-x:auto; -webkit-overflow-scrolling:touch; padding-bottom:8px; gap:10px; justify-content:flex-start; scrollbar-width:none; }
  .product-tabs::-webkit-scrollbar { display:none; }
  .product-tab { min-width:140px; padding:14px 20px; flex-shrink:0; }
  .product-panel.active { padding:24px; }

  /* Testimonial */
  .testimonial-card { flex:0 0 100%; padding:28px; }

  /* Why Stats */
  .why-stats { grid-template-columns:1fr 1fr; gap:14px; }

  /* Clients */
  .clients-logos { gap:20px; }
  .industry-clients { gap:16px; }

  /* Contact Form */
  .form-row { grid-template-columns:1fr; }

  /* Buttons: full width on mobile */
  .cta-actions { flex-direction:column; align-items:center; }
  .cta-actions .btn { width:100%; max-width:320px; }
}
@media (max-width:480px) {
  .container { padding:0 16px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .footer-legal { justify-content:center; flex-wrap:wrap; }
  .why-stats { grid-template-columns:1fr; }
  .hero-metrics { flex-direction:column; gap:14px; }
  .hero-metrics .metric { padding:0; }
  .product-panel.active { padding:16px; }
  .stat-value { font-size:1.6rem; }
  .section-title { font-size:clamp(1.6rem,6vw,2.2rem); }
  .hero-title { font-size:clamp(2rem,8vw,3rem); }
  .page-hero-title { font-size:clamp(1.8rem,7vw,2.6rem); }
  .glass-card { padding:20px; }
  .btn-lg { padding:14px 28px; font-size:1rem; }
  .badge { padding:8px 16px; font-size:0.8rem; }
}

/* ===== RESPONSIVE OPTIMIZED IMAGE UTILITIES ===== */

/* Touch device optimizations */
@media (hover:none) and (pointer:coarse) {
  /* Remove hover-only transforms that interfere with touch */
  .glass-card:hover { transform:none; }
  .service-block:hover { transform:none; }
  .btn:hover { transform:none; }
  .btn-primary:hover { transform:none; filter:none; }
  .stat-card:hover { transform:none; }
  .industry-card:hover { transform:none; }
  .metric:hover { transform:none; }
  .client-logo-wrap:hover { transform:none; }
  .product-tab:hover { transform:none; }

  /* Ensure tap targets are at least 44px */
  .nav-link { min-height:44px; display:flex; align-items:center; }
  .btn { min-height:44px; }
  .product-tab { min-height:48px; }
  .faq-question { min-height:52px; }
  .hamburger { min-width:44px; min-height:44px; }
  .theme-toggle { min-width:44px; min-height:44px; }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion:reduce) {
  *, *::before, *::after {
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
  }
  .particles, .hero-orb, .cta-orb, .hero-grid { display:none !important; }
}

.responsive-img-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  aspect-ratio: 16/10;
}
.responsive-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.responsive-img-wrapper:hover img {
  transform: scale(1.04);
}

/* Service visual card blocks styling */
.service-visual-block {
  margin-top: 16px;
  height: 200px;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.service-visual-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity var(--transition), transform var(--transition-slow);
}
.service-block:hover .service-visual-block img {
  transform: scale(1.05);
  opacity: 1;
}
@media (max-width:768px) {
  .service-visual-block { height:160px; }
}

/* Story and Careers image cards */
.story-image-wrap, .careers-image-wrap {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--bg-card);
}
.story-image-wrap img, .careers-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.story-image-wrap:hover img, .careers-image-wrap:hover img {
  transform: scale(1.03);
}

/* Product image banners/visuals */
.product-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  opacity: 0.9;
}

/* Careers Grid Layout */
.careers-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1024px) {
  .careers-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ===== CUSTOM SCROLLBARS ===== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 5px;
  border: 1px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 10000;
  pointer-events: none;
  background: transparent;
}
.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--blue);
  box-shadow: none;
  transition: width 0.05s ease-out;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: border-color var(--transition), color var(--transition), opacity var(--transition), visibility var(--transition);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  transform: none;
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  color: var(--text);
}

/* ===== SPOTLIGHT — disabled (cleaner cards) ===== */
.glass-card.spotlight {
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.glass-card.spotlight:hover {
  background: var(--bg-card);
  border-color: var(--border-hover);
}

/* ===== No full-page mesh — solid backgrounds ===== */
body::before { display: none; }

/* ===== FLOATING FORM LABELS & FOCUS OUTLINE GLOWS ===== */
.form-group {
  position: relative;
  margin-bottom: 24px;
}
.form-group label {
  position: absolute;
  left: 16px;
  top: 14px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
  padding: 0 4px;
}
.form-group label.floating {
  top: -10px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  background: #0d0d14 !important;
  padding: 2px 8px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  z-index: 10;
}
.form-group input, 
.form-group textarea, 
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: #0d0d14 !important;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}
.form-group input::placeholder, 
.form-group textarea::placeholder {
  color: transparent !important;
}
.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(23, 131, 247, 0.12) !important;
  background: var(--bg-card) !important;
  outline: none;
}

/* ===== BREADCRUMBS ===== */
.breadcrumb-container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb-container a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.breadcrumb-container a:hover {
  color: var(--blue);
}
.breadcrumb-separator {
  color: var(--border-hover);
}

/* ===== PARTNER LOGOS ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 30px;
  align-items: center;
}
.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.partner-logo-item:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-sm);
  transform: none;
}
.partner-logo-item svg {
  color: var(--text-muted);
  transition: color var(--transition);
}
.partner-logo-item:hover svg {
  color: var(--blue);
}
.partner-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
}
.partner-logo-item:hover .partner-name {
  color: var(--text);
}

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.whatsapp-float:hover {
  transform: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  color: #fff;
}

/* Split layouts for section variety */
.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-8);
  align-items: center;
}
.split-layout.reverse > :first-child { order: 2; }
.split-copy .section-title { text-align: left; }
.split-copy .section-description { margin: 0 0 var(--space-5); text-align: left; max-width: var(--text-measure); }
.split-copy .eyebrow { margin-bottom: var(--space-3); }
@media (max-width: 900px) {
  .split-layout { grid-template-columns: 1fr; gap: var(--space-6); }
  .split-layout.reverse > :first-child { order: 0; }
}

/* Prose measure utility */
.prose-narrow { max-width: 42rem; }
.prose-narrow p { max-width: none; }

/* Quiet elevated band */
.band-elevated { background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: auto;
  max-width: 400px;
  background: var(--bg-elevated);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.cookie-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.cookie-text a {
  color: var(--blue);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  flex: 1;
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-btn-accept {
  background: var(--blue);
  color: #fff;
}
.cookie-btn-accept:hover {
  box-shadow: none;
  opacity: 0.92;
}
.cookie-btn-decline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}
.cookie-btn-decline:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--border-hover);
}

@media (max-width: 576px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
    bottom: 16px;
  }
}

/* ===== MICRO-INTERACTIVE HOVER TOOLTIPS ===== */
.tooltip-trigger {
  text-decoration: underline dotted var(--blue);
  text-underline-offset: 4px;
  cursor: help;
  position: relative;
  color: var(--text);
  font-weight: 600;
  transition: color var(--transition);
}
.tooltip-trigger:hover {
  color: var(--blue);
}

.glass-tooltip {
  position: absolute;
  background: rgba(10, 10, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-hover);
  color: var(--text-secondary);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  max-width: 220px;
  line-height: 1.5;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 11000;
  pointer-events: none;
  transform: translate(-50%, -100%) translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-tooltip.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -100%) translateY(-15px);
}
.glass-tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(10, 10, 18, 0.95);
  border-right: 1px solid var(--border-hover);
  border-bottom: 1px solid var(--border-hover);
}