/* Slogan Device Styles */
.slogan-section {
   /* margin-top: 60px;
  padding: 0 20px;
}
.device-wrapper {
   /* background: #f5f7fa;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 48px 44px;
  /* box-shadow: 0 12px 50px rgba(15, 23, 42, 0.12); */
  /*max-width: 1200px;*/
  width: 100%;
  margin: 0 auto;
}
.slogan-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.slogan-title {
  font-size: clamp(20px, 4vw, 34px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--foreground);
}
.u-text-style-h4 {
  font-size: clamp(20px, 4vw, 28px);
}
.u-foreground-tertiary {
  color: var(--muted);
}
.u-display-block {
  display: block;
}
.u-mb-3 {
  margin-bottom: 16px;
}
.download_links_wrap {
  margin-top: 32px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.cta-button {
  appearance: none;
  border: none;
  background: #e2e8f0;
  color: #0f172a;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, box-shadow .2s ease, transform .15s ease;
  margin-top: 8px;
  /*box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);*/
}
.cta-button:hover {
  background: #cbd5e1;
  transform: translateY(-1px);
 /* box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);*/
}
.cta-button:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}
.rotate-fade {
  opacity: 1;
  transition: opacity .35s ease;
  min-height: 1.35em;
}
.rotate-fade.fade-out {
  opacity: 0;
}

