/* ==========================================================================
   Section-Specific Styles
   ========================================================================== */

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-4) 0;
  transition: background-color var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
}

.nav.is-scrolled {
  background-color: rgba(45, 59, 45, 0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(245, 240, 232, 0.06);
}

/* Fully opaque on inner pages where hero is light */
.nav.nav--solid {
  background-color: var(--color-primary);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(245, 240, 232, 0.06);
}

.nav.nav--solid .nav__logo,
.nav.nav--solid .nav__link {
  color: var(--color-text-light);
}

.nav.nav--solid .nav__link {
  opacity: 0.9;
}

.nav.nav--solid .nav__link--active {
  opacity: 1;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-text-light);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav__link {
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  font-weight: 500;
  opacity: 0.9;
  transition: opacity var(--transition-fast), color var(--transition-fast);
  position: relative;
  padding-bottom: 2px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

.nav__link:hover {
  opacity: 1;
}

.nav__link--active {
  opacity: 1;
}

.nav__link--active::after {
  width: 100%;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  z-index: 110;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  transition: all var(--transition-base);
}

.nav__hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-primary);
  z-index: 105;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-7);
}

.nav__mobile-overlay.is-open {
  display: flex;
}

.nav__mobile-overlay a {
  color: var(--color-text-light);
  font-size: var(--font-size-2xl);
  font-weight: 600;
}

/* ---------- Hero ---------- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding-top: var(--space-10);
  overflow: hidden;
}

.hero__graphic {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Heavier grain over the hero so the ripples read as matte sand, not light */
#hero::before {
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
}

/* Without JS the canvas stays blank, so paint a static glow instead */
html:not(.js) .hero__graphic {
  background: radial-gradient(circle at 74% 50%, rgba(201, 161, 126, 0.12), rgba(61, 90, 61, 0.3) 28%, transparent 58%);
}

.hero__content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero__headline {
  font-size: var(--font-size-hero);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-5);
}

.hero__subheadline {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
  color: rgba(245, 240, 232, 0.85);
  margin-bottom: var(--space-7);
  max-width: 600px;
}

.hero__ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* ---------- Trusted By ---------- */
.trusted-section {
  padding: var(--space-7) 0;
}

.trusted-section::after {
  display: none;
}

.trusted__label {
  text-align: center;
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.trusted__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-7);
  flex-wrap: wrap;
}

/* Monochrome logo cloud: each SVG is used as a mask over the muted text color,
   so every brand renders in the same palette at a shared height */
.trusted__logo {
  --logo-height: 28px;
  display: inline-block;
  height: calc(var(--logo-height) * var(--scale, 1));
  width: calc(var(--logo-height) * var(--scale, 1) * var(--ratio, 3));
  background-color: var(--color-text-muted);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  opacity: 0.7;
  transition: opacity var(--transition-base);
}

.trusted__logo:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .trusted__logo {
    --logo-height: 22px;
  }

  .trusted__logos {
    gap: var(--space-5) var(--space-6);
  }
}

/* ---------- Services ---------- */
#services {
  background-color: var(--color-surface);
}

.services__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.services__header h2 {
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.services__header p {
  color: var(--color-text-muted);
  font-size: var(--font-size-lg);
}

.service-card__subtitle {
  color: var(--color-text-muted);
  font-size: var(--font-size-base);
  font-weight: 500;
  margin-bottom: var(--space-4);
}

.service-card__body {
  color: var(--color-text);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-5);
}

.service-card__scope {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

/* ---------- Results ---------- */
#results {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.results__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.results__header h2 {
  margin-bottom: var(--space-3);
}

.results__header p {
  color: rgba(245, 240, 232, 0.75);
  font-size: var(--font-size-lg);
}

.result-card__headline {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.result-card__body {
  font-size: var(--font-size-sm);
  color: rgba(245, 240, 232, 0.75);
  line-height: var(--line-height-loose);
}

/* ---------- About ---------- */
#about {
  background-color: var(--color-surface-alt);
}

.about__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--color-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content h2 {
  margin-bottom: var(--space-5);
  color: var(--color-text);
}

.about__content p {
  color: var(--color-text);
  line-height: var(--line-height-loose);
}

.about__content p + p {
  margin-top: var(--space-4);
}

/* ---------- Engagement / Signup ---------- */
#engage {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.engage__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.engage__header h2 {
  margin-bottom: var(--space-3);
}

.engage__header p {
  color: rgba(245, 240, 232, 0.75);
  font-size: var(--font-size-lg);
}

.engage__header a {
  color: var(--color-accent-on-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.engage__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}

.engage-card__title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-text-light);
}

.engage-card__scope {
  font-size: var(--font-size-sm);
  color: rgba(245, 240, 232, 0.75);
}

.engage__optional {
  text-align: center;
  color: rgba(245, 240, 232, 0.6);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-4);
}

/* Form section */
.engage__form-wrapper {
  max-width: 560px;
  margin: var(--space-6) auto 0;
}

.engage__form-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

/* Confirmation */
.engage__confirmation {
  text-align: center;
  padding: var(--space-8) 0;
  display: none;
}

.engage__confirmation.is-visible {
  display: block;
}

.engage__confirmation h3 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-4);
}

.engage__confirmation p {
  color: rgba(245, 240, 232, 0.75);
  font-size: var(--font-size-lg);
}

.engage__confirmation .checkmark {
  font-size: var(--font-size-5xl);
  color: var(--color-success);
  margin-bottom: var(--space-4);
}

/* ---------- Footer ---------- */
#footer {
  background-color: #1e2a1e;
  color: var(--color-text-light);
  padding: var(--space-9) 0 var(--space-6);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  flex-wrap: wrap;
  gap: var(--space-6);
}

.footer__brand h3 {
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-2);
}

.footer__brand p {
  color: rgba(245, 240, 232, 0.75);
  font-size: var(--font-size-sm);
}

.footer__columns {
  display: flex;
  gap: var(--space-9);
}

.footer__col h4 {
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: var(--space-4);
}

.footer__col a {
  display: block;
  color: rgba(245, 240, 232, 0.8);
  font-size: var(--font-size-sm);
  padding: var(--space-1) 0;
  transition: color var(--transition-fast);
}

.footer__col a:hover {
  color: var(--color-text-light);
}

.footer__cta {
  text-align: center;
  margin-bottom: var(--space-8);
}

.footer__cta p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-4);
  color: rgba(245, 240, 232, 0.75);
}

.footer__bottom {
  text-align: center;
  font-size: var(--font-size-xs);
  color: rgba(245, 240, 232, 0.3);
}

/* ---------- Results: stat bar ---------- */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  max-width: 960px;
  margin: 0 auto var(--space-8);
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1;
  color: var(--color-accent-on-dark);
  margin-bottom: var(--space-2);
}

.stat__label {
  font-size: var(--font-size-sm);
  color: rgba(245, 240, 232, 0.7);
  line-height: var(--line-height-base);
}

@media (max-width: 768px) {
  .stat-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }
}

.result-card__subtitle {
  font-size: var(--font-size-sm);
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: var(--space-2);
}

.result-card__role {
  font-size: var(--font-size-sm);
  color: var(--color-accent-on-dark);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.result-card__body {
  font-size: var(--font-size-sm);
  color: rgba(245, 240, 232, 0.75);
  line-height: var(--line-height-loose);
  margin-bottom: var(--space-4);
}

.result-card__highlight {
  font-family: var(--font-display);
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--color-accent-on-dark);
  margin-bottom: var(--space-4);
}

/* ---------- Nav active state ---------- */
.nav__link--active {
  opacity: 1;
  color: var(--color-accent);
}

/* ---------- Portfolio Hero ---------- */
#portfolio-hero {
  padding-top: calc(var(--space-10) + 80px);
  padding-bottom: var(--space-8);
}

.portfolio-hero__content {
  max-width: 720px;
}

.portfolio-hero__content h1 {
  font-size: var(--font-size-hero);
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.portfolio-hero__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  line-height: var(--line-height-loose);
}

/* ---------- Case Studies ---------- */
.case-study {
  padding: var(--space-9) 0;
  border-bottom: 1px solid var(--color-border);
}

.case-study:last-child {
  border-bottom: none;
}

.case-study__header {
  margin-bottom: var(--space-7);
}

.case-study__tags {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.case-study__company {
  font-size: var(--font-size-3xl);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.case-study__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
}

.case-study__content {
  padding-right: var(--space-6);
}

.case-study__block {
  margin-bottom: var(--space-6);
}

.case-study__block:last-child {
  margin-bottom: 0;
}

.case-study__block h4 {
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.case-study__block p {
  color: var(--color-text);
  line-height: var(--line-height-loose);
}

.case-study__sidebar {
  position: sticky;
  top: calc(80px + var(--space-6));
  align-self: start;
}

.case-study__meta {
  background: var(--color-surface);
  border-radius: var(--border-radius);
  padding: var(--space-5);
  margin-bottom: var(--space-5);
  border: 1px solid var(--color-border);
}

.case-study__meta p {
  font-size: var(--font-size-sm);
  color: var(--color-text);
  margin-bottom: var(--space-3);
  line-height: var(--line-height-base);
}

.case-study__meta p:last-child {
  margin-bottom: 0;
}

.case-study__meta strong {
  display: block;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.case-study__sidebar .btn {
  width: 100%;
  text-align: center;
}

/* ---------- Project Showcases ---------- */
.project-card {
  padding: var(--space-6);
}

.project-card__tags {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.project-card__company {
  font-size: var(--font-size-xl);
  color: var(--color-text-light);
  margin-bottom: var(--space-3);
}

.project-card__description {
  font-size: var(--font-size-sm);
  color: rgba(245, 240, 232, 0.75);
  line-height: var(--line-height-loose);
}

/* ---------- Portfolio CTA ---------- */
#portfolio-cta .section-cta {
  padding: var(--space-8) 0;
}

#portfolio-cta .section-cta h2 {
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

#portfolio-cta .section-cta p {
  color: var(--color-text-muted);
}

/* ==========================================================================
   Scrollytelling
   ========================================================================== */

/* Container */
.scrolly {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 0;
}

/* Sticky media panel (left). On wide screens it bleeds into the page margin
   (up to 240px) so the images can grow while the text stays aligned. */
.scrolly__media {
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-left: max(-240px, min(0px, calc((var(--container-max) - 100vw) / 2 + var(--container-padding))));
}

.scrolly__media-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

/* Media items: stacked, only active one visible */
.scrolly__media-item {
  position: absolute;
  inset: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.scrolly__media-item.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Scrolling text steps (right) */
.scrolly__steps {
  padding-left: var(--space-7);
}

.scrolly__step {
  min-height: clamp(300px, 42vh, 480px);
  padding: 5vh 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scrolly__step:first-child {
  padding-top: var(--space-7);
}

.scrolly__step:last-child {
  min-height: auto;
  padding-bottom: var(--space-7);
}

/* Mobile inline media (hidden on desktop) */
.scrolly__step-media {
  display: none;
}

/* Scrollytelling progress dots */
.scrolly__progress {
  position: absolute;
  left: var(--space-5);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  z-index: 2;
}

.scrolly__progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scrolly__progress-dot.is-active {
  background: var(--color-accent);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(160, 120, 90, 0.4);
}

/* Divider between case studies */
.case-study--scrolly {
  padding: 0;
  border-bottom: 1px solid var(--color-border);
}

.case-study--scrolly:last-child {
  border-bottom: none;
}

/* Step content styling */
.scrolly__step .case-study__block h4 {
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.scrolly__step .case-study__block p {
  color: var(--color-text);
  line-height: var(--line-height-loose);
  font-size: var(--font-size-base);
}

/* Step with header */
.scrolly__step .case-study__header {
  margin-bottom: var(--space-5);
}

/* Step with meta (last step) */
.scrolly__step--meta {
  min-height: auto;
  padding-top: var(--space-6);
  padding-bottom: var(--space-8);
}

.scrolly__step--meta .case-study__meta {
  margin-bottom: var(--space-5);
}

/* ---------- Case Study Media ---------- */
.case-media {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--color-surface);
}

.case-media--screenshot {
  border: 1px solid var(--color-border);
}

/* ---------- Media Placeholders ---------- */

.media-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 2px dashed var(--color-border);
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background: var(--color-surface);
  color: var(--color-text-muted);
  transition: border-color var(--transition-base);
}

.media-placeholder:hover {
  border-color: var(--color-accent);
}

.media-placeholder__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
}

.media-placeholder__label {
  font-size: var(--font-size-sm);
  font-weight: 500;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

/* Video placeholder play button */
.media-placeholder--video .media-placeholder__icon::before {
  content: '';
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid currentColor;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-placeholder--video .media-placeholder__icon::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 14px solid currentColor;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  position: absolute;
  margin-left: 3px;
}

.media-placeholder--video .media-placeholder__icon {
  position: relative;
}

/* Screenshot icon */
.media-placeholder--screenshot .media-placeholder__icon::before {
  content: '';
  width: 40px;
  height: 32px;
  border: 2px solid currentColor;
  border-radius: 4px;
  position: relative;
}

.media-placeholder--screenshot .media-placeholder__icon::after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid currentColor;
  position: absolute;
  top: 8px;
  right: 10px;
}

.media-placeholder--screenshot .media-placeholder__icon {
  position: relative;
}

/* Diagram icon */
.media-placeholder--diagram .media-placeholder__icon::before {
  content: '';
  width: 36px;
  height: 36px;
  border: 2px solid currentColor;
  border-radius: 4px;
  position: relative;
}

.media-placeholder--diagram .media-placeholder__icon::after {
  content: '';
  width: 20px;
  height: 2px;
  background: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 -8px 0 currentColor, 0 8px 0 currentColor;
}

.media-placeholder--diagram .media-placeholder__icon {
  position: relative;
}

/* ---------- Media Metric Display ---------- */

.media-metric {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border-radius: var(--border-radius-lg);
  padding: var(--space-6);
  text-align: center;
}

.media-metric__number {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.media-metric__label {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.media-metric__sublabel {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

/* ---------- Hero Load Animation ---------- */

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

.hero--animated .hero__content {
  animation: heroFadeIn 0.8s ease-out both;
}

.hero--animated .trust-bar {
  animation: heroFadeIn 0.8s ease-out 0.3s both;
}
