.container_solutions {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.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%);
}
.container_solutions::after {
    content: "";
    display: block;
    position: absolute;
    background-image: url('/files/wave_lin_vertical.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 300px;
    top: 0px;
    left: 50%;
    opacity: 0.5;
    z-index: -2;
    height: 100%;
    mask-mode: match-source;
    mask-image: linear-gradient(transparent, black 50%, black 50%, transparent 100%);
    background-position: left center;
}
.circle-quotes {
  position: relative;
  width: 100vw;
  max-width: 1400px;
  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: calc(50% - 160px);
  top: calc(50% - 100px);
  font-size: 1.5em;
  width: 400px;
}

.block_solutions .quote.top {
  left: calc(50% - 160px);
  top: 0;
}

.block_solutions .quote.top-right {
  right: 160px;
  top: 50px;
}

.block_solutions .quote.right {
  right: 0;
  top: 38%;
}

.block_solutions .quote.bottom-right {
  right: 160px;
  top: 70%;
}

.block_solutions .quote.bottom {
  left: calc(50% - 160px);
  bottom: 0;
}

.block_solutions .quote.bottom-left {
  left: 160px;
  top: 70%;
}

.block_solutions .quote.left {
  left: 0;
  top: 38%;
}

.block_solutions .quote.top-left {
  left: 160px;
  top: 50px;
}

/* 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: 600px) {
  .block_solutions .circle-quotes {
    height: 900px;
    min-height: 600px;
  }
  .block_solutions .quote {
    font-size: 0.98rem;
    width: 70vw;
    max-width: 70vw;
    left: 50% !important;
    position: static;
    margin: 18px auto;
    display: block;
  }
  .block_solutions .quote.center {
    font-size: 1.08rem;
    margin: 28px auto;
    max-width: 400px;
  }
  /* Masquer les quotes non principales */
  .block_solutions .quote.right,
  .block_solutions .quote.bottom-left,
  .block_solutions .quote.left,
  .block_solutions .quote.top-left {
    display: none !important;
  }
  /* Masquer les flÃ¨ches en mobile */
  .block_solutions .arrow {
    display: none !important;
  }
}


/*ERP Section */
.erp-section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  border-radius: 48px;
  min-height: 540px;
  position: relative;
}
.erp-section::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  opacity: 1;
  z-index: -1;
  backdrop-filter: blur(10px);
  background: rgba(200, 208, 255, 0.3);
  border-radius: 40px;
}
.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-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: 420px;
}
.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 {
  max-width: 100%;
}
.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,
.erp-section .erp-tags p {
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  padding: 6px 16px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
  margin: 0;
  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;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 340px;
  max-width: 700px;
}
.erp-section .erp-image-wrapper {
  width: 100%;
  height: 100%;
}
.erp-section .erp-image-wrapper svg {
  width: calc(100% + 50px);
  height: calc(100% + 50px);
}
.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: #e5e8f0;
  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, .erp-section.reverse {
    flex-direction: column;
    border-radius: 32px;
    padding: 0;
  }
  .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: 700px) {
  .container_solutions {
    gap: 50px;
  }
  .erp-section,
  .erp-section.reverse {
    border-radius: 18px;
    min-height: unset;
  }
  .erp-section .erp-content {
    padding: 24px 8px;
  }
  .erp-section .erp-title {
    font-size: 1.5rem;
  }
  .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;
  }
}
@media screen and (min-width: 768px) {
  .erp-section .erp-desc {
    margin-left: 100px;
  }
  .erp-section.reverse .erp-desc {
    margin-left: 0;
    margin-right: 100px;
  }
  .erp-section {
    gap: 50px;
    flex-direction: row;
  }
  .erp-section .erp-image-block {
    flex-direction: row;
  }
  .erp-section .erp-title {
    margin-left: 100px;
  }
  .circle-quotes {
    min-height: 650px;
  }
}