/* ENSEMBLE, CONSTRUISONS LE BÂTIMENT DE DEMAIN */
.cta-bottom-section {
  position: relative;
  z-index: 0;
  display: flex;
  min-height: 454.7px;
  padding: 65px 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: stretch;
  background: #1A4870;
  overflow: hidden;
}

.cta-bottom-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-bottom-shape--1 {
  width: 320px;
  height: 320px;
  right: -42px;
  top: -80px;
  background: rgba(212, 244, 162, .08);
}

.cta-bottom-shape--2 {
  width: 146px;
  height: 146px;
  left: 101px;
  top: -44.5px;
  background: rgba(199, 227, 255, .06);
}

.cta-bottom-shape--3 {
  width: 280px;
  height: 280px;
  left: -60px;
  bottom: -100px;
  background: rgba(199, 227, 255, .06);
}

.cta-bottom-section .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1402px;
  padding: 0 85px;
  margin: 0 auto;
  box-sizing: border-box;
}

.cta-bottom-heading {
  max-width: 812px;
  color: #FFF;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 46px;
  font-style: normal;
  font-weight: 700;
  line-height: 55.2px;
}

.cta-bottom-text {
  max-width: 640px;
  color: #FFF;
  text-align: center;
  font-family: var(--font-body);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.9px;
  margin-top: 16px;
}

.cta-bottom-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.cta-bottom-btn {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 15px;
  font-style: normal;
  line-height: 22.5px;
  box-sizing: border-box;
}

.cta-bottom-btn--primary {
  padding: 15px 28px;
  background: #E8E5AC;
  color: #0F1A13;
  font-weight: 700;
  transition: background-color .2s ease;
}

.cta-bottom-btn--primary:hover {
  background: #C7E3FF;
}

.cta-bottom-btn--secondary {
  padding: 14px 26px;
  border: 2px solid #74C6A7;
  background: #2A5C44;
  color: #D4E2A1;
  font-weight: 600;
  transition: background-color .2s ease, color .2s ease;
}

.cta-bottom-btn--secondary:hover {
  background: #D4E2A1;
  color: #2A5C44;
}

.valosera-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 24px 32px;
  margin-top: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  gap: 24px;
  width: 80%;
}

.valosera-card-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.valosera-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  flex-shrink: 0;
}

.valosera-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.valosera-title {
  color: #0F172A;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 26px;
  margin: 0;
}

.valosera-subtitle {
  color: #475569;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
}

.valosera-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #1C4870;
  /* Bleu foncé conforme à votre capture */
  color: #FFFFFF;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.valosera-btn-text {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.valosera-btn:hover {
  background-color: #153756;
  color: #FFFFFF;
}

/* Responsivité Mobile */
@media (max-width: 768px) {
  .valosera-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 16px;
    width: 100%;
  }

  .valosera-card-right {
    width: 100%;
  }

  .valosera-btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    font-size: 14px;
    padding: 10px 20px;
  }

  .valosera-title {
    font-size: 18px;
    line-height: 24px;
  }

  .valosera-subtitle {
    font-size: 13px;
    line-height: 18px;
  }
}

@media (max-width: 1200px) {
  .cta-bottom-section .container {
    padding: 0 48px;
  }
}

@media (max-width: 900px) {
  .cta-bottom-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 420px;
  }

  .cta-bottom-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .cta-bottom-section {
    padding: 48px 0;
    min-height: 0;
  }

  .cta-bottom-section .container {
    padding: 0 20px;
  }

  .cta-bottom-heading {
    font-size: 28px;
    line-height: 34px;
  }

  .cta-bottom-text {
    font-size: 15px;
    line-height: 24px;
  }

  .cta-bottom-buttons {
    flex-direction: column;
    align-self: stretch;
    width: 100%;
  }

  .cta-bottom-btn {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    font-size: 13px;
  }

  .cta-bottom-shape--1 {
    width: 220px;
    height: 220px;
  }

  .cta-bottom-shape--2 {
    width: 100px;
    height: 100px;
  }

  .cta-bottom-shape--3 {
    width: 190px;
    height: 190px;
  }
}

@media (max-width: 360px) {
  .cta-bottom-heading {
    font-size: 24px;
    line-height: 29px;
  }

  .cta-bottom-text {
    font-size: 13px;
    line-height: 20px;
  }

  .cta-bottom-btn {
    font-size: 11.5px;
    padding: 0 8px;
  }

  .cta-bottom-shape--1 {
    width: 170px;
    height: 170px;
  }

  .cta-bottom-shape--2 {
    width: 80px;
    height: 80px;
  }

  .cta-bottom-shape--3 {
    width: 150px;
    height: 150px;
  }
}