/* ==================================================
   WDS - SOFT STEPS
================================================== */

.wds-soft-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wds-soft-step {
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: 16px;
  align-items: start;
}

.wds-soft-marker {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 100%;
}

.wds-soft-circle {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233, 199, 207, 0.55);
  color: #8F726B;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(143, 114, 107, 0.10);
}

.wds-soft-marker::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% + 12px);
  background: rgba(143, 114, 107, 0.18);
  z-index: 1;
}

.wds-soft-step:last-child .wds-soft-marker::after {
  display: none;
}

.wds-soft-content h3 {
  margin: -2px 0 8px;
  color: #2F3340;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.wds-soft-content p {
  margin: 0;
  color: #6D625C;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  max-width: 540px;
}

@media (max-width: 1024px) {
  .wds-soft-step {
    grid-template-columns: 22px 1fr;
    column-gap: 14px;
  }

  .wds-soft-content h3 {
    font-size: 20px;
  }

  .wds-soft-content p {
    font-size: 13.5px;
  }
}

@media (max-width: 767px) {
  .wds-soft-steps {
    gap: 20px;
  }

  .wds-soft-step {
    grid-template-columns: 20px 1fr;
    column-gap: 12px;
  }

  .wds-soft-circle {
    width: 14px;
    height: 14px;
    font-size: 9px;
  }

  .wds-soft-marker::after {
    top: 14px;
    height: calc(100% + 10px);
  }

  .wds-soft-content h3 {
    font-size: 19px;
    margin-bottom: 6px;
  }

  .wds-soft-content p {
    font-size: 13px;
    line-height: 1.65;
  }
}

/* ==================================================
   WDS - COMMENT CHOISIR LA FORMULE
================================================== */

.wds-formula-guide {
  position: relative;
  padding: 56px 24px;
  background: #E8D9C9;
  overflow: hidden;
}

.wds-formula-guide__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.wds-formula-guide::before,
.wds-formula-guide::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
}

.wds-formula-guide::before {
  top: 140px;
  left: -40px;
  width: 240px;
  height: 240px;
  background:
    radial-gradient(circle at 30% 30%, rgba(233, 199, 207, 0.22), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(251, 247, 242, 0.18), transparent 58%);
  filter: blur(8px);
}

.wds-formula-guide::after {
  right: -50px;
  bottom: 120px;
  width: 260px;
  height: 260px;
  background:
    radial-gradient(circle at 40% 40%, rgba(233, 199, 207, 0.18), transparent 62%),
    radial-gradient(circle at 70% 65%, rgba(251, 247, 242, 0.16), transparent 58%);
  filter: blur(12px);
}

.wds-formula-guide__header,
.wds-formula-guide__grid,
.wds-formula-guide__footer {
  position: relative;
  z-index: 1;
}

.wds-formula-guide__header {
  max-width: 920px;
  margin: 0 auto 56px;
  text-align: center;
}

.wds-formula-guide__header h2 {
  margin: 0 0 20px;
  color: #4A3F3B;
  font-family: "Playfair Display", serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.wds-formula-guide__header p {
  margin: 0 auto;
  max-width: 820px;
  color: #5E514C;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.75;
}

.wds-formula-guide__header::after {
  content: "";
  display: block;
  width: 180px;
  height: 1px;
  margin: 30px auto 0;
  background: linear-gradient(
    90deg,
    rgba(201, 170, 158, 0),
    rgba(201, 170, 158, 0.7),
    rgba(201, 170, 158, 0)
  );
}

.wds-formula-guide__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.wds-formula-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(74, 63, 59, 0.06);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(74, 63, 59, 0.05);
  padding: 32px 30px 28px;
  min-height: 100%;
}

.wds-formula-card h3 {
  margin: 0 0 18px;
  color: #5B403B;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.18;
  text-align: center;
  text-wrap: balance;
  position: relative;
  padding-bottom: 18px;
}

.wds-formula-card h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 84%;
  max-width: 320px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    rgba(201, 170, 158, 0),
    rgba(201, 170, 158, 0.65),
    rgba(201, 170, 158, 0)
  );
}

.wds-formula-card p {
  margin: 0;
  color: #5F534E;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  line-height: 1.8;
}

.wds-formula-guide__footer {
  max-width: 980px;
  margin: 56px auto 0;
  text-align: center;
}

.wds-formula-guide__footer p {
  margin: 0;
  color: #5B403B;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  line-height: 1.45;
}

.wds-formula-guide__footer::after {
  content: "";
  display: block;
  width: 220px;
  height: 1px;
  margin: 26px auto 0;
  background: linear-gradient(
    90deg,
    rgba(201, 170, 158, 0),
    rgba(201, 170, 158, 0.75),
    rgba(201, 170, 158, 0)
  );
}

@media (max-width: 1024px) {
  .wds-formula-guide {
    padding: 44px 28px;
  }

  .wds-formula-guide__header {
    margin-bottom: 48px;
  }

  .wds-formula-guide__header h2 {
    font-size: 30px;
  }

  .wds-formula-guide__header p {
    font-size: 18px;
  }

  .wds-formula-guide__grid {
    gap: 32px;
  }

  .wds-formula-card {
    padding: 28px 24px 24px;
    border-radius: 22px;
  }

  .wds-formula-card h3 {
    font-size: 25px;
  }

  .wds-formula-card p {
    font-size: 15px;
    line-height: 1.75;
  }

  .wds-formula-guide__footer {
    margin-top: 44px;
  }

  .wds-formula-guide__footer p {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .wds-formula-guide {
    padding: 44px 6px;
  }

  .wds-formula-guide::before {
    top: 100px;
    left: -60px;
    width: 180px;
    height: 180px;
    opacity: 0.18;
  }

  .wds-formula-guide::after {
    right: -70px;
    bottom: 90px;
    width: 200px;
    height: 200px;
    opacity: 0.14;
  }

  .wds-formula-guide__header {
    margin-bottom: 34px;
  }

  .wds-formula-guide__header h2 {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .wds-formula-guide__header p {
    font-size: 17px;
    line-height: 1.7;
  }

  .wds-formula-guide__header::after {
    width: 120px;
    margin-top: 22px;
  }

  .wds-formula-guide__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wds-formula-card {
    padding: 24px 20px 22px;
    border-radius: 20px;
  }

  .wds-formula-card h3 {
    font-size: 23px;
    margin-bottom: 16px;
    padding-bottom: 14px;
  }

  .wds-formula-card p {
    font-size: 14.5px;
    line-height: 1.72;
  }

  .wds-formula-guide__footer {
    margin-top: 34px;
  }

  .wds-formula-guide__footer p {
    font-size: 24px;
    line-height: 1.4;
  }

  .wds-formula-guide__footer::after {
    width: 150px;
    margin-top: 22px;
  }
}

/* ==================================================
   WDS - SÉANCE DÉCOUVERTE
================================================== */

.wds-discovery-session {
  background: #FFFFFF;
  padding: 96px 24px;
}

.wds-discovery-session__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.wds-discovery-session__content h2 {
  margin: 0 0 24px;
  color: #4A3F3B;
  font-family: "Playfair Display", serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.wds-discovery-session__content p {
  margin: 0 0 20px;
  color: #5E514C;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.75;
}

.wds-discovery-session__list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.wds-discovery-session__list li {
  position: relative;
  padding-left: 26px;
  color: #5E514C;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

.wds-discovery-session__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(233, 199, 207, 0.75);
  transform: translateY(-50%);
}

.wds-discovery-session__aside {
  position: relative;
}

.wds-discovery-card {
  background: rgba(251, 247, 242, 0.92);
  border: 1px solid rgba(74, 63, 59, 0.06);
  border-radius: 26px;
  box-shadow: 0 10px 28px rgba(74, 63, 59, 0.05);
  padding: 34px 30px;
}

.wds-discovery-card h3 {
  margin: 0 0 22px;
  color: #5B403B;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  padding-bottom: 18px;
  position: relative;
}

.wds-discovery-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(201, 170, 158, 0.8),
    rgba(201, 170, 158, 0.15)
  );
}

.wds-discovery-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.wds-discovery-card__list li {
  position: relative;
  padding-left: 22px;
  color: #5F534E;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  line-height: 1.72;
}

.wds-discovery-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #C89D66;
  font-weight: 600;
}

.wds-discovery-card__info {
  margin-top: 28px;
  padding: 20px 22px;
  border-radius: 18px;
  background: #FFFFFF;
  border: 1px solid rgba(74, 63, 59, 0.06);
}

.wds-discovery-card__info p {
  margin: 0 0 10px;
  color: #5E514C;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

.wds-discovery-card__info p:last-child {
  margin-bottom: 0;
}

.wds-discovery-card__info strong {
  color: #4A3F3B;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .wds-discovery-session {
    padding: 44px 38px;
  }

  .wds-discovery-session__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .wds-discovery-session__content h2 {
    font-size: 30px;
  }

  .wds-discovery-session__content p,
  .wds-discovery-session__list li {
    font-size: 18px;
  }

  .wds-discovery-card {
    padding: 30px 26px;
    border-radius: 22px;
  }

  .wds-discovery-card h3 {
    font-size: 28px;
  }

  .wds-discovery-card__list li,
  .wds-discovery-card__info p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .wds-discovery-session {
    padding: 34px 28px;
  }

  .wds-discovery-session__inner {
    gap: 24px;
  }

  .wds-discovery-session__content h2 {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .wds-discovery-session__content p,
  .wds-discovery-session__list li {
    font-size: 18px;
    line-height: 1.7;
  }

  .wds-discovery-session__list {
    margin-top: 22px;
    gap: 12px;
  }

  .wds-discovery-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .wds-discovery-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    padding-bottom: 14px;
  }

  .wds-discovery-card h3::after {
    width: 90px;
  }

  .wds-discovery-card__list {
    gap: 12px;
  }

  .wds-discovery-card__list li,
  .wds-discovery-card__info p {
    font-size: 15.5px;
    line-height: 1.68;
  }

  .wds-discovery-card__info {
    margin-top: 22px;
    padding: 16px 18px;
    border-radius: 16px;
  }
}

/* ==================================================
   WDS - VALEUR DES COURS
================================================== */

.wds-course-value {
  background: #FBF7F2;
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}

.wds-course-value__inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.wds-course-value::before,
.wds-course-value::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}

.wds-course-value::before {
  top: 90px;
  left: -40px;
  width: 220px;
  height: 220px;
  background:
    radial-gradient(circle at 30% 30%, rgba(233, 199, 207, 0.18), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(232, 217, 201, 0.12), transparent 58%);
  filter: blur(8px);
}

.wds-course-value::after {
  right: -60px;
  bottom: 50px;
  width: 240px;
  height: 240px;
  background:
    radial-gradient(circle at 40% 40%, rgba(233, 199, 207, 0.14), transparent 62%),
    radial-gradient(circle at 70% 65%, rgba(232, 217, 201, 0.12), transparent 58%);
  filter: blur(12px);
}

.wds-course-value__header {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.wds-course-value__header h2 {
  margin: 0 0 18px;
  color: #4A3F3B;
  font-family: "Playfair Display", serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.wds-course-value__header p {
  margin: 0 auto;
  max-width: 760px;
  color: #5E514C;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.75;
}

.wds-course-value__header::after {
  content: "";
  display: block;
  width: 150px;
  height: 1px;
  margin: 24px auto 0;
  background: linear-gradient(
    90deg,
    rgba(201, 170, 158, 0),
    rgba(201, 170, 158, 0.75),
    rgba(201, 170, 158, 0)
  );
}

.wds-course-value__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.wds-course-value__item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(74, 63, 59, 0.05);
  border-radius: 22px;
  padding: 26px 22px 22px;
  box-shadow: 0 10px 24px rgba(74, 63, 59, 0.04);
  min-height: 100%;
  text-align: center;
}

.wds-course-value__item h3 {
  margin: 0 0 14px;
  color: #5B403B;
  font-family: "Playfair Display", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}

.wds-course-value__item p {
  margin: 0;
  color: #5F534E;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.72;
}

.wds-course-value__note {
  margin-top: 26px;
  text-align: center;
}

.wds-course-value__note-label {
  display: block;
  margin-bottom: 6px;
  color: #8A6D66;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wds-course-value__note p {
  margin: 0;
  color: #4A3F3B;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .wds-course-value {
    padding: 60px 28px;
  }

  .wds-course-value__header h2 {
    font-size: 30px;
  }

  .wds-course-value__header p {
    font-size: 18px;
  }

  .wds-course-value__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .wds-course-value__item {
    padding: 24px 20px 20px;
  }

  .wds-course-value__item h3 {
    font-size: 22px;
  }

  .wds-course-value__item p {
    font-size: 15.5px;
  }

  .wds-course-value__note {
    margin-top: 22px;
  }
}

@media (max-width: 767px) {
  .wds-course-value {
    padding: 52px 18px;
  }

  .wds-course-value::before {
    top: 70px;
    left: -60px;
    width: 170px;
    height: 170px;
    opacity: 0.14;
  }

  .wds-course-value::after {
    right: -70px;
    bottom: 30px;
    width: 180px;
    height: 180px;
    opacity: 0.1;
  }

  .wds-course-value__header {
    margin-bottom: 30px;
  }

  .wds-course-value__header h2 {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .wds-course-value__header p {
    font-size: 18px;
    line-height: 1.7;
  }

  .wds-course-value__header::after {
    width: 110px;
    margin-top: 20px;
  }

  .wds-course-value__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .wds-course-value__item {
    padding: 22px 18px 20px;
    border-radius: 18px;
  }

  .wds-course-value__item h3 {
    font-size: 21px;
    margin-bottom: 12px;
  }

  .wds-course-value__item p {
    font-size: 15px;
    line-height: 1.68;
  }

  .wds-course-value__note {
    margin-top: 20px;
  }

  .wds-course-value__note p {
    font-size: 15px;
  }
}

/* ==================================================
   WDS - FAQ PREMIUM
================================================== */

.wds-faq-section {
  background: #E8D9C9;
  padding: 44px 24px 44px;
}

.wds-faq-section__inner {
  max-width: 980px;
  margin: 0 auto;
}

.wds-faq-section__header {
  text-align: center;
  margin-bottom: 26px;
}

.wds-faq-section__header h2 {
  margin: 0 0 14px;
  color: #4A3F3B;
  font-family: "Playfair Display", serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.wds-faq-section__header p {
  margin: 0 auto;
  max-width: 760px;
  color: #5E514C;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.75;
}

.wds-faq-section__header::after {
  content: "";
  display: block;
  width: 140px;
  height: 1px;
  margin: 22px auto 0;
  background: linear-gradient(
    90deg,
    rgba(201, 170, 158, 0),
    rgba(201, 170, 158, 0.75),
    rgba(201, 170, 158, 0)
  );
}

.wds-faq-list {
  display: grid;
  gap: 14px;
}

.wds-faq-item {
  background: #FBF7F2;
  border: 1px solid rgba(74, 63, 59, 0.06);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.wds-faq-item[open] {
  background: #FFFFFF;
  box-shadow: 0 10px 24px rgba(74, 63, 59, 0.05);
  border-color: rgba(74, 63, 59, 0.10);
}

.wds-faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 20px 56px 20px 22px;
}

.wds-faq-item summary::-webkit-details-marker {
  display: none;
}

.wds-faq-item summary span {
  display: block;
  color: #4A3F3B;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.28;
  padding-right: 8px;
}

.wds-faq-item summary::before,
.wds-faq-item summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 14px;
  height: 1.5px;
  background: #8A6D66;
  transform: translateY(-50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.wds-faq-item summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.wds-faq-item[open] summary::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleX(0.4);
}

.wds-faq-answer {
  padding: 0 22px 22px;
}

.wds-faq-answer p {
  margin: 0;
  color: #5E514C;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .wds-faq-section {
    padding: 35px 28px 35px;
  }

  .wds-faq-section__header h2 {
    font-size: 30px;
  }

  .wds-faq-section__header p,
  .wds-faq-answer p {
    font-size: 18px;
  }

  .wds-faq-item summary {
    padding: 18px 52px 18px 20px;
  }

  .wds-faq-item summary span {
    font-size: 22px;
  }

  .wds-faq-answer {
    padding: 0 20px 20px;
  }
}

@media (max-width: 767px) {
  .wds-faq-section {
    padding: 30px 18px 30px;
  }

  .wds-faq-section__header {
    margin-bottom: 22px;
  }

  .wds-faq-section__header h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .wds-faq-section__header p {
    font-size: 18px;
    line-height: 1.7;
  }

  .wds-faq-section__header::after {
    width: 110px;
    margin-top: 18px;
  }

  .wds-faq-list {
    gap: 12px;
  }

  .wds-faq-item {
    border-radius: 16px;
  }

  .wds-faq-item summary {
    padding: 16px 46px 16px 18px;
  }

  .wds-faq-item summary span {
    font-size: 20px;
    line-height: 1.3;
  }

  .wds-faq-item summary::before,
  .wds-faq-item summary::after {
    right: 18px;
    width: 12px;
  }

  .wds-faq-answer {
    padding: 0 18px 18px;
  }

  .wds-faq-answer p {
    font-size: 18px;
    line-height: 1.68;
  }
}

/* ==================================================
   WDS - CTA FINAL
================================================== */

.wds-final-cta {
  background: #FFFFFF;
  padding: 44px 24px;
  position: relative;
  overflow: hidden;
}

.wds-final-cta__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.wds-final-cta__content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.wds-final-cta__content h2 {
  margin: 20px 16px;
  color: #4A3F3B;
  font-family: "Playfair Display", serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.wds-final-cta__content p {
  margin: 0 auto;
  max-width: 720px;
  color: #5E514C;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.75;
}

.wds-final-cta__buttons {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.wds-final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 66px;
  min-width: 270px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  background: #5A4D47;
  color: #FFFFFF;
  border: none;
  transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 18px rgba(74, 63, 59, 0.08);
}

.wds-final-cta__button:hover {
  transform: translateY(-1px);
  opacity: 0.96;
  color: #FFFFFF;
}

.wds-final-cta__button:visited,
.wds-final-cta__button:focus,
.wds-final-cta__button:active {
  color: #FFFFFF;
  text-decoration: none;
}

.wds-final-cta__button--primary,
.wds-final-cta__button--secondary {
  background: #5A4D47;
}

.wds-final-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 1024px) {
  .wds-final-cta {
    padding: 35px 28px;
  }

  .wds-final-cta__content h2 {
    font-size: 30px;
  }

  .wds-final-cta__content p {
    font-size: 18px;
  }

  .wds-final-cta__buttons {
    gap: 18px;
    margin-top: 24px;
  }

  .wds-final-cta__button {
    min-width: 240px;
    min-height: 62px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .wds-final-cta {
    padding: 30px 18px;
  }

  .wds-final-cta__content h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .wds-final-cta__content p {
    font-size: 18px;
    line-height: 1.7;
  }

  .wds-final-cta__buttons {
    margin-top: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .wds-final-cta__button {
    width: 100%;
    min-width: 0;
    min-height: 60px;
    font-size: 16px;
    justify-content: center;
  }
}