/* RESELL PRO — extensions spécifiques à cette offre */

.hero--resell .hero__stack {
  padding-bottom: 28px;
}

.hero-visual {
  margin: 28px auto 8px;
  width: min(720px, 100%);
  border-radius: 28px;
  border: 1px solid #d7e3ff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(232, 240, 255, 0.7)),
    radial-gradient(420px 220px at 20% 20%, rgba(10, 92, 255, 0.16), transparent 70%);
  box-shadow: 0 24px 60px rgba(10, 92, 255, 0.1);
  padding: 28px 22px 24px;
  text-align: center;
}

.hero-visual__label {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.product-marquee__track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.product-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid #d4e1ff;
  background: #fff;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(11, 18, 32, 0.04);
}

.brand-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.brand-logo--wide {
  width: 56px;
  height: 18px;
}

.product-pill__plus {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

.pain-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.pain-list__ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff1f1;
  color: var(--urgent);
}

.pain-list h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.pain-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  padding: 22px 20px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #b9ceff;
}

.product-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  min-height: 48px;
}

.product-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.product-card__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.product-card__logo--wide {
  width: auto;
  max-width: 120px;
  height: 36px;
}

.product-card__more {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
}

.product-card h3 {
  font-size: 20px;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.steps {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: step;
}

.steps li {
  position: relative;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px 18px 22px;
  counter-increment: step;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.steps__ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: var(--blue-soft);
  color: var(--blue);
}

.steps h3 {
  font-size: 18px;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 22px;
}

.brand-wordmark__mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
}

.brand-wordmark span {
  color: var(--blue);
}

.offer__box--text {
  margin-top: 28px;
  padding: 28px 24px;
  border-radius: 24px;
  border: 1px solid #d7e3ff;
  background: linear-gradient(160deg, #fff 0%, #eef4ff 100%);
}

.offer__logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.offer__logos img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.offer__logos-wide {
  width: 72px !important;
  height: 22px !important;
}

.offer__box--text strong {
  display: block;
  font-size: 28px;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.offer__box--text p {
  margin: 0;
  color: var(--muted);
}

.bonuses {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
  background:
    radial-gradient(560px 320px at 8% 12%, rgba(10, 92, 255, 0.1), transparent 72%),
    radial-gradient(480px 300px at 94% 88%, rgba(157, 255, 58, 0.11), transparent 70%),
    #f7f9ff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bonuses .eyebrow {
  color: var(--blue);
}

.bonuses .lede {
  color: var(--soft);
}

.bonuses__intro {
  max-width: 760px;
  margin: 0 auto;
}

.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.bonus-offer {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px 18px 24px;
  border: 1px solid #d8e2f7;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(36, 67, 128, 0.09);
}

.bonus-offer--funnel {
  border-color: #c9d9fb;
}

.bonus-offer--video {
  border-color: #d7e5c8;
}

.bonus-offer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 4px 4px 16px;
}

.bonus-offer__number {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid #d7e3ff;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bonus-offer__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--blue);
  color: #fff;
}

.bonus-offer--video .bonus-offer__icon {
  background: #9dff3a;
  color: #0b1220;
}

.bonus-offer__visual {
  position: relative;
  overflow: hidden;
  height: 245px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: #e9f0ff;
}

.bonus-offer__visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.bonus-offer__visual--browser {
  padding-top: 28px;
  border: 1px solid #c9d9fb;
  background: #fff;
}

.bonus-offer__visual--browser img {
  object-fit: cover;
  object-position: center;
}

.bonus-browser__bar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  height: 28px;
  padding: 0 10px;
  border-bottom: 1px solid #dde5f3;
  background: #fff;
}

.bonus-browser__bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9d1df;
}

.bonus-browser__bar span {
  margin-left: 7px;
  overflow: hidden;
  color: #8994a7;
  font-size: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.bonus-offer__visual--mockup {
  background: #07101f;
}

.bonus-offer__visual--mockup img {
  object-fit: cover;
  object-position: center;
}

.bonus-offer__kicker {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bonus-offer h3 {
  max-width: 20ch;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.12;
}

.bonus-offer p:not(.bonus-offer__kicker):not(.bonus-offer__included) {
  margin: 0;
  color: var(--muted);
}

.bonus-offer__link,
.bonus-offer__included {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin: auto 0 0;
  padding-top: 28px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.bonus-offer__link {
  transition: color 0.2s ease, gap 0.2s ease;
}

.bonus-offer__link:hover {
  gap: 14px;
  color: var(--blue);
}

.bonus-offer__link .ix {
  width: 18px;
  height: 18px;
}

.bonus-offer__included .dot-check {
  width: 20px;
  height: 20px;
}

.bonus-offer__included .dot-check::after {
  left: 6px;
  top: 4px;
  width: 5px;
  height: 9px;
}

@media (max-width: 900px) {
  .product-grid,
  .steps,
  .bonuses__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .product-grid,
  .steps,
  .bonuses__grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding: 22px 14px;
    border-radius: 22px;
  }

  .bonuses {
    padding: 72px 0;
  }

  .bonus-offer {
    padding: 16px 16px 22px;
  }

  .bonus-offer__visual {
    height: 220px;
  }
}
