/* ============================================================
   TALENTYS.EU — Premium Design Enhancement Layer
   World-class UX/UI: glassmorphism, micro-interactions,
   animated gradients, 3D cards, shimmer, parallax & more.
   Inspired by Linear, Vercel, Stripe, Apple.
   ============================================================ */

/* --- Fix undefined spacing/transition vars from original CSS --- */
:root {
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 300ms ease;
}

/* --- Extended Premium Design Tokens --- */
:root {
  /* Premium gradients */
  --gradient-hero: linear-gradient(-45deg, #ffffff, #f8faff, #f0f4ff, #e8f0ff, #ffffff);
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, #ec4899 100%);
  --gradient-text: linear-gradient(90deg, #2563eb, #7c3aed, #0891b2, #2563eb);
  --gradient-footer-line: linear-gradient(90deg, transparent, var(--color-primary), var(--color-secondary), var(--color-accent), transparent);
  --gradient-aurora: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(139,92,246,0.06), rgba(52,211,153,0.04), rgba(37,99,235,0.08));
  --gradient-spotlight: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(37,99,235,0.03), transparent 40%);

  /* Premium shadows */
  --shadow-premium-sm: 0 2px 8px -2px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.02);
  --shadow-premium: 0 8px 30px -4px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.02);
  --shadow-premium-lg: 0 20px 50px -8px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.03);
  --shadow-premium-xl: 0 25px 60px -12px rgba(0,0,0,0.25), 0 0 0 1px rgba(0,0,0,0.04);
  --shadow-colored-primary: 0 8px 30px -4px rgba(37, 99, 235, 0.25);
  --shadow-colored-accent: 0 8px 30px -4px rgba(249, 115, 22, 0.25);
  --shadow-neon-primary: 0 0 40px rgba(37,99,235,0.15), 0 0 80px rgba(37,99,235,0.05);
  --shadow-neon-accent: 0 0 40px rgba(249,115,22,0.15), 0 0 80px rgba(249,115,22,0.05);

  /* Premium easing */
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-blur: 24px;
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -40px) scale(1.08); }
  50% { transform: translate(-10px, 15px) scale(0.98); }
  75% { transform: translate(-30px, -20px) scale(1.03); }
}

@keyframes float-reverse {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-35px, 25px) scale(0.96); }
  50% { transform: translate(15px, -15px) scale(1.05); }
  75% { transform: translate(25px, 30px) scale(0.98); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(300%) skewX(-15deg); }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.65; }
}

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

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(37, 99, 235, 0.1); }
  50% { box-shadow: 0 0 50px rgba(37, 99, 235, 0.3); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes aurora-drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
  25% { transform: translate(60px, -40px) rotate(3deg); opacity: 0.7; }
  50% { transform: translate(-30px, 30px) rotate(-2deg); opacity: 0.4; }
  75% { transform: translate(40px, 20px) rotate(1deg); opacity: 0.6; }
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(249, 115, 22, 0.1), inset 0 0 20px rgba(249, 115, 22, 0.05); }
  50% { box-shadow: 0 0 40px rgba(249, 115, 22, 0.2), inset 0 0 30px rgba(249, 115, 22, 0.08); }
}

@keyframes text-shine {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes border-rotate {
  0% { --border-angle: 0deg; }
  100% { --border-angle: 360deg; }
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(60px); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes stat-count-glow {
  0%, 100% { text-shadow: 0 0 20px rgba(96,165,250,0.3); }
  50% { text-shadow: 0 0 40px rgba(96,165,250,0.6), 0 0 80px rgba(96,165,250,0.2); }
}

/* ============================================================
   PREMIUM GLOBAL REFINEMENTS
   ============================================================ */

/* Custom text selection */
::selection {
  background: rgba(37, 99, 235, 0.2);
  color: var(--color-text);
}

/* Custom scrollbar (webkit) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-text-muted);
  border-radius: 4px;
  border: 2px solid var(--color-bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Firefox scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--color-text-muted) var(--color-bg);
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 9999;
  transition: width 0.05s linear;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.5);
  pointer-events: none;
}

/* ============================================================
   PREMIUM HERO SECTION
   ============================================================ */
.hero {
  background: var(--gradient-hero);
  background-size: 400% 400%;
  animation: gradient-shift 25s ease infinite;
}

.hero > .container {
  position: relative;
  z-index: 2;
}

/* Hero orbs removed for clean design */
.hero__orb {
  display: none;
}

/* Dot grid overlay removed */
.hero__grid {
  display: none;
}

/* Noise texture removed */
.hero__noise {
  display: none;
}

/* Hero typography - clean, no animations */
.hero h1 {
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

/* Text gradient removed for readability */
.hero .text-gradient {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: inherit;
  background-clip: unset;
  filter: none;
  color: var(--color-text);
}

/* Hero badge - simple, no animation */
.hero__badge {
  transition: all 0.3s ease;
}

.hero__badge:hover {
  transform: translateY(-2px);
}

/* Hero stats - clean values, no animation */
.hero__stat-value {
  color: var(--color-primary);
  font-weight: 800;
}

/* Hero stats divider — glowing line */
.hero__stats {
  position: relative;
}

.hero__stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.5), rgba(52,211,153,0.3), transparent);
}

/* Hero actions premium */
.hero__actions .btn--accent {
  box-shadow: 0 4px 25px -2px rgba(249, 115, 22, 0.5);
  position: relative;
}

.hero__actions .btn--accent::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(249,115,22,0.6), rgba(236,72,153,0.3));
  z-index: -1;
  filter: blur(12px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero__actions .btn--accent:hover {
  box-shadow: 0 8px 40px -2px rgba(249, 115, 22, 0.6);
  transform: translateY(-4px);
}

.hero__actions .btn--accent:hover::before {
  opacity: 1;
}

/* Hero secondary button glow */
.hero__actions .btn--secondary {
  position: relative;
  overflow: visible;
}

.hero__actions .btn--secondary:hover {
  border-color: rgba(255,255,255,0.6) !important;
  box-shadow: 0 0 30px rgba(255,255,255,0.1);
}

/* ============================================================
   PREMIUM PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  background-size: 400% 400%;
  animation: gradient-shift 25s ease infinite;
}

.page-header > .container {
  position: relative;
  z-index: 2;
}

/* ============================================================
   PREMIUM TYPOGRAPHY
   ============================================================ */
.section__header h2 {
  letter-spacing: -0.04em;
  font-weight: 800;
  line-height: 1.05;
}

.section__label {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary-50), rgba(37, 99, 235, 0.06));
  transition: all 0.3s ease;
}

.section--dark .section__label {
  background: var(--color-primary-50);
}

/* ============================================================
   CLEAN CARD EFFECTS — Simple & Readable
   ============================================================ */
.card {
  position: relative;
  transition: all 0.3s ease;
  background: var(--color-bg-card);
}

/* Remove complex gradient border animation */
.card::after {
  display: none;
}

/* Simple hover: lift + shadow only */
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Card icon - simple, clean */
.card__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-xl);
  background: var(--color-primary-50);
  transition: all 0.3s ease;
}

/* Icon hover - color change only */
.card:hover .card__icon {
  background: var(--color-primary);
  color: white;
}

/* Light elevated card for section--dark (now light bg) */
.section--dark .card {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.6s var(--ease-premium);
}

.section--dark .card:hover {
  background: #ffffff;
  box-shadow: var(--shadow-premium-lg);
}

.section--dark .card:hover .card__icon {
  background: var(--gradient-primary);
  color: white;
}

/* Case study card premium */
.case-study {
  transition: all 0.6s var(--ease-premium);
  position: relative;
}

.case-study::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 2px 0 0 2px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.case-study:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium-lg);
  border-left-color: transparent;
}

.case-study:hover::before {
  opacity: 1;
}

/* ============================================================
   CLEAN BUTTON EFFECTS — Simple Transitions
   ============================================================ */
.btn {
  position: relative;
  transition: all 0.3s ease;
}

/* Remove shimmer effect */
.btn--primary::after,
.btn--accent::after {
  display: none;
}

/* Simple hover: lift + shadow */
.btn--primary {
  box-shadow: 0 2px 8px -2px rgba(37, 99, 235, 0.3);
}

.btn--primary:hover {
  box-shadow: 0 4px 12px -2px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.btn--accent {
  box-shadow: 0 2px 8px -2px rgba(249, 115, 22, 0.3);
}

.btn--accent:hover {
  box-shadow: 0 4px 12px -2px rgba(249, 115, 22, 0.4);
  transform: translateY(-2px);
}

.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px -2px rgba(37, 99, 235, 0.2);
  border-color: var(--color-primary);
}

.btn--ghost:hover {
  transform: translateY(-1px);
}

/* ============================================================
   TRUST BAR INFINITE MARQUEE — Premium Glow
   ============================================================ */
.trust-bar {
  overflow: hidden;
  position: relative;
}

.trust-bar__track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}

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

.trust-bar__track .trust-bar__logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-16);
  padding-right: var(--space-16);
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.trust-bar__logo {
  height: 44px;
  transition: all 0.6s var(--ease-premium);
  filter: grayscale(30%) brightness(0.95);
}

.trust-bar__logo:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1) drop-shadow(0 0 8px rgba(37, 99, 235, 0.3));
  transform: scale(1.1);
}

/* Fade edges — wider, softer */
.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 3;
  pointer-events: none;
}

.trust-bar::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg-alt) 10%, transparent);
}

.trust-bar::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-bg-alt) 10%, transparent);
}

/* ============================================================
   ENHANCED SECTION TRANSITIONS — Luminous Dividers
   ============================================================ */
.section {
  position: relative;
  padding: var(--space-24) 0;
}

.section__header {
  margin-bottom: var(--space-16);
}

/* Decorative gradient line between same-bg sections */
.section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), rgba(139, 92, 246, 0.6), var(--color-secondary), transparent);
  border-radius: 1px;
  opacity: 0.3;
}

.section--dark + .section::before,
.section + .section--dark::before,
.section--alt + .section::before,
.section + .section--alt::before,
.section--dark + .section--dark::before {
  display: none;
}

/* ============================================================
   PREMIUM NAV LINKS — Animated Gradient Underline
   ============================================================ */
.nav__link {
  position: relative;
  transition: all 0.3s var(--ease-premium);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: var(--gradient-primary);
  transition: all 0.4s var(--ease-premium);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: calc(100% - var(--space-8));
}

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

.nav__link.active {
  font-weight: 600;
  color: var(--color-primary);
}

/* ============================================================
   PREMIUM HEADER — Frosted Glass + Smart Hide
   ============================================================ */
.header {
  will-change: transform;
  transition: transform 0.4s var(--ease-premium),
              background-color 0.3s ease,
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

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

.header.header--hidden {
  transform: translateY(-100%);
}

/* Premium settings toggle */
.settings-toggle:hover svg {
  transform: rotate(90deg);
}

/* ============================================================
   TRUST BAR TOP — Fixed bar above header
   ============================================================ */
.trust-bar-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  z-index: calc(var(--z-header) + 1);
  overflow: hidden;
}

.trust-bar-top__track {
  display: flex;
  animation: marquee 40s linear infinite;
}

.trust-bar-top__track:hover {
  animation-play-state: paused;
}

.trust-bar-top__logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-16);
  padding-right: var(--space-16);
  flex-shrink: 0;
  flex-wrap: nowrap;
  height: 40px;
}

.trust-bar-top__logo {
  height: 24px;
  transition: all 0.3s ease;
  filter: grayscale(20%) brightness(0.95);
  opacity: 0.8;
}

.trust-bar-top__logo:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

/* Adjust header to sit below trust bar */
.header {
  top: 40px;
}

/* ============================================================
   PREMIUM FOOTER — Gradient Glow + Hover Reveal
   ============================================================ */
.footer {
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), rgba(139, 92, 246, 0.5), var(--color-accent), transparent);
}

.footer__heading {
  position: relative;
  padding-bottom: var(--space-3);
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2.5px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width 0.4s var(--ease-premium);
}

.footer__heading:hover::after {
  width: 48px;
}

[dir="rtl"] .footer__heading::after {
  left: auto;
  right: 0;
}

.footer__link {
  transition: all 0.3s var(--ease-premium);
  position: relative;
}

.footer__link:hover {
  color: var(--color-primary);
  transform: translateX(6px);
}

[dir="rtl"] .footer__link:hover {
  transform: translateX(-6px);
}

/* ============================================================
   ENHANCED AOS ANIMATIONS — Reveal Up with Blur
   ============================================================ */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(50px);
  filter: blur(4px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo), filter 0.9s var(--ease-out-expo);
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ============================================================
   PREMIUM REPO & VIDEO CARDS — Glow + Depth
   ============================================================ */
.repo-card {
  transition: all 0.6s var(--ease-premium);
  position: relative;
}

.repo-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-premium-lg), 0 0 30px rgba(37, 99, 235, 0.06);
}

.repo-card__icon {
  transition: all 0.6s var(--ease-premium);
}

.repo-card:hover .repo-card__icon {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.15) rotate(-3deg);
  box-shadow: var(--shadow-colored-primary);
}

.video-card {
  transition: all 0.6s var(--ease-premium);
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-premium-lg), 0 0 30px rgba(37, 99, 235, 0.06);
}

/* ============================================================
   PREMIUM OSS STATS — Glass Card
   ============================================================ */
.oss-stats {
  position: relative;
  border: none;
  padding: var(--space-10);
  background: var(--color-bg-card);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--color-border);
}

.oss-stat__value {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* ============================================================
   PREMIUM COOKIE CONSENT — Frosted Glass
   ============================================================ */
.cookie-consent {
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  background: #ffffff;
}

/* ============================================================
   PREMIUM FORM INPUTS — Focus Glow
   ============================================================ */
.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12), var(--shadow-neon-primary);
  transform: translateY(-1px);
}

.form__input,
.form__textarea,
.form__select {
  transition: all 0.3s var(--ease-premium);
}

/* ============================================================
   PREMIUM BACK TO TOP — Floating Glow
   ============================================================ */
.back-to-top {
  transition: all 0.4s var(--ease-premium);
  box-shadow: var(--shadow-premium);
}

.back-to-top:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-colored-primary), var(--shadow-neon-primary);
}

/* ============================================================
   PREMIUM BREADCRUMBS
   ============================================================ */
.breadcrumb a {
  transition: all 0.3s var(--ease-premium);
}

.breadcrumb a:hover {
  color: white;
}

/* ============================================================
   RESPONSIVE PREMIUM ADJUSTMENTS
   ============================================================ */
@media (max-width: 768px) {
  .section {
    padding: var(--space-16) 0;
  }

  .hero__orb--1 {
    width: 400px;
    height: 400px;
  }

  .hero__orb--2 {
    width: 300px;
    height: 300px;
  }

  .hero__orb--3 {
    display: none;
  }

  .trust-bar::before,
  .trust-bar::after {
    width: 40px;
  }

  .nav__link::after {
    display: none;
  }

  .card:hover {
    transform: translateY(-6px);
  }

  .section + .section::before {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .hero__orb--1 {
    width: 250px;
    height: 250px;
  }

  .hero__orb--2 {
    width: 200px;
    height: 200px;
  }

  .card:hover {
    transform: translateY(-4px);
  }
}

/* ============================================================
   PREFERS REDUCED MOTION — Accessibility First
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero,
  .page-header {
    animation: none;
  }

  .hero__orb,
  .hero__orb--1,
  .hero__orb--2,
  .hero__orb--3 {
    animation: none;
  }

  .trust-bar__track {
    animation: none;
  }

  .scroll-progress {
    transition: none;
  }

  .hero .text-gradient {
    animation: none;
  }

  .hero__badge {
    animation: none;
  }

  .hero__stat-value {
    animation: none;
  }

  .section__label {
    animation: none;
  }

  .btn--primary::after,
  .btn--accent::after {
    display: none;
  }

  .card,
  .card__icon,
  .repo-card,
  .repo-card__icon,
  .video-card,
  .case-study,
  .nav__link,
  .footer__link,
  .btn,
  .trust-bar__logo,
  .form__input,
  .form__textarea,
  .form__select,
  .back-to-top,
  .header {
    transition-duration: 0.01ms !important;
  }
}

.trust-bar-top__label {
  position: absolute;
  left: var(--space-8);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  background: var(--color-bg-alt);
  padding-right: var(--space-4);
}

@media (max-width: 768px) {
  .trust-bar-top__label {
    display: none;
  }
}
