/* ============================================================
   VITTEN — Static HTML Stylesheet
   Architecture: variables → reset → typography → utilities →
                 layout → components → pages → responsive
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Zinc scale */
  --zinc-50:  #fafafa;
  --zinc-100: #f4f4f5;
  --zinc-200: #e4e4e7;
  --zinc-300: #d4d4d8;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --zinc-600: #52525b;
  --zinc-700: #3f3f46;
  --zinc-800: #27272a;
  --zinc-900: #18181b;
  --zinc-950: #09090b;

  /* Purple scale */
  --purple-50:  #faf5ff;
  --purple-100: #f3e8ff;
  --purple-200: #e9d5ff;
  --purple-300: #d8b4fe;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --purple-800: #6b21a8;
  --purple-900: #581c87;
  --purple-950: #3b0764;

  /* Red */
  --red-400: #f87171;
  --red-500: #ef4444;

  /* Green */
  --green-400: #4ade80;
  --green-500: #22c55e;

  /* Fonts */
  --font-inter: 'Inter', system-ui, -apple-system, sans-serif;
  --font-space-grotesk: 'Space Grotesk', system-ui, sans-serif;

  /* Spacing */
  --container-max: 80rem;   /* max-w-7xl = 1280px */
  --container-pad: 1.5rem;  /* px-6 */

  /* Transitions */
  --transition-base: 150ms ease;
  --transition-medium: 300ms ease;
  --transition-slow: 500ms ease;
}

/* Dark mode tokens (default) */
.dark {
  --color-bg:        var(--zinc-950);
  --color-bg-2:      #0d0d10;
  --color-surface:   var(--zinc-900);
  --color-surface-2: var(--zinc-800);
  --color-border:    rgba(255,255,255,0.07);
  --color-border-2:  rgba(255,255,255,0.12);
  --color-text:      var(--zinc-50);
  --color-text-2:    var(--zinc-300);
  --color-muted:     var(--zinc-400);
  --color-muted-2:   var(--zinc-500);
  --color-card-bg:   rgba(255,255,255,0.03);
  --color-card-hover:rgba(255,255,255,0.06);
  --color-overlay:   rgba(9,9,11,0.75);
  --nav-bg-scrolled: rgba(9,9,11,0.80);
  --nav-border:      rgba(255,255,255,0.05);
  --shadow-card:     0 1px 3px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.25);
  --shadow-lg:       0 20px 60px rgba(0,0,0,0.5);
}

/* Light mode tokens */
.light {
  --color-bg:        #ffffff;
  --color-bg-2:      #fafafa;
  --color-surface:   var(--zinc-50);
  --color-surface-2: var(--zinc-100);
  --color-border:    rgba(0,0,0,0.08);
  --color-border-2:  rgba(0,0,0,0.14);
  --color-text:      var(--zinc-900);
  --color-text-2:    var(--zinc-700);
  --color-muted:     var(--zinc-500);
  --color-muted-2:   var(--zinc-400);
  --color-card-bg:   #ffffff;
  --color-card-hover:#f9f9fb;
  --color-overlay:   rgba(255,255,255,0.75);
  --nav-bg-scrolled: rgba(255,255,255,0.80);
  --nav-border:      rgba(0,0,0,0.08);
  --shadow-card:     0 1px 3px rgba(0,0,0,0.08), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg:       0 20px 60px rgba(0,0,0,0.12);
}

/* Fallback: system default to dark */
html {
  --color-bg:        var(--zinc-950);
  --color-bg-2:      #0d0d10;
  --color-surface:   var(--zinc-900);
  --color-surface-2: var(--zinc-800);
  --color-border:    rgba(255,255,255,0.07);
  --color-border-2:  rgba(255,255,255,0.12);
  --color-text:      var(--zinc-50);
  --color-text-2:    var(--zinc-300);
  --color-muted:     var(--zinc-400);
  --color-muted-2:   var(--zinc-500);
  --color-card-bg:   rgba(255,255,255,0.03);
  --color-card-hover:rgba(255,255,255,0.06);
  --color-overlay:   rgba(9,9,11,0.75);
  --nav-bg-scrolled: rgba(9,9,11,0.80);
  --nav-border:      rgba(255,255,255,0.05);
  --shadow-card:     0 1px 3px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.25);
  --shadow-lg:       0 20px 60px rgba(0,0,0,0.5);
}

@media (prefers-color-scheme: light) {
  html:not(.dark):not(.light) {
    --color-bg:        #ffffff;
    --color-bg-2:      #fafafa;
    --color-surface:   var(--zinc-50);
    --color-surface-2: var(--zinc-100);
    --color-border:    rgba(0,0,0,0.08);
    --color-border-2:  rgba(0,0,0,0.14);
    --color-text:      var(--zinc-900);
    --color-text-2:    var(--zinc-700);
    --color-muted:     var(--zinc-500);
    --color-muted-2:   var(--zinc-400);
    --color-card-bg:   #ffffff;
    --color-card-hover:#f9f9fb;
    --color-overlay:   rgba(255,255,255,0.75);
    --nav-bg-scrolled: rgba(255,255,255,0.80);
    --nav-border:      rgba(0,0,0,0.08);
    --shadow-card:     0 1px 3px rgba(0,0,0,0.08), 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg:       0 20px 60px rgba(0,0,0,0.12);
  }
}

/* Inline SVG sizing helpers */
.w18 { width: 18px; height: 18px; }
.w16 { width: 16px; height: 16px; }

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-inter);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  transition: background-color var(--transition-medium), color var(--transition-medium);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

video {
  display: block;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
.font-display {
  font-family: var(--font-space-grotesk);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-space-grotesk);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
}

.text-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-500);
}

.section-title {
  font-family: var(--font-space-grotesk);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
}

.section-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-muted);
  max-width: 42rem;
}

/* ============================================================
   4. UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section-pad {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-pad-lg {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.purple-dot {
  color: var(--purple-500);
}

/* Scroll-triggered fade-in */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--purple-600);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
  white-space: nowrap;
}
.btn-primary:hover {
  background-color: var(--purple-500);
  box-shadow: 0 8px 24px rgba(168,85,247,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--color-text-2);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid var(--color-border-2);
  transition: border-color var(--transition-base), color var(--transition-base), box-shadow var(--transition-base);
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--purple-500);
  color: var(--color-text);
}

.btn-sm {
  font-size: 0.8125rem;
  padding: 0.5rem 1.125rem;
}

/* ============================================================
   6. BADGE / TAG
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--color-border-2);
  color: var(--color-muted);
  background: var(--color-card-bg);
}

.badge-purple {
  background: rgba(168,85,247,0.12);
  border-color: rgba(168,85,247,0.25);
  color: var(--purple-400);
  margin-bottom: 1.25rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

/* ============================================================
   7. NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color var(--transition-slow), border-color var(--transition-slow), backdrop-filter var(--transition-slow);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background-color: var(--nav-bg-scrolled);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--nav-border);
}

.navbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.navbar-logo {
  font-family: var(--font-space-grotesk);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--color-text);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  color: var(--color-muted);
  transition: color var(--transition-medium);
}
.nav-link:hover {
  color: var(--color-text);
}

/* Product dropdown */
.nav-dropdown-wrapper {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  transition: color var(--transition-medium);
  cursor: pointer;
}
.nav-dropdown-trigger:hover {
  color: var(--color-text);
}

.nav-dropdown-arrow {
  width: 14px;
  height: 14px;
  transition: transform 200ms ease;
}
.nav-dropdown-trigger[aria-expanded="true"] .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 13rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border-2);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}
.nav-dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  transition: color var(--transition-base), background-color var(--transition-base);
}
.nav-dropdown-item:hover {
  color: var(--color-text);
  background-color: var(--color-card-hover);
}

/* Theme toggle */
.theme-toggle {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-muted);
  transition: color var(--transition-medium);
  flex-shrink: 0;
}
.theme-toggle:hover {
  color: var(--color-text);
}

/* Hamburger */
.hamburger {
  width: 2.25rem;
  height: 2.25rem;
  display: none;
  color: var(--color-muted);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: color var(--transition-medium);
}
.hamburger:hover {
  color: var(--color-text);
}
.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 300ms ease, opacity 200ms ease;
}
.hamburger.open .hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.hamburger.open .hamburger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(9,9,11,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-link {
  font-family: var(--font-space-grotesk);
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  transition: color var(--transition-medium);
}
.mobile-nav-link:hover {
  color: var(--purple-400);
}

.mobile-product-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height 300ms ease, opacity 300ms ease;
  opacity: 0;
}
.mobile-product-links.open {
  max-height: 200px;
  opacity: 1;
}

.mobile-product-link {
  font-size: 1.125rem;
  color: var(--zinc-400);
  transition: color var(--transition-medium);
}
.mobile-product-link:hover {
  color: var(--purple-400);
}

/* ============================================================
   8. HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 8rem;
  padding-bottom: 0;
  overflow: hidden;
  text-align: center;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark video: shown in dark mode, hidden in light */
.hero-video-dark {
  display: block;
  position: absolute;
  inset: 0;
}
.hero-video-light {
  display: none;
  position: absolute;
  inset: 0;
}

.light .hero-video-dark { display: none; }
.light .hero-video-light { display: block; }

/* Overlays */
.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(9,9,11,0.5) 0%, rgba(9,9,11,0.2) 50%, rgba(9,9,11,0.85) 100%);
  z-index: 1;
  display: block;
}
.hero-overlay-light {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.85) 100%);
  z-index: 1;
  display: none;
}
.light .hero-overlay-dark { display: none; }
.light .hero-overlay-light { display: block; }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(168,85,247,0.25);
  background: rgba(168,85,247,0.08);
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--purple-400);
}

.hero-title {
  font-family: var(--font-space-grotesk);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  max-width: 56rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  line-height: 1.75;
  color: var(--color-muted);
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 4rem;
}

.hero-screenshot-wrap {
  width: 100%;
  max-width: 70rem;
  position: relative;
}

.hero-screenshot-border {
  border: 1px solid var(--color-border-2);
  border-bottom: none;
  border-radius: 0.75rem 0.75rem 0 0;
  overflow: hidden;
  box-shadow: 0 -20px 60px rgba(168,85,247,0.12), 0 0 0 1px var(--color-border);
}

.hero-screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.625rem 0.625rem 0 0;
}

/* ============================================================
   9. ABOUT SECTION
   ============================================================ */
.about-section {
  padding-top: 9rem;
  padding-bottom: 6rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-title {
  font-family: var(--font-space-grotesk);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.about-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-muted);
}

/* Trustpilot card — matches original design */
.trustpilot-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-card-bg);
  padding: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
}
.trustpilot-card-inner {
  position: relative;
  z-index: 1;
}
.trustpilot-trusted-text {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.trustpilot-strong {
  font-weight: 700;
  color: var(--color-text);
}
.trustpilot-ghost-num {
  position: absolute;
  bottom: 0.5rem;
  right: 1.25rem;
  font-family: var(--font-space-grotesk);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 800;
  color: var(--color-border);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.trustpilot-logo-dark {
  display: block;
  height: 2rem;
  width: auto;
}
.trustpilot-logo-light {
  display: none;
  height: 2rem;
  width: auto;
}
.light .trustpilot-logo-dark { display: none; }
.light .trustpilot-logo-light { display: block; }

.about-image-col {
  position: relative;
}

.about-image-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--color-border);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Funding card overlay — bottom-right corner of the mission image */
/* Card sits on about-image-col (position:relative, no overflow:hidden) */
.about-funding-card {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(10, 6, 20, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  min-width: 210px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.55);
  z-index: 2;
}

.about-funding-amount {
  font-family: var(--font-space-grotesk);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.about-funding-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}

.about-funding-avatars {
  display: flex;
  align-items: center;
}

/* Higher specificity than .about-image-wrap img to prevent blowout */
.about-funding-card .about-funding-avatar,
.about-funding-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid rgba(10, 6, 20, 0.88);
  object-fit: cover;
  margin-left: -0.5rem;
  flex-shrink: 0;
  display: inline-flex;
}

.about-funding-avatars .about-funding-avatar:first-child {
  margin-left: 0;
}

.about-funding-avatar-count {
  background: var(--purple-600);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.01em;
}

.about-image-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-space-grotesk);
  font-size: 7rem;
  font-weight: 800;
  color: rgba(168,85,247,0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   10. CLIENT LOGOS / MARQUEE
   ============================================================ */
.logos-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.logos-label {
  text-align: center;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted-2);
  margin-bottom: 2rem;
}

.logos-marquee-outer {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.logo-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.6;
  filter: grayscale(1) brightness(1.15);
  transition: opacity var(--transition-medium), filter var(--transition-medium);
}
.logo-item:hover {
  opacity: 1;
  filter: grayscale(0);
}

.logo-item img {
  height: 1.75rem;
  width: auto;
  object-fit: contain;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   11. SERVICES / COMPARISON TABLE
   ============================================================ */
.services-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.comparison-table-wrap {
  border: 1px solid var(--color-border-2);
  border-radius: 1rem;
  overflow: hidden;
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.comparison-header-cell {
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
}
.comparison-header-cell:first-child {
  border-right: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.comparison-header-cell:nth-child(2) {
  border-right: 1px solid var(--color-border);
  color: var(--red-400);
}
.comparison-header-cell:nth-child(3) {
  color: var(--purple-400);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--color-border);
  transition: background-color var(--transition-base);
}
.comparison-row:last-child {
  border-bottom: none;
}
.comparison-row:hover {
  background-color: var(--color-card-hover);
}

.comparison-cell {
  padding: 1.125rem 1.5rem;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.comparison-cell:first-child {
  border-right: 1px solid var(--color-border);
  font-weight: 500;
}
.comparison-cell:nth-child(2) {
  border-right: 1px solid var(--color-border);
  color: var(--color-muted);
}
.comparison-cell:nth-child(3) {
  color: var(--color-text-2);
}

.icon-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(168,85,247,0.15);
  color: var(--purple-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-x {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(239,68,68,0.12);
  color: var(--red-400);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   12. PORTFOLIO / FEATURES GRID
   ============================================================ */
.features-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-card-bg);
  transition: border-color var(--transition-medium), background-color var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature-card:hover {
  border-color: rgba(168,85,247,0.3);
  background: var(--color-card-hover);
  box-shadow: 0 0 0 1px rgba(168,85,247,0.08), var(--shadow-card);
}

.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  background: rgba(168,85,247,0.15);
  color: var(--purple-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.feature-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
}

.feature-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-muted);
  flex: 1;
}

/* ============================================================
   13. PROCESS / STEPS
   ============================================================ */
.process-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

[data-component="how-it-works"] .features-header {
  margin-bottom: 9rem;
}

/* Vitten Difference comparison table */
.vitten-diff-section {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.vitten-diff-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1rem;
  overflow: hidden;
}

.vitten-diff-table thead tr {
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.vitten-diff-table th {
  padding: 1.25rem 2rem;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-text-2);
  text-align: left;
  background: rgba(255,255,255,.03);
}

.vitten-diff-table th.col-vitten {
  color: var(--purple-400);
}

.vitten-diff-table td {
  padding: 1.375rem 2rem;
  font-size: .9375rem;
  border-top: 1px solid rgba(255,255,255,.06);
  vertical-align: middle;
}

.vitten-diff-table td:first-child {
  font-weight: 600;
  color: var(--color-text);
  width: 30%;
}

.vitten-diff-table td:nth-child(2) {
  color: var(--color-text-2);
  width: 35%;
}

.vitten-diff-table td:nth-child(3) {
  color: var(--purple-400);
  font-weight: 500;
  width: 35%;
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding-top: 5.5rem; /* bar near ghost number baseline (ghost: top:-1.5rem, h:7.5rem → aligns bar ~underline) */
}

.process-step-number-ghost {
  font-family: var(--font-space-grotesk);
  font-size: 7.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(168,85,247,0.07);
  position: absolute;
  top: -1.5rem;
  left: 0;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.process-step-bar {
  width: 3rem;
  height: 1px;
  background: var(--purple-500);
  margin-bottom: 1.75rem;   /* space between accent bar and title */
  position: relative;
  z-index: 1;
}


.process-step-title {
  font-family: var(--font-space-grotesk);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.process-step-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-muted);
  position: relative;
  z-index: 1;
}

/* ============================================================
   14. PRODUCT SHOWCASE (Scroll animation)
   ============================================================ */
.showcase-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.showcase-header {
  text-align: center;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.showcase-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: flex-start;
  position: relative;
}

.showcase-panels {
  display: flex;
  flex-direction: column;
}

.showcase-panel {
  padding-bottom: 16rem;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}
.showcase-panel:last-child {
  padding-bottom: 8rem;
}
.showcase-panel.active {
  opacity: 1;
}

.showcase-panel-number {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple-500);
  margin-bottom: 0.75rem;
}

.showcase-panel-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.showcase-panel-desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-muted);
}

.showcase-panel-features {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.showcase-panel-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--color-muted);
}
.showcase-panel-feature::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: rgba(168,85,247,0.15);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a855f7'%3E%3Cpath fill-rule='evenodd' d='M12.416 3.376a.75.75 0 0 1 .208 1.04l-5 7.5a.75.75 0 0 1-1.154.114l-3-3a.75.75 0 0 1 1.06-1.06l2.353 2.353 4.493-6.74a.75.75 0 0 1 1.04-.207Z'/%3E%3C/svg%3E");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Sticky right panel */
.showcase-sticky {
  position: sticky;
  top: 8rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--color-border-2);
  box-shadow: var(--shadow-lg);
}

.showcase-image-slot {
  position: relative;
}

.showcase-img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.showcase-img.active {
  opacity: 1;
  position: relative;
}

/* ============================================================
   15. TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  text-align: center;
}

.testimonials-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.testimonial-quote-mark {
  display: flex;
  justify-content: center;
  color: rgba(168,85,247,0.35);
  margin-bottom: 2rem;
}
.testimonial-quote-mark svg {
  width: 2.75rem;
  height: 2.75rem;
}

.testimonial-text {
  font-family: var(--font-space-grotesk);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.6;
  max-width: 52rem;
  margin: 0 auto 2.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-border-2);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9375rem;
}
.testimonial-role {
  font-size: 0.8125rem;
  color: var(--color-muted);
  margin-top: 0.125rem;
  text-align: left;
}
.testimonial-name { text-align: left; }

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.testimonial-dot {
  height: 8px;
  border-radius: 4px;
  background: var(--color-muted-2);
  transition: width 300ms ease, background 300ms ease;
  cursor: pointer;
  width: 8px;
}
.testimonial-dot.active {
  width: 2rem;
  background: var(--purple-500);
}

.testimonial-slide {
  display: none;
}
.testimonial-slide.active {
  display: block;
}

/* ============================================================
   16. SECONDARY VISUAL (Video CTA strip)
   ============================================================ */
.secondary-visual {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.secondary-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.secondary-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.secondary-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,9,11,0.6);
  z-index: 1;
}

.secondary-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 48rem;
  padding: 0 1.5rem;
}

.secondary-title {
  font-family: var(--font-space-grotesk);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.secondary-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}

/* ============================================================
   17. BLOG SECTION
   ============================================================ */
.blog-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-card-bg);
  transition: border-color var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--color-border-2);
  box-shadow: var(--shadow-card);
}

.blog-card-image-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.blog-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.blog-card:hover .blog-card-image-wrap img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog-category-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.625rem;
  border-radius: 9999px;
  background: rgba(168,85,247,0.12);
  color: var(--purple-400);
}

.blog-date {
  font-size: 0.8125rem;
  color: var(--color-muted-2);
}

.blog-card-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.7rem;
  border-radius: 9999px;
  background: rgba(88,28,220,0.85);
  color: #fff;
  backdrop-filter: blur(4px);
  z-index: 1;
}



.blog-card-title {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
}
.blog-card:hover .blog-card-title {
  color: var(--purple-400);
}

.blog-card-excerpt {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-muted);
  flex: 1;
}

.blog-card-readmore {
  font-size: 0.875rem;
  color: var(--purple-500);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap var(--transition-base), color var(--transition-base);
}
.blog-card:hover .blog-card-readmore {
  gap: 0.625rem;
}

/* ============================================================
   18. FAQ SECTION
   ============================================================ */
.faq-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.faq-list {
  max-width: 52rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-top: 1px solid var(--color-border);
  transition: border-color var(--transition-medium);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--color-border);
}
.faq-item.open {
  border-top-color: rgba(168,85,247,0.25);
}
.faq-item.open:last-child {
  border-bottom-color: rgba(168,85,247,0.25);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  color: var(--color-text);
  font-size: 1.125rem;
  font-weight: 500;
  font-family: inherit;
  transition: color var(--transition-base);
}
.faq-item.open .faq-trigger {
  color: var(--purple-400);
}

.faq-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 1px solid var(--color-border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-muted);
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base);
}
.faq-item.open .faq-icon {
  background: var(--purple-600);
  border-color: var(--purple-600);
  color: #fff;
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease, padding 350ms ease;
}
.faq-item.open .faq-body {
  max-height: 500px;
}

.faq-body-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-muted);
}

/* ============================================================
   19. CTA SECTION
   ============================================================ */
.cta-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  text-align: center;
}

.cta-inner {
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
}

.cta-desc {
  font-size: 1.0625rem;
  color: var(--color-muted);
  line-height: 1.75;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   20. FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  overflow: hidden;
}

.footer-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.footer-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,9,11,0.88);
  z-index: 1;
}

.footer-inner {
  position: relative;
  z-index: 2;
  padding: 5rem var(--container-pad) 3rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-headline {
  font-family: var(--font-space-grotesk);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  max-width: 38rem;
  line-height: 1.15;
  margin-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 3rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-space-grotesk);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 22rem;
  margin-bottom: 1.25rem;
}
.footer-email {
  font-size: 0.875rem;
  color: var(--purple-400);
  text-decoration: none;
  transition: color 200ms ease;
}
.footer-email:hover { color: var(--purple-300); }

.footer-col-title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-link {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-medium);
}
.footer-link:hover {
  color: #fff;
}

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

.footer-copy {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer-legal-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-medium);
}
.footer-legal-link:hover {
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   21. INNER PAGE HERO (shared)
   ============================================================ */
.page-hero {
  padding-top: 9rem;
  padding-bottom: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 70% 80% at 50% 30%, rgba(168, 85, 247, 0.16) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.page-hero-title {
  font-size: clamp(3rem, 7.5vw, 5.25rem);
  margin-bottom: 1.25rem;
}

.page-hero-desc {
  font-size: 1.125rem;
  color: var(--color-muted);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.75;
}

/* Left-aligned variant (KYC page) */
.page-hero-left {
  text-align: left;
}
.page-hero-left .page-hero-desc {
  margin: 0;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-muted-2);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: var(--color-muted);
  transition: color var(--transition-base);
}
.breadcrumb a:hover {
  color: var(--color-text);
}
.breadcrumb-sep {
  color: var(--color-muted-2);
}

/* Stats section — full-bleed band */
[data-component="stats"] {
  background-color: lab(8.34576% .602856 -2.11588 / 0.3);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 4rem;
}

.light [data-component="stats"] {
  background-color: var(--color-surface-2);
}

/* Stats strip — contained grid at page content width */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container-max);
  margin: 0 auto;
  border-radius: 0;
}

.stat-cell {
  padding: 3.5rem 1.5rem;
  text-align: center;
  background: transparent;
  border-right: 1px solid var(--color-border);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-value {
  font-family: var(--font-space-grotesk);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.375rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* ============================================================
   22. SOLUTIONS PAGE
   ============================================================ */
.industries-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.industries-header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.industries-accordion {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.industry-item {
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color var(--transition-medium);
}
.industry-item.open {
  border-color: rgba(168,85,247,0.3);
}

.industry-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.375rem 1.5rem;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.industry-trigger-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.industry-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: rgba(168,85,247,0.12);
  color: var(--purple-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.industry-name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
}

.industry-arrow {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 1px solid var(--color-border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-muted);
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base);
}
.industry-item.open .industry-arrow {
  background: var(--purple-600);
  border-color: var(--purple-600);
  color: #fff;
  transform: rotate(45deg);
}

.industry-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease;
}
.industry-item.open .industry-body {
  max-height: 600px;
}

.industry-body-inner {
  padding: 0 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.industry-col-title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.industry-col-title.red { color: var(--red-400); }
.industry-col-title.purple { color: var(--purple-400); }

.industry-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.industry-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.industry-stat {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.industry-stat-value {
  font-family: var(--font-space-grotesk);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--purple-400);
}

.industry-stat-label {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* Outcomes grid */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.outcome-card {
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-card-bg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.outcome-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(168,85,247,0.12);
  color: var(--purple-500);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Comparison 3-col table */
.comparison-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.comparison-3col-card {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-card-bg);
}

.comparison-3col-card.highlighted {
  border-color: rgba(168,85,247,0.35);
  background: rgba(168,85,247,0.04);
  position: relative;
}

.comparison-3col-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.comparison-3col-subtitle {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.comparison-3col-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.comparison-3col-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--color-text-2);
}

/* ============================================================
   23. PRICING PAGE
   ============================================================ */
.pricing-section {
  padding-top: 2rem;
  padding-bottom: 6rem;
}

.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.pricing-toggle-label {
  font-size: 0.9375rem;
  color: var(--color-muted);
}
.pricing-toggle-label.active {
  color: var(--color-text);
  font-weight: 500;
}

.pricing-toggle-switch {
  position: relative;
  width: 3rem;
  height: 1.5rem;
  background: var(--color-surface-2);
  border-radius: 9999px;
  cursor: pointer;
  transition: background var(--transition-base);
}
.pricing-toggle-switch.annual {
  background: var(--purple-600);
}
.pricing-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: #fff;
  transition: transform var(--transition-base);
}
.pricing-toggle-switch.annual .pricing-toggle-knob {
  transform: translateX(1.5rem);
}

.pricing-save-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(168,85,247,0.15);
  color: var(--purple-400);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.pricing-card {
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--color-border);
  background: var(--color-card-bg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pricing-card.featured {
  border-color: rgba(168,85,247,0.4);
  background: linear-gradient(135deg, rgba(168,85,247,0.06) 0%, var(--color-card-bg) 100%);
  position: relative;
  overflow: hidden;
}

.pricing-card-popular {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: var(--purple-600);
  color: #fff;
}

.pricing-plan-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
}

.pricing-plan-desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

.pricing-price {
  font-family: var(--font-space-grotesk);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}
.pricing-price-period {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--color-muted);
}
.pricing-price-custom {
  font-size: 1.75rem;
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text-2);
}

/* Comparison table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  overflow: hidden;
}

.pricing-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.pricing-table td {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-2);
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.pricing-table tbody tr:hover td {
  background: var(--color-card-hover);
}
.pricing-table .category-row td {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple-500);
  background: rgba(168,85,247,0.04);
  padding-top: 1.25rem;
  padding-bottom: 0.5rem;
}

/* ============================================================
   24. PRODUCT OVERVIEW PAGE
   ============================================================ */
.product-modules {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.product-module .btn-primary,
.product-module .btn-outline {
  margin-top: 2.5rem;
  display: inline-block;
}

.product-module {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.product-module-reversed {
  direction: rtl;
}
.product-module-reversed > * {
  direction: ltr;
}

.product-module-image {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--color-border-2);
}
.product-module-image img {
  width: 100%;
  height: auto;
}

.product-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-card-bg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* ============================================================
   25. BLOG PAGE
   ============================================================ */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--color-border-2);
  background: var(--color-card-bg);
}

.blog-featured-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-category-chips {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.blog-chip {
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid var(--color-border-2);
  color: var(--color-muted);
  cursor: pointer;
  transition: border-color var(--transition-base), color var(--transition-base), background var(--transition-base);
}
.blog-chip.active,
.blog-chip:hover {
  border-color: var(--purple-500);
  color: var(--purple-400);
  background: rgba(168,85,247,0.08);
}

/* ============================================================
   26. BLOG ARTICLE PAGE
   ============================================================ */
.article-hero {
  padding-top: 9rem;
  padding-bottom: 3rem;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 22rem;
  gap: 4rem;
  align-items: flex-start;
}

.article-body h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.article-body h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.article-body p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-2);
  margin-bottom: 1.5rem;
}
.article-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.article-body ul li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-2);
  margin-bottom: 0.5rem;
}
.article-body ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.article-body ol li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-2);
  margin-bottom: 0.75rem;
}

.article-pull-quote {
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--purple-500);
  background: rgba(168,85,247,0.05);
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 2rem 0;
}
.article-pull-quote p {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text);
  font-style: italic;
  margin: 0;
}

.article-stat-callout {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(168,85,247,0.2);
  background: rgba(168,85,247,0.04);
  text-align: center;
  margin: 2rem 0;
}

.article-hero-image {
  aspect-ratio: 21/9;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 3rem;
  border: 1px solid var(--color-border-2);
}
.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 7rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-card-bg);
}

.sidebar-toc-title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted-2);
  margin-bottom: 1rem;
}

.sidebar-toc-link {
  display: block;
  font-size: 0.875rem;
  color: var(--color-muted);
  padding: 0.375rem 0;
  border-left: 2px solid transparent;
  padding-left: 0.875rem;
  margin-left: -0.875rem;
  transition: color var(--transition-base), border-color var(--transition-base);
}
.sidebar-toc-link:hover,
.sidebar-toc-link.active {
  color: var(--purple-400);
  border-left-color: var(--purple-500);
}

/* ============================================================
   27. CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-top: 2rem;
  padding-bottom: 6rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-2);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border-2);
  border-radius: 0.625rem;
  color: var(--color-text);
  font-family: var(--font-inter);
  font-size: 0.9375rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.12);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-muted-2);
}

.form-textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2371717a' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

.interest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.interest-chip {
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid var(--color-border-2);
  color: var(--color-muted);
  cursor: pointer;
  transition: all var(--transition-base);
  user-select: none;
}
.interest-chip.selected {
  background: rgba(168,85,247,0.12);
  border-color: rgba(168,85,247,0.35);
  color: var(--purple-400);
}

/* Contact right panel */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-card-bg);
}

.contact-map {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.contact-map img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  display: block;
}

/* ============================================================
   28. COMPANY PAGE
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.value-card {
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-card-bg);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.timeline-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.timeline-list::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2.5rem;
  width: 1px;
  background: var(--color-border-2);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  position: relative;
}

.timeline-year {
  width: 5rem;
  flex-shrink: 0;
  font-family: var(--font-space-grotesk);
  font-weight: 700;
  color: var(--purple-400);
  font-size: 0.9375rem;
  padding-top: 0.25rem;
  text-align: right;
  position: relative;
  z-index: 1;
}

.timeline-dot {
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--purple-500);
  margin-top: 0.4rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 3px rgba(168,85,247,0.2);
  transition: background 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease;
}

.timeline-item:hover .timeline-dot {
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}

.timeline-content {
  flex: 1;
  padding-top: 0.1rem;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.65;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-card-bg);
}

.team-image {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.team-card:hover .team-image img {
  transform: scale(1.04);
}

.team-body {
  padding: 1.25rem;
}
.team-name {
  font-size: 1rem;
  font-weight: 600;
}
.team-role {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

/* ============================================================
   29. INTEGRATIONS PAGE
   ============================================================ */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.integration-card {
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-card-bg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition-medium), box-shadow var(--transition-medium);
}
.integration-card:hover {
  border-color: var(--color-border-2);
  box-shadow: var(--shadow-card);
}

.integration-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.integration-logo {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.integration-logo-lg {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.875rem;
}
.integration-logo img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}

.integration-status {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.625rem;
  border-radius: 9999px;
}
.integration-status.native {
  background: rgba(34,197,94,0.12);
  color: var(--green-500);
}
.integration-status.zapier {
  background: rgba(255,95,31,0.12);
  color: #ff5f1f;
}

.integration-name {
  font-size: 1rem;
  font-weight: 600;
}
.integration-desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* How it works (2-col) */
.how-it-works {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ============================================================
   30. PRODUCT SUB-PAGES (KYC, AML, Risk)
   ============================================================ */
.product-sub-hero {
  padding-top: 9rem;
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
}

.product-sub-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse 80% 70% at 20% 40%, rgba(168, 85, 247, 0.14) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.product-sub-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-end;
}

.product-sub-screenshot {
  border-radius: 0.75rem 0.75rem 0 0;
  overflow: hidden;
  border: 1px solid var(--color-border-2);
  border-bottom: none;
  box-shadow: 0 -20px 60px rgba(168,85,247,0.1);
}
.product-sub-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

.how-it-works-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.hiw-step {
  display: flex;
  gap: 1.25rem;
}

.hiw-step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(168,85,247,0.15);
  color: var(--purple-500);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hiw-step-num-zapier {
  background: rgba(255, 95, 31, 0.12);
  color: #ff5f1f;
}

.hiw-step-content {
  padding-top: 0.2rem;
}
.hiw-step-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}
.hiw-step-desc {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ============================================================
   31. NEWSLETTER CTA (blog page)
   ============================================================ */
.newsletter-section {
  padding: 4rem;
  border-radius: 1.5rem;
  border: 1px solid var(--color-border-2);
  background: linear-gradient(135deg, rgba(168,85,247,0.08) 0%, var(--color-card-bg) 100%);
  text-align: center;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 28rem;
  width: 100%;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border-2);
  border-radius: 9999px;
  color: var(--color-text);
  font-family: var(--font-inter);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color var(--transition-base);
}
.newsletter-input:focus {
  border-color: var(--purple-500);
}

/* ============================================================
   32. OPEN ROLES (company page)
   ============================================================ */
.roles-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 48rem;
  margin: 0 auto;
}

.role-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 0.875rem;
  border: 1px solid var(--color-border);
  background: var(--color-card-bg);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.role-item:hover {
  border-color: var(--purple-500);
  box-shadow: 0 0 0 1px rgba(168,85,247,0.25), 0 4px 20px rgba(168,85,247,0.1);
}

.role-title {
  font-size: 1rem;
  font-weight: 600;
}
.role-meta {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-top: 0.2rem;
  display: flex;
  gap: 1rem;
}

.role-apply {
  font-size: 0.875rem;
  color: var(--purple-500);
  font-weight: 500;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* ============================================================
   33. FLOATING LOGOS (integrations hero)
   ============================================================ */
.floating-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 18rem;
}

.floating-logo-item {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.floating-logo-item:hover {
  transform: translateY(-4px);
}
.floating-logo-item img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

/* ============================================================
   33b. INTEGRATIONS HERO (floating icons)
   ============================================================ */

/* Hero shell — mirrors page-hero gradient */
.integ-hero {
  padding-top: 9rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.integ-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 70% 80% at 50% 30%, rgba(168, 85, 247, 0.16) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.integ-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Centre text */
.integ-hero-text {
  flex: 0 1 680px;
  text-align: center;
}

.integ-hero-title {
  font-family: var(--font-space-grotesk);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.integ-hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.25rem;
  flex-wrap: wrap;
}

/* Icon columns */
.integ-hero-icons {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
  align-items: center;
}

.integ-hero-icons--left .integ-float-wrap:nth-child(2) {
  align-self: flex-end;
  margin-right: -1.5rem;
}

.integ-hero-icons--right .integ-float-wrap:nth-child(2) {
  align-self: flex-start;
  margin-left: -1.5rem;
}

/* Rotation wrapper — keeps the float animation from fighting the rotate */
.integ-float-wrap {
  transform: rotate(var(--rot, 0deg));
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}

/* The icon tile */
.integ-float-icon {
  width: 72px;
  height: 72px;
  border-radius: 1.375rem;
  background: var(--color-surface);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  animation: integ-float 4s ease-in-out infinite;
}

.integ-float-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 0.5rem;
}

@keyframes integ-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

/* ============================================================
   33c. INTEGRATIONS THREE-STEP SECTION
   ============================================================ */

.integ-steps-section {
  background: var(--color-surface);
}

.integ-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 5rem;
  align-items: start;
}

.integ-steps-heading {
  font-family: var(--font-space-grotesk);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.integ-steps-desc {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.75;
}

.integ-steps-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.integ-step-card {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  padding: 1.75rem 2rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
}

.integ-step-num {
  font-family: var(--font-space-grotesk);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(168, 85, 247, 0.25);
  flex-shrink: 0;
  min-width: 2.5rem;
  padding-top: 0.1rem;
}

.integ-step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.integ-step-desc {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ============================================================
   33d. APP ICONS MARQUEE (replaces company logos on integrations page)
   ============================================================ */

.integ-tools-section {
  padding: 3rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.integ-tool-item {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.875rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.75rem;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.integ-tool-item:hover {
  opacity: 1;
}

.integ-tool-item img {
  width: 2.125rem;
  height: 2.125rem;
  object-fit: contain;
  border-radius: 0.375rem;
}

.integ-icons-track {
  align-items: center;
}

/* ============================================================
   34. RELATED POSTS (article page)
   ============================================================ */
.related-posts {
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top: 1px solid var(--color-border);
  margin-top: 4rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

/* ============================================================
   35. SHARE BUTTONS
   ============================================================ */
.share-buttons {
  display: flex;
  gap: 0.625rem;
}

.share-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-border-2);
  background: var(--color-card-bg);
  color: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-base), border-color var(--transition-base);
  cursor: pointer;
}
.share-btn:hover {
  color: var(--color-text);
  border-color: var(--color-border-2);
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */

/* === Tablet (≤1023px) === */
@media (max-width: 1023px) {
  .about-grid            { grid-template-columns: 1fr; gap: 2.5rem; }
  .features-grid         { grid-template-columns: repeat(2, 1fr); }
  .process-grid          { grid-template-columns: repeat(2, 1fr); }
  .process-grid-3        { grid-template-columns: repeat(2, 1fr); }
  .blog-grid             { grid-template-columns: repeat(2, 1fr); }
  .blog-cards-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid           { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid .footer-brand-col { grid-column: span 3; }
  .comparison-3col       { grid-template-columns: 1fr; }
  .industries-accordion  { max-width: 100%; }
  .industry-body-inner   { grid-template-columns: 1fr; gap: 1rem; }
  .outcomes-grid         { grid-template-columns: repeat(2, 1fr); }
  .team-grid             { grid-template-columns: repeat(2, 1fr); }
  .values-grid           { grid-template-columns: repeat(2, 1fr); }
  .integrations-grid     { grid-template-columns: repeat(2, 1fr); }
  .product-modules       { gap: 3rem; }
  .product-module        { grid-template-columns: 1fr; }
  .product-module-reversed { direction: ltr; }
  .product-pillars       { grid-template-columns: 1fr 1fr; }
  .stats-strip           { grid-template-columns: repeat(2, 1fr); }
  .article-layout        { grid-template-columns: 1fr; }
  .article-sidebar       { position: static; }
  .blog-featured         { grid-template-columns: 1fr; }
  .showcase-layout       { grid-template-columns: 1fr; }
  .showcase-sticky       { display: none; }
  .contact-layout        { grid-template-columns: 1fr; }
  .pricing-cards         { grid-template-columns: 1fr; max-width: 32rem; margin-left: auto; margin-right: auto; }
  .how-it-works          { grid-template-columns: 1fr; }
  .product-sub-hero-inner { grid-template-columns: 1fr; }
  .product-sub-screenshot { display: none; }
  .hero-grid             { grid-template-columns: 1fr; }
  .integ-steps-grid      { grid-template-columns: 1fr; gap: 3rem; }
  .integ-hero-icons      { display: none; }
  .floating-logos-grid   { grid-template-columns: repeat(3, 1fr); }
  .related-grid          { grid-template-columns: repeat(2, 1fr); }
}

/* === Mobile (≤767px) === */
@media (max-width: 767px) {
  :root { --container-pad: 1rem; }

  .section-pad    { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .section-pad-lg { padding-top: 4.5rem; padding-bottom: 4.5rem; }

  .navbar-links   { display: none; }
  .hamburger      { display: flex; }

  .hero-section   { padding-top: 6rem; }
  .hero-title     { font-size: clamp(1.875rem, 8vw, 2.5rem); }
  .hero-cta-group { flex-direction: column; align-items: center; width: 100%; }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-outline { width: 100%; justify-content: center; }

  .features-grid  { grid-template-columns: 1fr; }
  .process-grid   { grid-template-columns: 1fr; }
  .process-grid-3 { grid-template-columns: 1fr; }
  .blog-grid      { grid-template-columns: 1fr; }
  .blog-cards-grid { grid-template-columns: 1fr; }
  .outcomes-grid  { grid-template-columns: 1fr; }
  .values-grid    { grid-template-columns: 1fr; }
  .integrations-grid { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: 1fr; }
  .product-pillars { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-grid .footer-brand-col { grid-column: span 1; }
  .pricing-cards  { max-width: 100%; }
  .stats-strip    { grid-template-columns: 1fr 1fr; }
  .comparison-header { font-size: 0.8125rem; }
  .comparison-cell { padding: 0.875rem 0.875rem; font-size: 0.875rem; }
  .testimonial-text { font-size: 1.125rem; }
  .related-grid   { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn-primary { width: 100%; justify-content: center; }
  .blog-featured  { grid-template-columns: 1fr; }
  .floating-logos-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-headline { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .footer-inner   { padding: 3rem 1rem 2rem; }
  .secondary-visual { min-height: 50vh; }

  .page-hero      { padding-top: 7rem; padding-bottom: 3rem; }
  .page-hero-title { font-size: clamp(2.5rem, 9vw, 3.75rem); }

  /* Integrations hero — hide side icons on small screens */
  .integ-hero-icons { display: none; }
  .integ-hero-inner { padding: 0 1.25rem; }
  .integ-steps-grid { grid-template-columns: 1fr; gap: 3rem; }
  .integ-step-card  { gap: 1.25rem; padding: 1.25rem 1.5rem; }
}

/* === Comparison table mobile (≤639px) — stacked card layout === */
@media (max-width: 639px) {
  /* Hide the 3-col header — labels are injected via ::before */
  .comparison-header { display: none; }

  /* Collapse each row to a single column */
  .comparison-row {
    grid-template-columns: 1fr;
  }

  /* Drop all right-side borders */
  .comparison-cell:first-child,
  .comparison-cell:nth-child(2) {
    border-right: none;
  }

  /* Challenge label: compact muted header for the row group */
  .comparison-cell:first-child {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 0.625rem 1.25rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-muted);
  }

  /* Cells 2 & 3 use flex-wrap so ::before can occupy its own line */
  .comparison-cell:nth-child(2),
  .comparison-cell:nth-child(3) {
    flex-wrap: wrap;
    gap: 0 0.75rem;   /* row-gap:0 keeps label tight, col-gap for icon+text */
    padding: 0.875rem 1.25rem;
  }

  /* Label injected above the icon+text content */
  .comparison-cell:nth-child(2)::before,
  .comparison-cell:nth-child(3)::before {
    flex: 0 0 100%;   /* takes full line → icon+text wrap to next line */
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 0.375rem;
  }

  .comparison-cell:nth-child(2)::before {
    content: "Without Vitten";
    color: var(--red-400);
  }
  .comparison-cell:nth-child(3)::before {
    content: "With Vitten";
    color: var(--purple-400);
  }

  /* Separator between the two comparison cells */
  .comparison-cell:nth-child(2) {
    border-bottom: 1px solid var(--color-border);
  }
}

/* === Responsive tables (≤767px) — stack instead of horizontal scroll === */
@media (max-width: 767px) {

  /* ── Vitten Difference table (solutions page) ── */
  .vitten-diff-table,
  .vitten-diff-table thead,
  .vitten-diff-table tbody,
  .vitten-diff-table tr,
  .vitten-diff-table th,
  .vitten-diff-table td { display: block; width: 100%; }

  .vitten-diff-table thead { display: none; }

  .vitten-diff-table tr {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 0.875rem;
    overflow: hidden;
    margin-bottom: 0.875rem;
  }

  .vitten-diff-table td {
    padding: 0.75rem 1.125rem;
    border-top: 1px solid rgba(255,255,255,.06);
    width: auto;
  }

  .vitten-diff-table td:first-child { border-top: none; }

  /* Column label injected via ::before */
  .vitten-diff-table td::before {
    display: block;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-muted);
    margin-bottom: 0.2rem;
  }
  .vitten-diff-table td:nth-child(1)::before { content: "Challenge"; }
  .vitten-diff-table td:nth-child(2)::before { content: "Without Vitten"; }
  .vitten-diff-table td:nth-child(3)::before { content: "With Vitten"; color: var(--purple-400); }

  /* ── Full feature comparison table (pricing page) ── */
  .table-scroll { overflow-x: visible; }

  .pricing-table,
  .pricing-table thead,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table th,
  .pricing-table td { display: block; width: 100%; box-sizing: border-box; }

  .pricing-table thead { display: none; }

  .pricing-table tbody tr:not(.category-row) {
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 0.75rem;
  }

  .pricing-table td {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.875rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .pricing-table tbody tr:not(.category-row) td:last-child { border-bottom: none; }

  /* Feature name cell */
  .pricing-table tbody tr:not(.category-row) td:first-child {
    background: rgba(168,85,247,0.04);
    font-weight: 600;
    font-size: 0.8125rem;
    justify-content: flex-start;
    border-bottom: 1px solid var(--color-border);
  }

  /* Plan label injected before value */
  .pricing-table tbody tr:not(.category-row) td:nth-child(2)::before { content: "Starter"; }
  .pricing-table tbody tr:not(.category-row) td:nth-child(3)::before { content: "Growth"; }
  .pricing-table tbody tr:not(.category-row) td:nth-child(4)::before { content: "Enterprise"; }

  .pricing-table tbody tr:not(.category-row) td:nth-child(2)::before,
  .pricing-table tbody tr:not(.category-row) td:nth-child(3)::before,
  .pricing-table tbody tr:not(.category-row) td:nth-child(4)::before {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
  }

  /* Category section rows */
  .pricing-table .category-row {
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
  }
  .pricing-table .category-row td {
    background: var(--color-surface);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
    border-radius: 0.5rem;
    border: 1px solid var(--color-border);
    justify-content: flex-start;
  }
}

/* === Small mobile (≤479px) === */
@media (max-width: 479px) {
  .stats-strip    { grid-template-columns: 1fr; }
  .comparison-3col-card { padding: 1.25rem; }
  .about-image-number { font-size: 4rem; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Hero */
.contact-hero {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background-color: var(--bg-primary);
}
.contact-hero-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 70% 80% at 50% 30%, rgba(168, 85, 247, 0.16) 0%, transparent 70%);
  pointer-events: none;
}
.contact-hero-inner {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}
.contact-hero-title {
  font-family: var(--font-space-grotesk);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.contact-hero-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* Form section */
.contact-form-section {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background-color: var(--bg-primary);
}
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-col { /* column 1 */ }
.contact-info-col { /* column 2 */ }

/* Form elements */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-field {
  display: flex;
  flex-direction: column;
}
.contact-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.field-required {
  color: var(--purple-500);
}
.contact-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border-2);
  color: var(--color-text);
  font-family: var(--font-inter);
  font-size: 0.875rem;
  transition: border-color 0.2s ease;
  outline: none;
}
.contact-input::placeholder {
  color: var(--color-muted);
}
.contact-input:focus {
  border-color: var(--purple-500);
}
.contact-input.input-error {
  border-color: var(--red-400);
}
.contact-textarea {
  resize: none;
  line-height: 1.6;
}
.contact-select-wrapper {
  position: relative;
}
.contact-select {
  appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}
.contact-select-arrow {
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: var(--text-muted);
  pointer-events: none;
}
.contact-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field-error {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: var(--red-500);
  line-height: 1.4;
}
.field-error svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Interest chips */
.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.contact-chip {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: var(--surface);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-inter);
}
.contact-chip:hover {
  border-color: rgba(168,85,247,0.4);
}
.contact-chip.selected {
  border-color: var(--purple-500);
  background-color: rgba(168,85,247,0.1);
  color: var(--purple-400);
}

/* Submit button */
.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: auto;
  align-self: flex-start;
  padding: 1rem 2.5rem;
}
.contact-submit-arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}
.contact-submit:hover .contact-submit-arrow {
  transform: translateX(3px);
}
.contact-privacy-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-privacy-link {
  color: var(--text-muted);
  text-decoration: underline;
  transition: color 0.2s ease;
}
.contact-privacy-link:hover {
  color: var(--purple-400);
}

/* Success state */
.contact-success {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
}
.contact-success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(168,85,247,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--purple-400);
}
.contact-success-icon svg {
  width: 2rem;
  height: 2rem;
}
.contact-success-title {
  font-family: var(--font-space-grotesk);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.contact-success-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Right info panel */
.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
}
.contact-detail-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  background-color: rgba(168,85,247,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.contact-detail-body { flex: 1; }
.contact-detail-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.125rem;
}
.contact-detail-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}
.contact-detail-link {
  transition: color 0.2s ease;
}
.contact-detail-link:hover {
  color: var(--purple-400);
}

.contact-map {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.contact-map img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.contact-trusted {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
}
.contact-trusted-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
}
.contact-trusted-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.contact-trusted-item {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.contact-trusted-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--purple-500);
  flex-shrink: 0;
}

/* What to expect section */
.contact-expect-section {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border);
}
.contact-expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.contact-expect-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}
.contact-expect-step {
  font-family: var(--font-space-grotesk);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(168,85,247,0.2);
  display: block;
  margin-bottom: 1.25rem;
  line-height: 1;
}
.contact-expect-title {
  font-family: var(--font-space-grotesk);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.contact-expect-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Mobile controls wrapper */
.mobile-controls {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile product section in mobile nav */
.mobile-product-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Mobile product toggle button */
.mobile-product-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  font-family: var(--font-space-grotesk);
  font-size: 1.875rem;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  padding: 0;
}

/* Mobile product dropdown arrow */
.mobile-product-arrow {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 200ms ease;
  flex-shrink: 0;
}

/* Footer logo dot */
.footer-logo-dot {
  color: var(--purple-500);
}

/* Footer socials row */
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* Gradient text utility */
.gradient-text {
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, var(--purple-400), var(--purple-600));
}

/* Section eyebrow label */
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--purple-400);
  margin-bottom: 1rem;
}

/* Section header centered wrapper */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* Mobile nav CTA button */
.mobile-nav-cta {
  margin-top: 0.5rem;
}

/* Article page classes */
.article-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  margin-top: 1.5rem;
}
.article-title {
  font-family: var(--font-space-grotesk);
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  max-width: 48rem;
  margin-bottom: 1.25rem;
}
.article-lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 44rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.article-author-row {
  justify-content: flex-start;
}
.article-body-section {
  padding-bottom: 5rem;
}
.stat-value-lg {
  font-size: 2.5rem;
  color: var(--purple-400);
}
.stat-note {
  color: var(--text-secondary);
  margin-top: 0.5rem;
}
.sidebar-card-cta {
  background: rgba(168, 85, 247, 0.06);
  border-color: rgba(168, 85, 247, 0.2);
}
.sidebar-card-title {
  font-family: var(--font-space-grotesk);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.sidebar-card-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.65;
}
.btn-full {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.related-section-title {
  font-size: 1.375rem;
  margin-bottom: 0;
}

/* Solutions page helpers */
.industry-col-span {
  grid-column: span 2;
}
.icon-shrink {
  flex-shrink: 0;
}
.tag-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Padding helpers */
.pb-sm   { padding-bottom: 1rem; }
.pb-md   { padding-bottom: 3rem; }
.pt-none { padding-top: 0; }
.pb-none { padding-bottom: 0; }

/* Margin helpers */
.mb-lg { margin-bottom: 2rem; }
.mb-md { margin-bottom: 1.5rem; }
.mw-full { max-width: 100%; }

/* Purple accent text (inline spans in headings) */
.text-purple { color: var(--purple-400); }

/* Flex helpers */
.justify-center { justify-content: center; }
.align-self-start { align-self: flex-start; }

/* Margin helpers */
.mt-xl { margin-top: 5rem; }

/* Surface background helper */
.bg-surface { background-color: var(--bg-secondary); }

/* Industry accordion open state */
.industry-body-open { max-height: 600px; }

/* ============================================================
   ADDITIONAL UTILITY CLASSES (audit fixes)
   ============================================================ */

/* Product sub-hero */
.product-sub-badge { margin-bottom: 1.25rem; }
.product-sub-title {
  font-family: var(--font-space-grotesk);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.product-sub-desc { max-width: 100%; margin-bottom: 2rem; }
.product-sub-img  { max-width: 100%; margin-bottom: 2rem; }
.product-sub-img-sm { max-width: 100%; margin-bottom: 1.5rem; }

/* Product module sections */
.product-module-heading {
  font-family: var(--font-space-grotesk);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
.product-module-desc { max-width: 100%; margin-bottom: 1.5rem; }
.product-cta-row    { display: flex; justify-content: center; margin-top: 2rem; }
.product-how-heading {
  font-family: var(--font-space-grotesk);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 0.75rem;
  margin-bottom: 2rem;
}

/* Pricing page */
.btn-center { text-align: center; justify-content: center; }
.pricing-section-title { text-align: center; margin-bottom: 2rem; }
.table-scroll { overflow-x: auto; }
.col-40 { width: 40%; }

/* Integrations page */
.integrations-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.integrations-zapier-section { background: var(--bg-secondary); }
.zapier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem;
}
.zapier-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.zapier-logo-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.875rem;
  overflow: hidden;
  flex-shrink: 0;
}
.zapier-logo-img { width: 2.25rem; height: 2.25rem; }
.zapier-title { font-family: var(--font-space-grotesk); font-size: 1.5rem; font-weight: 700; color: var(--text-primary); }
.zapier-desc { color: var(--text-secondary); font-size: 1rem; line-height: 1.75; margin-bottom: 1.5rem; }
.zapier-steps { display: flex; flex-direction: column; gap: 1.75rem; }
.zapier-step-tag {
  background: rgba(255, 95, 31, 0.12);
  color: #ff5f1f;
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Blog page */
.blog-featured-title {
  font-family: var(--font-space-grotesk);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
}
.blog-featured-excerpt { font-size: 1rem; line-height: 1.7; color: var(--text-secondary); }
.blog-featured-link  { align-self: flex-start; }
.newsletter-heading {
  font-family: var(--font-space-grotesk);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}
.newsletter-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}
.newsletter-privacy { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.75rem; }

/* Company page */
.company-cta-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Index page */
.cta-sub-heading { margin-top: 0.5rem; }

/* Responsive zapier grid */
@media (max-width: 1023px) {
  .zapier-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Contact responsive rules */
@media (max-width: 1023px) {
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-expect-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .contact-hero { padding-top: 7rem; padding-bottom: 3rem; }
  .contact-form-section { padding-top: 3rem; padding-bottom: 4rem; }
  .contact-name-row { grid-template-columns: 1fr; }
  .contact-submit { align-self: stretch; width: 100%; justify-content: center; }
  .contact-expect-section { padding-top: 4rem; padding-bottom: 5rem; }
  .contact-expect-grid { margin-top: 2.5rem; }
  .mobile-controls { display: flex; }
}

/* ── Theme icon initial states (JS overrides at runtime) ─────────────────── */
[data-icon-sun],[data-icon-moon] { display: none; }
[data-icon-system] { display: block; }

/* ── JS-hidden utility — JS removes this class to reveal elements ─────────── */
.js-hidden { display: none !important; }
