/* ═══════════════════════════════════════════════════════════
   CoreFlow AI — Premium Design System 2026
   Inspired by: statworx.com, contextstudios.ai
   Colors: Emerald #10B981 + Cyan #06B6D4 on Dark #0A0A0F
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
  /* Core Colors */
  --bg-primary: #0A0A0F;
  --bg-card: #12121A;
  --bg-card-hover: #1A1A28;
  --bg-elevated: #16161F;

  /* Accent Colors */
  --accent-emerald: #10B981;
  --accent-emerald-hover: #059669;
  --accent-emerald-dim: rgba(16, 185, 129, 0.15);
  --accent-emerald-glow: rgba(16, 185, 129, 0.25);
  --accent-cyan: #06B6D4;
  --accent-cyan-dim: rgba(6, 182, 212, 0.12);

  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #A1A1AA;
  --text-muted: #71717A;
  --text-accent: var(--accent-emerald);

  /* Borders */
  --border-default: #1E1E2E;
  --border-hover: rgba(16, 185, 129, 0.3);
  --border-subtle: rgba(255, 255, 255, 0.06);

  /* Gradients */
  --gradient-accent: linear-gradient(135deg, #10B981, #06B6D4);
  --gradient-accent-text: linear-gradient(135deg, #10B981 0%, #06B6D4 100%);
  --gradient-glow: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  --gradient-card: linear-gradient(145deg, #16161F 0%, #0E0E16 100%);

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 12px 48px rgba(16, 185, 129, 0.08);
  --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.15);
  --shadow-btn: 0 4px 16px rgba(16, 185, 129, 0.2);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Sizes */
  --max-width: 1200px;
  --max-width-wide: 1400px;
  --nav-height: 72px;
  --section-padding: 120px;
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --border-radius-sm: 8px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.35s;
  --duration-slow: 0.6s;
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent-emerald);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--accent-cyan);
}

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

/* ─── Utility Classes ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.container-wide {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 40px;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--accent-emerald-dim);
  border: 1px solid rgba(16, 185, 129, 0.2);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-emerald);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ─── Section Base ─── */
section {
  padding: var(--section-padding) 0;
  position: relative;
}

/* Animation: hidden by default, revealed by GSAP */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: background var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out),
              backdrop-filter var(--duration-normal) var(--ease-out);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom-color: var(--border-default);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 28px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
  padding: 4px 0;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-emerald);
  transition: width var(--duration-normal) var(--ease-out), left var(--duration-normal) var(--ease-out);
  border-radius: 1px;
}

.navbar-links a:hover {
  color: var(--text-primary);
}

.navbar-links a:hover::after {
  width: 100%;
  left: 0;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--duration-normal) var(--ease-out);
  background: var(--accent-emerald);
  color: #000;
  box-shadow: var(--shadow-btn);
}

.btn-cta:hover {
  background: var(--accent-emerald-hover);
  color: #000;
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--duration-normal) var(--ease-out);
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-default);
}

.btn-secondary:hover {
  border-color: var(--accent-emerald);
  color: var(--accent-emerald);
  background: var(--accent-emerald-dim);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}

.mobile-nav a:hover {
  color: var(--accent-emerald);
}


/* ══════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 60px) 40px 80px;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Ambient glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.06) 0%, rgba(6, 182, 212, 0.03) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-emerald);
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}

.hero-label svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero .subtitle {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.hero .btn-cta {
  padding: 14px 32px;
  font-size: 15px;
}

.hero .btn-secondary {
  padding: 14px 32px;
  font-size: 15px;
}

.hero .microcopy {
  font-size: 13px;
  color: var(--text-muted);
}

.hero .microcopy span {
  color: var(--accent-emerald);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}

.scroll-indicator .chevron {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--accent-emerald);
  border-bottom: 2px solid var(--accent-emerald);
  transform: rotate(45deg);
  opacity: 0.6;
}

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


/* ══════════════════════════════════════════
   TRUST LOGO BAR
   ══════════════════════════════════════════ */

.trust-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  background: rgba(18, 18, 26, 0.4);
}

.trust-bar-label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.trust-logos-track {
  display: flex;
  gap: 64px;
  animation: scroll-logos 30s linear infinite;
  width: max-content;
}

.trust-logos-track:hover {
  animation-play-state: paused;
}

.trust-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  opacity: 0.4;
  filter: grayscale(100%) brightness(2);
  transition: all var(--duration-normal) var(--ease-out);
  flex-shrink: 0;
  cursor: default;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.trust-logo-item:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
  color: var(--accent-emerald);
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ══════════════════════════════════════════
   SERVICES SECTION
   ══════════════════════════════════════════ */

.services {
  padding: var(--section-padding) 0;
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-default);
  border-radius: var(--border-radius-lg);
  padding: 40px 32px;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.service-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-emerald-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.service-feature .check {
  color: var(--accent-emerald);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-emerald);
  transition: gap var(--duration-fast) var(--ease-out);
}

.service-link:hover {
  gap: 10px;
  color: var(--accent-cyan);
}


/* ══════════════════════════════════════════
   COUNTER / KPI SECTION
   ══════════════════════════════════════════ */

.counter-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(18, 18, 26, 0.3);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.counter-item {
  position: relative;
}

.counter-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-default);
}

.counter-item:last-child::after {
  display: none;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.counter-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}


/* ══════════════════════════════════════════
   PROCESS TIMELINE
   ══════════════════════════════════════════ */

.process-section {
  padding: var(--section-padding) 0;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 60px;
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-default);
}

.timeline-progress {
  position: absolute;
  left: 24px;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--accent-emerald);
  transition: height 0.1s linear;
  z-index: 1;
}

.timeline-step {
  position: relative;
  padding-bottom: 64px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -48px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all var(--duration-normal) var(--ease-out);
}

.timeline-dot.active {
  border-color: var(--accent-emerald);
  box-shadow: 0 0 16px var(--accent-emerald-glow);
}

.timeline-dot-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-default);
  transition: background var(--duration-normal) var(--ease-out);
}

.timeline-dot.active .timeline-dot-inner {
  background: var(--accent-emerald);
}

.timeline-step-number {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-emerald);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.timeline-step h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.timeline-step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.timeline-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--accent-emerald-dim);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-emerald);
}


/* ══════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════ */

.final-cta {
  padding: var(--section-padding) 0;
  position: relative;
}

.final-cta-inner {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, rgba(6, 182, 212, 0.04) 100%);
  border: 1px solid var(--border-default);
  border-radius: var(--border-radius-lg);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-inner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
}

.final-cta .subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
}

.final-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.final-cta .microcopy {
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
}


/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */

.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-default);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-column a:hover {
  color: var(--accent-emerald);
}

.footer-bottom {
  border-top: 1px solid var(--border-default);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 13px;
}


/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .counter-item::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
    --nav-height: 64px;
  }

  .container, .container-wide {
    padding: 0 20px;
  }

  .navbar {
    padding: 0 20px;
  }

  .navbar-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero .subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn-cta,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .counter-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .counter-number {
    font-size: 36px;
  }

  .timeline {
    padding-left: 48px;
  }

  .timeline::before,
  .timeline-progress {
    left: 16px;
  }

  .timeline-dot {
    left: -42px;
    width: 20px;
    height: 20px;
  }

  .final-cta-inner {
    padding: 48px 24px;
  }

  .final-cta h2 {
    font-size: 28px;
  }

  .final-cta .cta-buttons {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

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

  .trust-logos-track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
