.grandTableauHumanUpsell .upsellInner {
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.grandTableauHumanUpsell .upsellMain {
  max-width: 860px;
}

.grandTableauHumanUpsell__intro {
  display: grid;
  gap: 8px;
}

.grandTableauHumanUpsell__reader {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 560px);
  margin: 2px 0 6px;
}

.grandTableauHumanUpsell__readerPhoto {
  width: clamp(64px, 7vw, 72px);
  height: clamp(64px, 7vw, 72px);
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.94);
  box-shadow:
    0 0 0 1px rgba(184, 154, 84, 0.34),
    0 10px 22px rgba(24, 24, 36, 0.14);
}

.grandTableauHumanUpsell__readerCopy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.grandTableauHumanUpsell__readerName {
  color: var(--plInk);
  font-size: 16px;
  line-height: 1.2;
}

.grandTableauHumanUpsell__readerCredibility {
  color: rgba(127, 91, 42, 0.96);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.grandTableauHumanUpsell__offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.grandTableauHumanUpsell__offer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(184, 154, 84, 0.28);
  border-radius: 16px;
  background:
    radial-gradient(220px 120px at 14% 0%, rgba(215, 191, 128, 0.18), transparent 60%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(24, 24, 36, 0.08);
}

.grandTableauHumanUpsell__offer--primary {
  border-color: rgba(184, 154, 84, 0.46);
  background:
    radial-gradient(260px 140px at 12% 0%, rgba(215, 191, 128, 0.28), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 245, 235, 0.9));
}

.grandTableauHumanUpsell__offerHeader {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.grandTableauHumanUpsell__offerTitleGroup {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.grandTableauHumanUpsell__badge {
  width: fit-content;
  padding: 4px 9px;
  border: 1px solid rgba(184, 154, 84, 0.32);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.86);
  color: rgba(127, 91, 42, 0.98);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.1;
  box-shadow: 0 4px 12px rgba(184, 154, 84, 0.12);
}

.grandTableauHumanUpsell__offerTitle {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
  color: var(--plInk);
}

.grandTableauHumanUpsell__price {
  flex: 0 0 auto;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(24, 24, 36, 0.92);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}

.grandTableauHumanUpsell__text {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--plInkSoft);
  font-size: 14px;
  line-height: 1.65;
}

.grandTableauHumanUpsell__text p {
  margin: 0;
}

.grandTableauHumanUpsell__actions {
  margin-top: auto;
}

.grandTableauHumanUpsell .upsellCta[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.grandTableauHumanModal[hidden] {
  display: none;
}

.grandTableauHumanModal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
}

.grandTableauHumanModal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 20, 0.56);
  backdrop-filter: blur(4px);
}

.grandTableauHumanModal__dialog {
  position: relative;
  width: min(100%, 480px);
  border-radius: 20px;
  border: 1px solid rgba(184, 154, 84, 0.35);
  background: #fffaf2;
  color: var(--plInk, #181824);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  padding: 22px;
}

.grandTableauHumanModal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(24, 24, 36, 0.08);
  color: var(--plInk, #181824);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.grandTableauHumanModal__title {
  margin: 0 34px 10px 0;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.grandTableauHumanModal__text,
.grandTableauHumanModal__note {
  margin: 0;
  color: var(--plInkSoft, rgba(24, 24, 36, 0.84));
  font-size: 14px;
  line-height: 1.65;
}

.grandTableauHumanModal__form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.grandTableauHumanModal__label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--plInk, #181824);
}

.grandTableauHumanModal__input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(24, 24, 36, 0.18);
  border-radius: 12px;
  background: #fff;
  padding: 12px 13px;
  color: var(--plInk, #181824);
  font: inherit;
}

.grandTableauHumanModal__input:focus {
  outline: 2px solid var(--plFocusHard, rgba(184, 154, 84, 0.65));
  outline-offset: 2px;
}

.grandTableauHumanModal__submit {
  justify-content: center;
  width: 100%;
}

.grandTableauHumanModal__submit[disabled] {
  cursor: wait;
  opacity: 0.74;
}


.grandTableauHumanModal__loading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid rgba(184, 154, 84, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--plInk, #181824);
}

.grandTableauHumanModal__loading[hidden] {
  display: none;
}

.grandTableauHumanModal__spinner {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 2px solid rgba(184, 154, 84, 0.28);
  border-top-color: rgba(184, 154, 84, 0.95);
  border-radius: 50%;
  animation: grandTableauHumanSpin 0.8s linear infinite;
}

.grandTableauHumanModal__loadingCopy {
  display: grid;
  gap: 3px;
  font-size: 13px;
  line-height: 1.45;
}

.grandTableauHumanModal__loadingCopy strong {
  font-size: 14px;
}

.grandTableauHumanModal__loadingCopy small {
  color: var(--plMuted, rgba(24, 24, 36, 0.66));
  font-size: 12px;
}

@keyframes grandTableauHumanSpin {
  to {
    transform: rotate(360deg);
  }
}

.grandTableauHumanModal__error {
  margin: 0;
  color: #9f1d1d;
  font-size: 13px;
  line-height: 1.5;
}

.grandTableauHumanModal__note {
  font-size: 12px;
  color: var(--plMuted, rgba(24, 24, 36, 0.66));
}

@media (max-width: 760px) {
  .grandTableauHumanUpsell__reader {
    align-items: flex-start;
    gap: 10px;
  }

  .grandTableauHumanUpsell__readerPhoto {
    width: clamp(60px, 17vw, 68px);
    height: clamp(60px, 17vw, 68px);
  }

  .grandTableauHumanUpsell__offers {
    grid-template-columns: minmax(0, 1fr);
  }

  .grandTableauHumanUpsell__offer {
    padding: 14px;
  }
}

@media (max-width: 380px) {
  .grandTableauHumanUpsell__reader {
    flex-direction: column;
    text-align: center;
  }
}

.grandTableauHumanUpsell__booking[hidden] {
  display: none;
}

.grandTableauHumanUpsell__booking {
  margin-top: 4px;
  max-width: 100%;
}

.grandTableauHumanUpsell__booking .booking-inline {
  --booking-inline-bg: linear-gradient(180deg, rgba(255, 251, 241, 0.96), rgba(242, 232, 210, 0.9));
  --booking-inline-text: var(--plInk, #181824);
  --booking-inline-border: rgba(184, 154, 84, 0.34);
  --booking-inline-accent: #b89a54;
  --booking-inline-radius: 16px;
  --booking-inline-shadow: 0 14px 34px rgba(10, 14, 34, 0.14);
  margin-top: 2px;
  max-width: 100%;
}

.grandTableauHumanUpsell__booking .booking-chip,
.grandTableauHumanUpsell__booking .booking-inline input,
.grandTableauHumanUpsell__booking .booking-inline textarea {
  background: rgba(255, 255, 255, 0.62);
}

.grandTableauHumanUpsell__booking .booking-inline__cta {
  background: linear-gradient(135deg, rgba(184, 154, 84, 0.92), rgba(127, 91, 42, 0.92));
  border-color: rgba(127, 91, 42, 0.76);
  color: #fffaf2;
  cursor: pointer;
  font-weight: 800;
}
