:root {
  --blue: #10a9df;
  --blue-dark: #075f91;
  --blue-ink: #0c2433;
  --green: #1f9b68;
  --yellow: #f3c740;
  --red: #cf3d35;
  --ink: #15212b;
  --muted: #5d6875;
  --paper: #ffffff;
  --soft: #f2f7fa;
  --soft-blue: #e8f6fc;
  --line: rgba(21, 33, 43, 0.12);
  --shadow: 0 24px 70px rgba(12, 36, 51, 0.15);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-ink);
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #26333f;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--blue-dark);
}

.nav-cta {
  padding: 10px 14px !important;
  color: #fff !important;
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(31, 155, 104, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(620px, calc(100vh - 120px));
  display: grid;
  align-items: center;
  padding: clamp(42px, 7vw, 78px) clamp(18px, 4vw, 56px) 38px;
  overflow: hidden;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 18, 26, 0.9) 0%, rgba(7, 18, 26, 0.72) 48%, rgba(7, 18, 26, 0.22) 100%),
    linear-gradient(0deg, rgba(7, 18, 26, 0.68), rgba(7, 18, 26, 0.04) 50%);
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.evidence h2,
.trajectory h2,
.contact h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 5.2vw, 4.65rem);
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(31, 155, 104, 0.3);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.trust-strip {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px clamp(18px, 4vw, 56px);
  background: var(--blue-ink);
  color: #fff;
}

.trust-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.trust-carousel {
  position: relative;
  overflow: hidden;
  padding: 2px 0;
}

.trust-carousel::before,
.trust-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 62px;
  pointer-events: none;
}

.trust-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--blue-ink), rgba(12, 36, 51, 0));
}

.trust-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--blue-ink), rgba(12, 36, 51, 0));
}

.trust-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: trust-marquee 58s linear infinite;
}

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

.trust-track img {
  flex: 0 0 248px;
  width: 248px;
  height: 64px;
  padding: 12px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius);
}

@keyframes trust-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.decision-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.decision-strip article {
  padding: 22px clamp(18px, 4vw, 56px);
  background: #fff;
}

.decision-strip strong,
.decision-strip span {
  display: block;
}

.decision-strip strong {
  color: var(--blue-ink);
  font-size: 1.02rem;
}

.decision-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  padding: clamp(66px, 8vw, 108px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading h2,
.evidence h2,
.trajectory h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.role-grid,
.offer-grid,
.process-grid,
.faq-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.role-grid article,
.offer-grid article,
.process-grid article,
.faq-grid article,
.testimonial-grid article,
.testimonial-feature article {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.role-grid strong {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-weight: 900;
}

.role-grid h3,
.offer-grid h3,
.process-grid h3,
.faq-grid h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.22;
}

.role-grid p,
.offer-grid p,
.process-grid p,
.faq-grid p,
.evidence p,
.trajectory p,
.contact p,
.client-copy,
.testimonial-grid p,
.testimonial-feature p {
  color: var(--muted);
}

.problem,
.topics,
.clients,
.faq {
  background: var(--soft);
}

.evidence {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.evidence-copy {
  max-width: 620px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue-dark);
  font-weight: 900;
  border-bottom: 2px solid var(--blue);
}

.evidence-media {
  position: relative;
}

.evidence-media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 310px;
  padding: 18px;
  color: #fff;
  background: rgba(12, 36, 51, 0.88);
  border-radius: var(--radius);
}

.metric-card strong,
.metric-card span {
  display: block;
}

.metric-card strong {
  font-size: 1.12rem;
}

.metric-card span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
}

.offer-grid article,
.process-grid article {
  border-top: 5px solid var(--blue);
}

.offer-grid span,
.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: #fff;
  background: var(--blue-dark);
  border-radius: 50%;
  font-weight: 900;
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.topic-list span {
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 850;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #dce8ee;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(12, 36, 51, 0.82);
  border-radius: var(--radius);
  font-weight: 900;
  text-align: left;
}

.gallery-item.hidden {
  display: none;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.logo-grid img {
  width: 100%;
  height: 118px;
  padding: 18px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.client-copy {
  max-width: 920px;
  margin: 24px 0 0;
  font-size: 1.05rem;
}

.testimonial-feature {
  margin-bottom: 18px;
}

.testimonial-feature article {
  padding: clamp(24px, 4vw, 38px);
  border-left: 6px solid var(--green);
  background: var(--soft-blue);
}

.testimonial-feature p {
  margin: 0 0 18px;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonial-grid article {
  border-top: 5px solid var(--red);
}

.testimonial-grid p {
  margin: 0 0 18px;
  font-size: 1.03rem;
}

.testimonial-grid strong,
.testimonial-feature strong {
  color: var(--ink);
}

.trajectory {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.trajectory-copy {
  max-width: 620px;
}

.trajectory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trajectory-grid .gallery-item {
  height: 310px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 95, 145, 0.96), rgba(12, 36, 51, 0.98)),
    url("assets/gallery/equipe-fabrica-industrial.jpeg") center/cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-panel .eyebrow {
  color: #9de8ff;
}

.contact-panel p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
}

.contact-actions {
  min-width: 260px;
  margin-top: 0;
}

.contact-detail {
  width: 100%;
  margin: 0;
  font-weight: 850;
}

.contact-detail span {
  color: #9de8ff;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  color: #fff;
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(31, 155, 104, 0.34);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-whatsapp.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(6, 10, 14, 0.86);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1040px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

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

  .trust-strip,
  .decision-strip,
  .evidence,
  .trajectory,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .role-grid,
  .offer-grid,
  .process-grid,
  .faq-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-actions {
    min-width: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    padding: 9px 18px;
  }

  .brand {
    gap: 10px;
    font-size: 1rem;
    line-height: 1.1;
  }

  .brand span {
    max-width: 148px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    top: 66px;
    right: 14px;
    left: 14px;
  }

  .section {
    padding: 54px 18px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2,
  .evidence h2,
  .trajectory h2,
  .contact h2 {
    font-size: 1.78rem;
    line-height: 1.08;
  }

  .eyebrow {
    margin-bottom: 9px;
    font-size: 0.7rem;
  }

  .hero {
    min-height: calc(100svh - 66px);
    padding: 34px 18px 30px;
    align-items: end;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(7, 18, 26, 0.96) 0%, rgba(7, 18, 26, 0.82) 45%, rgba(7, 18, 26, 0.34) 100%),
      linear-gradient(90deg, rgba(7, 18, 26, 0.68), rgba(7, 18, 26, 0.08));
  }

  .hero-media img {
    object-position: 56% center;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.06;
  }

  .hero-copy {
    margin-top: 16px;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
  }

  .button.secondary {
    min-height: auto;
    padding: 8px 0 0;
    border: 0;
    background: transparent;
    text-decoration: underline;
    text-underline-offset: 5px;
  }

  .logo-grid,
  .gallery-grid,
  .trajectory-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    gap: 12px;
    padding: 18px;
  }

  .trust-strip p {
    max-width: 310px;
    font-size: 0.96rem;
    line-height: 1.35;
  }

  .trust-carousel::before,
  .trust-carousel::after {
    width: 38px;
  }

  .trust-track {
    gap: 12px;
    animation-duration: 48s;
  }

  .trust-track img {
    flex-basis: min(76vw, 286px);
    width: min(76vw, 286px);
    height: 72px;
    padding: 10px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  }

  .decision-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 16px 18px 8px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .decision-strip::-webkit-scrollbar {
    display: none;
  }

  .decision-strip article {
    position: relative;
    flex: 0 0 min(82vw, 320px);
    padding: 19px 18px 19px 22px;
    background: linear-gradient(145deg, #fff, var(--soft-blue));
    border: 1px solid rgba(16, 169, 223, 0.16);
    border-radius: 20px;
    box-shadow: 0 16px 34px rgba(12, 36, 51, 0.08);
    scroll-snap-align: start;
  }

  .decision-strip article::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 10px;
    width: 4px;
    background: var(--blue);
    border-radius: 999px;
  }

  .problem {
    background: linear-gradient(180deg, var(--soft) 0%, #fff 78%);
  }

  .role-grid {
    gap: 12px;
  }

  .role-grid article {
    padding: 20px;
    border: 1px solid rgba(16, 169, 223, 0.16);
    border-left: 4px solid var(--blue);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 16px 34px rgba(12, 36, 51, 0.07);
  }

  .role-grid strong {
    margin-bottom: 8px;
  }

  .role-grid h3,
  .offer-grid h3,
  .process-grid h3,
  .faq-grid h3 {
    font-size: 1.08rem;
  }

  .role-grid p,
  .offer-grid p,
  .process-grid p,
  .faq-grid p,
  .evidence p,
  .trajectory p,
  .contact p,
  .client-copy,
  .testimonial-grid p,
  .testimonial-feature p {
    font-size: 0.98rem;
  }

  .evidence {
    padding-top: 46px;
  }

  .evidence-copy {
    max-width: none;
  }

  .evidence-media img {
    height: 310px;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    border-radius: 22px;
  }

  .metric-card {
    position: static;
    max-width: none;
    margin-top: 12px;
    border-radius: 20px;
    background: var(--blue-ink);
  }

  .offer-grid,
  .process-grid,
  .testimonial-grid,
  .trajectory-grid,
  .logo-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 18px 12px;
    margin-right: -18px;
    margin-left: -18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .offer-grid::-webkit-scrollbar,
  .process-grid::-webkit-scrollbar,
  .testimonial-grid::-webkit-scrollbar,
  .trajectory-grid::-webkit-scrollbar,
  .logo-grid::-webkit-scrollbar {
    display: none;
  }

  .offer-grid article,
  .process-grid article,
  .testimonial-grid article {
    flex: 0 0 min(82vw, 330px);
    scroll-snap-align: start;
  }

  .offer-grid article,
  .process-grid article {
    padding: 20px;
  }

  .offer-grid span,
  .process-grid span {
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
  }

  .topics {
    background: linear-gradient(180deg, var(--soft) 0%, var(--soft-blue) 100%);
  }

  .topic-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .topic-list span {
    padding: 12px 13px;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 26px rgba(12, 36, 51, 0.06);
  }

  .gallery-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    grid-auto-rows: auto;
    padding: 0 18px 12px;
    margin-right: -18px;
    margin-left: -18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery-item {
    border-radius: 20px;
    box-shadow: 0 18px 36px rgba(12, 36, 51, 0.1);
  }

  .gallery-item img {
    border-radius: 20px;
  }

  .gallery-item span {
    border-radius: 14px;
  }

  .gallery-item {
    flex: 0 0 min(84vw, 330px);
    height: 280px;
    scroll-snap-align: start;
  }

  .gallery-item span {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 9px 10px;
    font-size: 0.92rem;
  }

  .gallery-item.large {
    grid-column: auto;
    grid-row: auto;
  }

  .clients {
    background: #fff;
  }

  .logo-grid img {
    flex: 0 0 min(64vw, 240px);
    width: min(64vw, 240px);
    height: 92px;
    padding: 15px;
    scroll-snap-align: start;
  }

  .client-copy {
    margin-top: 14px;
  }

  .testimonial-feature article {
    padding: 22px 18px;
    border-left: 0;
    border-top: 5px solid var(--green);
    border-radius: 22px;
    box-shadow: 0 16px 34px rgba(12, 36, 51, 0.08);
  }

  .testimonial-feature p {
    font-size: 1.02rem;
  }

  .testimonial-grid article {
    border-top-width: 4px;
  }

  .trajectory {
    padding-top: 46px;
  }

  .trajectory-grid .gallery-item {
    flex: 0 0 min(78vw, 310px);
    height: 250px;
  }

  .faq {
    background: var(--soft-blue);
  }

  .faq-grid {
    gap: 10px;
  }

  .faq-grid article {
    padding: 18px;
    border: 1px solid rgba(31, 155, 104, 0.16);
    border-left: 4px solid var(--green);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
  }

  .contact-panel {
    padding: 26px 18px;
    border-radius: 22px;
    margin-right: 0;
    margin-left: 0;
  }

  .contact-actions {
    gap: 8px;
  }

  .site-footer {
    padding-bottom: 76px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 12px;
    left: auto;
    min-height: 44px;
    padding: 10px 15px;
    border-radius: 999px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-track {
    animation-duration: 80s;
  }
}
