/* =========================================================
   LABS.INCU — Home page relaunch stylesheet
   All selectors are prefixed with "li-" (and custom properties
   with "--li-") so this file cannot collide with the existing
   chefincu-home.css / defense-zone.css rules used by the other
   pages (About, Services, Contact, ...). Only the Home page
   route renders these classes.
   ========================================================= */

:root {
  --li-color-primary: var(--brand-500);
  --li-color-primary-dark: var(--brand-900);
  --li-color-primary-light: var(--brand-tint);
  --li-color-accent-yellow: #fdd835;
  --li-color-accent-orange: #ff6f00;
  --li-color-heading: #101828;
  --li-color-text: #5f6b7a;
  --li-color-text-light: #8a94a6;
  --li-color-border: #e7e6ef;
  --li-color-footer-bg: #1e2434;
  --li-color-footer-text: #aab1c2;
  --li-color-white: #ffffff;

  --li-font-base: "Poppins", var(--font-arabic), "Segoe UI", Arial, sans-serif;

  --li-radius-sm: 6px;
  --li-radius-md: 10px;
  --li-radius-lg: 18px;
  --li-shadow-card: 0 4px 18px rgba(16, 24, 40, 0.06);
  --li-shadow-card-hover: 0 12px 28px rgba(16, 24, 40, 0.12);

  --li-container-max: 1320px;
}

body.li-home-page {
  font-family: var(--li-font-base);
  color: var(--li-color-text);
  background-color: var(--li-color-white);
  font-size: 15px !important;
  line-height: 1.7;
}

body.li-home-page h1,
body.li-home-page h2,
body.li-home-page h3,
body.li-home-page h4,
body.li-home-page h5 {
  color: var(--li-color-heading);
  font-weight: 700;
  margin: 0;
  font-family: var(--li-font-base);
}

.li-container {
  width: 100%;
  max-width: var(--li-container-max);
  margin: 0 auto;
  padding-inline-start: 24px;
  padding-inline-end: 24px;
}

.li-section-py {
  padding-top: 56px;
  padding-bottom: 56px;
}

/* =========================================================
   Top bar
   ========================================================= */
.li-topbar {
  background-color: var(--li-color-primary-dark);
  color: var(--li-color-white);
  font-size: 13px !important;
  font-family: var(--li-font-base);
}

.li-topbar .li-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.li-topbar a,
.li-topbar button {
  color: var(--li-color-white);
  opacity: 0.9;
  transition: opacity 0.2s ease;
  background: none;
  border: none;
  font-size: 13px !important;
  padding: 0;
}

.li-topbar a:hover,
.li-topbar a:focus-visible,
.li-topbar button:hover,
.li-topbar button:focus-visible {
  opacity: 1;
  text-decoration: underline;
}

.li-dropdown-caret {
  font-size: 10px !important;
  margin-inline-start: 4px;
}

/* =========================================================
   Header / Navigation
   ========================================================= */
.li-header {
  position: relative;
  background: var(--li-color-white);
  z-index: 20;
  overflow: visible;
  font-family: var(--li-font-base);
}

.li-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}

.li-brand {
  position: relative;
  z-index: 2;
  font-size: 22px !important;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--li-color-heading);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.li-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.li-brand .li-accent {
  color: var(--li-color-primary);
}

.li-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.li-nav .li-nav-link {
  color: #3a3a3a;
  font-weight: 500;
  font-size: 15px !important;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.li-nav .li-nav-link:hover,
.li-nav .li-nav-link:focus-visible,
.li-nav .li-nav-link.active {
  color: var(--li-color-primary);
}

.li-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.li-lang-toggle {
  border: 1px solid var(--li-color-border);
  border-radius: 30px;
  padding: 6px 14px;
  background: var(--li-color-white);
  color: var(--li-color-heading);
  font-size: 13px !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.li-lang-toggle:hover,
.li-lang-toggle:focus-visible {
  border-color: var(--li-color-primary);
  color: var(--li-color-primary);
}

.li-cart {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--li-color-heading);
}

.li-cart .li-cart-count {
  font-weight: 700;
  color: var(--li-color-primary);
  font-size: 15px !important;
  line-height: 1.1;
}

.li-cart .li-cart-label {
  font-size: 11px !important;
  color: var(--li-color-text-light);
  display: block;
}

.li-cart svg {
  width: 22px;
  height: 22px;
}

.li-nav-toggle {
  border: 1px solid var(--li-color-border);
  border-radius: var(--li-radius-sm);
  padding: 6px 10px;
  background: var(--li-color-white);
}

.li-offcanvas-title {
  font-weight: 800;
  color: var(--li-color-heading);
}

/* =========================================================
   Hero
   ========================================================= */
.li-hero {
  position: relative;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 40px;
}

.li-hero-blob {
  position: absolute;
  inset-inline-end: -160px;
  top: 40px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #f4f2ff 0%, #ffffff 70%);
  z-index: -1;
}

.li-hero-row {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.li-hero-copy {
  flex: 0 0 46%;
  max-width: 46%;
}

.li-hero-copy h1 {
  font-size: 40px !important;
  line-height: 1.28;
  font-weight: 800;
  color: #4b4b4b;
}

.li-hero-copy h1 .li-brand-word {
  color: var(--li-color-primary);
}

.li-hero-copy p {
  margin-top: 22px;
  color: var(--li-color-text);
  max-width: 460px;
}

.li-need-search {
  margin-top: 26px;
  max-width: 520px;
}

.li-need-search-label {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--li-color-heading);
  margin-bottom: 10px;
}

.li-need-search-row {
  display: flex;
  gap: 10px;
  background: var(--li-color-white);
  border: 1px solid var(--li-color-border);
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  box-shadow: var(--li-shadow-card);
}

.li-need-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
  color: var(--li-color-heading);
}

.li-need-search-btn {
  border-radius: 999px !important;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px !important;
}

@media (max-width: 576px) {
  .li-need-search-row {
    flex-direction: column;
    border-radius: var(--li-radius-md);
    padding: 14px;
  }
  .li-need-search-btn {
    justify-content: center;
  }
}

.li-hero-cta {
  margin-top: 28px;
  display: flex;
  gap: 16px;
}

.li-btn-solid {
  background-color: var(--li-color-primary);
  color: var(--li-color-white);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: var(--li-radius-sm);
  border: 1px solid var(--li-color-primary);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  display: inline-block;
}

.li-btn-solid:hover,
.li-btn-solid:focus-visible {
  background-color: var(--li-color-primary-dark);
  border-color: var(--li-color-primary-dark);
  color: var(--li-color-white);
  transform: translateY(-1px);
}

.li-btn-outline-dark {
  background-color: transparent;
  color: var(--li-color-heading);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: var(--li-radius-sm);
  border: 1px solid #d7d7e0;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  display: inline-block;
}

.li-btn-outline-dark:hover,
.li-btn-outline-dark:focus-visible {
  border-color: var(--li-color-primary);
  color: var(--li-color-primary);
  transform: translateY(-1px);
}

.li-hero-image {
  flex: 1;
  position: relative;
}

.li-hero-image img {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.li-hero-dots {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.li-hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6d3e6;
  display: block;
  cursor: pointer;
}

.li-hero-dots span.active {
  width: 26px;
  border-radius: 5px;
  background: var(--li-color-primary);
}

/* =========================================================
   Card-carousel sections
   ========================================================= */
.li-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--li-color-border);
  margin-bottom: 34px;
}

.li-section-head h2 {
  font-size: 26px !important;
  line-height: 1.35;
}

.li-section-head .li-view-all {
  color: var(--li-color-text-light);
  font-size: 14px !important;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.li-carousel-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.li-carousel-arrow {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--li-color-border);
  background: var(--li-color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--li-color-heading);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.li-carousel-arrow:hover,
.li-carousel-arrow:focus-visible {
  background-color: var(--li-color-primary);
  border-color: var(--li-color-primary);
  color: var(--li-color-white);
}

/* Horizontal scroller. The arrows drive scrollBy(); touch and trackpad get
   native momentum for free, which is why this is not a carousel library. */
.li-card-track {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-block: 4px;
}

.li-card-track::-webkit-scrollbar {
  display: none;
}

.li-card-track > .li-service-card {
  flex: 0 0 calc((100% - 72px) / 4);
  scroll-snap-align: start;
}

.li-card-track:focus-visible {
  outline: 2px solid var(--li-color-primary);
  outline-offset: 4px;
}

/* Nothing to scroll: hide the control rather than show a dead one. */
.li-carousel-arrow[hidden] {
  display: none;
}

.li-carousel-arrow:disabled {
  opacity: .35;
  cursor: default;
}

.li-carousel-arrow:disabled:hover {
  background: var(--li-color-white);
  border-color: var(--li-color-border);
  color: var(--li-color-heading);
}

/* The arrows point along the reading direction, so they mirror in Arabic. */
[dir="rtl"] .li-carousel-arrow i {
  transform: scaleX(-1);
}

@media (max-width: 991.98px) {
  .li-card-track > .li-service-card {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 575.98px) {
  /* Phones get every card stacked full-width instead of a horizontal
     swipe-scroller, so all cards are visible without a swipe gesture. */
  .li-card-track {
    flex-direction: column;
    overflow-x: visible;
    scroll-snap-type: none;
  }

  .li-card-track > .li-service-card {
    flex-basis: auto;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .li-card-track {
    scroll-behavior: auto;
  }
}

.li-service-card {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.li-service-card .li-thumb {
  border-radius: var(--li-radius-md);
  overflow: hidden;
  aspect-ratio: 276 / 165;
  margin-bottom: 18px;
  box-shadow: var(--li-shadow-card);
}

.li-service-card .li-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.li-service-card:hover .li-thumb img {
  transform: scale(1.06);
}

.li-service-card h3 {
  font-size: 15px !important;
  font-weight: 600;
  line-height: 1.4;
  min-height: 42px;
  margin-bottom: 16px;
  color: var(--li-color-heading);
}

/* =========================================================
   Main Paths grid (icon cards linking to platform sections)
   ========================================================= */
.li-path-subheading {
  font-size: 14px !important;
  color: var(--li-color-text-light);
  margin: 8px 0 0;
  max-width: 640px;
}

.li-path-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 28px 20px;
  border: 1px solid var(--li-color-border);
  border-radius: var(--li-radius-md);
  background: var(--li-color-white);
  box-shadow: var(--li-shadow-card);
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.li-path-card:hover,
.li-path-card:focus-visible {
  box-shadow: var(--li-shadow-card-hover);
  transform: translateY(-3px);
  border-color: var(--li-color-primary);
  text-decoration: none;
}

.li-path-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--li-color-primary-light);
  color: var(--li-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}

.li-path-card h3 {
  font-size: 15px !important;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--li-color-heading);
}

.li-path-card p {
  font-size: 13px !important;
  color: var(--li-color-text-light);
  line-height: 1.5;
  margin: 0;
}

.li-btn-service-order {
  display: inline-block;
  margin-top: auto;
  align-self: center;
  border: 1px solid var(--li-color-border);
  border-radius: var(--li-radius-sm);
  padding: 8px 22px;
  font-size: 14px !important;
  font-weight: 500;
  color: var(--li-color-heading);
  background: var(--li-color-white);
  transition: all 0.2s ease;
  cursor: pointer;
}

.li-btn-service-order:hover,
.li-btn-service-order:focus-visible {
  background: var(--li-color-primary);
  border-color: var(--li-color-primary);
  color: var(--li-color-white);
}

/* =========================================================
   Product grid
   ========================================================= */
.li-product-card {
  border: 1px solid var(--li-color-border);
  border-radius: var(--li-radius-md);
  padding: 18px 16px 20px;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.li-product-card:hover {
  box-shadow: var(--li-shadow-card-hover);
  transform: translateY(-3px);
  border-color: transparent;
}

.li-product-card .li-thumb {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.li-product-card .li-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.li-product-card h3 {
  font-size: 14px !important;
  font-weight: 500;
  color: #333c47;
  line-height: 1.4;
  margin-bottom: 10px;
}

.li-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.li-product-price {
  color: var(--li-color-primary);
  font-weight: 700;
  font-size: 15px !important;
}

.li-product-rating {
  color: var(--li-color-accent-orange);
  font-size: 12px !important;
  letter-spacing: 1px;
}

/* =========================================================
   Personal labs banner
   ========================================================= */
.li-labs-banner {
  position: relative;
  background-color: var(--li-color-primary);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  color: var(--li-color-white);
  padding: 90px 0;
}

.li-labs-banner .li-container {
  position: relative;
  z-index: 2;
}

.li-labs-banner h2 {
  color: var(--li-color-white);
  font-size: 40px !important;
  line-height: 1.25;
  max-width: 480px;
}

.li-labs-banner p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 460px;
  margin-top: 16px;
}

.li-btn-outline-white {
  display: inline-block;
  margin-top: 26px;
  padding: 11px 30px;
  border: 1px solid var(--li-color-white);
  color: var(--li-color-white);
  font-weight: 600;
  border-radius: var(--li-radius-sm);
  transition: all 0.2s ease;
}

.li-btn-outline-white:hover,
.li-btn-outline-white:focus-visible {
  background: var(--li-color-white);
  color: var(--li-color-primary);
}

/* =========================================================
   About
   ========================================================= */
.li-about-image img {
  border-radius: var(--li-radius-lg);
  width: 100%;
  box-shadow: var(--li-shadow-card);
}

.li-about-copy h2 {
  font-size: 30px !important;
  margin-bottom: 18px;
}

.li-about-copy p {
  margin-bottom: 14px;
}

/* =========================================================
   News & Media
   ========================================================= */
.li-news-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

.li-news-head h2 {
  font-size: 30px !important;
  margin-bottom: 12px;
}

.li-news-card .li-thumb {
  border-radius: var(--li-radius-md);
  overflow: hidden;
  aspect-ratio: 386 / 223;
  margin-bottom: 20px;
}

.li-news-card .li-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.li-news-card:hover .li-thumb img {
  transform: scale(1.05);
}

.li-news-card h3 {
  font-size: 18px !important;
  margin-bottom: 14px;
  line-height: 1.4;
}

.li-news-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
  font-size: 13px !important;
  color: var(--li-color-text-light);
  flex-wrap: wrap;
}

.li-news-meta .li-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--li-color-primary);
  color: var(--li-color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px !important;
  font-weight: 700;
  flex: 0 0 auto;
}

.li-news-meta .li-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.li-news-card .li-read-more {
  font-weight: 700;
  font-style: italic;
  font-size: 14px !important;
  color: var(--li-color-heading);
  border-bottom: 1px solid var(--li-color-heading);
  padding-bottom: 2px;
}

.li-news-card .li-read-more:hover,
.li-news-card .li-read-more:focus-visible {
  color: var(--li-color-primary);
  border-color: var(--li-color-primary);
}

/* =========================================================
   Footer
   ========================================================= */
.li-footer {
  background-color: var(--li-color-footer-bg);
  color: var(--li-color-footer-text);
  padding-top: 60px;
  font-family: var(--li-font-base);
}

.li-footer .li-brand {
  color: var(--li-color-white);
}

.li-footer h4 {
  color: var(--li-color-white);
  font-size: 17px !important;
  margin-bottom: 22px;
}

.li-footer p {
  font-size: 14px !important;
  line-height: 1.8;
}

.li-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.li-footer-links li {
  margin-bottom: 14px;
}

.li-footer-links a {
  font-size: 14px !important;
  color: inherit;
  transition: color 0.2s ease;
}

.li-footer-links a:hover,
.li-footer-links a:focus-visible {
  color: var(--li-color-white);
}

.li-footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px !important;
}

.li-footer-contact-item a {
  color: inherit;
}

.li-footer-address {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  font-size: 14px !important;
}

.li-footer-address i {
  flex: 0 0 auto;
  margin-top: 3px;
}

.li-social-icons {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.li-social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--li-color-white);
  transition: background-color 0.2s ease;
}

.li-social-icons a:hover,
.li-social-icons a:focus-visible {
  background-color: var(--li-color-primary);
}

.li-footer-bottom {
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px !important;
}

.li-footer-bottom .li-bottom-links {
  display: flex;
  gap: 24px;
}

.li-footer-bottom .li-bottom-links a {
  color: inherit;
}

.li-footer-bottom .li-bottom-links a:hover,
.li-footer-bottom .li-bottom-links a:focus-visible {
  color: var(--li-color-white);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1200px) {
  .li-hero-copy h1 {
    font-size: 32px !important;
  }
}

@media (max-width: 1024px) {
  .li-hero-copy h1 {
    font-size: 28px !important;
  }
  .li-hero-row {
    gap: 24px;
  }
  .li-labs-banner h2 {
    font-size: 32px !important;
  }
  .li-section-head h2 {
    font-size: 22px !important;
  }
}

@media (max-width: 991.98px) {
  .li-nav {
    display: none;
  }
  .li-carousel-arrow {
    display: none;
  }
  .li-hero-row {
    flex-wrap: wrap;
  }
  .li-hero-copy {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .li-hero-image {
    flex: 0 0 100%;
    order: -1;
  }
  .li-hero-image img {
    max-width: 380px;
  }
  .li-about-image {
    margin-bottom: 32px;
  }
}

@media (max-width: 768px) {
  .li-section-py {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .li-hero-copy h1 {
    font-size: 26px !important;
  }
  .li-labs-banner {
    padding: 60px 0;
  }
  .li-labs-banner h2 {
    font-size: 28px !important;
  }
  .li-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .li-news-head h2,
  .li-about-copy h2 {
    font-size: 24px !important;
  }
}

@media (max-width: 576px) {
  .li-container {
    padding-inline-start: 16px;
    padding-inline-end: 16px;
  }
  .li-hero-cta {
    flex-wrap: wrap;
  }
  .li-btn-solid,
  .li-btn-outline-dark {
    padding: 11px 20px;
    font-size: 14px !important;
  }
  .li-cart .li-cart-label {
    display: none;
  }
  .li-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .li-topbar .li-container {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
}

/* =========================================================
   Footer additions (Pass A)
   The footer used to render two different layouts depending on
   whether you were on the homepage. These styles carry the parts
   that only existed in the other version - the accreditation
   badges and the disclaimer - plus a back-to-top control.
   ========================================================= */

.li-footer-brand img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.li-footer-badges {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.li-footer-badges-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.li-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.li-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--li-color-white);
  font-size: 13px;
  font-weight: 500;
}

.li-badge-pill i {
  color: var(--li-color-primary-light);
}

.li-footer-badges + .li-footer-bottom {
  margin-top: 26px;
}

.li-footer-disclaimer {
  margin: 0;
  padding-bottom: 26px;
  font-size: 12.5px !important;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.42);
  max-width: 90ch;
}

.li-to-top {
  position: fixed;
  inset-block-end: 24px;
  inset-inline-end: 24px;
  z-index: 1020;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--li-color-border);
  background: var(--li-color-white);
  color: var(--li-color-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--li-shadow-card);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.li-to-top:hover,
.li-to-top:focus-visible {
  background: var(--li-color-primary);
  border-color: var(--li-color-primary);
  color: var(--li-color-white);
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  .li-footer-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .li-to-top {
    inset-block-end: 16px;
    inset-inline-end: 16px;
  }
}
