/* ============================================================
   VOYANTIX — Enterprise Life Science Platform
   styles.css
   ============================================================ */

/* ============================================================
   1. CSS RESET & CUSTOM PROPERTIES
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Colors */
  --color-primary:        #3c187f;
  --color-primary-light:  #6547cf;
  --color-primary-dark:   #2a1059;
  --color-secondary:      #0891b2;   /* Teal — science accent */
  --color-accent:         #7c3aed;

  /* UI Neutrals */
  --color-dark:           #0f172a;
  --color-dark-2:         #1e293b;
  --color-text:           #334155;
  --color-text-muted:     #64748b;
  --color-border:         #e2e8f0;
  --color-surface:        #f8fafc;
  --color-white:          #ffffff;

  /* Status Colors */
  --color-green:          #16a34a;
  --color-green-light:    #dcfce7;
  --color-yellow:         #d97706;
  --color-yellow-light:   #fef3c7;
  --color-teal:           #0891b2;
  --color-teal-light:     #e0f2fe;

  /* Gradients */
  --gradient-primary:     linear-gradient(135deg, #3c187f 0%, #6547cf 100%);
  --gradient-hero-bg:     linear-gradient(160deg, #f8fafc 0%, #f0f4ff 50%, #f8fafc 100%);
  --gradient-dark:        linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-purple-teal: linear-gradient(135deg, #3c187f 0%, #0891b2 100%);

  /* Shadows */
  --shadow-xs:   0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:   0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.05);
  --shadow-lg:   0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.05);
  --shadow-xl:   0 20px 40px rgba(0,0,0,0.10), 0 8px 16px rgba(0,0,0,0.06);
  --shadow-glow: 0 0 40px rgba(101,71,207,0.15);

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Border Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast:  all 0.15s cubic-bezier(0.4,0,0.2,1);
  --transition-base:  all 0.25s cubic-bezier(0.4,0,0.2,1);
  --transition-slow:  all 0.4s cubic-bezier(0.4,0,0.2,1);

  /* Nav height */
  --nav-height: 72px;
}

/* ============================================================
   2. BASE & TYPOGRAPHY
   ============================================================ */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  color: var(--color-dark);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0; }

p { color: var(--color-text-muted); line-height: 1.7; }
a { color: var(--color-primary-light); text-decoration: none; }

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   3. LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: var(--sp-4);
}

.eyebrow-light { color: rgba(255,255,255,0.6); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-16);
}

.section-title { margin-bottom: var(--sp-4); }

.section-description {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-base);
  white-space: nowrap;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn-large {
  padding: 0.9375rem 2rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(60,24,127,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(60,24,127,0.4);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-primary-light);
  background: rgba(101,71,207,0.05);
  color: var(--color-primary);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: var(--color-primary);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: var(--color-white);
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.625rem 1.25rem;
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition-base);
  border: none;
  cursor: pointer;
}
.btn-primary-sm:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); color: var(--color-white); }

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.625rem 1.25rem;
  background: transparent;
  color: var(--color-primary-light);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition-base);
  cursor: pointer;
}
.btn-outline-sm:hover {
  border-color: var(--color-primary-light);
  background: rgba(101,71,207,0.05);
  color: var(--color-primary-light);
}

.btn-block { width: 100%; justify-content: center; }

/* Focus states */
.btn:focus-visible {
  outline: 3px solid var(--color-primary-light);
  outline-offset: 3px;
}

/* ============================================================
   5. ACCESSIBILITY
   ============================================================ */
.skip-link {
  position: absolute;
  top: -50px;
  left: 1rem;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   6. NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: 1rem; */
  gap: var(--sp-8);
}

.nav-logo { flex-shrink: 0; }

.logo-link {
  display: flex;
  align-items: center;
  transition: var(--transition-fast);
}
.logo-link:hover { opacity: 0.85; }

.nav-logo svg,
.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  padding: 0.5rem 0.65rem;
  color: var(--color-text);
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
  transition: width 0.2s ease;
}
.nav-link:hover { color: var(--color-primary); }
.nav-link:hover::after { width: 60%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition-fast);
}
.nav-phone:hover { color: var(--color-primary); }
.nav-phone i { font-size: 0.75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}
.hamburger:hover { background: var(--color-surface); }

.bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 1px;
  transition: var(--transition-base);
}
.hamburger.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   7. HERO SECTION — Light vibrant theme with shapes
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #ffffff 0%, #f5f0ff 45%, #eaf6fb 100%);
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

/* Large decorative rings — CSS pseudo-elements */
.hero::before {
  content: '';
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  border: 80px solid rgba(101,71,207,0.07);
  top: -220px;
  right: -180px;
  pointer-events: none;
  animation: orbFloat 18s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 50px solid rgba(8,145,178,0.08);
  bottom: -100px;
  left: 5%;
  pointer-events: none;
  animation: orbFloat 24s ease-in-out infinite reverse;
}

/* Soft color blobs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: orbFloat 14s ease-in-out infinite;
}
.hero-orb-1 {
  /* Large purple blob — top-right */
  width: 700px;
  height: 700px;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(101,71,207,0.13) 0%, transparent 65%);
  filter: blur(70px);
  animation-duration: 16s;
}
.hero-orb-2 {
  /* Teal blob — bottom-left */
  width: 580px;
  height: 580px;
  bottom: -160px;
  left: -80px;
  background: radial-gradient(circle, rgba(8,145,178,0.12) 0%, transparent 65%);
  filter: blur(70px);
  animation-duration: 20s;
  animation-delay: -5s;
}
.hero-orb-3 {
  /* Small accent ring shape — mid-right */
  width: 220px;
  height: 220px;
  top: 55%;
  right: 4%;
  border-radius: 50%;
  border: 28px solid rgba(101,71,207,0.09);
  background: transparent;
  filter: none;
  animation-duration: 26s;
  animation-delay: -10s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(18px, -24px) scale(1.03); }
  66%       { transform: translate(-12px, 16px) scale(0.98); }
}

/* Dot grid overlay */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(60,24,127,0.10) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-20) var(--sp-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Hero Left */
.hero-content { animation: slideInLeft 0.8s ease-out; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(60,24,127,0.07);
  border: 1px solid rgba(60,24,127,0.2);
  border-radius: var(--radius-full);
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--sp-6);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary-light);
  animation: pulseDot 2s infinite;
}

.hero-title {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: var(--sp-6);
  color: var(--color-dark);
}

/* Hero headline — 3-tier typographic treatment */
.htl-pre {
  display: block;
  font-size: 0.6em;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.2em;
}
.htl-ls {
  display: block;
  font-size: 1.65em;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, #3c187f 0%, #6547cf 55%, #0891b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.18em;
}
.htl-post {
  display: block;
  font-size: 0.82em;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.35;
}

.gradient-text {
  background: linear-gradient(135deg, #3c187f 0%, #0891b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: var(--sp-8);
}

/* Product chips */
.hero-products {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}

.hero-product-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.3125rem 0.875rem;
  background: #ffffff;
  border: 1px solid rgba(60,24,127,0.15);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-dark);
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: 0 2px 8px rgba(60,24,127,0.07);
}
.hero-product-chip i { font-size: 0.75rem; color: var(--color-primary-light); }
.hero-product-chip:hover {
  background: rgba(60,24,127,0.05);
  border-color: var(--color-primary-light);
  color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(60,24,127,0.13);
}

/* Hero CTA buttons */
.hero-ctas {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}

.btn-hero-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 20px rgba(60,24,127,0.35);
}
.btn-hero-primary:hover {
  background: linear-gradient(135deg, #7c5ce8 0%, #4d21a0 100%);
  box-shadow: 0 8px 32px rgba(60,24,127,0.45);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-hero-outline {
  background: #ffffff;
  color: var(--color-primary);
  border: 2px solid rgba(60,24,127,0.2);
  box-shadow: 0 2px 12px rgba(60,24,127,0.08);
}
.btn-hero-outline:hover {
  background: rgba(60,24,127,0.04);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(60,24,127,0.14);
}

/* Trust stats */
.hero-trust-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  padding-top: var(--sp-8);
  border-top: 1px solid var(--color-border);
}

.trust-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-number {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1;
}

.trust-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border);
}

/* Hero Right — App Mockup */
.hero-visual {
  position: relative;
  animation: slideInRight 0.8s ease-out 0.2s both;
}

/* Floating notification 1 — top right */
.app-notification {
  position: absolute;
  top: -28px;
  right: -16px;
  z-index: 10;
  background: #ffffff;
  border: 1px solid rgba(60,24,127,0.12);
  border-radius: var(--radius-xl);
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  box-shadow: 0 8px 32px rgba(60,24,127,0.14), 0 2px 8px rgba(0,0,0,0.06);
  animation: floatNotif 5s ease-in-out infinite;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-dark);
}
.app-notification::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
}

/* Floating notification 2 — bottom left */
.app-notification-2 {
  position: absolute;
  bottom: -24px;
  left: -20px;
  z-index: 10;
  background: #ffffff;
  border: 1px solid rgba(60,24,127,0.12);
  border-radius: var(--radius-xl);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  box-shadow: 0 8px 32px rgba(60,24,127,0.14), 0 2px 8px rgba(0,0,0,0.06);
  animation: floatNotif 6s ease-in-out infinite 1.5s;
}

.notif2-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.notif-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.notif-content strong {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-dark);
}

.notif-content span {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
}

/* App Mockup Window — keeps dark for contrast */
.app-mockup {
  background: #0f172a;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 24px 64px rgba(60,24,127,0.22),
    0 8px 24px rgba(0,0,0,0.15),
    0 0 0 1px rgba(60,24,127,0.08);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.hero-visual:hover .app-mockup {
  transform: perspective(1200px) rotateY(-1deg) rotateX(0deg);
  box-shadow:
    0 32px 80px rgba(60,24,127,0.28),
    0 8px 24px rgba(0,0,0,0.15),
    0 0 0 1px rgba(60,24,127,0.1);
}

.app-chrome {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: 0.625rem 1rem;
  background: #1e293b;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.chrome-dots { display: flex; gap: 6px; }
.chrome-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }

.chrome-title {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  flex: 1;
  text-align: center;
}

/* Live indicator */
.chrome-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.625rem;
  font-weight: 700;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.chrome-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,0.8);
  animation: pulseDot 1.5s infinite;
}

.app-body { display: flex; height: 340px; }

/* App Sidebar */
.app-sidebar {
  width: 130px;
  flex-shrink: 0;
  background: #0f172a;
  padding: var(--sp-4) 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.5rem 0.875rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  font-weight: 500;
  cursor: pointer;
  border-left: 2px solid transparent;
  transition: var(--transition-fast);
}
.sidebar-item i { font-size: 0.75rem; width: 14px; text-align: center; }
.sidebar-item.active {
  color: #a78bfa;
  background: rgba(101,71,207,0.18);
  border-left-color: #a78bfa;
}

/* App Main Content */
.app-main {
  flex: 1;
  padding: var(--sp-4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  background: #0d1524;
}

/* KPI Cards */
.app-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.kpi-card {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 0.625rem 0.75rem;
}

.kpi-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.kpi-label {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.kpi-trend {
  font-size: 0.5625rem;
  font-weight: 600;
  color: #22c55e;
}

.kpi-trend-good {
  font-size: 0.5625rem;
  font-weight: 600;
  color: #22c55e;
}

.kpi-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.kpi-total { font-size: 0.625rem; font-weight: 500; color: rgba(255,255,255,0.35); }
.kpi-teal  { color: #67e8f9; }
.kpi-green { color: #22c55e; }

.kpi-bar-track {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin-top: 6px;
  overflow: hidden;
}

.kpi-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #6547cf, #a78bfa);
  border-radius: 2px;
  transition: width 1s ease;
}

.kpi-sublabel {
  font-size: 0.5625rem;
  color: rgba(255,255,255,0.35);
  margin-top: 3px;
}

/* Chart */
.app-chart {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 0.625rem 0.75rem;
  flex: 1;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-3);
}

.chart-title {
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

.chart-period {
  font-size: 0.5625rem;
  color: rgba(255,255,255,0.35);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: var(--sp-2);
  height: 60px;
}

.chart-bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.chart-bar {
  width: 100%;
  height: var(--h);
  background: rgba(101,71,207,0.2);
  border-radius: 3px 3px 0 0;
  transition: height 0.8s ease;
}

.chart-bar-active { background: linear-gradient(180deg, #a78bfa 0%, #6547cf 100%); }

.chart-bar-group span {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}

/* Status List */
.app-status-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.status-row {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 0.375rem 0.625rem;
  font-size: 0.6875rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.s-green  { background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,0.5); }
.s-yellow { background: #f59e0b; }
.s-teal   { background: #67e8f9; }

.status-site  { font-weight: 700; color: rgba(255,255,255,0.85); flex: 1; }
.status-count { color: rgba(255,255,255,0.4); }

.status-badge {
  padding: 1px 6px;
  border-radius: var(--radius-full);
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-active    { background: rgba(34,197,94,0.15); color: #22c55e; border: 1px solid rgba(34,197,94,0.25); }
.badge-enrolling { background: rgba(245,158,11,0.15); color: #f59e0b; border: 1px solid rgba(245,158,11,0.25); }
.badge-review    { background: rgba(103,232,249,0.12); color: #67e8f9; border: 1px solid rgba(103,232,249,0.25); }

/* ============================================================
   8. TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--color-dark);
  padding: var(--sp-6) 0;
}

.trust-bar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.trust-bar-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-6);
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}
.trust-badge i { color: var(--color-primary-light); font-size: 0.875rem; }

.trust-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.12);
}

/* ============================================================
   9. SOLUTIONS SECTION
   ============================================================ */
.solutions {
  padding: var(--sp-32) 0;
  background: var(--color-surface);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.solution-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-base);
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(101,71,207,0.2);
}

.solution-card:hover::before { opacity: 1; }

.solution-icon {
  width: 52px;
  height: 52px;
  background: rgba(101,71,207,0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  transition: var(--transition-base);
}

.solution-icon i {
  font-size: 1.25rem;
  color: var(--color-primary-light);
}

.solution-card:hover .solution-icon {
  background: var(--gradient-primary);
}

.solution-card:hover .solution-icon i { color: var(--color-white); }

.solution-card h3 {
  font-size: 1.0625rem;
  margin-bottom: var(--sp-3);
  color: var(--color-dark);
}

.solution-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: var(--sp-5);
}

.solution-features {
  list-style: none;
  margin-bottom: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.solution-features li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.solution-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary-light);
  font-weight: 700;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary-light);
  transition: var(--transition-fast);
}
.solution-link:hover { gap: var(--sp-3); }
.solution-link i { font-size: 0.75rem; transition: var(--transition-fast); }

/* ============================================================
   10. PRODUCTS SECTION
   ============================================================ */
.products {
  padding: var(--sp-32) 0;
  background: var(--color-white);
}

/* 5 cards: 3 top row, 2 bottom row centered */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  justify-content: center;
  align-items: start;
}

.products-grid .product-card {
  flex: 0 1 calc(33.333% - var(--sp-6) * 2 / 3);
  min-width: 280px;
  max-width: 380px;
}

.product-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-base);
  background: var(--color-white);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.product-card-featured {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(101,71,207,0.1);
  transform: scale(1.02);
}

.product-card-featured:hover { transform: scale(1.02) translateY(-6px); }

.product-featured-badge {
  position: absolute;
  top: -1px;
  right: 1.25rem;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-header {
  padding: var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 120px;
}

/* QMS — Brand purple (featured) */
.product-header-qms  { background: var(--gradient-primary); }
/* LMS — Teal */
.product-header-lms  { background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%); }
/* DMS — Indigo */
.product-header-dms  { background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%); }
/* LIMS — Emerald */
.product-header-lims { background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%); }
/* HRMS — Amber */
.product-header-hrms { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); }

.product-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.product-header-qms .product-icon-wrap i  { color: var(--color-white);  font-size: 1.375rem; }
.product-header-lms .product-icon-wrap i  { color: var(--color-teal);   font-size: 1.375rem; }
.product-header-dms .product-icon-wrap i  { color: #4f46e5;             font-size: 1.375rem; }
.product-header-lims .product-icon-wrap i { color: var(--color-green);  font-size: 1.375rem; }
.product-header-hrms .product-icon-wrap i { color: #b45309;             font-size: 1.375rem; }

.product-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.35);
}

.product-header-qms .product-tag  { color: var(--color-white); }
.product-header-lms .product-tag  { color: var(--color-teal); }
.product-header-dms .product-tag  { color: #4f46e5; }
.product-header-lims .product-tag { color: var(--color-green); }
.product-header-hrms .product-tag { color: #b45309; }

.product-body { padding: var(--sp-6) var(--sp-6) var(--sp-8); }

.product-body h3 {
  font-size: 1.25rem;
  margin-bottom: var(--sp-3);
}

.product-body p {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: var(--sp-5);
}

.product-capabilities {
  list-style: none;
  margin-bottom: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.product-capabilities li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.product-capabilities li i {
  color: var(--color-primary-light);
  font-size: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ============================================================
   11. PROCESS SECTION
   ============================================================ */
.process {
  padding: var(--sp-32) 0;
  background: var(--color-surface);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-top: var(--sp-16);
}

.process-step {
  flex: 1;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  position: relative;
  transition: var(--transition-base);
}

.process-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(101,71,207,0.08);
  line-height: 1;
  margin-bottom: var(--sp-4);
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.04em;
}

.process-step h3 {
  font-size: 1.0625rem;
  margin-bottom: var(--sp-3);
}

.process-step p {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: var(--sp-5);
}

.step-deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.step-deliverables li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding-left: 1rem;
  position: relative;
}

.step-deliverables li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-primary-light);
  font-size: 0.75rem;
}

.process-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding-top: 80px;
  flex-shrink: 0;
}

.connector-line {
  width: 40px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

.process-connector i {
  color: var(--color-primary-light);
  font-size: 0.875rem;
}

/* ============================================================
   12. TESTIMONIALS SECTION
   ============================================================ */
.testimonials {
  padding: var(--sp-32) 0;
  background: var(--color-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  align-items: start;
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card-featured {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: scale(1.02);
}

.testimonial-card-featured:hover { transform: scale(1.02) translateY(-3px); }

.testimonial-quote { font-size: 1.5rem; color: var(--color-primary-light); }
.testimonial-card-featured .testimonial-quote { color: rgba(255,255,255,0.4); }

.testimonial-card blockquote p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text);
  font-style: italic;
}

.testimonial-card-featured blockquote p { color: rgba(255,255,255,0.9); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: auto;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
}

.testimonial-card-featured .author-avatar {
  background: rgba(255,255,255,0.2);
}

.author-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.author-info strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-dark);
}

.testimonial-card-featured .author-info strong { color: var(--color-white); }

.author-info span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.testimonial-card-featured .author-info span { color: rgba(255,255,255,0.6); }

.testimonial-stars { color: #f59e0b; font-size: 0.6875rem; }

/* ============================================================
   13. STATS SECTION
   ============================================================ */
.stats-section {
  padding: var(--sp-32) 0;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(101,71,207,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(8,145,178,0.1) 0%, transparent 50%);
}

.stats-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
  position: relative;
  z-index: 1;
}

.stats-text .section-eyebrow { color: rgba(255,255,255,0.5); }

.text-white { color: var(--color-white) !important; }

.text-white-muted {
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--sp-8);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.stats-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: linear-gradient(135deg, #a78bfa 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ============================================================
   14. FAQ SECTION
   ============================================================ */
.faq {
  padding: var(--sp-32) 0;
  background: var(--color-surface);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.open {
  border-color: rgba(101,71,207,0.3);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  text-align: left;
  font-family: inherit;
  line-height: 1.4;
  transition: var(--transition-fast);
}

.faq-question:hover { color: var(--color-primary); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  transition: var(--transition-base);
}

.faq-item.open .faq-icon {
  background: var(--gradient-primary);
  color: var(--color-white);
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 var(--sp-6) var(--sp-5);
}

.faq-answer p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

/* ============================================================
   15. FINAL CTA SECTION
   ============================================================ */
.final-cta {
  padding: var(--sp-32) 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M 60 0 L 0 0 0 60' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='0.8'/%3E%3C/svg%3E");
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--sp-6);
}

.final-cta h2 {
  color: var(--color-white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: var(--sp-5);
  line-height: 1.25;
}

.gradient-text-light {
  background: linear-gradient(135deg, #c4b5fd 0%, #7dd3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 1.0625rem;
  margin-bottom: var(--sp-8);
  line-height: 1.7;
}

.final-cta-buttons {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}

.final-cta-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.final-cta-note i { color: rgba(255,255,255,0.4); margin-right: 4px; }

/* ============================================================
   16. CONTACT SECTION
   ============================================================ */
.contact {
  padding: var(--sp-32) 0;
  background: var(--color-white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: start;
}

.contact-info .section-title { font-size: 2rem; margin-bottom: var(--sp-4); }

.contact-info > p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(101,71,207,0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon i { color: var(--color-primary-light); font-size: 0.875rem; }

.contact-detail-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-detail-item strong {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-detail-item span,
.contact-detail-item a {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.contact-detail-item a:hover { color: var(--color-primary-light); }

.contact-social {
  display: flex;
  gap: var(--sp-3);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  transition: var(--transition-base);
}
.social-link:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Contact Form */
/* .contact-form-wrapper styles moved to contact-page-layout block below */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-dark);
}

.form-group label span { color: var(--color-primary-light); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  color: var(--color-dark);
  background: var(--color-white);
  font-family: inherit;
  transition: var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-muted); opacity: 0.7; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(101,71,207,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group input[type="file"] {
  padding: 0.625rem 0.875rem;
  cursor: pointer;
}

.form-group input[type="file"]::file-selector-button {
  margin-right: 0.75rem;
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-text);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
}

.form-hint {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--sp-3);
  line-height: 1.5;
}

.form-disclaimer a {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.form-success {
  text-align: center;
  padding: var(--sp-12) var(--sp-8);
}

.success-icon {
  font-size: 3.5rem;
  color: var(--color-green);
  margin-bottom: var(--sp-4);
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: var(--sp-3);
}

.form-success p {
  font-size: 1rem;
  color: var(--color-text-muted);
}

/* ============================================================
   17. FOOTER
   ============================================================ */
.footer {
  background: var(--color-dark);
  padding: var(--sp-16) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}

.footer-brand {
  max-width: 280px;
  text-align: left;
}

.footer-brand > a {
  display: inline-block;
  line-height: 0;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: var(--sp-4);
  display: block;
  filter: brightness(0) invert(1);
}

.footer-logo-svg {
  height: 44px;
  width: auto;
  /* margin-bottom: var(--sp-4); */
  margin-left: -10px;
  display: block;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}

.footer-social {
  display: flex;
  gap: var(--sp-3);
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: var(--transition-base);
}
.footer-social-link:hover {
  background: var(--gradient-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-4);
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); }

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition-fast);
}
.footer-col a:hover { color: var(--color-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-badges {
  display: flex;
  gap: var(--sp-5);
}

.footer-bottom-badges span {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-badges i { color: rgba(101,71,207,0.6); }

/* ============================================================
   18. SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   19. KEYFRAMES
   ============================================================ */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}

@keyframes floatNotif {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-8px); }
}

/* ============================================================
   20. SCROLLBAR & SELECTION
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-surface); }
::-webkit-scrollbar-thumb { background: var(--color-primary-light); border-radius: 3px; }

::selection { background: rgba(101,71,207,0.15); color: var(--color-dark); }

/* ============================================================
   21. RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: var(--sp-12); }
  .hero-description { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-products { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-trust-stats { justify-content: center; }
  .hero-visual { max-width: 600px; margin: 0 auto; }
  .app-mockup { transform: none !important; }
  .app-notification { right: 20px; }
  .app-notification-2 { left: 10px; }

  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid .product-card { flex: 0 1 100%; max-width: 480px; }
  .product-card-featured { transform: none; }

  .process-steps {
    flex-direction: column;
    max-width: 560px;
    margin: var(--sp-16) auto 0;
  }
  .process-connector { flex-direction: row; padding-top: 0; }
  .connector-line { width: 30px; height: 2px; }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonial-card-featured { transform: none; }

  .stats-content { grid-template-columns: 1fr; gap: var(--sp-12); }
  .contact-wrapper { grid-template-columns: 1fr; gap: var(--sp-12); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }

  /* Nav — switch to hamburger at 1024px */
  .hamburger { display: flex; }
  .nav-actions { display: none; }
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex: unset;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: var(--sp-4) 0;
    gap: 0;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link {
    display: block;
    padding: 0.875rem 1.5rem;
    border-radius: 0;
    font-size: 1rem;
    width: 100%;
    white-space: normal;
  }
  .nav-link::after { display: none; }
  .nav-dropdown { display: none !important; }
  .nav-logo svg, .nav-logo img { height: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 2rem; }
}

/* ============================================================
   22. RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  /* Hero */
  .hero { min-height: auto; padding: var(--sp-12) 0; }
  .hero-container { padding: var(--sp-12) var(--sp-6); }
  .hero-title { font-size: 2rem; }
  .htl-ls { font-size: 1.45em; letter-spacing: -0.015em; }
  .hero-description { font-size: 1rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-trust-stats { gap: var(--sp-4); }
  .trust-number { font-size: 1.125rem; }
  .trust-divider { display: none; }

  /* App mockup */
  .app-notification { display: none; }
  .app-body { height: auto; }
  .app-sidebar { width: 100px; }
  .sidebar-item span { display: none; }
  .app-main { padding: var(--sp-3); }
  .app-kpis { grid-template-columns: repeat(3, 1fr); gap: var(--sp-2); }

  /* Solutions */
  .solutions-grid { grid-template-columns: 1fr; }
  .solutions { padding: var(--sp-20) 0; }
  .products { padding: var(--sp-20) 0; }
  .process { padding: var(--sp-20) 0; }
  .testimonials { padding: var(--sp-20) 0; }
  .stats-section { padding: var(--sp-20) 0; }
  .faq { padding: var(--sp-20) 0; }
  .final-cta { padding: var(--sp-20) 0; }
  .contact { padding: var(--sp-20) 0; }

  /* Stats */
  .stats-numbers { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .stat-num { font-size: 2rem; }

  /* FAQ */
  .faq-question { font-size: 0.9375rem; padding: var(--sp-4) var(--sp-5); }

  /* Final CTA */
  .final-cta-buttons { flex-direction: column; align-items: center; }
  .final-cta-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: var(--sp-5); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; gap: var(--sp-8); }
  .footer-brand { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-bottom-badges { flex-wrap: wrap; justify-content: center; }
  .nav-logo svg, .nav-logo img { height: 40px; }

  /* Trust bar */
  .trust-badges { gap: var(--sp-4); }
  .trust-sep { display: none; }
}

/* ============================================================
   NEW: DISPLAY TYPOGRAPHY
   ============================================================ */
.display-xl { font-size: clamp(3rem, 6vw, 5rem); font-weight: 900; line-height: 1.05; }
.display-lg { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; }

/* ============================================================
   NEW: NAV DROPDOWN
   ============================================================ */
.nav-item { position: relative; }

.nav-link .fa-chevron-down {
  font-size: 0.65rem;
  margin-left: 2px;
  transition: transform 0.2s ease;
}
.has-dropdown:hover .nav-link .fa-chevron-down { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.06);
  padding: 0.75rem;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 200;
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  border-radius: 10px;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition-fast);
  text-decoration: none;
}
.nav-dropdown a:hover { background: rgba(60,24,127,0.06); color: var(--color-primary); }
.nav-dropdown a i { color: var(--color-primary-light); width: 18px; text-align: center; font-size: 0.875rem; }
.nav-dropdown a span { font-size: 0.75rem; font-weight: 400; color: var(--color-text-muted); display: block; }

/* active nav link */
.nav-link.active { color: var(--color-primary); }
.nav-link.active::after { width: 60%; }

/* ============================================================
   NEW: FEATURE LIST (checkmark)
   ============================================================ */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.feature-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--color-primary-light);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 0.75rem;
}

/* ============================================================
   NEW: PRODUCT ALTERNATING SECTIONS (products.html)
   ============================================================ */
#qms, #lms, #dms, #lims, #hrms { padding: 3.5rem 0; }
.product-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
  overflow: visible;
}
.product-section:last-of-type { border-bottom: none; }
.product-section:nth-child(even) .product-section-visual { order: -1; }

.product-section-content .product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(60,24,127,0.08);
  border: 1px solid rgba(60,24,127,0.2);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.product-section-content h2 { margin-bottom: 1rem; font-size: clamp(1.6rem, 3vw, 2.25rem); }
.product-section-content p { margin-bottom: 1.25rem; line-height: 1.75; }
.product-section-content .feature-list { margin-bottom: 1.75rem; }

.product-highlights {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.product-highlight {
  background: rgba(60,24,127,0.05);
  border: 1px solid rgba(60,24,127,0.12);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  flex: 1;
  min-width: 140px;
}
.product-highlight strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
  line-height: 1;
}
.product-highlight span { font-size: 0.8125rem; color: var(--color-text-muted); }

/* CSS Mockup visuals */
.product-section-visual {
  background: #0f172a;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.mockup-chrome {
  background: #1e293b;
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mockup-chrome .chrome-dots { display: flex; gap: 5px; }
.mockup-chrome .chrome-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-chrome-title {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  flex: 1;
  text-align: center;
}
.mockup-body { padding: 1.25rem; }
.mockup-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 0.625rem 0.875rem;
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
}
.mockup-row-label { color: rgba(255,255,255,0.8); font-weight: 600; flex: 1; }
.mockup-row-sub { color: rgba(255,255,255,0.35); font-size: 0.625rem; }
.mockup-badge {
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
}
.mb-green { background: rgba(34,197,94,0.15); color: #22c55e; border: 1px solid rgba(34,197,94,0.25); }
.mb-blue  { background: rgba(96,165,250,0.15); color: #60a5fa; border: 1px solid rgba(96,165,250,0.25); }
.mb-amber { background: rgba(245,158,11,0.15); color: #f59e0b; border: 1px solid rgba(245,158,11,0.25); }
.mb-purple{ background: rgba(167,139,250,0.15); color: #a78bfa; border: 1px solid rgba(167,139,250,0.25); }
.mb-teal  { background: rgba(103,232,249,0.15); color: #67e8f9; border: 1px solid rgba(103,232,249,0.25); }

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.mockup-title { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.8); }
.mockup-meta  { font-size: 0.5625rem; color: rgba(255,255,255,0.3); }

.mockup-stat-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.mockup-stat {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 0.625rem;
  text-align: center;
}
.mockup-stat strong { display: block; font-size: 1.125rem; font-weight: 800; color: #a78bfa; line-height: 1; margin-bottom: 2px; }
.mockup-stat span   { font-size: 0.5rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.05em; }

.mockup-progress-item { margin-bottom: 0.625rem; }
.mockup-progress-label { display: flex; justify-content: space-between; font-size: 0.5625rem; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.mockup-progress-track { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.mockup-progress-fill  { height: 100%; border-radius: 2px; }
.mpf-purple { background: linear-gradient(90deg, #6547cf, #a78bfa); }
.mpf-teal   { background: linear-gradient(90deg, #0891b2, #67e8f9); }
.mpf-green  { background: linear-gradient(90deg, #16a34a, #22c55e); }

/* ============================================================
   NEW: STAT CARDS (large number sections)
   ============================================================ */
.stats-grid-large {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-card-large { text-align: center; }
.stat-number-large {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #a78bfa, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.stat-label-large {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================================
   NEW: TIMELINE (about.html)
   ============================================================ */
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #6547cf, #0891b2);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}
.timeline-content {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: var(--transition-base);
}
.timeline-content:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

/* Odd items: content is left column — accent on right edge */
.timeline-item:nth-child(odd) .timeline-content {
  border-right: 3px solid var(--color-primary-light);
}
/* Even items: content is right column — accent on left edge */
.timeline-item:nth-child(even) .timeline-content {
  border-left: 3px solid var(--color-secondary);
}

.timeline-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  justify-self: center;
  box-shadow: 0 0 0 4px rgba(101,71,207,0.15);
  z-index: 1;
  position: relative;
  flex-shrink: 0;
}
.timeline-year {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.timeline-content h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.timeline-content p  { font-size: 0.875rem; }
.timeline-empty { visibility: hidden; }

/* ============================================================
   NEW: PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--gradient-primary);
  padding: 8rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-eyebrow { color: rgba(255,255,255,0.65); display: block; margin-bottom: 1rem; }
.page-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.25rem; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }

/* ============================================================
   NEW: ALTERNATING INDUSTRY / SOLUTION SECTIONS
   ============================================================ */
.industry-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--color-border);
}
.industry-section:last-of-type { border-bottom: none; }
.industry-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.industry-section:nth-child(even) .industry-visual { order: -1; }

.industry-visual {
  background: linear-gradient(135deg, rgba(60,24,127,0.06) 0%, rgba(8,145,178,0.06) 100%);
  border: 1px solid rgba(60,24,127,0.12);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  text-align: center;
}
.industry-visual-icon {
  font-size: 3.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.industry-visual h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.industry-visual p  { font-size: 0.9375rem; }

.industry-content .section-eyebrow { text-align: left; display: block; }
.industry-content h2 { margin-bottom: 1rem; font-size: clamp(1.5rem,2.8vw,2rem); }
.industry-content > p { margin-bottom: 1.5rem; }
.industry-content .feature-list { margin-bottom: 1.5rem; }

.industry-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.industry-stat {
  text-align: center;
  background: rgba(60,24,127,0.05);
  border-radius: var(--radius-lg);
  padding: 0.875rem 1.25rem;
  border: 1px solid rgba(60,24,127,0.1);
}
.industry-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.industry-stat span { font-size: 0.75rem; color: var(--color-text-muted); }

/* ============================================================
   NEW: COMPLIANCE BADGES GRID
   ============================================================ */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.compliance-badge {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-base);
}
.compliance-badge:hover {
  border-color: rgba(101,71,207,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.compliance-badge i { font-size: 1.75rem; color: var(--color-primary-light); margin-bottom: 0.75rem; display: block; }
.compliance-badge strong { display: block; font-size: 0.875rem; color: var(--color-dark); margin-bottom: 0.25rem; }
.compliance-badge span { font-size: 0.75rem; color: var(--color-text-muted); }

/* ============================================================
   NEW: CASE STUDY CARDS
   ============================================================ */
.case-study-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}
.case-study-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
}
.case-study-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.case-study-type {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary-light);
  margin-bottom: 0.75rem;
}
.case-study-metric {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.case-study-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.case-study-card p  { font-size: 0.875rem; flex: 1; margin-bottom: 1.25rem; }
.case-study-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary-light);
}
.case-study-link:hover { gap: 0.75rem; }

/* ============================================================
   NEW: VALUES CARDS
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-base);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(101,71,207,0.2); }
.value-icon {
  width: 60px;
  height: 60px;
  background: rgba(101,71,207,0.08);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.375rem;
  color: var(--color-primary-light);
  transition: var(--transition-base);
}
.value-card:hover .value-icon { background: var(--gradient-primary); color: white; }
.value-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.value-card p  { font-size: 0.875rem; }

/* ============================================================
   NEW: TEAM CARDS
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition-base);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.team-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.team-card .team-title { font-size: 0.8125rem; color: var(--color-primary-light); font-weight: 600; margin-bottom: 0.75rem; display: block; }
.team-card p  { font-size: 0.8125rem; }

/* ============================================================
   NEW: CONTACT PAGE SPECIFIC
   ============================================================ */
.contact-page-hero {
  background: var(--gradient-primary);
  padding: 8rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.contact-page-hero .section-eyebrow { color: rgba(255,255,255,0.65); display: block; margin-bottom: 1rem; }
.contact-page-hero h1 { color: white; position: relative; z-index: 1; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.25rem; }
.contact-page-hero p  { color: rgba(255,255,255,0.75); position: relative; z-index: 1; font-size: 1.125rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.contact-main-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: linear-gradient(180deg, rgba(60,24,127,0.03) 0%, #ffffff 120px);
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 3rem;
  align-items: start;
}

/* Left column */
.contact-left-col { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-info-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(60,24,127,0.06);
  border-left: 3px solid var(--color-primary-light);
}
.contact-info-heading {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary-light);
  margin-bottom: 1.5rem;
}
.contact-info-card .contact-details {
  margin-bottom: 1.5rem;
  gap: 1.125rem;
}
.contact-info-card .contact-social {
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

.what-to-expect {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(60,24,127,0.06);
}
.what-to-expect h3 {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary-light);
  margin-bottom: 1.25rem;
}
.expect-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.expect-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--color-border);
}
.expect-list li:last-child { border-bottom: none; padding-bottom: 0; }
.expect-list li:first-child { padding-top: 0; }
.expect-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(101,71,207,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary-light);
  font-size: 0.8125rem;
  margin-top: 1px;
}
.expect-list li > div:last-child { display: flex; flex-direction: column; gap: 3px; }
.expect-list li strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
}
.expect-list li span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Form wrapper */
.contact-form-wrapper {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: 0 4px 32px rgba(60,24,127,0.08), 0 1px 4px rgba(0,0,0,0.04);
}

/* Form header */
.contact-form-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.contact-form-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.contact-form-header p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ============================================================
   NEW: INTEGRATION SECTION
   ============================================================ */
.integration-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem 0;
}
.integration-hub {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 0 0 12px rgba(101,71,207,0.12), 0 0 0 24px rgba(101,71,207,0.06);
}
.integration-spokes {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 600px;
}
.integration-spoke {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-base);
}
.integration-spoke:hover { border-color: var(--color-primary-light); box-shadow: var(--shadow-md); }
.integration-spoke i { color: var(--color-primary-light); }

/* ============================================================
   NEW: SECTION VARIANTS (dark / light-purple)
   ============================================================ */
.section-dark {
  background: var(--color-dark);
  color: white;
  padding: 7rem 0;
}
.section-dark .section-eyebrow { color: rgba(255,255,255,0.5); }
.section-dark h2, .section-dark h3 { color: white; }
.section-dark p { color: rgba(255,255,255,0.65); }

.section-purple {
  background: rgba(60,24,127,0.04);
  padding: 7rem 0;
}

.section-light { background: var(--color-surface); padding: 7rem 0; }
.section-white { background: var(--color-white); padding: 7rem 0; }

/* ============================================================
   NEW: HOW IT WORKS — 4 STEP HORIZONTAL
   ============================================================ */
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, #6547cf, #0891b2);
  z-index: 0;
}
.how-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.how-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--color-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(101,71,207,0.08);
  transition: var(--transition-base);
}
.how-step:hover .how-step-num {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
}
.how-step h3 { font-size: 0.9375rem; margin-bottom: 0.5rem; }
.how-step p  { font-size: 0.8125rem; }
.how-step-icon {
  font-size: 1rem;
  color: var(--color-primary-light);
  margin-bottom: 0.5rem;
  display: block;
}

/* ============================================================
   NEW: TRUST LOGOS BAR
   ============================================================ */
.logos-bar {
  padding: 3rem 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.logos-bar-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}
.logos-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.logo-badge {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}
.logo-badge:hover { border-color: rgba(101,71,207,0.3); color: var(--color-primary); }
.logo-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-primary-light); opacity: 0.6; }

/* ============================================================
   NEW: WHY VOYANTIX DARK SECTION (home)
   ============================================================ */
.why-voyantix {
  background: var(--color-primary);
  padding: 7rem 0;
}
.why-voyantix .section-eyebrow { color: rgba(255,255,255,0.55); }
.why-voyantix h2  { color: white; }
.why-cols {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}
.why-col {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: var(--transition-base);
}
.why-col:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.why-col-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  margin-bottom: 1.25rem;
}
.why-col h3 { color: white; font-size: 1.0625rem; margin-bottom: 0.625rem; }
.why-col p  { color: rgba(255,255,255,0.65); font-size: 0.9375rem; }

/* ============================================================
   PROBLEMS vs SOLUTIONS SECTION
   ============================================================ */
.pvs-section {
  padding: 7rem 0;
  background: #fafbff;
  position: relative;
}
.pvs-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(60,24,127,0.06) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* 3-column grid: problem | arrow | solution */
.pvs-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 2rem 1rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

/* Labels */
.pvs-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.pvs-label-problem {
  background: rgba(239,68,68,0.08);
  color: #dc2626;
  border: 1px solid rgba(239,68,68,0.2);
}
.pvs-label-solution {
  background: rgba(34,197,94,0.08);
  color: #15803d;
  border: 1px solid rgba(34,197,94,0.2);
}

/* Problem cards */
.pvs-problem {
  background: #ffffff;
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  position: relative;
  border-top: 3px solid #ef4444;
}
.pvs-problem-header { margin-bottom: 0.5rem; }
.pvs-problem-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: rgba(239,68,68,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dc2626;
  font-size: 1.125rem;
  margin-bottom: 0.875rem;
}
.pvs-problem h3 { font-size: 1rem; color: var(--color-dark); margin-bottom: 0.5rem; }
.pvs-problem p  { font-size: 0.875rem; line-height: 1.7; color: var(--color-text-muted); margin-bottom: 1rem; }

/* Pain/gain lists */
.pvs-pain-list,
.pvs-gain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pvs-pain-list li,
.pvs-gain-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.5;
}
.pvs-pain-list li { color: #7f1d1d; }
.pvs-pain-list li i { color: #ef4444; font-size: 0.875rem; flex-shrink: 0; margin-top: 1px; }
.pvs-gain-list li { color: #14532d; }
.pvs-gain-list li i { color: #22c55e; font-size: 0.875rem; flex-shrink: 0; margin-top: 1px; }
.pvs-gain-list li strong { color: #15803d; }

/* Arrow column */
.pvs-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pvs-arrow i {
  font-size: 1.375rem;
  color: var(--color-primary-light);
  background: rgba(101,71,207,0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Solution cards */
.pvs-solution {
  background: #ffffff;
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  border-top: 3px solid #22c55e;
  box-shadow: 0 4px 24px rgba(34,197,94,0.06);
}
.pvs-solution-header { margin-bottom: 0.5rem; }
.pvs-solution-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: rgba(34,197,94,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  font-size: 1.125rem;
  margin-bottom: 0.875rem;
}
.pvs-solution h3 { font-size: 1rem; color: var(--color-dark); margin-bottom: 0.5rem; }
.pvs-solution p  { font-size: 0.875rem; line-height: 1.7; color: var(--color-text-muted); margin-bottom: 1rem; }

.pvs-efficiency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.125rem;
  padding: 0.4rem 0.875rem;
  background: linear-gradient(135deg, rgba(60,24,127,0.07), rgba(8,145,178,0.07));
  border: 1px solid rgba(60,24,127,0.15);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
}
.pvs-efficiency-badge i { color: var(--color-secondary); }

/* Summary bar */
.pvs-summary {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, #3c187f 0%, #0891b2 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.pvs-summary-text h3 { font-size: 1.25rem; color: white; margin-bottom: 0.5rem; }
.pvs-summary-text p  { font-size: 0.9375rem; color: rgba(255,255,255,0.75); line-height: 1.7; }
.pvs-summary-text strong { color: white; }
.pvs-summary-metrics {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}
.pvs-metric { text-align: center; }
.pvs-metric-number {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.pvs-metric-label {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.375rem;
  line-height: 1.4;
}
.pvs-metric-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .pvs-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .pvs-arrow {
    padding: 0.75rem 0;
    transform: rotate(90deg);
  }
  .pvs-summary {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  .pvs-summary-metrics { flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; }
}
@media (max-width: 640px) {
  .pvs-section { padding: 4rem 0; }
  .pvs-summary-metrics { gap: 1rem; }
  .pvs-metric-number { font-size: 1.5rem; }
}

/* ============================================================
   NEW: PRODUCT TEASER GRID (home)
   ============================================================ */
.products-teaser { padding: 7rem 0; background: var(--color-white); }
.products-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.products-teaser-grid .pt-card:nth-child(4) { grid-column: 1 / 2; }
.products-teaser-grid .pt-card:nth-child(5) { grid-column: 2 / 4; }

.pt-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}
.pt-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.2s;
}
.pt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(101,71,207,0.2); }
.pt-card:hover::before { opacity: 1; }

.pt-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: rgba(101,71,207,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--color-primary-light);
  margin-bottom: 1rem;
  transition: var(--transition-base);
}
.pt-card:hover .pt-card-icon { background: var(--gradient-primary); color: white; }
.pt-card h3  { font-size: 1.0625rem; margin-bottom: 0.375rem; }
.pt-card > p { font-size: 0.875rem; margin-bottom: 1rem; }
.pt-card ul  { list-style: none; margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.375rem; }
.pt-card ul li {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.pt-card ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--color-primary-light);
  font-size: 0.625rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.pt-card-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary-light);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.15s;
}
.pt-card-link:hover { gap: 0.65rem; }

/* ============================================================
   NEW: INDUSTRY TILES (home 2x2)
   ============================================================ */
.industry-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.industry-tile {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition-base);
}
.industry-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(101,71,207,0.2); }
.industry-tile-icon {
  font-size: 2rem;
  color: var(--color-primary-light);
  flex-shrink: 0;
  width: 52px;
  text-align: center;
}
.industry-tile h3 { font-size: 1rem; margin-bottom: 0.375rem; }
.industry-tile p  { font-size: 0.875rem; }

/* ============================================================
   23. RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 var(--sp-4); }
  .hero-title { font-size: 1.75rem; }
  .htl-ls { font-size: 1.35em; letter-spacing: -0.01em; }
  .section-title { font-size: 1.5rem; }
  .app-kpis { grid-template-columns: 1fr 1fr; }
  .kpi-card:last-child { display: none; }
  .hero-trust-stats { flex-wrap: wrap; gap: var(--sp-4); justify-content: center; }
  .trust-stat { align-items: center; text-align: center; }
}

/* ============================================================
   24. RESPONSIVE — NEW COMPONENTS
   ============================================================ */
@media (max-width: 1024px) {
  .product-section { grid-template-columns: 1fr; gap: 2rem; padding: 1.5rem 0; }
  #qms, #lms, #dms, #lims, #hrms { padding: 2.5rem 0; }
  .product-section:nth-child(even) .product-section-visual { order: 0; }
  .industry-section-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .industry-section:nth-child(even) .industry-visual { order: 0; }
  .stats-grid-large { grid-template-columns: repeat(2,1fr); }
  .compliance-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .why-cols { grid-template-columns: 1fr 1fr; }
  .products-teaser-grid { grid-template-columns: 1fr 1fr; }
  .products-teaser-grid .pt-card:nth-child(4) { grid-column: auto; }
  .products-teaser-grid .pt-card:nth-child(5) { grid-column: auto; }
  .how-steps { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .how-steps::before { display: none; }
  .contact-page-layout { grid-template-columns: 1fr; gap: 2rem; }
  .contact-main-section { padding-top: 2.5rem; padding-bottom: 3rem; }
  .timeline::before { display: none; }
  .timeline-item { grid-template-columns: 1fr; gap: 1rem; }
  .timeline-dot { display: none; }
  .timeline-empty { display: none; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    border-right: none;
    border-left: none;
    border-top: 3px solid var(--color-primary-light);
  }
}
@media (max-width: 768px) {
  .stats-grid-large { grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
  .why-cols { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .industry-tiles { grid-template-columns: 1fr; }
  .products-teaser-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 6rem 0 3.5rem; }
  .section-dark, .section-purple, .section-light, .section-white { padding: 4rem 0; }
  .why-voyantix, .products-teaser { padding: 4rem 0; }
  .product-section { padding: 1rem 0; }
  #qms, #lms, #dms, #lims, #hrms { padding: 2rem 0; }
  .nav-dropdown { display: none; }
}
@media (max-width: 480px) {
  .stats-grid-large { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT — MISSION & VISION REDESIGN
   ============================================================ */
.mv-section {
  background: #ffffff;
  padding: 6rem 0 7rem;
  position: relative;
  overflow: hidden;
}

.mv-orb { display: none; }

.mv-container { position: relative; z-index: 1; }

/* Top pill label */
.mv-top-label {
  text-align: center;
  margin-bottom: 2.5rem;
}
.mv-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(101,71,207,0.07);
  border: 1px solid rgba(101,71,207,0.18);
  border-radius: 999px;
  padding: 0.4rem 1.125rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
}
.mv-pill i { color: var(--color-primary-light); }

/* Shared eyebrow */
.mv-card-eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary-light);
  margin-bottom: 0.75rem;
}
.mv-card-eyebrow-light { color: #0891b2; }

/* Shared icon wrap */
.mv-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  flex-shrink: 0;
  margin-bottom: 1.25rem;
}
.mv-icon-mission {
  background: rgba(101,71,207,0.08);
  border: 1px solid rgba(101,71,207,0.2);
  color: var(--color-primary-light);
}
.mv-icon-vision {
  background: rgba(8,145,178,0.08);
  border: 1px solid rgba(8,145,178,0.2);
  color: #0891b2;
}

/* ── MISSION CARD ── */
.mv-mission-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 24px rgba(60,24,127,0.07);
  position: relative;
  overflow: hidden;
}
.mv-mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #a78bfa, #6547cf);
  border-radius: 24px 24px 0 0;
}

.mv-mission-headline {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.mv-mission-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mv-body-text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Quote block */
.mv-quote-block {
  background: rgba(101,71,207,0.04);
  border: 1px solid rgba(101,71,207,0.12);
  border-left: 3px solid var(--color-primary-light);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.mv-quote-icon {
  font-size: 1.5rem;
  color: rgba(101,71,207,0.25);
  margin-bottom: 0.75rem;
  display: block;
}
.mv-quote-block blockquote {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.65;
  margin-bottom: 0.75rem;
  font-style: italic;
}
.mv-quote-block cite {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-style: normal;
}

/* Mission stats row */
.mv-mission-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}
.mv-mstat { flex: 1; }
.mv-mstat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.375rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.mv-mstat span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.mv-mstat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* ── VISION CARD ── */
.mv-vision-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 4px 24px rgba(60,24,127,0.07);
  position: relative;
  overflow: hidden;
}
.mv-vision-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0891b2, #6547cf);
  border-radius: 24px 24px 0 0;
}

.mv-vision-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.mv-vision-headline {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.3;
}
.mv-vision-body {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 760px;
}

/* Vision pillars */
.mv-vision-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.mv-pillar {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.mv-pillar:hover {
  background: #fff;
  border-color: rgba(101,71,207,0.2);
  box-shadow: 0 4px 16px rgba(60,24,127,0.08);
}
.mv-pillar-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(8,145,178,0.08);
  border: 1px solid rgba(8,145,178,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0891b2;
  font-size: 1rem;
  margin-bottom: 0.875rem;
}
.mv-pillar h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.375rem;
}
.mv-pillar p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .mv-mission-card { grid-template-columns: 1fr; gap: 2rem; }
  .mv-vision-pillars { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .mv-section { padding: 4rem 0 5rem; }
  .mv-mission-card, .mv-vision-card { padding: 1.75rem; }
  .mv-vision-pillars { grid-template-columns: 1fr; }
  .mv-vision-header { flex-direction: column; gap: 0.75rem; }
  .mv-mission-stats { flex-direction: column; gap: 1rem; }
  .mv-mstat-divider { width: 100%; height: 1px; }
}

/* ============================================================
   CAREERS PAGE
   ============================================================ */

/* Why Join grid */
.careers-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.careers-why-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: var(--transition-base);
}
.careers-why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(101,71,207,0.2); }
.careers-why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: rgba(60,24,127,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.careers-why-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.careers-why-card p  { font-size: 0.875rem; line-height: 1.7; }

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: var(--transition-base);
}
.benefit-item:hover { background: rgba(255,255,255,0.1); }
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: rgba(167,139,250,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.benefit-item h4 { font-size: 0.9375rem; color: white; margin-bottom: 0.5rem; }
.benefit-item p  { font-size: 0.8125rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* Life at Voyantix grid */
.life-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
  margin-top: 3rem;
}
.life-card-large { grid-column: span 2; }
.life-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: var(--transition-base);
}
.life-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.life-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(60,24,127,0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.life-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.life-card p  { font-size: 0.875rem; line-height: 1.7; }
.life-card-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}
.life-card-stat strong { font-size: 1.5rem; font-weight: 800; color: var(--color-primary); }
.life-card-stat span   { font-size: 0.8125rem; color: var(--color-text-muted); }

/* Role filters */
.role-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.role-filter {
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: inherit;
}
.role-filter:hover { border-color: var(--color-primary-light); color: var(--color-primary); }
.role-filter.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
}

/* Role cards */
.roles-list { display: flex; flex-direction: column; gap: 1.25rem; }
.role-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: start;
  transition: var(--transition-base);
}
.role-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(101,71,207,0.2); transform: translateY(-2px); }
.role-dept-badge {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.625rem;
}
.dept-engineering { background: rgba(60,24,127,0.08);  color: var(--color-primary); }
.dept-product     { background: rgba(8,145,178,0.08);  color: var(--color-secondary); }
.dept-sales       { background: rgba(245,158,11,0.1);  color: #b45309; }
.dept-cs          { background: rgba(34,197,94,0.08);  color: #15803d; }
.dept-ops         { background: rgba(239,68,68,0.08);  color: #dc2626; }
.role-card-left h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.role-card-left p  { font-size: 0.875rem; line-height: 1.7; margin-bottom: 0.875rem; }
.role-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.role-tags span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}
.role-tags span i { font-size: 0.75rem; color: var(--color-primary-light); }
.role-card-right {
  min-width: 280px;
  max-width: 320px;
}
.role-requirements {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.role-requirements li {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.role-requirements li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--color-primary-light);
  font-size: 0.625rem;
  position: absolute;
  left: 0;
  top: 3px;
}
.role-apply-btn { width: 100%; justify-content: center; }

/* General application CTA */
.general-application {
  margin-top: 2.5rem;
  background: linear-gradient(135deg, rgba(60,24,127,0.06), rgba(8,145,178,0.06));
  border: 1px dashed rgba(101,71,207,0.3);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.general-application .btn {
  flex-shrink: 0;
  white-space: nowrap;
}
.general-application-content { display: flex; align-items: center; gap: 1.25rem; }
.general-application-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.general-application-content h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.general-application-content p  { font-size: 0.875rem; color: var(--color-text-muted); }

/* Hiring process steps */
.hiring-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.hiring-step {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}
.hiring-step-num {
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--color-primary-light);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.hiring-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(60,24,127,0.08);
  border: 2px solid rgba(60,24,127,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}
.hiring-step h3 { font-size: 0.9375rem; margin-bottom: 0.5rem; }
.hiring-step p  { font-size: 0.8125rem; color: var(--color-text-muted); line-height: 1.6; }
.hiring-step-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-secondary));
  margin-top: 28px;
  border-radius: 1px;
}

/* Responsive — careers */
@media (max-width: 1024px) {
  .careers-why-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid    { grid-template-columns: repeat(2, 1fr); }
  .life-grid        { grid-template-columns: 1fr 1fr; }
  .life-card-large  { grid-column: span 2; }
  .role-card        { grid-template-columns: 1fr; gap: 1.5rem; }
  .role-card-right  { min-width: unset; max-width: unset; }
  .hiring-steps     { flex-direction: column; align-items: center; }
  .hiring-step-connector { width: 2px; height: 32px; margin: 0; }
  .general-application { flex-direction: column; text-align: center; }
  .general-application-content { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .careers-why-grid { grid-template-columns: 1fr; }
  .benefits-grid    { grid-template-columns: 1fr; }
  .life-grid        { grid-template-columns: 1fr; }
  .life-card-large  { grid-column: span 1; }
  .role-filters     { gap: 0.375rem; }
}

/* ============================================================
   SOLUTIONS PAGE — REDESIGNED COMPONENTS
   ============================================================ */

/* ── Hero ── */
.sol-hero {
  background: var(--gradient-primary);
  padding: calc(var(--nav-height) + 4rem) 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sol-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.sol-hero-bg { display: none; }
.sol-hero-orb { display: none; }

.sol-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.sol-hero-inner .section-eyebrow { color: rgba(255,255,255,0.6); display: block; margin-bottom: 1rem; }

.sol-hero-inner h1 {
  color: #ffffff;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.sol-hero-inner > p {
  color: rgba(255,255,255,0.72);
  font-size: 1.125rem;
  max-width: 620px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* ── Industry nav cards ── */
.sol-industry-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.sol-industry-nav-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 1rem 1.125rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(8px);
  text-align: left;
}

.sol-industry-nav-card:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 20px rgba(101,71,207,0.2);
}

.sol-nav-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  flex-shrink: 0;
}

.sol-nav-card-text {
  flex: 1;
  min-width: 0;
}
.sol-nav-card-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sol-nav-card-text span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.sol-nav-chevron {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}
.sol-industry-nav-card:hover .sol-nav-chevron {
  transform: translateX(3px);
  color: rgba(255,255,255,0.7);
}

/* ── Industry Sections ── */
.sol-industry-section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--color-border);
}
.sol-industry-section:last-of-type { border-bottom: none; }

.sol-industry-section--alt {
  background: var(--color-surface);
}

.sol-industry-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* ── Feature icon grid ── */
.sol-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin: 1.5rem 0 2rem;
}
.sol-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.sol-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
  color: #fff;
}
.sol-feature-text strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.3;
  margin-bottom: 2px;
}
.sol-feature-text span {
  font-size: 0.75rem;
  color: var(--color-muted);
  line-height: 1.4;
}

/* ── Standards + Products strip ── */
.sol-meta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}
.sol-meta-group { display: flex; flex-direction: column; gap: 0.5rem; }
.sol-meta-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}
.sol-meta-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.sol-meta-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(60,24,127,0.07);
  color: var(--color-primary);
  border: 1px solid rgba(60,24,127,0.15);
}
.sol-meta-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* Content column */
.sol-content { position: relative; }

.sol-section-num {
  position: absolute;
  top: -2rem;
  left: -0.5rem;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.sol-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.sol-industry-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sol-content h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  margin-bottom: 1.25rem;
  margin-top: 0.25rem;
}

.sol-content > p {
  margin-bottom: 1.125rem;
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* Challenge callout box */
.sol-challenge-callout {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.sol-challenge-callout > i {
  color: #d97706;
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.sol-challenge-callout strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #92400e;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.sol-challenge-callout p {
  font-size: 0.875rem;
  color: #78350f;
  line-height: 1.6;
  margin: 0;
}

/* Feature list */
.sol-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
}

.sol-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.55;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  border-left: 2px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.sol-feature-list li:hover {
  border-left-color: var(--color-primary-light);
  background: rgba(101,71,207,0.04);
}

.sol-feature-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.6875rem;
  background: linear-gradient(135deg, #16a34a, #0891b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── Visual Card ── */
.sol-visual-card {
  background: #0f172a;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 64px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
}

.sol-visual-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

.sol-visual-card-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.sol-visual-card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.sol-visual-card-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

/* KPI row */
.sol-visual-kpis {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.sol-kpi-block {
  flex: 1;
  text-align: center;
}

.sol-kpi-number {
  font-size: 1.75rem;
  font-weight: 900;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: linear-gradient(135deg, #a78bfa, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.sol-kpi-label {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.3;
}

.sol-kpi-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Standards + products body */
.sol-visual-body { padding: 1.25rem 1.5rem; }

.sol-visual-standards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.sol-standard-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 0.4rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.sol-standard-tag i {
  color: #22c55e;
  font-size: 0.625rem;
  flex-shrink: 0;
}

.sol-visual-products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.sol-product-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid transparent;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── App Mockup Visuals (Solutions Page) ── */
.sol-mockup {
  background: #0d1117;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.07);
}
.sol-mockup-bar {
  background: #161b22;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sol-mockup-dots { display: flex; gap: 5px; flex-shrink: 0; }
.sol-mockup-dot { width: 11px; height: 11px; border-radius: 50%; }
.sdot-r { background: #ff5f57; }
.sdot-y { background: #febc2e; }
.sdot-g { background: #28c840; }
.sol-mockup-appname {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
  flex: 1;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sol-mockup-status-pill {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.25);
  white-space: nowrap;
  flex-shrink: 0;
}
.sol-mockup-body { display: flex; min-height: 320px; }
.sol-mockup-sidebar {
  width: 44px;
  background: #0d1117;
  border-right: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 0;
  gap: 14px;
}
.sol-mockup-sicon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.22);
}
.sol-mockup-sicon.active {
  background: rgba(101,71,207,0.2);
  color: #a78bfa;
}
.sol-mockup-content {
  flex: 1;
  padding: 14px 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 0;
}
.sol-mockup-heading {
  font-size: 0.625rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sol-stat-chips { display: flex; gap: 7px; }
.sol-stat-chip {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
}
.sol-stat-chip-num {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}
.sol-stat-chip-label {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.sol-mini-table { display: flex; flex-direction: column; gap: 5px; }
.sol-mini-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.05);
}
.sol-mini-row-id {
  font-size: 0.575rem;
  font-weight: 600;
  color: rgba(255,255,255,0.42);
  font-family: monospace;
  flex-shrink: 0;
  width: 62px;
}
.sol-mini-row-label {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.62);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sol-mini-badge {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
  flex-shrink: 0;
}
.smb-green  { background: rgba(34,197,94,0.14);  color: #4ade80; border: 1px solid rgba(34,197,94,0.22); }
.smb-yellow { background: rgba(251,191,36,0.14); color: #fbbf24; border: 1px solid rgba(251,191,36,0.22); }
.smb-blue   { background: rgba(99,102,241,0.14); color: #818cf8; border: 1px solid rgba(99,102,241,0.22); }
.smb-orange { background: rgba(249,115,22,0.14); color: #fb923c; border: 1px solid rgba(249,115,22,0.22); }
.sol-progress-list { display: flex; flex-direction: column; gap: 9px; }
.sol-progress-item { display: flex; flex-direction: column; gap: 4px; }
.sol-progress-header { display: flex; justify-content: space-between; align-items: center; }
.sol-progress-name  { font-size: 0.625rem; color: rgba(255,255,255,0.52); }
.sol-progress-pct   { font-size: 0.625rem; font-weight: 700; }
.sol-progress-track { height: 5px; background: rgba(255,255,255,0.07); border-radius: 4px; overflow: hidden; }
.sol-progress-fill  { height: 100%; border-radius: 4px; }
.sol-pipe { display: flex; align-items: stretch; border: 1px solid rgba(255,255,255,0.07); border-radius: 7px; overflow: hidden; }
.sol-pipe-stage {
  flex: 1;
  text-align: center;
  padding: 7px 3px;
  font-size: 0.525rem;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  border-right: 1px solid rgba(255,255,255,0.06);
  line-height: 1.4;
}
.sol-pipe-stage:last-child { border-right: none; }
.sol-pipe-stage.done   { background: rgba(34,197,94,0.08);   color: #4ade80; }
.sol-pipe-stage.active { background: rgba(99,102,241,0.13);  color: #818cf8; }
.sol-site-list { display: flex; flex-direction: column; gap: 6px; }
.sol-site-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 7px;
}
.sol-site-indicator { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.sol-site-name      { font-size: 0.625rem; color: rgba(255,255,255,0.62); flex: 1; }
.sol-site-score     { font-size: 0.6rem; font-weight: 700; color: rgba(255,255,255,0.82); }
.sol-site-track     { width: 55px; height: 4px; background: rgba(255,255,255,0.07); border-radius: 4px; overflow: hidden; }
.sol-site-fill      { height: 100%; border-radius: 4px; }

/* ── Compliance Badges — enhanced ── */
.sol-compliance-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}

.sol-compliance-badge {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: var(--transition-base);
}

.sol-compliance-badge:hover {
  border-color: rgba(101,71,207,0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.sol-compliance-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.125rem;
  margin: 0 auto 1rem;
}

.sol-compliance-badge strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--color-dark);
  margin-bottom: 0.375rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.sol-compliance-badge span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ── Platform Outcomes — enhanced ── */
.sol-outcomes-metrics-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-2xl);
  padding: 2.5rem 3rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(255,255,255,0.07);
}

.sol-outcomes-metric {
  flex: 1;
  text-align: center;
}

.sol-outcomes-metric-num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: linear-gradient(135deg, #a78bfa 0%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sol-outcomes-metric-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  max-width: 180px;
  margin: 0 auto;
}

.sol-outcomes-metric-sep {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  margin: 0 2rem;
}

/* Outcome cards */
.sol-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sol-outcome-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.sol-outcome-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.sol-outcome-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.sol-outcome-metric {
  font-size: 3rem;
  font-weight: 900;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.sol-outcome-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.0625rem;
  margin-bottom: 0.875rem;
}

.sol-outcome-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.625rem;
  line-height: 1.35;
}

.sol-outcome-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}

/* ── Responsive — Solutions page @ 1024px ── */
@media (max-width: 1024px) {
  .sol-industry-nav { grid-template-columns: repeat(2, 1fr); }
  .sol-industry-inner { grid-template-columns: 1fr; gap: 0; }
  .sol-feature-grid { grid-template-columns: 1fr 1fr; }
  .sol-section-num { font-size: 5rem; top: -1.5rem; }
  .sol-compliance-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .sol-outcomes-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .sol-outcomes-metrics-bar { padding: 2rem; gap: 0; }
  .sol-outcomes-metric-sep { margin: 0 1.25rem; }
}

/* ── Responsive — Solutions page @ 768px ── */
@media (max-width: 768px) {
  .sol-hero { padding: calc(var(--nav-height) + 2.5rem) 0 3.5rem; }
  .sol-hero-inner h1 { font-size: 1.875rem; }
  .sol-hero-inner > p { font-size: 1rem; }
  .sol-industry-nav { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .sol-nav-card-text strong { font-size: 0.8125rem; white-space: normal; }
  .sol-industry-section { padding: 4rem 0; }
  .sol-section-num { display: none; }
  .sol-outcomes-metrics-bar { flex-direction: column; gap: 1.5rem; padding: 1.75rem 1.25rem; }
  .sol-outcomes-metric-sep { width: 60px; height: 1px; margin: 0; }
  .sol-compliance-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .sol-outcomes-grid { max-width: 100%; }
  .sol-visual-kpis { padding: 1rem 1.125rem; }
  .sol-kpi-number { font-size: 1.375rem; }
}

/* ── Responsive — Solutions page @ 480px ── */
@media (max-width: 480px) {
  .sol-industry-nav { grid-template-columns: 1fr; }
  .sol-compliance-grid { grid-template-columns: 1fr 1fr !important; }
  .sol-feature-grid { grid-template-columns: 1fr; }
  .sol-meta-strip { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .sol-meta-divider { display: none; }
}

/* ============================================================
   GLOBAL RESPONSIVE — COMPREHENSIVE MOBILE FIX
   ============================================================ */

/* ── 1024px — Tablets ── */
@media (max-width: 1024px) {
  /* Page hero */
  .page-hero { padding: 5rem 0 3rem; }
  .page-hero-content h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }

  /* Section headers */
  .section-header p { font-size: 1rem; }

  /* Integration visual */
  .integration-visual { flex-direction: column; align-items: center; }
  .integration-spokes { flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

  /* Final CTA */
  .final-cta-content { text-align: center; }
  .final-cta-buttons { justify-content: center; }

  /* About page */
  .mv-grid { grid-template-columns: 1fr !important; }
  .about-hero-grid { grid-template-columns: 1fr !important; }

  /* Contact page */
  .contact-page-layout { grid-template-columns: 1fr; }

  /* Products highlights */
  .product-highlights { flex-wrap: wrap; }

  /* Careers */
  .roles-list { gap: 1rem; }
}

/* ── 768px — Mobile ── */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: clamp(1.75rem, 6vw, 2.5rem) !important; }
  h2 { font-size: clamp(1.5rem, 5vw, 2rem) !important; }
  h3 { font-size: clamp(1.125rem, 4vw, 1.5rem); }

  /* Spacing */
  .container { padding: 0 1rem; }
  .section-white, .section-light, .section-dark { padding: 3rem 0; }

  /* Page hero */
  .page-hero { padding: 4rem 0 2.5rem; text-align: center; }
  .page-hero-content p { font-size: 1rem; }

  /* Buttons */
  .btn-large { padding: 0.75rem 1.5rem; font-size: 0.9375rem; }

  /* Product section visuals — scale down inline icon cards */
  .product-section-visual { overflow: hidden; }
  .product-section-visual > div { padding: 1.5rem 1rem !important; }

  /* Product highlights */
  .product-highlights { flex-direction: column; gap: 1rem; }
  .product-highlight { text-align: center; }

  /* Feature list */
  .feature-list li { font-size: 0.875rem; }

  /* Integration section */
  .integration-spokes { gap: 0.5rem; }
  .integration-spoke { padding: 0.5rem 0.875rem; font-size: 0.8125rem; }
  .integration-hub { width: 100px; height: 100px; font-size: 0.875rem; }

  /* Stats grid */
  .stats-grid-large { grid-template-columns: 1fr 1fr !important; }

  /* Final CTA */
  .final-cta { padding: 3.5rem 0; }
  .final-cta h2 { font-size: clamp(1.5rem, 5vw, 2rem) !important; }
  .final-cta-buttons { flex-direction: column; align-items: center; gap: 0.75rem; }
  .final-cta-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }
  .final-cta-badge { margin: 0 auto 1rem; }

  /* Footer */
  .footer { padding: 3rem 0 1.5rem; }
  .footer-col h4 { margin-top: 0.5rem; }
  .footer-bottom-badges { gap: 0.5rem; }
  .footer-bottom-badges span { font-size: 0.6875rem; }

  /* Careers page */
  .role-card { padding: 1.25rem; }
  .role-filters { flex-wrap: wrap; gap: 0.5rem; }
  .perks-grid { grid-template-columns: 1fr 1fr !important; }

  /* Contact page */
  .contact-info-grid { grid-template-columns: 1fr !important; }
  .contact-methods { flex-direction: column; }

  /* About page */
  .stats-band { flex-direction: column; gap: 1.5rem; text-align: center; }
  .stats-band-divider { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr !important; }
  .values-grid { grid-template-columns: 1fr 1fr !important; }
  .timeline-item { grid-template-columns: 1fr !important; }

  /* Programs page */
  .partner-hero-grid { grid-template-columns: 1fr !important; padding: 6rem 0 2.5rem !important; }
  .why-partner-grid { grid-template-columns: 1fr !important; }
  .hiw-track::before { display: none; }
  .hiw-item { grid-template-columns: 56px 1fr !important; gap: 1rem; }
  .hiw-circle { width: 56px !important; height: 56px !important; }
  .earnings-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .ideal-grid { grid-template-columns: 1fr !important; }
  .apply-layout { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .global-stats { gap: 1.5rem; }
  .commission-card { flex-wrap: wrap; }
  .hero-pill-row { gap: 0.5rem; }
  .partner-hero-cta { flex-direction: column; }
  .partner-hero-cta .btn { width: 100%; justify-content: center; }
  .earn-number { font-size: 2.75rem !important; }
  .apply-form { padding: 1.5rem !important; }

  /* Products page inline card scaling */
  [style*="width:190px"] { width: 140px !important; height: 140px !important; }
  [style*="max-width:300px"] { max-width: 100% !important; }

  /* Section eyebrow */
  .section-eyebrow { font-size: 0.6875rem; }
}

/* ── 480px — Small phones ── */
@media (max-width: 480px) {
  /* Nav */
  .nav-container { padding: 0 0.875rem; }

  /* Typography */
  h1 { font-size: clamp(1.5rem, 7vw, 2rem) !important; }
  h2 { font-size: clamp(1.25rem, 5vw, 1.75rem) !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-bottom { gap: 0.75rem; }
  .footer-bottom-badges { flex-direction: column; align-items: center; gap: 0.375rem; }

  /* Programs page */
  .why-card { padding: 1.25rem; }
  .why-card-icon { width: 44px; height: 44px; }
  .commission-card { padding: 1rem; }
  .commission-badge { width: 44px; height: 44px; font-size: 0.875rem; }
  .global-stats { flex-direction: column; gap: 1.25rem; align-items: center; }
  .global-stat-num { font-size: 1.75rem; }
  .hiw-item { grid-template-columns: 1fr !important; }
  .hiw-left { flex-direction: row; align-items: center; gap: 0.75rem; }
  .hiw-step-label { margin: 0; }
  .ideal-card { flex-direction: column; }
  .form-row { grid-template-columns: 1fr !important; }
  .hero-pill-row { justify-content: flex-start; }

  /* Products page visual cards */
  .product-section-visual > div { padding: 1.25rem 0.75rem !important; gap: 1rem !important; }

  /* Careers */
  .perks-grid { grid-template-columns: 1fr !important; }
  .team-grid { grid-template-columns: 1fr !important; }

  /* About */
  .values-grid { grid-template-columns: 1fr !important; }
  .mv-stats { flex-direction: column; gap: 1rem; }

  /* Integration */
  .integration-spoke { font-size: 0.75rem; padding: 0.4rem 0.75rem; }
}


/* ============================================================
   SECURITY ADDITIONS — Cookie Consent Banner & Form Errors
   ============================================================ */

/* ── Cookie / Privacy Consent Banner ───────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: -160px;
  left: 0;
  right: 0;
  z-index: 10000;
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1rem;
}

.cookie-banner.visible {
  bottom: 0;
}

.cookie-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  background: #0f172a;
  border-top: 3px solid #6547cf;
  border-radius: 12px 12px 0 0;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}

.cookie-banner-text {
  flex: 1;
  min-width: 200px;
}

.cookie-banner-text strong {
  display: block;
  color: #fff;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.cookie-banner-text strong i {
  color: #6547cf;
  margin-right: 0.35rem;
}

.cookie-banner-text p {
  color: rgba(255,255,255,0.6);
  font-size: 0.8125rem;
  margin: 0;
  line-height: 1.5;
}

.cookie-banner-text p a {
  color: #a78bfa;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.625rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
  font-family: inherit;
}

.cookie-btn:hover { opacity: 0.85; }

.cookie-btn-accept {
  background: linear-gradient(135deg, #3c187f, #6547cf);
  color: #fff;
}

.cookie-btn-decline {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}

/* ── Form Field Validation Errors ───────────────────────────── */
.field-error {
  display: block;
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.35rem;
  font-weight: 500;
}

/* ── Honeypot — must stay visually hidden ───────────────────── */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tab-size: 0;
}

/* ── Responsive cookie banner ────────────────────────────────── */
@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
