/*======================================
//--//-->   FULLY HERO – CONCEPT V2
// Isolated overrides for the redesigned homepage hero.
======================================*/

.fully-hero {
  min-height: 0;
  height: auto;
  padding: 112px 24px 54px;
  color: #4e4e4e;
  background: #f5f5f5;
}

.fully-hero__container {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  grid-template-areas:
    "title visual"
    "description visual"
    "actions visual"
    "note visual";
  grid-template-rows: auto auto auto 1fr;
  align-items: start;
  column-gap: 38px;
  row-gap: 0;
  max-width: 1240px;
  min-height: 440px;
  padding: 48px 48px 42px;
}

.fully-hero__title {
  grid-area: title;
  margin: 0;
  color: #1e1e1e;
  font-family: inherit;
  font-size: clamp(2.05rem, 3vw, 3.2rem);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: normal;
}

.fully-hero__benefits {
  grid-area: description;
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  color: #4e4e4e;
  font-family: inherit;
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 400;
  list-style: none;
}

.fully-hero__benefits li {
  position: relative;
  padding-left: 30px;
}

.fully-hero__benefits li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #0078ff;
  content: "✓";
  font-weight: 700;
}

.fully-hero__actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}

.fully-hero__button.button {
  display: inline-flex;
  font-family: inherit;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin: 0;
  white-space: nowrap;
  line-height: 1.2;
}

.fully-hero__button--secondary.button-a {
  border-color: #304ffe;
  background-color: #fff;
  color: #304ffe;
}

.fully-hero__button--secondary.button-a:hover,
.fully-hero__button--secondary.button-a:focus {
  border-color: #304ffe;
  background-color: #304ffe;
  color: #fff;
}

.fully-hero__note {
  grid-area: note;
  align-self: end;
  margin: 24px 0 0 8px;
  color: #4e4e4e;
  font-family: inherit;
  font-size: 1.05rem;
  line-height: 1.5;
}

.fully-hero__visual {
  grid-area: visual;
  align-self: stretch;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 1rem;
  background: transparent;
}

.fully-hero__visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.fully-hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 991.98px) {
  .fully-hero {
    padding: 96px 20px 42px;
  }

  .fully-hero__container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "description"
      "actions"
      "note"
      "visual";
    min-height: 0;
    padding: 42px;
  }

  .fully-hero__actions {
    margin-top: 34px;
  }

  .fully-hero__visual {
    margin-top: 36px;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 575.98px) {
  .fully-hero {
    padding: 80px 12px 28px;
  }

  .fully-hero__container {
    grid-template-areas:
      "title"
      "description"
      "visual"
      "actions"
      "note";
    padding: 28px 22px 22px;
  }

  .fully-hero__title {
    font-size: 2rem;
  }

  .fully-hero__benefits {
    margin-top: 22px;
  }

  .fully-hero__visual {
    margin-top: 28px;
  }

  .fully-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .fully-hero__button.button {
    width: 100%;
    white-space: normal;
  }

  .fully-hero__note {
    margin: 18px 0 0;
  }

  .fully-hero__note-separator {
    display: none;
  }
}


/*======================================
//--//-->   FULLY USE CASES
// Interactive use-case section below the app overview.
======================================*/

.fully-use-cases {
  padding-bottom: 4rem;
  background-color: #304ffe;
}

.fully-use-cases__title-box {
  margin-bottom: 3rem;
}

.fully-use-cases .title-a,
.fully-use-cases .subtitle-a {
  color: #fff;
}

.fully-use-cases .line-mf {
  background-color: #fff;
}

.fully-use-case-grid > [class*="col-"] {
  display: flex;
}

.fully-use-case-card.service-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  min-height: 285px;
  margin-bottom: 30px;
  padding: 2.2rem 1.7rem 1.8rem;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 1rem;
  background: #fff;
  color: #4e4e4e;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.fully-use-case-card:hover,
.fully-use-case-card:focus-visible {
  transform: translateY(-4px);
  border-color: #cde1f8;
  box-shadow: 0 15px 18px -12px rgba(0, 0, 0, 0.22);
  outline: 0;
}

.fully-use-case-card.is-active {
  border-color: #304ffe;
  box-shadow: 0 0 0 4px #cde1f8;
}

.fully-use-case-card .service-ico {
  margin-bottom: 1.2rem;
  color: #304ffe;
}

.fully-use-case-card .ico-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  font-size: 2.25rem;
  line-height: 1;
  border: 7px solid #cde1f8;
  border-radius: 50%;
}

.fully-use-case-card.service-box:hover .ico-circle,
.fully-use-case-card.service-box:focus-visible .ico-circle,
.fully-use-case-card.service-box.is-active .ico-circle {
  color: #fff;
  background-color: #304ffe;
  box-shadow: none;
}

.fully-use-case-card .s-title {
  display: block;
  margin: 0;
  padding: 0;
  color: #1e1e1e;
  font-size: 1.25rem;
  line-height: 1.3;
  text-align: left;
}

.fully-use-case-card .s-description {
  display: block;
  margin-top: 0.75rem;
  color: #4e4e4e;
  font-size: 1rem;
  line-height: 1.5;
}

.fully-use-case-card__link {
  display: block;
  margin-top: auto;
  padding-top: 1.5rem;
  color: #304ffe;
  font-size: 1rem;
  font-weight: 600;
}

.fully-use-case-card__link span {
  display: inline-block;
  transition: transform 250ms ease;
}

.fully-use-case-card:hover .fully-use-case-card__link span,
.fully-use-case-card.is-active .fully-use-case-card__link span {
  transform: translateX(5px);
}

.fully-use-case-details {
  margin-top: 0.5rem;
}

.fully-use-case-detail.service-box {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 3rem;
  margin: 0 0 3rem;
  padding: 3rem;
  background: #fff;
  animation: fullyUseCaseReveal 320ms ease both;
}

.fully-use-case-detail[hidden] {
  display: none !important;
}

@keyframes fullyUseCaseReveal {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fully-use-case-detail__eyebrow {
  margin: 0 0 1rem;
  color: #304ffe;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fully-use-case-detail h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.fully-use-case-detail__lead {
  max-width: 720px;
  margin: 1.4rem 0 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.fully-use-case-detail h4 {
  margin: 0 0 1rem;
  color: #1e1e1e;
  font-size: 1.25rem;
  font-weight: 600;
}

.fully-use-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fully-use-case-tags li {
  padding: 0.55rem 0.9rem;
  border-radius: 0.3rem;
  background: #f0f0f0;
  color: #1e1e1e;
  font-size: 0.95rem;
}

.fully-use-case-recommendations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.3rem;
}

.fully-use-case-recommendations > div {
  padding-top: 1.2rem;
  border-top: 2px solid #cde1f8;
}

.fully-use-case-recommendations span,
.fully-use-case-recommendations strong {
  display: block;
}

.fully-use-case-recommendations span {
  margin-bottom: 0.55rem;
  color: #4e4e4e;
  font-size: 0.9rem;
}

.fully-use-case-recommendations strong {
  color: #1e1e1e;
  font-size: 1.05rem;
  font-weight: 600;
}

.fully-use-case-detail__benefits {
  align-self: stretch;
  padding: 2.2rem;
  border-radius: 1rem;
  background: #f3f6ff;
}

.fully-use-case-detail__benefits ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fully-use-case-detail__benefits li {
  position: relative;
  margin-bottom: 0.85rem;
  padding-left: 1.75rem;
  color: #1e1e1e;
  font-size: 1.02rem;
  line-height: 1.45;
}

.fully-use-case-detail__benefits li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #304ffe;
  content: "✓";
  font-weight: 700;
}

.fully-use-case-detail__links {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.1rem;
}

.fully-use-case-detail__links a {
  color: #1e1e1e;
  font-weight: 600;
}

.fully-use-case-detail__links a:hover {
  color: #304ffe;
}

@media (max-width: 991.98px) {
  .fully-use-case-detail.service-box {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.4rem;
  }
}

@media (max-width: 767.98px) {
  .fully-use-cases {
    padding-bottom: 2rem;
  }

  .fully-use-case-card.service-box {
    min-height: 0;
    padding: 1.7rem 1.4rem;
  }

  .fully-use-case-card .ico-circle {
    width: 60px;
    height: 60px;
    border-width: 6px;
    font-size: 1.85rem;
  }

  .fully-use-case-detail.service-box {
    padding: 1.7rem 1.4rem;
  }

  .fully-use-case-recommendations {
    grid-template-columns: 1fr;
  }

  .fully-use-case-detail__benefits {
    padding: 1.6rem 1.35rem;
  }
}


/*======================================
//--//-->   FULLY FINAL NAV + USE CASE CTA
======================================*/

/* Header CTA */
.navbar-b .navbar-nav .fully-nav-trial-item {
  padding-right: 0;
  margin-left: 0.35rem;
}

.navbar-b .fully-nav-trial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.45rem 1rem !important;
  border: 2px solid #304ffe;
  border-radius: 2rem;
  background: #304ffe;
  color: #fff !important;
  line-height: 1.1;
}

.navbar-b .fully-nav-trial::before {
  display: none !important;
}

.navbar-b .fully-nav-trial:hover,
.navbar-b .fully-nav-trial:focus {
  border-color: #1837e8;
  background: #1837e8;
  color: #fff !important;
}

/* Use-case free-trial CTAs */
.fully-use-case-trial.button-a {
  width: fit-content;
  margin: 0;
  padding: 0.7rem 1.1rem;
  border: 2px solid #304ffe;
  background: #304ffe;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

.fully-use-case-trial.button-a:hover,
.fully-use-case-trial.button-a:focus {
  border-color: #1837e8;
  background: #1837e8;
  color: #fff;
}

.fully-use-case-trial--mobile {
  display: none !important;
}

.fully-use-case-detail__links .fully-use-case-trial--desktop {
  color: #fff;
}

/* Keep the remaining text link visually secondary. */
.fully-use-case-detail__links > a:not(.fully-use-case-trial) {
  margin-top: 0.1rem;
}

/* Mobile note alignment carried forward from V14. */
@media (max-width: 575.98px) {
  .fully-hero__benefits li {
    padding-left: 1.9rem;
  }

  .fully-hero__benefits li::before {
    left: 0.15rem;
  }

  .fully-hero__note {
    display: grid;
    justify-content: center;
    gap: 0.5rem;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .fully-hero__note-item {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding-left: 0;
  }

  .fully-hero__note-item::before {
    position: static;
    flex: 0 0 auto;
    color: #0078ff;
    content: "✓";
    font-weight: 700;
    line-height: 1.2;
    transform: translateY(0.02em);
  }
}

@media (max-width: 767.98px) {
  .fully-use-case-trial--mobile {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    line-height: 1.18 !important;
  }

  .fully-use-case-trial--desktop {
    display: none !important;
  }
}

/* Mobile / collapsed nav */
@media (max-width: 767.98px) {
  .navbar-b .navbar-nav .fully-nav-trial-item {
    margin: 0.55rem 0 0;
    padding: 0;
  }

  .navbar-b .fully-nav-trial {
    width: fit-content;
  }
}


/*======================================
//--//-->   FULLY FINAL FEATURE CARDS
// Consolidated from V16–V23. Visual behavior unchanged.
======================================*/
.fully-feature-benefits {
  padding-bottom: 4rem;
  background: #f5f5f5;
}

.fully-feature-benefits__title-box {
  margin-bottom: 3rem;
}

.fully-feature-benefits__grid > [class*="col-"] {
  display: flex;
}

.fully-feature-card.service-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 360px;
  margin-bottom: 30px;
  padding: 2.25rem 1.85rem 1.9rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 500ms ease, box-shadow 500ms ease, border-color 500ms ease;
}

.fully-feature-card:hover,
.fully-feature-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 13px 8px -10px rgba(0, 0, 0, 0.1);
}

.fully-feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 0.8rem;
  border-radius: 50%;
  box-shadow: none !important;
  transition: box-shadow 500ms ease;
}

.fully-feature-card:hover .fully-feature-card__icon,
.fully-feature-card:focus-within .fully-feature-card__icon {
  box-shadow: none !important;
}

.fully-feature-icon {
  display: block;
  width: 76px;
  height: 76px;
}

.fully-feature-icon__ring,
.fully-feature-icon__glyph {
  transition: all 500ms ease;
}

.fully-feature-icon__ring {
  stroke: #304FFE;
  fill: transparent;
}

.fully-feature-icon__glyph {
  stroke: #253746;
}

.fully-feature-card:hover .fully-feature-icon__ring,
.fully-feature-card:focus-within .fully-feature-icon__ring {
  stroke: #cde1f8;
  fill: #304FFE;
}

.fully-feature-card:hover .fully-feature-icon__glyph,
.fully-feature-card:focus-within .fully-feature-icon__glyph {
  stroke: #ffffff;
}

.fully-feature-card .s-title {
  min-height: 0;
  margin: 0;
  padding: 0;
  color: #1e1e1e;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.28;
}

.fully-feature-card__feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.6rem;
  max-width: 320px;
  margin: 0.95rem auto 0;
  color: #4e4e4e;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
  text-transform: none;
}

.fully-feature-benefits__partner {
  margin-top: 0.75rem;
}

.fully-feature-benefits__actions {
  margin-top: 1rem;
}

@media (min-width: 992px) {
  .fully-feature-card.service-box {
    min-height: 330px;
  }
}

@media (max-width: 991.98px) {
  .fully-feature-card.service-box {
    min-height: 0;
  }
}

@media (max-width: 767.98px) {
  .fully-feature-benefits {
    padding-bottom: 2.5rem;
  }

  .fully-feature-benefits__title-box {
    margin-bottom: 2rem;
  }

  .fully-feature-card.service-box {
    min-height: 0;
    padding: 1.7rem 1.35rem;
  }

  .fully-feature-card__icon,
  .fully-feature-icon {
    width: 72px;
    height: 72px;
  }

  .fully-feature-card__icon {
    margin-bottom: 0.75rem;
  }

  .fully-feature-card .s-title {
    min-height: 0;
    font-size: 1.1rem;
  }

  .fully-feature-card__feature-list {
    max-width: 100%;
    margin-top: 0.85rem;
    font-size: 0.95rem;
  }
}

/*======================================
//--//-->   FULLY FINAL USE CASE OVERRIDES
// Consolidated from V34–V45. Keeps desktop and mobile behavior.
======================================*/
.fully-use-case-card.service-box {
  align-items: center;
  min-height: 270px;
  text-align: center;
}

.fully-use-case-card .service-ico {
  display: block;
  width: 100%;
  margin: 0 0 1rem;
  color: inherit;
}

.fully-use-case-card .ico-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.fully-use-case-card.service-box:hover .ico-circle,
.fully-use-case-card.service-box:focus-visible .ico-circle,
.fully-use-case-card.service-box.is-active .ico-circle {
  background-color: transparent;
  box-shadow: none;
}

.fully-use-case-card .fully-use-case-icon {
  width: 72px;
  height: 72px;
}

.fully-use-case-card .fully-use-case-icon__ring {
  stroke: #304ffe;
  fill: transparent;
  transition: stroke 250ms ease, fill 250ms ease;
}

.fully-use-case-card .fully-use-case-icon__glyph,
.fully-use-case-card .fully-use-case-icon__glyph * {
  stroke: #304ffe;
  transition: stroke 250ms ease;
}

.fully-use-case-card.service-box:hover .fully-use-case-icon__ring,
.fully-use-case-card.service-box:focus-visible .fully-use-case-icon__ring,
.fully-use-case-card.service-box.is-active .fully-use-case-icon__ring {
  stroke: #cde1f8;
  fill: #304ffe;
}

.fully-use-case-card.service-box:hover .fully-use-case-icon__glyph,
.fully-use-case-card.service-box:hover .fully-use-case-icon__glyph *,
.fully-use-case-card.service-box:focus-visible .fully-use-case-icon__glyph,
.fully-use-case-card.service-box:focus-visible .fully-use-case-icon__glyph *,
.fully-use-case-card.service-box.is-active .fully-use-case-icon__glyph,
.fully-use-case-card.service-box.is-active .fully-use-case-icon__glyph * {
  stroke: #ffffff;
}

.fully-use-case-card .s-title {
  width: 100%;
  text-align: center;
  font-weight: 600;
}

.fully-use-case-card .s-description {
  width: 100%;
  margin-top: 0.7rem;
  color: #4e4e4e;
  font-size: 0.97rem;
  line-height: 1.55;
  text-align: center;
}

.fully-use-case-card__link {
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .fully-use-case-card {
    -webkit-appearance: none;
    appearance: none;
  }

  .fully-use-case-card:focus,
  .fully-use-case-card:focus-visible,
  .fully-use-case-card.is-active,
  .fully-use-case-card.service-box.is-active,
  .fully-use-case-card.is-active:hover,
  .fully-use-case-card.is-active:focus,
  .fully-use-case-card.is-active:focus-visible {
    outline: none !important;
    outline-offset: 0 !important;
    border: 2px solid transparent !important;
    box-shadow: 0 0 0 4px #cde1f8 !important;
  }
}

@media (max-width: 767.98px) {
  .fully-use-case-grid > [class*="col-"] {
    flex-direction: column;
  }

  .fully-use-case-card,
  .fully-use-case-card * {
    -webkit-tap-highlight-color: transparent;
  }

  .fully-use-case-card.service-box {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon desc";
    align-items: center;
    column-gap: 0.95rem;
    row-gap: 0.2rem;
    min-height: 0;
    margin-bottom: 14px;
    padding: 1.15rem 3rem 1.15rem 1rem;
    text-align: left;
    transform: none;
  }

  .fully-use-case-card .service-ico {
    grid-area: icon;
    width: auto;
    margin: 0;
    align-self: center;
    justify-self: start;
  }

  .fully-use-case-card .ico-circle,
  .fully-use-case-card .fully-use-case-icon {
    width: 52px;
    height: 52px;
  }

  .fully-use-case-card .s-title {
    grid-area: title;
    width: auto;
    margin: 0;
    padding: 0;
    text-align: left;
    font-size: 1rem;
    line-height: 1.25;
  }

  .fully-use-case-card .s-description {
    grid-area: desc;
    width: auto;
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    color: #4e4e4e;
    font-size: 0.88rem;
    line-height: 1.35;
    text-align: left;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .fully-use-case-card__link {
    display: none;
  }

  .fully-use-case-card::after {
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 12px;
    height: 12px;
    border-right: 2px solid #304ffe;
    border-bottom: 2px solid #304ffe;
    content: "";
    transform: translateY(-62%) rotate(45deg);
    transition: transform 220ms ease;
  }

  .fully-use-case-card:hover,
  .fully-use-case-card:focus-visible {
    transform: none;
  }

  .fully-use-case-card.is-active {
    margin-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .fully-use-case-card.is-active::after {
    transform: translateY(-28%) rotate(225deg);
  }

  .fully-use-case-card.is-active,
  .fully-use-case-card.service-box.is-active,
  .fully-use-case-card.is-active:hover,
  .fully-use-case-card.is-active:focus,
  .fully-use-case-card.is-active:focus-visible,
  .fully-use-case-card:focus,
  .fully-use-case-card:focus-visible,
  .fully-use-case-card:active {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
  }

  .fully-use-case-card.is-active::before,
  .fully-use-case-card::before {
    box-shadow: none !important;
  }

  .fully-use-case-detail.service-box.fully-use-case-detail--inline {
    width: 100%;
    gap: 0 !important;
    margin: -2px 0 16px;
    padding: 1.15rem 1rem 1.35rem;
    border: 2px solid #304ffe;
    border-top: 1px solid #cde1f8;
    border-radius: 0 0 1rem 1rem;
    box-shadow: none;
  }

  .fully-use-case-detail--inline .fully-use-case-detail__eyebrow {
    display: none;
  }

  .fully-use-case-detail--inline .fully-use-case-detail__lead {
    display: none;
  }

  .fully-use-case-detail--inline .fully-use-case-detail__main > h4,
  .fully-use-case-detail--inline .fully-use-case-tags {
    display: none;
  }

  .fully-use-case-detail--inline h3 {
    margin: 0 0 0.9rem;
    font-size: 1.42rem;
    line-height: 1.25;
  }

  /* On mobile JS moves the one canonical benefit list below the headline. */
  .fully-use-case-detail--inline .fully-use-case-detail__main > .fully-use-case-benefit-list {
    display: grid;
    gap: 0.62rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .fully-use-case-detail--inline .fully-use-case-detail__main > .fully-use-case-benefit-list li {
    position: relative;
    margin: 0;
    padding-left: 1.55rem;
    color: #1e1e1e;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .fully-use-case-detail--inline .fully-use-case-detail__main > .fully-use-case-benefit-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: #304ffe;
    content: "✓";
    font-weight: 700;
  }

  .fully-use-case-detail--inline .fully-use-case-detail__benefits {
    margin-top: 0 !important;
    padding: 0.55rem 1rem 0.95rem !important;
    border-radius: 0;
    background: transparent;
  }

  .fully-use-case-detail--inline .fully-use-case-detail__benefits > h4,
  .fully-use-case-detail--inline .fully-use-case-detail__benefits > ul {
    display: none;
  }

  .fully-use-case-detail--inline .fully-use-case-recommendations {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "app licence"
      "cta cta";
    gap: 0.7rem 1rem;
    align-items: start;
    margin-top: 1.2rem;
    padding: 0.9rem 0.95rem;
    border-radius: 0.75rem;
    background: #f0f2f5;
  }

  .fully-use-case-detail--inline .fully-use-case-recommendations > div {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }

  .fully-use-case-detail--inline .fully-use-case-recommendation--app {
    display: contents !important;
  }

  .fully-use-case-detail--inline .fully-use-case-recommendation__copy {
    grid-area: app;
    min-width: 0;
    justify-self: start;
    text-align: left;
  }

  .fully-use-case-detail--inline .fully-use-case-recommendations > div:not(.fully-use-case-recommendation--app) {
    grid-area: licence;
    min-width: 0;
    justify-self: start;
    text-align: left;
  }

  .fully-use-case-detail--inline .fully-use-case-recommendations span {
    margin-bottom: 0.2rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .fully-use-case-detail--inline .fully-use-case-recommendations strong {
    display: block;
    max-width: 9.5rem;
    font-size: 0.95rem;
    line-height: 1.25;
    white-space: normal !important;
  }

  .fully-use-case-detail--inline .fully-use-case-trial--mobile {
    grid-area: cta;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    margin-top: 0;
    margin-bottom: 0.1rem;
    padding: 0.52rem 0.75rem !important;
    border-color: #304ffe;
    border-radius: 5rem !important;
    font-size: 0.84rem !important;
    white-space: normal;
  }

  .fully-use-case-detail--inline .fully-use-case-detail__links {
    margin-top: 0 !important;
  }

  .fully-use-case-detail--inline .fully-use-case-detail__links > a:not(.fully-use-case-trial) {
    display: inline-block;
    margin-top: 0 !important;
    font-size: 0.9rem;
    line-height: 1.2;
  }
}



/*======================================
//--//-->   FULLY V51 INITIAL HEADER
// Make the initial / top-of-page navigation Fully blue.
// The existing white scrolled navbar (.navbar-reduce) remains unchanged.
======================================*/
.navbar-b.navbar-trans {
  background-color: #304ffe;
}

/* Keep the Free Trial CTA clearly visible on the blue initial header. */
.navbar-b.navbar-trans .fully-nav-trial {
  border-color: #ffffff;
  background: #ffffff;
  color: #304ffe !important;
}

.navbar-b.navbar-trans .fully-nav-trial:hover,
.navbar-b.navbar-trans .fully-nav-trial:focus {
  border-color: #ffffff;
  background: #ffffff;
  color: #1837e8 !important;
}
