/* ============================================================
   Astra Solutions — Design System
   ============================================================ */
:root {
  /* Palette */
  --bg: #F7F4EF;
  /* warm cream */
  --bg-2: #EFEAE1;
  /* deeper cream */
  --paper: #FFFFFF;
  --ink: #0B0710;
  --ink-2: #1A1326;
  --muted: #5A5168;
  --muted-2: #8B8398;
  --line: #E6DFD3;
  --line-2: #D9D1C3;

  --violet: #6B1FF5;
  --violet-2: #8A3DF6;
  --violet-3: #B488FF;
  --violet-soft: #EDE4FF;
  --violet-50: #F6F1FF;

  --dark: #0E0A1A;
  --dark-2: #15102A;
  --dark-3: #1F1838;
  --dark-line: #2A2244;

  --success: #1F8A5B;
  --warn: #D97757;

  /* Type scale */
  --sans: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(20, 10, 40, .06);
  --shadow-sm: 0 2px 8px rgba(20, 10, 40, .06), 0 1px 2px rgba(20, 10, 40, .04);
  --shadow-md: 0 8px 24px rgba(40, 20, 80, .08), 0 2px 4px rgba(20, 10, 40, .04);
  --shadow-lg: 0 24px 60px -20px rgba(40, 20, 80, .25), 0 8px 24px -8px rgba(40, 20, 80, .08);
  --shadow-violet: 0 10px 30px -10px rgba(107, 31, 245, .45);

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

*,
*::before,
*::after {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  overflow-x: clip;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.01em
}

.mono {
  font-family: var(--mono);
  letter-spacing: .01em
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 80;
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: saturate(1.4) blur(20px);
  -webkit-backdrop-filter: saturate(1.4) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s;
}

.nav-wrap.scrolled {
  border-bottom-color: var(--line)
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 32px;
  max-width: 1320px;
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
  justify-self: start;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background-image: url("logo-as.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  flex: none;
}

.nav .logo {
  font-size: 28px;
  gap: 12px;
}

.nav .logo-mark {
  width: 48px;
  height: 48px;
}

/* Header Branding Gradient Overlay & Glow */
.nav .logo b,
.nav .logo .it {
  background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 35%, #60A5FA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  -webkit-text-stroke: 0 !important;
  filter: drop-shadow(0 2px 8px rgba(139, 92, 246, 0.35));
}


.footer-brand .logo-mark {
  filter: brightness(0) saturate(100%) invert(100%);
}

.logo b {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  -webkit-text-stroke: .6px currentColor
}

.logo .it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  margin-left: -4px;
  -webkit-text-stroke: .6px currentColor
}

.nav-links {
  display: flex;
  gap: 4px;
  justify-self: center;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 14.5px;
  color: var(--ink-2);
  font-weight: 500;
  transition: background .15s, color .15s;
}

.nav-links a:hover {
  background: rgba(11, 7, 16, .05);
  color: var(--violet)
}

.nav-links a.active {
  color: var(--violet)
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
}

.lang:hover {
  background: rgba(11, 7, 16, .05);
  color: var(--ink)
}

.lang svg {
  width: 14px;
  height: 14px
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s, background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm)
}

.btn-primary:hover {
  background: var(--violet);
  transform: translateY(-1px);
  box-shadow: var(--shadow-violet)
}

.btn-violet {
  background: var(--violet);
  color: #fff;
  box-shadow: var(--shadow-violet)
}

.btn-violet:hover {
  background: #5916D8;
  transform: translateY(-1px)
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-2);
  color: var(--ink)
}

.btn-ghost:hover {
  background: rgba(11, 7, 16, .04);
  border-color: var(--ink)
}

.btn-soft {
  background: rgba(255, 255, 255, .85);
  color: var(--ink);
  border-color: rgba(255, 255, 255, .6);
  backdrop-filter: blur(8px)
}

.btn-soft:hover {
  background: #fff
}

.btn-dark {
  background: #fff;
  color: var(--ink)
}

.btn-dark:hover {
  background: var(--violet);
  color: #fff
}

.btn-lg {
  padding: 14px 22px;
  font-size: 15px
}

.btn-arrow {
  display: inline-block;
  transition: transform .2s
}

.btn:hover .btn-arrow {
  transform: translateX(3px)
}

/* ============================================================
   FOOTER
   ============================================================ */
footer.site {
  margin-top: 120px;
  background: var(--dark);
  color: #D9D2E6;
  position: relative;
  overflow: hidden
}

footer.site::before {
  content: "";
  position: absolute;
  inset: -1px 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180, 136, 255, .5), transparent);
}

.footer-glow {
  position: absolute;
  width: 900px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 61, 246, .25), transparent 60%);
  left: 50%;
  top: -200px;
  transform: translateX(-50%);
  pointer-events: none;
}

.footer-hero {
  padding: 90px 0 60px;
  text-align: left;
  position: relative;
  z-index: 2
}

.footer-hero h2 {
  font-size: 88px;
  line-height: .95;
  letter-spacing: -.035em;
  margin: 0;
  font-weight: 500;
  color: #fff;
  max-width: 980px;
}

.footer-hero h2 .it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: #C9A6FF
}

.footer-hero .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-top: 36px;
  flex-wrap: wrap
}

.footer-hero .row p {
  color: #A89BC0;
  font-size: 17px;
  max-width: 480px;
  margin: 0;
  line-height: 1.5
}

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 60px 0;
  border-top: 1px solid var(--dark-line);
  position: relative;
  z-index: 2;
}

.footer-cols h4 {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8B8398;
  margin: 0 0 18px;
  font-weight: 500
}

.footer-cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px
}

.footer-cols a {
  color: #D9D2E6;
  font-size: 14.5px
}

.footer-cols a:hover {
  color: #fff
}

.footer-brand .logo {
  color: #fff;
  font-size: 26px
}

.footer-brand p {
  color: #8B8398;
  font-size: 14px;
  margin: 14px 0 22px;
  max-width: 280px;
  line-height: 1.5
}

.socials {
  display: flex;
  gap: 8px
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--dark-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #D9D2E6;
}

.socials a:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff
}

.socials svg {
  width: 16px;
  height: 16px
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 32px;
  border-top: 1px solid var(--dark-line);
  font-size: 13px;
  color: #8B8398;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: #8B8398
}

.footer-bottom a:hover {
  color: #fff
}

.footer-bottom .badges {
  display: flex;
  gap: 16px;
  align-items: center
}

.badge-pill {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--dark-line);
  font-size: 11.5px;
  font-family: var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase
}

.footer-wordmark {
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .85;
  font-family: var(--serif);
  font-style: italic;
  color: #C9A6FF;
  padding: 30px 0 0;
  position: relative;
  z-index: 2;
  text-align: center;
}

.footer-wordmark .it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: #C9A6FF;
  -webkit-text-stroke: 0;
  margin-left: 0.08em
}

/* ============================================================
   COMMON SECTION CHROME
   ============================================================ */
.section {
  padding: 110px 0
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px
}

.section-head .eyebrow {
  display: inline-block;
  margin-bottom: 14px
}

.section-head h2 {
  font-size: 54px;
  line-height: 1.04;
  letter-spacing: -.025em;
  font-weight: 500;
  margin: 0 0 16px;
  color: var(--ink);
}

.section-head h2 .it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 560px
}

/* ============================================================
   CARDS — generic
   ============================================================ */
.card-paper {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s
}

.card-paper:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2)
}

/* ============================================================
   GLOBE / FLAG / ICONS helpers
   ============================================================ */
.dot-led {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1F8A5B;
  box-shadow: 0 0 0 4px rgba(31, 138, 91, .18);
  vertical-align: middle
}

/* ============================================================
   RESPONSIVE & MOBILE MENU
   ============================================================ */
body.menu-prevent-scroll {
  overflow: hidden;
}

/* BURGER BUTTON */
.burger-btn {
  display: none;
  /* hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 99;
  position: relative;
}

.burger-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 35%, #60A5FA 100%);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  transform-origin: left center;
  filter: drop-shadow(0 1px 4px rgba(139, 92, 246, 0.4));
}

.burger-btn.open .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(1px, -1px);
}

.burger-btn.open .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-btn.open .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(1px, 1px);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  inset: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(28px) saturate(1.8) contrast(1.05);
  -webkit-backdrop-filter: blur(28px) saturate(1.8) contrast(1.05);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  z-index: 70;
  padding: 96px 20px 40px;
  overflow-y: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* Glowing liquid glass blobs behind the menu */
.mobile-menu::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 70%;
  height: 60%;
  background: radial-gradient(circle, rgba(107, 31, 245, 0.16) 0%, rgba(138, 61, 246, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  animation: float-blob-1 14s ease-in-out infinite alternate;
}

.mobile-menu::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 70%;
  height: 60%;
  background: radial-gradient(circle, rgba(138, 61, 246, 0.12) 0%, rgba(247, 244, 239, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  animation: float-blob-2 18s ease-in-out infinite alternate;
}

@keyframes float-blob-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-8%, 12%) scale(1.1); }
}

@keyframes float-blob-2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(12%, -8%) scale(1.05); }
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* Outer layout container (transparent inside the off-white overlay) */
.mobile-menu-inner {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

/* Accordion group styles — Light Glass Card */
.menu-group {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s, transform 0.2s;
  box-shadow: 0 4px 24px -4px rgba(20, 10, 40, 0.04), inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.menu-group.open {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(107, 31, 245, 0.25);
  box-shadow: 0 10px 30px -10px rgba(107, 31, 245, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.menu-group-header {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.menu-group-header .caret {
  font-size: 10px;
  transition: transform 0.3s ease;
  color: var(--muted-2);
}

.menu-group.open .menu-group-header .caret {
  transform: rotate(180deg);
}

.menu-group-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-group.open .menu-group-content {
  max-height: 500px;
  /* high enough to contain children */
}

.menu-sub-card {
  padding: 4px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.menu-sub-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
}

.menu-sub-item:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateX(3px);
}

.menu-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--violet-50);
  color: var(--violet);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--violet-soft);
  flex-shrink: 0;
}

.menu-icon-box svg {
  width: 16px;
  height: 16px;
}

.menu-sub-text {
  display: flex;
  flex-direction: column;
}

.menu-sub-text .title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.menu-sub-text .desc {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
}

/* Direct link styles — Light Glass Card */
.menu-direct-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px -4px rgba(20, 10, 40, 0.04), inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.menu-direct-link:hover {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(107, 31, 245, 0.25);
  transform: translateX(3px) translateY(-1px);
  box-shadow: 0 8px 24px -4px rgba(107, 31, 245, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.menu-direct-link .arrow {
  font-size: 14px;
  color: var(--muted-2);
  transition: transform 0.2s;
}

.menu-direct-link:hover .arrow {
  transform: translateX(3px);
  color: var(--violet);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1080px) {
  .nav-links {
    display: none
  }

  .nav-right .btn-primary,
  .nav-right .btn-violet {
    display: none
  }

  .burger-btn {
    display: flex
  }

  /* Mobile capsule header style */
  .nav-wrap {
    top: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: padding 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  }
  .nav-wrap.scrolled {
    border-bottom-color: transparent;
  }
  .nav {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    border-radius: 14px;
    margin: 0 16px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06), inset 0 1px 0 0 rgba(255, 255, 255, 0.25);
    width: auto;
    max-width: none;
    position: relative;
    z-index: 80;
    transition: margin 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-radius 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .nav .logo {
    color: transparent;
  }
  .nav .logo-mark {
    filter: none;
    width: 40px;
    height: 40px;
  }
  .nav .burger-line {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 35%, #60A5FA 100%);
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-hero h2 {
    font-size: 56px
  }

  .section {
    padding: 80px 0
  }

  .section-head h2 {
    font-size: 42px
  }
}

@media (max-width:760px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav {
    padding: 10px 16px;
    gap: 14px;
    margin: 0 16px
  }

  .footer-hero h2 {
    font-size: 40px
  }

  .section-head h2 {
    font-size: 34px
  }

  /* Mobile footer adjustments */
  .footer-wordmark {
    font-size: clamp(240px, 56vw, 600px) !important;
    letter-spacing: -.05em;
    padding: 40px 0 20px !important;
    text-shadow: 0 0 40px rgba(201, 166, 255, 0.25);
  }
  .footer-wordmark .it {
    display: none !important;
  }
}

/* ============================================================
   TRUST MARQUEE
   ============================================================ */
.trust-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  display: flex;
  align-items: center;
  background: var(--bg);
}
.trust-marquee::before,
.trust-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}
.trust-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}
.trust-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}
.trust-track {
  display: flex;
  width: max-content;
  animation: trust-scroll 30s linear infinite;
}
.trust-track .tlogo {
  padding: 0 45px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
.trust-track:hover {
  animation-play-state: paused;
}
@keyframes trust-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}