/* ═══ TARIFS SHOWCASE — Offre Site Internet ═══ */

.tarifs-showcase {
  width: 100%;
  max-width: min(88%, calc(100% - 32px));
  margin: 0 auto;
  background: var(--background-color--background-secondary);
  border-radius: var(--border-radius--large);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* ── Left panel ── */

.tarifs-showcase__left {
  flex: 1;
  padding: 0rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tarifs-showcase__num-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.8rem;
}

.tarifs-showcase__num-label {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--base-color-neutral--neutral-darkest);
}


.tarifs-showcase__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.2rem;
  color: var(--base-color-neutral--black);
  letter-spacing: -0.02em;
}

.tarifs-showcase__title em {
  font-style: normal;
}

.tarifs-showcase__desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--base-color-neutral--black);
  line-height: 1.4;
  margin: 0 0 2rem;
  max-width: 420px;
}

.tarifs-showcase__desc strong {
  font-weight: 400;
}

/* Checklist */

.tarifs-showcase__checks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 2.5rem;
}

.tarifs-showcase__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--base-color-neutral--black);
  line-height: 1.45;
}

.tarifs-showcase__check-icon {
  width: 18px;
  height: 18px;
  border-radius: var(--border-radius--small);
  background: var(--base-color-neutral--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.tarifs-showcase__check-icon svg {
  width: 10px;
  height: 8px;
}

.tarifs-showcase__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--base-color-neutral--black);
  color: var(--base-color-neutral--white);
  border: 1.5px solid var(--base-color-neutral--black);
  border-radius: var(--border-radius--round);
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  width: fit-content;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.tarifs-showcase__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* ── Right panel — Chat ── */

.tarifs-showcase__right {
  display: none;
  position: relative;
  overflow: hidden;
  margin: 1.5rem;
  border-radius: var(--border-radius--large);
  flex: 1;
  align-self: stretch;
}

/* ── Audit rocket ── */
.tarifs-showcase__audit-wrap {
  position: relative;
  z-index: 1;
  padding: 2rem 1.8rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(158,122,62,0.05) 0%, transparent 70%),
    linear-gradient(to bottom, var(--base-color-brand--beige-100) 0%, var(--base-color-brand--beige-100) 50%, var(--base-color-brand--beige-200) 100%);
  border-radius: var(--border-radius--large);
}

.audit-rocket {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 260px;
  position: relative;
}

.audit-rocket__ship {
  position: relative;
  z-index: 2;
  animation: rocket-float 3s ease-in-out infinite;
}

.audit-rocket__ship svg {
  width: 56px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.audit-rocket__trail {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 80px;
  background: linear-gradient(to top, transparent, rgba(184, 150, 90, 0.3), transparent);
  z-index: 1;
}

.audit-rocket__smoke {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: -8px;
  position: relative;
  z-index: 1;
}

.audit-rocket__puff {
  border-radius: 50%;
  background: rgba(184, 150, 90, 0.15);
  animation: rocket-puff 2s ease-in-out infinite;
}

.audit-rocket__puff--1 {
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.audit-rocket__puff--2 {
  width: 32px;
  height: 32px;
  animation-delay: 0.3s;
}

.audit-rocket__puff--3 {
  width: 20px;
  height: 20px;
  animation-delay: 0.6s;
}

.audit-rocket__stats {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--border-radius--regular);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.audit-rocket__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.audit-rocket__stat-bar {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: var(--base-color-brand--beige-600);
  opacity: 0.55;
}

.audit-rocket__stat-bar--short {
  height: 6px;
  background: var(--base-color-neutral--neutral-light);
  opacity: 0.7;
}

.audit-rocket__stat-bar[data-w="70"] { width: 70%; }
.audit-rocket__stat-bar[data-w="65"] { width: 65%; }
.audit-rocket__stat-bar[data-w="60"] { width: 60%; }
.audit-rocket__stat-bar[data-w="55"] { width: 55%; }
.audit-rocket__stat-bar[data-w="45"] { width: 45%; }
.audit-rocket__stat-bar[data-w="40"] { width: 40%; }

@keyframes rocket-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes rocket-puff {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

@media (prefers-reduced-motion: reduce) {
  .audit-rocket__ship { animation: none; }
  .audit-rocket__puff { animation: none; opacity: 0.6; }
}

.tarifs-showcase__chat-wrap {
  position: relative;
  z-index: 1;
  padding: 2rem 1.8rem;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  --accent: var(--base-color-brand--beige-800);
  background:
    /* montagnes brumeuses au milieu */
    radial-gradient(ellipse 120% 30% at 25% 55%, rgba(139,134,120,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 80% 25% at 65% 50%, rgba(154,148,136,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 60% 20% at 45% 58%, rgba(125,122,112,0.03) 0%, transparent 55%),
    /* brume */
    radial-gradient(ellipse 150% 25% at 50% 62%, rgba(216,208,196,0.06) 0%, transparent 80%),
    /* dunes sable en bas */
    radial-gradient(ellipse 100% 40% at 30% 85%, rgba(196,168,130,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 80% 35% at 70% 90%, rgba(184,160,128,0.05) 0%, transparent 65%),
    radial-gradient(ellipse 120% 45% at 50% 95%, rgba(212,192,160,0.07) 0%, transparent 75%),
    /* touche gold foncé en transparence */
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(158,122,62,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 30% 70%, rgba(133,101,48,0.04) 0%, transparent 60%),
    /* fond clair — plus doux */
    linear-gradient(to bottom, var(--base-color-brand--beige-100) 0%, var(--base-color-brand--beige-100) 50%, var(--base-color-brand--beige-200) 100%);
  border-radius: var(--border-radius--large);
}

/* ── Chat UI ── */

.offre-chat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  flex: 1;
  height: 100%;
}

.offre-chat__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 8px;
  position: relative;
}

.offre-chat__header {
  padding: 9px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -12px -14px 0;
}

.offre-chat__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(175, 154, 107, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offre-chat__avatar--sm {
  width: 18px;
  height: 18px;
}

.offre-chat__avatar svg {
  display: block;
}

.offre-chat__header-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--base-color-brand--teal-800);
}

.offre-chat__header-dots {
  margin-left: auto;
  display: flex;
  gap: 4px;
}

.offre-chat__header-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.offre-chat__header-dot--1 { background: rgba(0, 0, 0, 0.25); }
.offre-chat__header-dot--2 { background: rgba(0, 0, 0, 0.15); }
.offre-chat__header-dot--3 { background: rgba(0, 0, 0, 0.08); }


/* Search bar */

.offre-chat__search {
  background: rgba(175, 154, 107, 0.13);
  border-radius: var(--border-radius--small);
  padding: 8px 11px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: 10px;
}

.offre-chat__search svg {
  margin-top: 1px;
  flex-shrink: 0;
}

.offre-chat__search-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--base-color-brand--teal-800);
  margin: 0;
  line-height: 1.5;
}

.offre-chat__cursor {
  animation: offre-chat-blink 0.8s infinite;
}

@keyframes offre-chat-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Thinking dots */

.offre-chat__thinking[hidden] { display: none; }

.offre-chat__thinking {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.offre-chat__thinking-dots {
  display: flex;
  gap: 3px;
}

.offre-chat__thinking-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--base-color-brand--beige-700);
  animation: offre-chat-bounce 1s infinite;
}

.offre-chat__thinking-dot:nth-child(2) { animation-delay: 0.22s; }
.offre-chat__thinking-dot:nth-child(3) { animation-delay: 0.44s; }

@keyframes offre-chat-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* IA response */

.offre-chat__ia[hidden] { display: none; }

.offre-chat__ia {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 2px;
}

.offre-chat__ia-row {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.offre-chat__ia-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.offre-chat__ia-main {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--base-color-brand--teal-800);
  line-height: 1.5;
}

/* Hidden overrides */
.offre-chat__cards-wrap[hidden] { display: none; }
.offre-chat__modules-wrap[hidden] { display: none; }

/* Modules complémentaires — cards empilées */
.offre-chat__modules-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
}

.offre-chat__modules-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--base-color-brand--beige-500);
  text-align: center;
  margin: 0;
  padding: 16px 0 0;
}

.offre-chat__modules {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 12px 8px 0;
}

.offre-chat__module {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--border-radius--regular);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 12px 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.offre-chat__module--visible {
  opacity: 1;
  transform: translateY(0);
}

.offre-chat__module-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 9px;
  background: rgba(184, 150, 90, 0.13);
  border-radius: var(--border-radius--regular);
}

.offre-chat__module-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.offre-chat__module-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--base-color-neutral--neutral-darkest);
}

.offre-chat__module-desc {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--base-color-neutral--neutral-darker);
  line-height: 1.3;
}


/* BET cards — white floating cards */

.offre-chat__cards-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
}

.offre-chat__cards-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--base-color-brand--beige-800);
  text-align: center;
  margin: auto 0 0;
}

.offre-chat__cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 40px 8px 0;
}

.offre-chat__cards .offre-chat__card:nth-child(1) {
  margin-left: 0;
}

.offre-chat__cards .offre-chat__card:nth-child(2) {
  margin-left: 25%;
}

.offre-chat__cards .offre-chat__card:nth-child(3) {
  margin-left: 50%;
}

.offre-chat__card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--border-radius--regular);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 12px 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.offre-chat__card--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Content cards (header+search, thinking+ia) */
.offre-chat__body > .offre-chat__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: opacity 0.4s ease, transform 0.4s ease;
  max-width: 280px;
  max-height: 420px;
  overflow: hidden;
  margin: 0 auto;
}

.offre-chat__body > .offre-chat__card--hidden {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  position: absolute;
}

/* BET result cards — skeleton décalés */
.offre-chat__cards .offre-chat__card {
  border-radius: var(--border-radius--regular);
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 60%;
  max-width: 180px;
  padding: 14px;
  overflow: hidden;
}

.offre-chat__card-skel {
  display: flex;
  align-items: center;
  gap: 10px;
}

.offre-chat__card-rank {
  width: 28px;
  height: 28px;
  border-radius: var(--border-radius--small);
  background: var(--base-color-brand--beige-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--base-color-brand--teal-800);
  flex-shrink: 0;
}

.offre-chat__card-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.offre-chat__card-lines--body {
  gap: 5px;
}

.offre-chat__card-line {
  display: block;
  height: 6px;
  border-radius: var(--border-radius--small);
  background: var(--base-color-neutral--neutral-light);
}

.offre-chat__card-line--full { width: 100%; }
.offre-chat__card-line--lg { width: 80%; }
.offre-chat__card-line--md { width: 60%; }
.offre-chat__card-line--sm { width: 40%; }

.offre-chat__card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  align-self: flex-end;
}

.offre-chat__card-rating svg {
  width: 12px;
  height: 12px;
}

.offre-chat__card-score {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--base-color-brand--beige-700);
}

/* ── Mobile reorder: app-wrap before desc ── */

@media (max-width: 767px) {
  .tarifs-showcase {
    padding: 2rem 1.5rem;
    min-height: auto;
  }

  .tarifs-showcase__left,
  .tarifs-showcase__right {
    display: contents;
  }

  .tarifs-showcase__num-row { order: 1; margin-top: 0.5rem; }
  .tarifs-showcase__num-label { font-size: 1.2rem; }
  .tarifs-showcase__title { order: 2; font-size: 1.3rem; text-align: left; }
  .tarifs-showcase__desc { order: 3; }
  .tarifs-showcase__checks { order: 4; }
  .tarifs-showcase__audit-wrap { order: 0; margin: 0 -0.5rem 1rem; border-radius: var(--border-radius--large); }
  .tarifs-showcase__app-wrap { order: 0; margin: 0 -0.5rem 1rem; border-radius: var(--border-radius--large); }
  .tarifs-showcase__chat-wrap { order: 0; margin: 0 -0.5rem 1rem; border-radius: var(--border-radius--large); }
  .tarifs-showcase__dash-wrap { order: 0; margin: 0 -0.5rem 1rem; border-radius: var(--border-radius--large); }
  .tarifs-showcase__cta { order: 6; align-self: center; }
}

/* ── Responsive ── */

@media (min-width: 768px) {
  .tarifs-showcase__left {
    padding: 3.5rem 3rem;
  }

  .tarifs-showcase__num-label { font-size: 1rem; }
  .tarifs-showcase__title {
    font-size: 1.7rem;
  }

  .tarifs-showcase__right {
    display: block;
    margin: 1.8rem;
    height: 320px;
  }

  .tarifs-showcase__cta {
    padding: 14px 32px;
    font-weight: 500;
  }
}

@media (min-width: 1024px) {
  .tarifs-showcase__left {
    padding: 4rem 3.5rem;
  }

  .tarifs-showcase__num-label { font-size: 1.1rem; }
  .tarifs-showcase__title {
    font-size: 1.9rem;
  }

  .tarifs-showcase__right {
    flex: 1;
  }
}


/* ═══ TOOLS TICKER — Showcase Automatisation ═══ */

.tarifs-showcase__dash-wrap {
  position: relative;
  z-index: 1;
  padding: 2rem 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  --accent: var(--base-color-brand--beige-800);
  background-color: #031e25;
  border-radius: var(--border-radius--large);
}

.tarifs-showcase__dash-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  object-fit: contain;
  z-index: 0;
  border-radius: 16px;
  mask-image: radial-gradient(ellipse 50% 40% at center, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 50% 40% at center, #000 30%, transparent 100%);
}



/* ═══ APP MOCKUP — Showcase Application Métier / Agent IA ═══ */

.tarifs-showcase__app-wrap {
  position: relative;
  z-index: 1;
  padding: 2rem 1.8rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(158,122,62,0.05) 0%, transparent 70%),
    linear-gradient(to bottom, var(--base-color-brand--beige-100) 0%, var(--base-color-brand--beige-100) 50%, var(--base-color-brand--beige-200) 100%);
  border-radius: var(--border-radius--large);
}

/* ── App skeleton ── */

.app-mockup {
  display: flex;
  width: 88%;
  max-width: 320px;
  height: auto;
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--border-radius--regular);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* Sidebar */

.app-mockup__sidebar {
  width: 64px;
  background: var(--base-color-neutral--black);
  display: flex;
  flex-direction: column;
  padding: 14px 10px;
  gap: 6px;
  flex-shrink: 0;
}

.app-mockup__logo {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 6px;
}

.app-mockup__logo-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--border-radius--small);
  background: var(--base-color-brand--beige-600);
  flex-shrink: 0;
}

.app-mockup__logo-line {
  display: block;
  width: 24px;
  height: 5px;
  border-radius: var(--border-radius--small);
  background: rgba(255, 255, 255, 0.25);
}

.app-mockup__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.app-mockup__nav-item {
  display: block;
  height: 6px;
  width: 100%;
  border-radius: var(--border-radius--small);
  background: rgba(255, 255, 255, 0.12);
}

.app-mockup__nav-item--active {
  background: rgba(184, 150, 90, 0.5);
}

.app-mockup__nav-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.app-mockup__user-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.app-mockup__user-avatar {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--base-color-brand--teal-500);
  flex-shrink: 0;
}

.app-mockup__user-line {
  display: block;
  width: 22px;
  height: 4px;
  border-radius: var(--border-radius--xsmall);
  background: rgba(255, 255, 255, 0.18);
}

/* Main content area */

.app-mockup__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.app-mockup__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.app-mockup__topbar-title {
  display: block;
  width: 70px;
  height: 7px;
  border-radius: var(--border-radius--small);
  background: var(--base-color-brand--brown-100);
}

.app-mockup__topbar-actions {
  display: flex;
  gap: 5px;
}

.app-mockup__topbar-btn {
  display: block;
  width: 32px;
  height: 12px;
  border-radius: var(--border-radius--small);
  background: var(--base-color-brand--beige-100);
}

.app-mockup__topbar-btn--accent {
  background: var(--base-color-brand--beige-600);
  opacity: 0.6;
  width: 40px;
}

/* Table skeleton */

.app-mockup__content {
  padding: 12px 14px;
  flex: 1;
}

.app-mockup__table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.app-mockup__table-head {
  display: flex;
  gap: 8px;
  padding: 6px 0 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.app-mockup__table-col {
  display: block;
  height: 5px;
  border-radius: var(--border-radius--small);
  background: var(--base-color-brand--brown-200);
}

.app-mockup__table-col--lg { flex: 3; }
.app-mockup__table-col--md { flex: 2; }
.app-mockup__table-col--sm { flex: 1; }

.app-mockup__table-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.app-mockup__table-cell {
  display: block;
  height: 5px;
  border-radius: var(--border-radius--small);
  background: var(--base-color-brand--beige-200);
}

.app-mockup__table-badge {
  display: block;
  width: 36px;
  height: 10px;
  border-radius: var(--border-radius--small);
  flex-shrink: 0;
  flex: 1;
}

.app-mockup__table-badge--gold {
  background: rgba(184, 150, 90, 0.2);
}

.app-mockup__table-badge--brume {
  background: rgba(98, 116, 131, 0.2);
}

.app-mockup__table-badge--muted {
  background: rgba(0, 0, 0, 0.06);
}

/* AI Agent floating bubble */

.app-mockup__agent {
  position: absolute;
  bottom: 2rem;
  right: 2.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 12px rgba(158, 122, 62, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-mockup__agent-icon {
  display: block;
}

.app-mockup__agent-pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(184, 150, 90, 0.3);
  animation: agent-pulse 2.5s ease-in-out infinite;
}

@keyframes agent-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .app-mockup__agent-pulse {
    animation: none;
  }

  .offre-chat__cursor {
    animation: none;
  }

  .offre-chat__thinking-dot {
    animation: none;
  }

  .offre-chat__module,
  .offre-chat__card {
    transition: none;
  }
}

@media (max-width: 767px) {
  .tarifs-showcase__audit-wrap,
  .tarifs-showcase__app-wrap {
    display: none;
  }
}


/* ═══ TARIFS OFFRES CARDS ═══ */

.tarifs-offres__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: 24px;
  overflow: hidden;
}

.tarifs-offres__card--gold,
.tarifs-offres__card--teal {
  border: 1px solid rgba(107, 157, 171, 0.2);
  box-shadow: 0 12px 32px rgba(107, 157, 171, 0.12);
}

/* ── Visual ── */

.tarifs-offres__visual {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.tarifs-offres__visual--gold {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #031e25;
}

.tarifs-offres__visual-img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  border-radius: 16px;
  mask-image: radial-gradient(ellipse 50% 40% at center, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 50% 40% at center, #000 30%, transparent 100%);
}

.tarifs-offres__visual .tarifs-showcase__dash-wrap {
  border-radius: 0;
}

/* ── Body ── */

.tarifs-offres__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 28px 32px;
  background-color: #04181b;
}

/* ── Tag ── */

.tarifs-offres__tag {
  display: inline-block;
  width: fit-content;
  padding: 6px 16px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
}

.tarifs-offres__tag--gold {
  color: #B8965A;
  background: rgba(184, 150, 90, 0.1);
  border: 1px solid rgba(184, 150, 90, 0.25);
}

.tarifs-offres__tag--teal {
  color: #6B9DAB;
  background: rgba(59, 112, 126, 0.18);
  border: 1px solid rgba(59, 112, 126, 0.25);
}

/* ── Title ── */

.tarifs-offres__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}

/* ── Desc ── */

.tarifs-offres__desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
}

/* ── Bullets ── */

.tarifs-offres__bullets {
  font-family: var(--font-logo);
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.6;
  padding: 0.5rem 0;
  position: relative;
  margin: 0;
}

/* ── Quote ── */

.tarifs-offres__quote {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
}

.tarifs-offres__quote--gold {
  background: rgba(184, 150, 90, 0.05);
  border: 1px solid rgba(184, 150, 90, 0.15);
}

.tarifs-offres__quote--teal {
  background: rgba(59, 112, 126, 0.05);
  border: 1px solid rgba(59, 112, 126, 0.15);
}

.tarifs-offres__quote-star {
  font-size: 14px;
  flex-shrink: 0;
  line-height: 1;
}

.tarifs-offres__quote--gold .tarifs-offres__quote-star { color: #B8965A; }
.tarifs-offres__quote--teal .tarifs-offres__quote-star { color: #6B9DAB; }

.tarifs-offres__quote-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tarifs-offres__quote-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
}

.tarifs-offres__quote--gold .tarifs-offres__quote-label { color: #B8965A; }
.tarifs-offres__quote--teal .tarifs-offres__quote-label { color: #6B9DAB; }

.tarifs-offres__quote-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

/* ── CTA ── */

.tarifs-offres__cta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  width: fit-content;
  transition: opacity 0.2s;
}

.tarifs-offres__cta:hover { opacity: 0.7; }

.tarifs-offres__cta--gold { color: #B8965A; }
.tarifs-offres__cta--teal { color: #6B9DAB; }

/* ── Badge ── */

.tarifs-offres__badge {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 48px;
  right: 24px;
  top: 346px;
  z-index: 2;
}

.tarifs-offres__badge svg {
  width: 38px;
  height: 38px;
}

.tarifs-offres__badge--gold {
  background: linear-gradient(145deg, #bd9e86, #c09468, #c3af99);
  border: 2px solid #978c74;
  box-shadow: 0 4px 16px rgb(246 238 208 / 22%), 0 0 32px rgba(224, 184, 92, 0.12);
}

.tarifs-offres__badge--gold::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  padding: 3px;
  background: conic-gradient(
    from 0deg,
    #bd9e86,
    #e8ddd0,
    #c09468,
    rgba(151, 140, 116, 0.15),
    rgba(151, 140, 116, 0.15),
    #c3af99
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: badge-border-spin 4s linear infinite;
  pointer-events: none;
}

.tarifs-offres__badge--teal {
  background: linear-gradient(145deg, #5a9caa, #4a8a9a, #2e6070);
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(59, 112, 126, 0.25), 0 0 32px rgba(90, 156, 170, 0.12);
}

.tarifs-offres__badge--teal::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  padding: 3px;
  background: conic-gradient(
    from 0deg,
    #5a9caa,
    #d0f0f8,
    #5a9caa,
    rgba(46, 96, 112, 0.15),
    rgba(46, 96, 112, 0.15),
    #5a9caa
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: badge-border-spin 4s linear infinite;
  pointer-events: none;
}

@keyframes badge-border-spin {
  to { transform: rotate(360deg); }
}

/* ── Responsive ── */

@media (max-width: 767px) {
  .tarifs-offres__visual {
    height: 260px;
  }

  .tarifs-offres__badge {
    top: 232px;
  }

  .tarifs-offres__body {
    padding: 20px 20px 28px;
  }

  .tarifs-offres__title {
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tarifs-offres__cta {
    transition: none;
  }

  .tarifs-offres__badge--gold::before,
  .tarifs-offres__badge--teal::before {
    animation: none;
  }
}
