.container_solutions {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.container_solutions::after {
    content: "";
    display: block;
    position: absolute;
    background-image: url('/files/wave_lin_vertical.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    width: 300px;
    top: 0;
    left: 50%;
    opacity: 0.5;
    z-index: -1;
    height: 100%;
    mask-image: linear-gradient(to bottom, transparent, black 50%, black 50%, transparent 100%);
    mask-mode: match-source;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 50%, black 50%, transparent 100%);
    -webkit-mask-mode: match-source;
}
.container_solutions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
  background:linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(36, 66, 239, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}
.block_solutions {
  position: relative;
}
@media screen and (min-width: 756px) {
  .block_solutions {
    min-height: 800px;
  }
}
.block_solutions .circle-quotes {
  position: relative;
  width: 100vw;
  max-width: 1400px;
  height: 650px;
  margin: 0 auto;
  min-height: 400px;
  font-family: 'Inter', Arial, sans-serif;
}
.block_solutions .quote {
  position: absolute;
  width: 320px;
  max-width: 32vw;
  color: var(--text-main);
  font-size: 1.25rem;
  text-align: center;
  transition: filter 0.3s, opacity 0.3s;
  opacity: 1;
  pointer-events: auto;
  margin: 0;
}
.block_solutions .quote.blur {
  filter: blur(4px);
  opacity: 0.5;
}
.block_solutions .quote.blur:hover,
.block_solutions .quote.blur:focus {
  filter: none;
  opacity: 1;
  border-radius: 12px;
}
.block_solutions .quote.center {
  left: 50%;
  top: 50%;
  font-size: 2.5em;
  transform: translate(-50%, -50%);
  max-width: 400px;
  width: 100%;
}
.block_solutions .quote.top {
  left: 50%;
  top: 7%;
  transform: translate(-50%, 0);
}
.block_solutions .quote.top-right {
  left: 78%;
  top: 18%;
  transform: translate(-50%, 0);
}
.block_solutions .quote.right {
  left: 93%;
  top: 38%;
  transform: translate(-50%, 0);
}
.block_solutions .quote.bottom-right {
  left: 78%;
  top: 70%;
  transform: translate(-50%, 0);
}
.block_solutions .quote.bottom {
  left: 50%;
  top: 90%;
  transform: translate(-50%, 0);
}
.block_solutions .quote.bottom-left {
  left: 22%;
  top: 70%;
  transform: translate(-50%, 0);
}
.block_solutions .quote.left {
  left: 7%;
  top: 38%;
  transform: translate(-50%, 0);
}
.block_solutions .quote.top-left {
  left: 22%;
  top: 18%;
  transform: translate(-50%, 0);
}

/* Flèches */
.block_solutions .arrow {
  position: absolute;
  width: 90px;
  height: 90px;
  opacity: 0.8;
  pointer-events: none;
}
.block_solutions .arrow-top {
  left: 29%;
  top: 29%;
  transform: rotate(92deg);
}
.block_solutions .arrow-right {
  right: 21%;
  top: 28%;
  transform: rotate(208deg);
}
.block_solutions .arrow-bottom {
  right: 27%;
  bottom: 34%;
  transform: rotate(265deg);
}
.block_solutions .arrow-left {
  left: 37%;
  top: 59%;
  transform: rotate(-2deg);
}

@media (max-width: 756px) {
  .block_solutions .circle-quotes {
    min-height: 600px;
  }
  .block_solutions .quote {
    font-size: 0.98rem;
    width: 100%;
    left: 0;
    position: relative;
    margin: 18px auto;
    display: block;
  }
  .block_solutions .quote.center {
    font-size: 1.08rem;
    margin: 28px auto;
    max-width: 100%;
    top: auto;
    left: auto;
    transform: translate(0);
  }
  .block_solutions .quote.right,
  .block_solutions .quote.bottom-right,
  .block_solutions .quote.left,
  .block_solutions .quote.top-left,
  .block_solutions .arrow {
    display: none !important;
  }
}



/*ERP Section */
.erp-section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 50px;
  border-radius: 48px;
  min-height: 540px;
  position: relative;
  z-index: 0;
}
.erp-section::before {
  content: '';
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background: rgb(200, 208, 255, 0.3);
  opacity: 1;
  z-index: -1;
  border-radius: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.erp-section.reverse {
  flex-direction: row-reverse;
}
.erp-section .erp-content {
  flex: 1 1 0;
  padding: 48px 0 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 340px;
  max-width: 600px;
}
.erp-section .erp-title {
  display: block;
  font-size: 2.6rem;
  line-height: 1.1;
  margin-left: 100px;
  margin-top: 0;
  font-weight: 700;
  margin-bottom: 0;
  color: initial;
  text-transform: uppercase;
}
.erp-section .erp-title:hover {
  text-decoration: none;
}
.erp-section.reverse .erp-title {
  margin-left: 0;
}

.erp-section .erp-highlight {
  color: var(--primary);
}

.erp-section .erp-arrow {
  font-size: 1.5rem;
  color: var(--primary);
  vertical-align: middle;
}
.erp-section .erp-quote-card {
  display: flex;
  background: var(--white);
  border-radius: 18px;
  box-shadow:var(--shadow);
  padding: 10px;
  margin: 25px 0;
  gap: 10px;
  max-width: 500px;
}
.erp-section.reverse .erp-quote-card {
  margin-left: 100px;
}
.erp-section .erp-quote-avatar {
  width: 100px;
  height: 100px;
  min-width: 100px;
  min-height: 100px;
  border-radius: 14px;
  object-fit: cover;
  margin-right: 10px;
}
.erp-section .erp-quote-card p {
  margin: 0 0 8px 0;
}

.erp-section .erp-quote-author strong {
  font-weight: 700;
  color: var(--text-main);
}
.erp-section .erp-quote-author span {
  color: var(--lightgrey);
  font-size: 0.98rem;
  display: block;
}
.erp-section .erp-desc {
  margin-left: 100px;
  max-width: calc(100% - 180px);
}
.erp-section .erp-section.reverse .erp-desc {
  margin-left: 0;
}
.erp-section .erp-desc h2 {
  margin: 0 0 14px 0;
}
.erp-section .erp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.erp-section .erp-tags a {
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  padding: 6px 16px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  transition: background ease 0.2s;
}
.erp-section .erp-tags a:hover {
  background: var(--text-main);
  transition: background ease 0.2s;
}
.erp-section .erp-contact {
  margin-top: 8px;
}

.erp-section .erp-image-block {
  flex: 1 1 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 340px;
  max-width: 700px;
}
.erp-section .erp-image-wrapper,
.erp-section .erp-image-wrapper svg {
  width: 100%;
  height: 100%;
}
.erp-section .erp-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.erp-section .erp-bubble {
  position: absolute;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 10px;
  max-width: 370px;
  min-width: 220px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  z-index: 2;
}
.erp-section .erp-bubble-top {
  top: 0;
  right: 0;
}
.erp-section .erp-bubble-bottom {
  bottom: 0;
  left: 0;
}
.erp-section .erp-bubble-avatar {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  background: var(----bg-light-blue);
  margin-right: 10px;
  flex-shrink: 0;
  overflow: hidden;
}
.erp-section .erp-bubble-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.erp-section .erp-bubble p {
  margin: 0 0 8px 0;
  color: var(--text-main);
}
.erp-section .erp-bubble-author strong {
  font-weight: 700;
  color: var(--text-main);
}
.erp-section .erp-bubble-author span {
  color: var(--lightgrey);
  font-size: 0.98rem;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 1100px) {
  .erp-section,
  .erp-section.reverse {
    flex-direction: column;
    border-radius: 32px;
  }
  .erp-section .erp-content,
  .erp-image-block {
    max-width: 100%;
    min-width: 0;
    padding: 32px 18px;
  }
  .erp-section .erp-image-block {
    padding: 0 0 32px 0;
  }
  .erp-section .erp-section.reverse .erp-image-block {
    padding: 0 0 32px 0;
  }
  .erp-section .erp-image-wrapper {
    margin: 0 auto;
  }
  .erp-section .erp-bubble-top, 
  .erp-section .erp-bubble-bottom {
    position: static;
    margin: 18px auto;
    left: 0;
    right: 0;
  }
}

@media (max-width: 756px) {
  .container_solutions {gap: 50px;}
  .erp-section,
  .erp-section.reverse {
    border-radius: 18px;
    min-height: unset;
  }
  .erp-section .erp-content {padding: 0;}
  .erp-section .erp-title {font-size: 1.5rem;}
  .erp-section .erp-desc,
  .erp-section .erp-title,
  .block_solutions .quote {
    max-width: 100%;
  }
  .erp-section.reverse .erp-quote-card,
  .erp-section .erp-desc,
  .erp-section .erp-title {margin-left: 0;}
  .erp-section .erp-quote-card {
    margin: 18px 0 14px 0;
    max-width: 100%;
  }
  .erp-section .erp-desc h2 {
    font-size: 1.05rem;
  }
  .erp-section .erp-tags span {
    font-size: 0.92rem;
    padding: 5px 10px;
  }
  .erp-section .erp-image-wrapper {
    max-width: 100%;
    aspect-ratio: 1.2/1;
  }
  .erp-section .erp-bubble {
    padding: 12px 10px 10px 10px;
    max-width: 100%;
    min-width: 0;
    font-size: 0.98rem;
  }
  .erp-section,
  .erp-section.reverse,
  .erp-section .erp-quote-card,
  .erp-section .erp-bubble,
  .erp-section .erp-image-block {
    flex-direction: column;
    gap: 10px;
  }
  .erp-section .erp-image-block {width: 100%;}
  .erp-section .erp-image-wrapper svg {
    width: 100%;
    height: 100%;
  }
  .erp-section::before {content: none;}

  .block_solutions .quote.top,
  .block_solutions .quote.top-right,
  .block_solutions .quote.top-left,
  .block_solutions .quote.right,
  .block_solutions .quote.bottom,
  .block_solutions .quote.bottom-right,
  .block_solutions .quote.bottom-left,
  .block_solutions .quote.left {
      right: 0;
      top: 0;
      left: 0;
      bottom: 0;
      transform: translate(0);
    }
}