:root {
  --blue-900: #071641;
  --blue-800: #0c1f5e;
  --blue-700: #093fda;
  --blue-600: #0b55ff;
  --blue-500: #1f6fff;
  --blue-100: #eaf2ff;
  --blue-50: #f5f9ff;
  --green: #14c781;
  --ink: #071641;
  --muted: #607093;
  --line: #d8e5ff;
  --border: #d8e5ff;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 22, 65, .12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  position: relative;
}

.plan-card-top {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 112px;
}

.plan-card-top .badge {
  justify-self: start;
}

/* Titre de carte : taille cohérente sur toutes les cartes, sans déborder. */
.plan-card h2 {
  font-size: 1.78rem;
  line-height: 1.15;
  letter-spacing: 0;
  margin: 0;
}

/* Badge en flux normal : aucun chevauchement avec le titre. */
.plan-card .badge {
  margin: 0;
  padding: 7px 11px;
  font-size: .86rem;
  line-height: 1;
}

.plan-tagline {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
  min-height: 46px;
}

/* Espacements pilotés par le gap flex, pas par les marges de la liste. */
.plan-card .check-list,
.plan-card .compact-check-list {
  margin: 0;
}

/* Bouton/CTA toujours collé en bas pour aligner toutes les cartes. */
.plan-card form,
.plan-card > .btn {
  margin-top: auto;
}
.plan-card form .btn {
  width: 100%;
}

.plan-price strong {
  display: inline-block;
  color: var(--blue-900);
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 950;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.plan-price span,
.plan-quota span {
  color: var(--muted);
  font-weight: 750;
}

.plan-trial-line {
  margin: 0;
  font-weight: 800;
  font-size: .92rem;
}
.plan-trial-line.is-trial {
  color: #064e3b;
  background: #e6fbf0;
  border: 1px solid #18b979;
  border-radius: 12px;
  padding: 9px 12px;
  font-size: .98rem;
  font-weight: 950;
  text-align: center;
}
.plan-trial-line.no-trial { color: var(--muted); }

/* Carte avec essai gratuit mise en évidence dans Tarifs. */
.trial-card { border-color: rgba(24,185,121,.42) !important; }

/* Accroche "1 mois gratuit uniquement Essentiel" en tête de la page Tarifs. */
.pricing-trial-highlight {
  margin: 16px auto 0;
  max-width: 760px;
  background: #d8f7e8;
  border: 1px solid #18b979;
  color: #064e3b;
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 1.12rem;
  font-weight: 850;
  text-align: center;
}

/* Box "forfait sélectionné" dans l'espace client (avant activation). */
.selected-plan-box {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--blue-50);
  margin: 12px 0;
}
.selected-plan-box.is-trial { border-color: #18b979; background: #f0fbf6; }
.selected-plan-label { color: var(--muted); font-weight: 800; font-size: .9rem; }
.selected-plan-name { color: var(--blue-900); font-size: 1.25rem; font-weight: 950; }
.selected-plan-box .btn { margin-top: 8px; }
.trial-flag { margin: 4px 0 0; font-weight: 850; }
.trial-flag.yes { color: #12a66a; }
.trial-flag.no { color: #b45309; }

.domain-picker {
  display: grid;
  gap: 12px;
  padding: 18px;
  margin: 6px 0 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--blue-50);
}
.domain-picker label {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
}
.domain-picker input[type="text"],
.domain-picker input[name="desired_domain"] {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.domain-picker .btn {
  justify-self: stretch;
  width: 100%;
  min-height: 48px;
}
.domain-result {
  display: none;
  padding: 12px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 750;
}
.domain-result.is-visible { display: grid; gap: 8px; }
.domain-result.is-ok {
  color: #065f46;
  background: #ecfdf5;
  border-color: rgba(20,199,129,.35);
}
.domain-result.is-error {
  color: #991b1b;
  background: #fff1f2;
  border-color: rgba(220,38,38,.24);
}
.domain-result.is-info {
  color: #31507f;
  background: #ffffff;
  border-color: rgba(11,85,255,.18);
}
.domain-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.domain-suggestions button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--blue-600);
  background: white;
  font-weight: 850;
  cursor: pointer;
}
.check-line {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 9px !important;
  align-items: start;
  margin: 0 !important;
  color: var(--muted);
  font-weight: 750 !important;
}
.check-line input {
  width: 16px !important;
  height: 16px;
  margin-top: 3px;
}
.domain-panel { display: grid; gap: 16px; }
.domain-panel h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  line-height: 1.05;
}
.domain-panel .panel-headline {
  align-items: start;
}
.domain-status-card {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--blue-50);
}
.domain-status-card span,
.domain-status-card small {
  color: var(--muted);
  font-weight: 750;
}
.domain-status-card strong {
  color: var(--blue-900);
  font-size: 1.2rem;
}
.domain-status-card.status-active {
  border-color: rgba(20,199,129,.35);
  background: #ecfdf5;
}
.domain-status-card.status-active strong {
  color: #064e3b;
}
.domain-status-card.status-missing,
.domain-status-card.status-pending {
  border-color: rgba(245,158,11,.42);
  background: #fff8e6;
}
.domain-status-card.status-missing strong,
.domain-status-card.status-pending strong {
  color: #9a3412;
}
.domain-status-card.status-error,
.domain-status-card.status-suspended {
  border-color: rgba(220,38,38,.22);
  background: #fff7f7;
}
.domain-card-action {
  margin-top: 14px;
}
.compact-domain-picker { margin: 0; }

/* État du numéro intelligent dans l'espace client. */
.number-status { border-radius: 14px; padding: 14px 16px; margin: 12px 0; }
.number-status.ok { background: #f0fbf6; border: 1px solid #18b979; }
.number-status.ok span { color: var(--muted); font-weight: 800; font-size: .9rem; display: block; }
.number-status.ok strong { color: #064e3b; font-size: 1.15rem; font-weight: 950; }
.number-status.error { background: #fff4ed; border: 1px solid #f59e0b; }
.number-status.error strong { color: #b45309; display: block; margin-bottom: 6px; }
.number-status.error p { color: #7c2d12; margin: 0 0 8px; font-size: .92rem; }
.number-status-detail { font-family: monospace; font-size: .82rem !important; word-break: break-word; }

.plan-quota {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 15px;
  background: var(--blue-50);
}

.plan-quota strong {
  display: inline-block;
  color: var(--blue-600);
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 950;
  margin-right: 8px;
}

.plan-overage-note {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 750;
  text-align: center;
}

.sms-quota-card {
  display: grid;
  gap: 12px;
  margin: 16px 0;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--blue-50);
}

.sms-quota-top,
.sms-quota-details {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-weight: 750;
}

.sms-quota-top strong {
  color: var(--blue-900);
}

.sms-progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce8ff;
}

.sms-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-700));
}

.quota-warning {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff7e6;
  color: #8a4f00 !important;
  font-weight: 850;
}

.quota-warning.danger {
  background: #fff0f0;
  color: #9f1d1d !important;
}

#sms-counter.is-warning {
  color: #9f6b00;
}

#sms-counter.is-error {
  color: #b42318;
}

.admin-import-card { margin-bottom: 18px; }
.admin-import-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}
.admin-import-form input[type="file"] {
  flex: 1 1 260px;
  min-width: 0;
}
.admin-pill.status-import { background: #e0e7ff; color: #3730a3; margin-left: 6px; }

@media (max-width: 1000px) {
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 4%, rgba(11,85,255,.13), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 45%, #ffffff 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-800); }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.container { width: min(1020px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(780px, calc(100% - 40px)); }
.center { text-align: center; }
.section-pad { padding: 72px 0; }
.compact-top { padding-top: 18px; }
.mobile-break { display: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216,229,255,.82);
  box-shadow: 0 8px 28px rgba(7,22,65,.04);
}
.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
  font-size: 1.58rem;
  color: var(--blue-900);
}
.brand:hover { color: var(--blue-900); }
.brand-word {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}
.brand-word strong {
  color: var(--blue-600);
  font-weight: 950;
}
.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(11,85,255,.2));
}
.nav-menu { display: flex; align-items: center; gap: 20px; }
.nav-menu > a:not(.btn), .link-button {
  color: var(--blue-900);
  font-weight: 800;
  font-size: .93rem;
}
.nav-menu .nav-active {
  color: var(--blue-700) !important;
  background: rgba(234,242,255,.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
}
.nav-account-link,
.logout-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 900 !important;
}
.nav-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  line-height: 1;
  flex: 0 0 auto;
}
.nav-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.logout-link {
  color: #d92d20 !important;
}
.logout-link:hover {
  color: #b42318 !important;
}
.nav-toggle { display: none; }
.inline-form { display: inline; margin: 0; }
.link-button { background: none; border: 0; cursor: pointer; padding: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  box-shadow: 0 16px 34px rgba(11,85,255,.26);
}
.btn-primary:hover { color: white; box-shadow: 0 20px 46px rgba(11,85,255,.34); }
.btn-secondary, .btn-ghost {
  color: var(--blue-700);
  background: rgba(234,242,255,.78);
  border: 1px solid var(--line);
}
.btn-danger {
  color: white;
  background: #d92d20;
  box-shadow: 0 14px 34px rgba(217,45,32,.22);
}
.btn-danger:hover {
  color: white;
  background: #b42318;
}
.btn-white { background: white; color: var(--blue-700); }
.btn-large { padding: 15px 24px; }
.full { width: 100%; }

.flashes { margin-top: 22px; }
.flash {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 14px 34px rgba(7,22,65,.06);
  margin-bottom: 10px;
}
.flash-success { border-color: rgba(20,199,129,.24); background: #f1fff9; }
.flash-danger { border-color: rgba(227,65,65,.2); background: #fff5f5; }
.flash-warning { border-color: rgba(249,184,55,.22); background: #fffaf0; }
.flash-info { background: #f5f9ff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--blue-600);
  background: rgba(234,242,255,.88);
  border: 1px solid rgba(11,85,255,.24);
  border-radius: 999px;
  padding: 7px 13px;
  font-weight: 900;
  font-size: .88rem;
}
.eyebrow.light { background: rgba(255,255,255,.14); color: white; border-color: rgba(255,255,255,.24); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 24px;
  max-width: 100%;
  overflow-wrap: anywhere;
}
h1 span { color: var(--blue-600); }
h2 { font-size: clamp(2rem, 3.2vw, 3.2rem); line-height: 1.02; letter-spacing: 0; margin-bottom: 16px; }
h3 { font-size: 1.2rem; letter-spacing: 0; margin-bottom: 8px; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.28rem); max-width: 680px; }
.hero-pro-grid > *,
.page-hero-grid > *,
.auth-grid > *,
.compact-flow-grid > *,
.compact-preview-grid > * {
  min-width: 0;
}

.hero { padding-top: 58px; overflow: hidden; }
.hero-pro {
  position: relative;
  padding-top: 40px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.94) 48%, rgba(241,247,255,.72) 100%);
}
.hero-pro::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11,85,255,.3), transparent);
}
.hero-pro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1014px);
  justify-content: center;
  gap: 24px;
  align-items: center;
}
.hero-pro .hero-copy { position: relative; z-index: 2; }
.hero-pro .hero-copy {
  text-align: center;
}
.hero-pro .hero-copy h1 {
  margin-top: 24px;
  max-width: 988px;
}
.hero-message-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, .42fr);
  gap: 34px;
  align-items: start;
  text-align: left;
  margin-top: 22px;
}
.hero-message-split .hero-split-title {
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.hero-benefits {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 12px 0 12px 28px;
  border-left: 1px solid rgba(11,85,255,.2);
}
.hero-benefits > span {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: #1f315a;
  font-weight: 780;
  line-height: 1.45;
}
.hero-benefits .benefit-text { min-width: 0; }
.hero-benefits strong {
  color: var(--ink);
  font-weight: 950;
}
.hero-benefits b {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--blue-600);
  border-radius: 15px;
  background: linear-gradient(150deg, #eef4ff 0%, #e3edff 100%);
  border: 1px solid rgba(11,85,255,.16);
  box-shadow: 0 10px 22px rgba(7,22,65,.06);
}
.hero-benefits b svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-split-title {
  display: grid;
  gap: 10px;
  font-size: clamp(3.4rem, 5.1vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  align-self: start;
}

/* ---- Hero "flow" (page d'accueil) ---- */
.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.3fr) minmax(210px, .58fr);
  gap: 32px;
  align-items: center;
}
.hero-stage > * { min-width: 0; }
.hero-lede { text-align: left; }
.hero-stage .hero-split-title {
  font-size: clamp(2.3rem, 3vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.005em;
  margin: 16px 0 0;
}
.hero-pro .hero-lede .hero-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}
/* Boutons du hero un peu plus compacts pour tenir alignés sur une ligne */
.hero-pro .hero-lede .hero-actions .btn {
  padding: 11px 16px;
  font-size: .94rem;
  white-space: nowrap;
}
.hero-scene {
  position: relative;
  max-width: 940px;
  margin: 48px auto 20px;
}
.hero-scene::before {
  content: "";
  position: absolute;
  inset: -8% 2% 12%;
  background: radial-gradient(58% 68% at 50% 46%, rgba(31,111,255,.12), transparent 72%);
  z-index: 0;
  pointer-events: none;
}
.hsc-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 44px;
}
.hsc-node {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  justify-items: center;
}
.hsc-cap {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  width: 116px;
  transform: translateX(-50%);
  text-align: center;
  font-size: .73rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--muted);
}
/* Connecteurs courbes pointillés + flèche */
.hsc-link {
  flex: 1 1 auto;
  min-width: 16px;
  max-width: 42px;
  align-self: center;
  display: grid;
  place-items: center;
}
.hsc-link svg {
  width: 42px;
  height: 48px;
  overflow: visible;
}
.hsc-line {
  fill: none;
  stroke: rgba(11,85,255,.5);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 0.1 8;
}
.hsc-arrow {
  fill: none;
  stroke: rgba(11,85,255,.62);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* Badges ronds (visiteur, croissance) */
.hsc-badge {
  position: relative;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  color: var(--blue-600);
  background: radial-gradient(circle at 50% 36%, #ffffff, #eaf1ff);
  border: 1px solid rgba(11,85,255,.14);
  box-shadow: 0 20px 44px rgba(7,22,65,.10);
}
.hsc-badge svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hsc-pin svg path { fill: rgba(11,85,255,.14); }
/* Cartes blanches */
.hsc-card {
  background: #fff;
  border: 1px solid rgba(216,229,255,.85);
  border-radius: 20px;
  box-shadow: 0 24px 50px rgba(7,22,65,.10);
}
/* Mockup de page */
.hsc-page {
  width: 156px;
  padding: 12px;
  display: grid;
  gap: 9px;
}
.hsc-bar { display: flex; gap: 5px; }
.hsc-bar i { width: 8px; height: 8px; border-radius: 50%; background: #d4ddee; }
.hsc-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .64rem;
  font-weight: 900;
  color: var(--blue-700);
}
.hsc-logo { width: 13px; height: 13px; border-radius: 50%; background: linear-gradient(140deg, var(--blue-500), var(--blue-700)); }
.hsc-img {
  height: 52px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #9fb6e6;
  background: linear-gradient(135deg, #e0eaff, #eef3ff);
}
.hsc-img svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hsc-lines { display: grid; gap: 6px; }
.hsc-lines b { height: 7px; border-radius: 4px; background: #e7edf8; }
.hsc-lines b:last-child { width: 66%; }
/* Bulle SMS */
.hsc-chat {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  color: var(--blue-600);
}
.hsc-chat svg { width: 40px; height: 40px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hsc-chat circle { fill: var(--blue-600); stroke: none; }
/* Carte "Demande reçue" */
.hsc-notif {
  width: 152px;
  padding: 16px 17px 18px;
  display: grid;
  justify-items: start;
  gap: 7px;
  box-shadow: 0 30px 60px rgba(11,85,255,.16);
}
.hsc-check {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(140deg, var(--blue-500), var(--blue-700));
  box-shadow: 0 12px 26px rgba(11,85,255,.32);
}
.hsc-check svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.hsc-notif strong { font-size: .92rem; color: var(--blue-900); line-height: 1; }
.hsc-sub { font-size: .72rem; font-weight: 750; color: var(--muted); }
.hsc-pill { width: 66px; height: 8px; border-radius: 5px; background: #e7edf8; margin-top: 3px; }
/* Étincelles croissance */
.hsc-spark::before,
.hsc-spark::after {
  content: "";
  position: absolute;
  background: var(--blue-500);
  border-radius: 1px;
  transform: rotate(45deg);
}
.hsc-spark::before { width: 9px; height: 9px; top: -2px; right: 0; opacity: .9; }
.hsc-spark::after { width: 5px; height: 5px; top: 12px; right: -12px; opacity: .55; }

@media (max-width: 1040px) {
  .hero-stage {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: center;
  }
  .hero-lede { text-align: center; }
  .hero-lede .hero-actions { justify-content: center; }
  .hero-benefits {
    width: min(100%, 380px);
    margin-inline: auto;
    padding-left: 0;
    border-left: 0;
  }
}
@media (max-width: 600px) {
  .hero-scene { display: none; }
}

.hero-split-title .title-main,
.hero-split-title .title-support {
  display: block;
}
.hero-split-title .title-main {
  color: var(--blue-900);
}
.hero-split-title .title-support {
  color: var(--blue-700);
  font-size: clamp(1.08rem, 1.72vw, 1.48rem);
  line-height: 1.02;
  font-weight: 850;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
}
.hero-proof span {
  min-height: 56px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10px 12px;
  color: var(--blue-900);
  font-weight: 850;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 34px rgba(7,22,65,.05);
}
.hero-showcase {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
}
.hero-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11,85,255,.18);
  border-radius: 28px;
  background: white;
  box-shadow: 0 34px 90px rgba(7,22,65,.16);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 64%, rgba(255,255,255,.92));
  pointer-events: none;
}
.hero-photo img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: 50% 0;
}
.hero-floating-card {
  position: absolute;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
  min-width: 260px;
  padding: 16px;
  border: 1px solid rgba(216,229,255,.9);
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 55px rgba(7,22,65,.13);
}
.hero-floating-card strong { font-size: 1.05rem; }
.hero-floating-card small {
  grid-column: 2;
  color: var(--muted);
  font-weight: 700;
}
.hero-card-sms { left: -26px; bottom: 118px; }
.hero-card-booking { right: -20px; bottom: 42px; }
.icon-chip {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--blue-600);
  font-weight: 950;
  font-size: .76rem;
  border-radius: 16px;
  background: var(--blue-100);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 42px;
  align-items: center;
}
.hero-copy h1 { margin-top: 24px; }
.hero-copy h1::first-line { color: var(--blue-900); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 24px; }
.hero-pro .hero-actions {
  justify-content: center;
  margin: 26px 0 16px;
}
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); font-weight: 750; }
.trust-row span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.74); }

.feature-duo {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 28px;
  align-items: center;
}
.duo-panel {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(11,85,255,.24);
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
}
.duo-panel article {
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, var(--blue-50));
}
.line-icon, .process-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--blue-600);
  font-weight: 950;
  font-size: 1.6rem;
  border-radius: 20px;
  background: var(--blue-100);
}
.duo-plus {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.6rem;
  font-weight: 950;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  box-shadow: 0 12px 28px rgba(11,85,255,.24);
}

.process-section {
  background: linear-gradient(180deg, #fff, rgba(234,242,255,.54), #fff);
}
.section-title-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 34px;
  text-align: center;
}
.section-title-line > span {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-600));
}
.section-title-line > span:last-child {
  background: linear-gradient(90deg, var(--blue-600), transparent);
}
.section-title-line h2 { margin: 0; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.process-grid article {
  position: relative;
  min-height: 270px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 12px;
  padding: 8px 14px 20px;
  text-align: center;
}
.process-grid article:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -12px;
  top: 95px;
  color: var(--blue-600);
  font-size: 1.8rem;
  font-weight: 900;
}
.process-grid b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  box-shadow: 0 12px 28px rgba(11,85,255,.2);
}
.process-grid h3 { margin: 6px 0 0; }
.process-grid p {
  color: var(--muted);
  font-weight: 650;
}

.infographic-section {
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(234,242,255,.52), rgba(255,255,255,.9));
  border-block: 1px solid rgba(216,229,255,.78);
}
.infographic-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(310px, .76fr);
  gap: 24px;
  align-items: stretch;
}
.flow-diagram {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.flow-node {
  position: relative;
  min-height: 218px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(216,229,255,.95);
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 48px rgba(7,22,65,.07);
}
.flow-node:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -15px;
  top: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.15rem;
  font-weight: 950;
  border-radius: 50%;
  background: var(--blue-600);
  transform: translateY(-50%);
  box-shadow: 0 10px 24px rgba(11,85,255,.22);
  z-index: 2;
}
.flow-node span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue-600);
  font-weight: 950;
  border-radius: 50%;
  background: var(--blue-100);
}
.flow-node strong {
  font-size: 1.18rem;
  line-height: 1.15;
  letter-spacing: 0;
}
.flow-node small {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.45;
  font-weight: 650;
}
.prospect-sheet {
  display: grid;
  align-content: start;
  gap: 0;
  padding: 26px;
  border: 1px solid rgba(11,85,255,.22);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}
.sheet-head {
  display: grid;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.sheet-head span,
.sheet-row span {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}
.sheet-head strong {
  color: var(--blue-600);
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: 0;
}
.sheet-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(216,229,255,.72);
}
.sheet-row strong {
  text-align: right;
  color: var(--blue-900);
}
.priority-label {
  color: var(--green) !important;
}
.urgency-scale {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 20px;
}
.urgency-scale span {
  height: 10px;
  border-radius: 999px;
  background: var(--blue-100);
}
.urgency-scale span:nth-child(-n+3) {
  background: linear-gradient(90deg, var(--blue-500), var(--blue-700));
}
.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 52px rgba(7,22,65,.06);
}
.metric-strip article {
  min-height: 138px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px;
}
.metric-strip article:not(:last-child) {
  border-right: 1px solid var(--line);
}
.metric-strip b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: var(--blue-600);
}
.metric-strip strong {
  font-size: 1.05rem;
  letter-spacing: 0;
}
.metric-strip span {
  color: var(--muted);
  font-size: .93rem;
  font-weight: 650;
}

.product-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 22px;
  align-items: stretch;
}
.included-card, .preview-card, .option-card {
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 22px 64px rgba(7,22,65,.08);
}
.included-card { padding: 32px; }
.included-card h2 { margin-top: 20px; }
.preview-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: 28px;
  background:
    radial-gradient(circle at 78% 20%, rgba(20,199,129,.12), transparent 24%),
    linear-gradient(135deg, #fff, var(--blue-50));
}
.preview-phone {
  width: min(300px, 52%);
  min-height: 420px;
  padding: 24px 18px;
  border: 8px solid #10141c;
  border-radius: 42px;
  background: #fff;
  box-shadow: 0 24px 65px rgba(7,22,65,.16);
}
.preview-header {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid #edf2ff;
}
.preview-header span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a1d55, #1260ff);
}
.sms-bubble.compact {
  font-size: .88rem;
  margin-top: 22px;
}
.preview-browser {
  position: absolute;
  right: 26px;
  bottom: 42px;
  width: min(410px, 58%);
  padding: 70px 28px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}

.trade-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 52px rgba(7,22,65,.06);
}
.trade-grid article {
  min-height: 112px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px 12px;
  color: var(--blue-900);
}
.trade-grid article:not(:last-child) { border-right: 1px solid var(--line); }
.trade-grid strong {
  font-size: .98rem;
  letter-spacing: 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(280px, .55fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}
.option-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-content: center;
  padding: 28px;
}
.option-card strong {
  grid-column: 1 / -1;
  color: var(--blue-600);
  font-size: 1.45rem;
}
.cta-compact {
  margin-inline: auto;
}

.infographic-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(245,249,255,.88)),
    radial-gradient(circle at 82% 20%, rgba(11,85,255,.12), transparent 28%);
  border-bottom: 1px solid rgba(216,229,255,.72);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .45fr);
  gap: 34px;
  align-items: center;
}
.hero-mini-board,
.price-stamp {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.hero-mini-board {
  display: grid;
  gap: 12px;
}
.hero-mini-board div {
  display: grid;
  grid-template-columns: minmax(76px, auto) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: var(--blue-50);
}
.hero-mini-board strong {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 7px 10px;
  text-align: center;
  color: white;
  border-radius: 999px;
  background: var(--blue-600);
  font-size: .82rem;
  line-height: 1.1;
}
.hero-mini-board span {
  min-width: 0;
  color: var(--blue-900);
  font-weight: 850;
  overflow-wrap: anywhere;
}
.operation-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(360px, 1.06fr);
  gap: 24px;
  align-items: stretch;
}
.operation-card,
.stack-preview-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 22px 64px rgba(7,22,65,.08);
}
.operation-card { padding: 34px; }
.operation-card h2 { margin-top: 18px; }
.setup-timeline {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.setup-timeline div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 4px 14px;
  padding: 16px;
  border: 1px solid rgba(216,229,255,.74);
  border-radius: 18px;
  background: var(--blue-50);
}
.setup-timeline b {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue-600);
  border-radius: 50%;
  background: white;
}
.setup-timeline strong { color: var(--blue-900); }
.setup-timeline span {
  color: var(--muted);
  font-weight: 650;
}
.stack-preview-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  padding: 30px;
  background:
    radial-gradient(circle at 74% 18%, rgba(20,199,129,.12), transparent 26%),
    linear-gradient(135deg, #fff, var(--blue-50));
}
.mini-sms,
.mini-booking,
.mini-result {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 18px 48px rgba(7,22,65,.08);
}
.mini-sms {
  max-width: 360px;
  padding: 24px;
}
.mini-sms p {
  color: var(--muted);
  margin: 10px 0 0;
}
.mini-booking {
  position: absolute;
  right: 30px;
  bottom: 84px;
  width: min(340px, 58%);
  padding: 24px;
}
.mini-days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}
.mini-days span {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 850;
}
.mini-days .active {
  color: white;
  background: var(--blue-600);
  border-color: var(--blue-600);
}
.mini-booking button {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 13px;
  color: white;
  background: var(--blue-600);
  font-weight: 900;
}
.mini-result {
  position: absolute;
  left: 46px;
  bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
}
.mini-result b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: var(--green);
}

.price-stamp {
  display: grid;
  gap: 8px;
  text-align: center;
}
.price-stamp span,
.price-stamp small {
  color: var(--muted);
  font-weight: 800;
}
.price-stamp strong {
  color: var(--blue-600);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}
.pricing-info-card {
  display: grid;
  gap: 20px;
}
.price-flow {
  display: grid;
  gap: 12px;
}
.price-flow div {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  background: var(--blue-50);
}
.price-flow b {
  display: grid;
  place-items: center;
  min-height: 48px;
  color: var(--blue-600);
  border-radius: 16px;
  background: white;
}
.price-flow span {
  color: var(--blue-900);
  font-weight: 850;
}
.guarantee-box {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(20,199,129,.24);
  border-radius: 20px;
  background: #f1fff9;
}
.guarantee-box strong { color: var(--blue-900); }
.guarantee-box span {
  color: var(--muted);
  font-weight: 650;
}
.option-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.demo-card {
  display: grid;
  gap: 18px;
}
.demo-card h2 { margin-bottom: 0; }
.demo-steps {
  display: grid;
  gap: 12px;
}
.demo-steps div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: var(--blue-50);
}
.demo-steps b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: var(--blue-600);
}
.demo-steps span {
  color: var(--blue-900);
  font-weight: 750;
}
.auth-visual-copy {
  position: sticky;
  top: 102px;
}
.auth-roadmap,
.login-preview {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 52px rgba(7,22,65,.07);
}
.auth-roadmap {
  grid-template-columns: repeat(3, 1fr);
}
.auth-roadmap div,
.login-preview div {
  display: grid;
  gap: 6px;
  text-align: center;
}
.auth-roadmap b,
.login-preview strong {
  display: grid;
  place-items: center;
  min-height: 48px;
  color: var(--blue-600);
  border-radius: 16px;
  background: var(--blue-100);
}
.auth-roadmap span,
.login-preview span {
  color: var(--muted);
  font-weight: 750;
}
.login-preview div {
  grid-template-columns: 72px 1fr;
  align-items: center;
  text-align: left;
}
.activation-panel { grid-column: 1 / -1; }
.activation-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.activation-steps div {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 130px;
  padding: 18px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--blue-50);
}
.activation-steps b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue-600);
  border-radius: 50%;
  background: white;
}
.activation-steps .done {
  border-color: rgba(20,199,129,.32);
  background: #f1fff9;
}
.activation-steps .done b {
  color: white;
  background: var(--green);
}

.pro-dashboard-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
}
.dashboard-grid-activity {
  grid-template-columns: 1fr;
}
.dashboard-grid-activity .dashboard-performance-panel,
.dashboard-grid-activity .dashboard-leads-panel {
  grid-column: 1 / -1;
}
.dashboard-subnav {
  display: flex;
  gap: 10px;
  margin-top: -12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.dashboard-subnav a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  color: var(--blue-900);
  font-weight: 850;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
}
.dashboard-subnav a svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dashboard-subnav a.active {
  color: var(--blue-700);
  border-color: rgba(11,85,255,.25);
  background: var(--blue-100);
}
.dashboard-domain-panel { order: 1; }
.dashboard-billing-panel { order: 2; }
.dashboard-leads-panel { order: 3; }
.dashboard-performance-panel { order: 4; }
.dashboard-info-panel {
  order: 5;
  grid-column: span 1;
}
.dashboard-smart-panel { order: 6; }
.public-link-panel h2 {
  color: var(--blue-600);
  font-size: clamp(1.55rem, 2.4vw, 2.3rem);
  overflow-wrap: anywhere;
}
.public-page-options {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}
.public-page-options > div {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--blue-50);
}
.locked-panel {
  border-color: rgba(149,163,189,.35);
  background: linear-gradient(180deg, #f7f9fc, #fff);
}
.locked-panel .public-page-options > div {
  opacity: .62;
  filter: grayscale(.35);
}
.btn-disabled,
.btn-disabled:hover {
  color: #667085;
  background: #e5eaf2;
  border-color: #d5dbe7;
  cursor: not-allowed;
  box-shadow: none;
}
.public-page-options strong {
  color: var(--blue-900);
  font-size: 1.05rem;
}
.public-page-options span {
  color: var(--blue-600);
  font-weight: 800;
  overflow-wrap: anywhere;
}
.public-edit-action {
  margin: 2px 0 14px;
}
.mini-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.warning-panel {
  display: grid;
  gap: 12px;
  border-color: rgba(249,184,55,.42);
  background: linear-gradient(180deg, #fffaf0, #fff);
}
.warning-panel h2 {
  margin: 0;
  color: #8a5b00;
}
.warning-panel p {
  color: var(--muted);
  font-weight: 700;
}
.warning-panel strong {
  color: var(--blue-900);
}
.billing-panel {
  display: grid;
  align-content: start;
  gap: 16px;
}
.billing-panel h2 {
  margin-bottom: 0;
}
.billing-alert {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: #8a5b00;
  background: #fff5d9;
  border: 1px solid rgba(245, 181, 65, .34);
  font-weight: 850;
  font-size: .86rem;
}
.billing-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}
.billing-main-tile,
.billing-wide-tile {
  border: 1px solid rgba(216,229,255,.82);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,252,255,.98));
  text-align: center;
}
.billing-main-tile {
  display: grid;
  gap: 6px;
  min-height: 98px;
  align-content: center;
  justify-items: center;
  padding: 14px 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.billing-visual-grid span,
.billing-visual-grid small {
  color: var(--muted);
  font-weight: 750;
}
.billing-visual-grid strong {
  color: var(--blue-900);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  line-height: 1;
}
.billing-wide-tile {
  grid-column: 1 / -1;
  display: grid;
  gap: 4px;
  padding: 15px 16px;
}
.billing-wide-tile span {
  color: var(--muted);
  font-size: .9rem;
}
.billing-wide-tile strong {
  color: var(--blue-700);
  font-size: 1rem;
  line-height: 1.25;
}
.billing-short-note {
  margin: 0 0 2px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}
.inactive-subscription-card {
  display: grid;
  gap: 16px;
  text-align: center;
}
.inactive-subscription-card .billing-alert {
  justify-self: center;
}
.blocked-billing-visual {
  width: min(100%, 520px);
  justify-self: center;
}
.dashboard-actions,
.panel-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.sms-preview-text {
  white-space: pre-wrap;
  margin: 0;
  padding: 18px;
  color: #111827;
  background: #f0f2f7;
  border-radius: 22px 22px 22px 8px;
  font: inherit;
}
.sms-panel-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 14px;
}
.empty-state {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: 22px;
  background: var(--blue-50);
}
.empty-state strong {
  color: var(--blue-900);
}
.empty-state span {
  color: var(--muted);
  font-weight: 650;
}
.large-empty-state {
  justify-items: start;
  padding: 34px;
}

.profile-editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .46fr);
  gap: 24px;
  align-items: start;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.checkbox-line {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px !important;
}
.checkbox-line input {
  width: auto;
}
.field-note {
  margin: -6px 0 16px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}
.field-note strong {
  color: var(--blue-900);
}
.public-preview-card {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}
.public-preview-card h2 {
  margin: 0;
}
.preview-media-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.preview-logo,
.client-logo {
  width: 86px;
  height: 86px;
  object-fit: contain;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}
.preview-avatar,
.client-avatar {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(7,22,65,.12);
}
.preview-meta {
  color: var(--profile-accent);
  font-weight: 900;
}
.preview-request-box {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 20px;
  background: var(--blue-50);
}
.preview-request-box span {
  color: var(--muted);
  font-weight: 650;
}

.lead-list {
  display: grid;
  gap: 16px;
}
.compact-lead-list {
  margin-top: 18px;
}
.lead-item,
.lead-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 14px 38px rgba(7,22,65,.06);
}
.lead-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
}
.lead-item span,
.lead-date {
  color: var(--muted);
  font-weight: 700;
}
.lead-card {
  display: grid;
  gap: 18px;
  padding: 24px;
}
.lead-main {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.lead-main h2 {
  margin: 6px 0 8px;
  font-size: 1.75rem;
}
.lead-main p {
  color: var(--muted);
}
.lead-status {
  width: fit-content;
  height: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  background: var(--blue-100);
  color: var(--blue-700);
}
.status-contacted {
  color: #8a5b00;
  background: #fff4d6;
}
.status-done {
  color: #08784f;
  background: #e9fff6;
}
.lead-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.lead-details div {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: 16px;
  background: var(--blue-50);
}
.lead-details span {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}
.lead-details strong {
  overflow-wrap: anywhere;
}
.lead-status-form {
  display: flex;
  gap: 12px;
  align-items: end;
  flex-wrap: wrap;
}
.lead-status-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-900);
  font-weight: 800;
}
.lead-status-form select,
.public-lead-form select {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--blue-900);
  background: #fbfdff;
}

.public-profile-page {
  min-height: 100vh;
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(245,249,255,.88)),
    radial-gradient(circle at 78% 10%, color-mix(in srgb, var(--profile-accent), transparent 82%), transparent 28%);
}
.public-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .62fr);
  gap: 34px;
  align-items: start;
}
.public-back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue-900);
  font-weight: 950;
  font-size: 1.2rem;
}
.public-profile-copy h1 {
  margin-top: 22px;
}
.public-meta {
  color: var(--profile-accent);
  font-size: 1.18rem;
  font-weight: 900;
}
.public-reassurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}
.public-reassurance article,
.availability-card,
.public-request-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 52px rgba(7,22,65,.07);
}
.public-reassurance article {
  display: grid;
  gap: 8px;
  padding: 18px;
}
.public-reassurance span,
.availability-card p,
.public-request-card p {
  color: var(--muted);
  font-weight: 650;
}
.availability-card {
  margin-top: 18px;
  padding: 22px;
}
.public-request-card {
  padding: 30px;
}
.public-request-card h2 {
  margin-bottom: 8px;
}
.public-lead-form {
  display: grid;
  gap: 15px;
  margin-top: 22px;
}
.public-lead-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-900);
  font-weight: 850;
}
.public-lead-form input,
.public-lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  background: #fbfdff;
  color: var(--blue-900);
  outline: none;
}
.public-lead-form input:focus,
.public-lead-form textarea:focus,
.public-lead-form select:focus {
  border-color: var(--profile-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--profile-accent), transparent 86%);
}
.confirmation-card {
  display: grid;
  gap: 14px;
  justify-items: start;
}
.confirmation-card b {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.8rem;
  border-radius: 50%;
  background: var(--green);
}

.focused-contact-page {
  min-height: 100vh;
  padding: 42px 0 72px;
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--profile-accent), transparent 86%), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
}
.focused-contact-layout {
  display: grid;
  justify-items: center;
  gap: 22px;
}
.focused-public-header {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  max-width: 760px;
}
.client-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 18px;
}
.trade-badge {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 2px auto 6px;
  border-radius: 22px;
  color: var(--profile-accent, #0b55ff);
  background: color-mix(in srgb, var(--profile-accent, #0b55ff) 12%, #fff);
  border: 1px solid color-mix(in srgb, var(--profile-accent, #0b55ff) 26%, #fff);
  box-shadow: 0 18px 40px color-mix(in srgb, var(--profile-accent, #0b55ff) 18%, transparent);
}
.trade-badge svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.admin-domain-error {
  display: block;
  margin-top: 4px;
  color: #b42318;
  font-weight: 700;
}

/* Vue publique d'une demande (lien SMS) */
.lead-view-card { padding: 30px; }
.lead-view-sub { color: var(--muted); font-weight: 750; margin: 6px 0 20px; }
.lead-view-call { margin: 0 0 22px; }
.lead-view-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}
.lead-view-grid > div {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfdff;
}
.lead-view-grid span {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.lead-view-grid strong { color: var(--blue-900); font-size: 1.05rem; overflow-wrap: anywhere; }
.lead-view-grid a { color: var(--blue-600); }
.lead-view-message {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--blue-50);
}
.lead-view-message span {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.lead-view-message p { margin: 0; color: var(--blue-900); font-weight: 650; white-space: pre-wrap; overflow-wrap: anywhere; }
@media (max-width: 560px) {
  .lead-view-grid { grid-template-columns: 1fr; }
}
.lead-view-more { display: grid; gap: 12px; margin-top: 22px; }
.lead-view-back { justify-self: center; }

/* Liste des demandes : carte cliquable + retour */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--blue-600);
  font-weight: 800;
  text-decoration: none;
}
.back-link:hover { text-decoration: underline; }
.lead-main-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border-radius: 14px;
  transition: background .15s ease;
}
.lead-main-link:hover { background: var(--blue-50); }
.lead-detail-cue {
  display: inline-block;
  margin-top: 8px;
  color: var(--blue-600);
  font-weight: 800;
  font-size: .9rem;
}
.lead-main-link:hover .lead-detail-cue { text-decoration: underline; }

/* Sélecteur de métier en boutons (pages exemples admin) */
.demo-trade-picker { border: 0; padding: 0; margin: 0 0 16px; display: grid; gap: 10px; }
.demo-trade-picker legend { padding: 0; font-weight: 800; color: var(--blue-900); }
.trade-chip-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.trade-chip { position: relative; cursor: pointer; }
.trade-chip input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.trade-chip span {
  display: inline-flex;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfdff;
  color: var(--blue-900);
  font-weight: 800;
  font-size: .9rem;
}
.trade-chip input:checked + span {
  color: #fff;
  border-color: var(--blue-600);
  background: var(--blue-600);
}
.trade-chip input:focus-visible + span { box-shadow: 0 0 0 4px rgba(11,85,255,.18); }
.trade-other-input[hidden] { display: none; }
.client-description {
  max-width: 680px;
  padding: 14px 18px;
  border: 1px solid color-mix(in srgb, var(--profile-accent), transparent 78%);
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  color: var(--blue-900);
  font-weight: 750;
}
.focused-public-header .public-back-link {
  margin: 0 0 8px;
}
.focused-public-header h1 {
  margin: 12px 0 0;
  font-size: clamp(2.45rem, 6vw, 4.8rem);
}
.focused-public-header p {
  color: var(--profile-accent);
  font-size: 1.12rem;
  font-weight: 900;
}
.quick-contact-shell {
  width: min(720px, 100%);
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 30px 90px rgba(7,22,65,.14);
}
.quick-contact-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 24px;
  text-align: center;
}
.quick-contact-heading span {
  color: var(--profile-accent);
  font-weight: 950;
}
.quick-contact-heading h2 {
  margin: 0;
}
.quick-contact-heading p {
  color: var(--muted);
  font-weight: 750;
}
.quick-contact-form {
  display: grid;
  gap: 16px;
}
.choice-fieldset,
.slot-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
.choice-fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.choice-fieldset legend,
.slot-fieldset legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--blue-900);
  font-weight: 900;
}
.choice-card {
  cursor: pointer;
}
.choice-card input,
.slot-fieldset input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.choice-card > span {
  min-height: 116px;
  display: grid;
  gap: 7px;
  align-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--blue-50);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.choice-icon {
  justify-self: start;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: var(--profile-accent, #0b55ff);
  background: color-mix(in srgb, var(--profile-accent, #0b55ff), transparent 88%);
}
.choice-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.choice-card strong {
  color: var(--blue-900);
  font-size: 1.12rem;
}
.choice-card small {
  color: var(--muted);
  font-weight: 700;
}
.choice-card input:checked + span,
.slot-fieldset input:checked + span {
  border-color: var(--profile-accent);
  background: #fff;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--profile-accent), transparent 86%);
}
.quick-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.quick-contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-900);
  font-weight: 900;
}
.quick-contact-form input,
.quick-contact-form textarea,
.quick-contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px 16px;
  background: #fbfdff;
  color: var(--blue-900);
  outline: none;
}
.quick-contact-form textarea {
  resize: vertical;
}
.quick-contact-form input:focus,
.quick-contact-form textarea:focus,
.quick-contact-form select:focus {
  border-color: var(--profile-accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--profile-accent), transparent 86%);
}
.slot-fieldset {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.slot-fieldset label {
  cursor: pointer;
}
.slot-fieldset span {
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 10px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--blue-50);
  color: var(--blue-900);
  font-weight: 850;
}
.focused-availability {
  width: min(720px, 100%);
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  text-align: center;
}
.focused-availability p {
  margin: 6px 0 0;
  color: var(--muted);
}

/* Offre d'activation distincte du contenu de la page exemple. */
.demo-offer-cta {
  width: min(720px, 100%);
  display: grid;
  gap: 18px;
  padding: clamp(24px, 5vw, 34px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}
.demo-offer-copy { display: grid; gap: 8px; }
.demo-offer-kicker {
  color: var(--blue-600);
  font-size: .86rem;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.demo-offer-cta h2 { margin: 0; color: var(--blue-900); }
.demo-end-divider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.demo-end-divider::before,
.demo-end-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #cbd7ea;
}
.demo-end-divider span { white-space: nowrap; }
.demo-offer-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  text-align: left;
}
.demo-offer-detail {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.7);
}
.demo-offer-detail-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  font-weight: 950;
}
.demo-offer-free .demo-offer-detail-icon { color: #087a50; background: #e8faf2; }
.demo-offer-price .demo-offer-detail-icon { color: var(--blue-600); background: var(--blue-50); }
.demo-offer-detail span:last-child { display: grid; gap: 2px; }
.demo-offer-detail strong { color: var(--blue-900); font-size: .9rem; }
.demo-offer-detail small { color: var(--muted); font-weight: 700; }
.demo-offer-button {
  justify-self: center;
  color: #fff;
  background: var(--blue-600);
  border-color: var(--blue-600);
  box-shadow: 0 12px 28px rgba(11, 85, 255, .24);
}
.demo-offer-button:hover { background: var(--blue-700); border-color: var(--blue-700); }

.demo-activation-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f5f9ff 0%, #fff 45%, #f4fff9 100%);
}
.demo-activation-container { max-width: 1060px; }
.demo-activation-intro { max-width: 720px; margin: 24px auto 30px; text-align: center; }
.demo-activation-intro h1 { margin: 12px 0 10px; }
.demo-activation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.demo-activation-card {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(7, 22, 65, .09);
}
.demo-call-card { border-top: 4px solid var(--blue-600); }
.demo-account-card { border: 2px solid #18b979; border-top-width: 4px; }
.activation-card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--blue-600);
  background: var(--blue-50);
  font-size: 1.35rem;
  font-weight: 950;
}
.demo-account-card .activation-card-icon { color: #087a50; background: #e8faf2; }
.activation-card-label { color: var(--muted); font-size: .86rem; font-weight: 900; text-transform: uppercase; }
.demo-activation-card h2 { margin: -5px 0 0; }
.demo-activation-card > p { margin: 0; color: var(--muted); font-weight: 650; }
.demo-activation-form { display: grid; gap: 13px; margin-top: 4px; }
.demo-activation-form label { display: grid; gap: 7px; color: var(--blue-900); font-weight: 850; }
.demo-activation-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--blue-900);
  background: #fbfdff;
  outline: none;
}
.demo-activation-form input:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(11, 85, 255, .12);
}
.demo-schedule-picker {
  display: grid;
  gap: 13px;
  padding: 16px;
  border: 1px solid #d7e3f7;
  border-radius: 16px;
  background: #f8fbff;
}
.demo-schedule-heading {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--blue-900);
}
.demo-schedule-heading > span:last-child { display: grid; gap: 2px; }
.demo-schedule-heading small { color: var(--muted); font-weight: 650; }
.demo-schedule-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  color: var(--blue-600);
  background: var(--blue-50);
  font-size: 1.15rem;
}
.demo-date-shortcuts { display: flex; flex-wrap: wrap; gap: 7px; }
.demo-date-chip {
  border: 1px solid #cbdafa;
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--blue-600);
  background: #fff;
  font: inherit;
  font-size: .82rem;
  font-weight: 800;
  cursor: pointer;
}
.demo-date-chip:hover,
.demo-date-chip.is-selected {
  border-color: var(--blue-600);
  color: #fff;
  background: var(--blue-600);
}
.demo-time-picker { border: 0; padding: 0; margin: 0; }
.demo-time-picker legend {
  padding: 0;
  margin-bottom: 8px;
  color: var(--blue-900);
  font-size: .9rem;
  font-weight: 850;
}
.demo-time-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.demo-time-choice { position: relative; cursor: pointer; }
.demo-time-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.demo-time-choice span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid #cbdafa;
  border-radius: 10px;
  color: var(--blue-900);
  background: #fff;
  font-weight: 850;
  transition: border-color .18s ease, color .18s ease, background .18s ease, box-shadow .18s ease;
}
.demo-time-choice:hover span,
.demo-time-choice input:checked + span {
  border-color: var(--blue-600);
  color: #fff;
  background: var(--blue-600);
  box-shadow: 0 5px 14px rgba(11, 85, 255, .18);
}
.demo-time-choice input:focus-visible + span { box-shadow: 0 0 0 4px rgba(11, 85, 255, .14); }
.activation-price-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  padding: 12px 14px;
  border-radius: 12px;
  background: #e8faf2;
  color: #087a50;
}
.activation-price-line strong { font-size: 1.05rem; }
.activation-price-line span { font-weight: 750; }
.activation-reassurance { color: var(--muted); line-height: 1.45; }
.demo-activation-confirmation {
  max-width: 660px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid #8de0bd;
  border-radius: 18px;
  background: #f0fff8;
  text-align: center;
}
.demo-activation-confirmation strong { color: #087a50; font-size: 1.15rem; }
.demo-activation-confirmation p { color: #356b57; font-weight: 650; }
.trial-card-note {
  padding: 10px 12px;
  border-radius: 12px;
  background: #e8faf2;
  color: #087a50;
  font-weight: 750;
}

@media (max-width: 760px) {
  .demo-activation-grid { grid-template-columns: 1fr; }
  .demo-offer-cta { text-align: left; }
  .demo-offer-button { justify-self: stretch; }
}
@media (max-width: 520px) {
  .demo-offer-details { grid-template-columns: 1fr; }
  .demo-end-divider { gap: 9px; font-size: .7rem; }
}
.quick-confirmation {
  justify-items: center;
  text-align: center;
}

.kpi-panel {
  display: grid;
  gap: 22px;
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.kpi-grid div {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 20px;
  background: var(--blue-50);
}
.kpi-grid span {
  color: var(--muted);
  font-weight: 800;
}
.kpi-grid strong {
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}
.period-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.period-switch a {
  padding: 9px 13px;
  color: var(--muted);
  border-radius: 999px;
  font-weight: 850;
}
.period-switch a.active {
  color: white;
  background: var(--blue-600);
}
.kpi-chart {
  display: grid;
  grid-template-columns: repeat(14, minmax(34px, 1fr));
  gap: 10px;
  min-height: 230px;
  overflow-x: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, var(--blue-50));
}
.chart-column {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 10px;
  min-width: 34px;
}
.chart-bars {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
  height: 170px;
}
.bar {
  width: 8px;
  min-height: 3px;
  border-radius: 999px 999px 0 0;
}
.bar.visits,
.chart-legend .visits { background: #95a3bd; }
.bar.captured,
.chart-legend .captured { background: var(--blue-600); }
.bar.contacted,
.chart-legend .contacted { background: var(--green); }
.chart-column small {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}
.chart-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 800;
}
.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.chart-legend b {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dev-reset-link {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--blue-50);
}
.dev-reset-link a {
  overflow-wrap: anywhere;
  font-weight: 800;
}

.compact-home-hero .lead,
.compact-page-hero .lead {
  max-width: 590px;
}
.allopro-product-visual {
  min-height: 430px;
  align-content: center;
  gap: 12px;
}
.hero-speed-card {
  justify-self: start;
  width: min(100%, 520px);
  padding: 0 2px;
}
.hero-speed-card strong {
  color: var(--blue-900);
  display: block;
  font-size: clamp(1.75rem, 2.7vw, 2.55rem);
  line-height: 1.04;
  letter-spacing: 0;
}
.product-screen {
  display: grid;
  gap: 16px;
  width: min(100%, 520px);
  min-height: 360px;
  padding: 22px;
  border: 1px solid rgba(11,85,255,.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 86% 8%, rgba(20,199,129,.16), transparent 26%),
    linear-gradient(180deg, #ffffff, #f5f9ff);
  box-shadow: 0 28px 74px rgba(7,22,65,.13);
}
.product-screen-head,
.product-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.product-screen-head {
  padding: 12px 14px;
  border: 1px solid rgba(216,229,255,.9);
  border-radius: 16px;
  background: rgba(255,255,255,.86);
}
.product-screen-head span,
.product-request-card span,
.product-list span {
  color: var(--muted);
  font-weight: 850;
}
.product-screen-head b {
  padding: 6px 10px;
  color: #047857;
  border-radius: 999px;
  background: #e6fbf0;
  font-size: .86rem;
}
.product-request-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(11,85,255,.2);
  border-radius: 20px;
  background: white;
  box-shadow: 0 18px 46px rgba(7,22,65,.08);
}
.product-request-card strong {
  color: var(--blue-900);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
}
.product-request-card small {
  color: var(--muted);
  font-weight: 750;
}
.product-list {
  display: grid;
  gap: 10px;
}
.product-list div {
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(216,229,255,.86);
  border-radius: 15px;
  background: rgba(255,255,255,.82);
}
.product-list strong {
  color: var(--blue-900);
  text-align: right;
}
.compact-result-card {
  position: absolute;
  right: -8px;
  bottom: -14px;
  display: grid;
  gap: 5px;
  width: min(330px, 80%);
  padding: 18px;
  border: 1px solid rgba(216,229,255,.95);
  border-radius: 20px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 24px 60px rgba(7,22,65,.14);
}
.compact-result-card span,
.compact-result-card small {
  color: var(--muted);
  font-weight: 750;
}
.compact-result-card strong {
  color: var(--blue-900);
  font-size: 1.08rem;
}
.compact-proof {
  margin-top: 20px;
}
.hero-offer-list {
  display: grid;
  gap: 10px;
  max-width: 1014px;
  margin: 18px auto 0;
  text-align: left;
}
.hero-offer-list article {
  display: grid;
  grid-template-columns: minmax(132px, .28fr) minmax(0, 1fr) minmax(92px, auto);
  gap: 18px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(216,229,255,.95);
  border-radius: 15px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 26px rgba(7,22,65,.045);
}
.hero-offer-list article > * {
  min-width: 0;
}
.hero-offer-list article.is-trial-row {
  border-color: rgba(20,199,129,.42);
  background: linear-gradient(180deg, #f9fffc, #f4fff9);
}
.hero-offer-list div {
  display: grid;
  gap: 4px;
}
.hero-offer-list span {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 900;
}
.hero-offer-list strong {
  color: var(--blue-900);
  font-size: 1.08rem;
  line-height: 1.1;
}
.offer-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0;
  padding: 0;
  color: var(--blue-900);
  font-weight: 800;
  line-height: 1.25;
  list-style: none;
}
.offer-bullets li {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  overflow-wrap: anywhere;
}
.offer-bullets li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(11,85,255,.09);
}
.is-trial-row .offer-bullets li::before {
  background: #12a66a;
  box-shadow: 0 0 0 4px rgba(18,166,106,.1);
}
.hero-offer-list b {
  justify-self: end;
  min-width: 82px;
  padding: 8px 11px;
  color: var(--blue-700);
  border-radius: 999px;
  background: var(--blue-100);
  font-size: .82rem;
  text-align: center;
  white-space: nowrap;
}
.hero-offer-list .is-trial-row b {
  color: #047857;
  background: #e6fbf0;
}
.compact-offer-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
  max-width: 760px;
  margin-top: 22px;
}
.compact-offer-strip article {
  display: grid;
  gap: 6px;
  min-height: 120px;
  align-content: center;
  padding: 18px 14px;
  text-align: center;
  border: 1px solid rgba(216,229,255,.95);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 44px rgba(7,22,65,.06);
}
.is-free-offer {
  position: relative;
  overflow: hidden;
  border: 2px solid #18b979 !important;
  background: #ffffff !important;
  padding-top: 28px !important;
  box-shadow: 0 24px 64px rgba(6, 95, 70, .15) !important;
}
.is-free-offer::before {
  content: "OFFERT";
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  color: #ffffff;
  background: #12a66a;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 950;
  line-height: 1;
}
.is-free-offer span,
.is-free-offer small {
  color: #147552 !important;
}
.is-free-offer strong {
  color: #064e3b !important;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem) !important;
}
.compact-offer-strip span,
.compact-offer-strip small {
  color: var(--muted);
  font-weight: 800;
}
.compact-offer-strip span { font-size: .9rem; }
.compact-offer-strip small { font-size: .82rem; }
.compact-offer-strip strong {
  color: var(--blue-900);
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  line-height: 1.1;
}
.compact-section-head {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 22px;
}
.compact-section-head h2 {
  margin: 0;
}
.compact-step-grid,
.compact-preview-grid,
.compact-pricing-layout {
  display: grid;
  gap: 18px;
}
.compact-step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.compact-action-path {
  gap: 28px;
}
.compact-step-grid article,
.compact-phone-card,
.compact-booking-card,
.compact-status-board,
.compact-offer-card,
.compact-tariff-side {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 52px rgba(7,22,65,.07);
}
.compact-step-grid article {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 164px;
  padding: 24px;
}
.compact-action-path article:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -27px;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: white;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 12px 28px rgba(11,85,255,.22);
  transform: translateY(-50%);
}
.compact-action-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.compact-action-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--blue-700);
  border-radius: 18px;
  background: var(--blue-100);
}
.compact-action-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.compact-step-grid b,
.compact-flow span,
.compact-timeline b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: white;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  box-shadow: 0 12px 28px rgba(11,85,255,.2);
}
.compact-step-grid strong,
.compact-card-title {
  display: block;
  color: var(--blue-900);
  font-size: 1.18rem;
  line-height: 1.15;
}
.compact-step-grid span,
.compact-flow small,
.compact-timeline span {
  color: var(--muted);
  font-weight: 700;
}

/* Parcours client — cartes étapes plus soignées et pro */
.compact-action-path {
  gap: 30px;
}
.compact-action-path article {
  padding: 30px 28px 28px;
  border-radius: 22px;
  border: 1px solid rgba(216,229,255,.9);
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  box-shadow: 0 20px 48px rgba(7,22,65,.08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.compact-action-path article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-500));
}
.compact-action-path article:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(11,85,255,.16);
  border-color: rgba(11,85,255,.28);
}
.compact-action-path .compact-action-head b {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .02em;
  background: linear-gradient(140deg, var(--blue-500), var(--blue-700));
  box-shadow: 0 14px 30px rgba(11,85,255,.28);
}
.compact-action-path .compact-action-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  color: var(--blue-600);
  background: linear-gradient(150deg, #eef4ff 0%, #e3edff 100%);
  border: 1px solid rgba(11,85,255,.14);
}
.compact-action-path .compact-action-icon svg {
  width: 26px;
  height: 26px;
}
.compact-action-path strong {
  font-size: 1.24rem;
  font-weight: 850;
  letter-spacing: -0.01em;
  margin-top: 4px;
}
.compact-action-path span {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.5;
}
.compact-action-path article:not(:last-child)::after {
  width: 36px;
  height: 36px;
  right: -33px;
  color: var(--blue-600);
  background: #ffffff;
  border: 1px solid rgba(11,85,255,.22);
  box-shadow: 0 10px 24px rgba(7,22,65,.1);
  font-size: 1.02rem;
  font-weight: 700;
}
.compact-flow-section {
  background: linear-gradient(180deg, rgba(234,242,255,.42), rgba(255,255,255,.8));
  border-block: 1px solid rgba(216,229,255,.75);
}
.compact-flow-grid {
  display: grid;
  grid-template-columns: minmax(0, .65fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}
.compact-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.compact-flow article {
  display: grid;
  gap: 8px;
  min-height: 132px;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(216,229,255,.9);
  border-radius: 20px;
  background: white;
}
.compact-preview-grid {
  grid-template-columns: .8fr 1fr;
  align-items: stretch;
}
.compact-phone-card,
.compact-booking-card {
  display: grid;
  gap: 16px;
  padding: 28px;
}
.compact-booking-card h3 {
  margin: 0;
  font-size: 1.7rem;
}
.compact-choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.compact-choice-row button,
.compact-choice-row span,
.compact-field-preview {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  color: var(--blue-900);
  background: #fbfdff;
  font-weight: 850;
  text-align: center;
}
.compact-choice-row button.active,
.compact-choice-row span.active {
  color: white;
  border-color: var(--blue-600);
  background: var(--blue-600);
}
.compact-field-preview {
  color: var(--muted);
  text-align: center;
}
.compact-status-board {
  display: grid;
  gap: 10px;
  padding: 18px;
}
.compact-status-board div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: var(--blue-50);
}
.compact-status-board strong {
  color: var(--blue-700);
}
.compact-status-board span {
  color: var(--muted);
  font-weight: 750;
}
.smart-demo-form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.smart-demo-form .small-note {
  margin: 0;
}
.compact-timeline {
  display: grid;
  gap: 12px;
}
.compact-timeline article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(216,229,255,.9);
  border-radius: 18px;
  background: white;
}
.compact-timeline strong {
  display: block;
  color: var(--blue-900);
  font-size: 1.08rem;
}
.compact-pricing-head {
  display: grid;
  justify-items: center;
  text-align: center;
}
.compact-pricing-hero {
  padding-bottom: 22px;
}
.compact-pricing-head h1 {
  max-width: 820px;
}
.compact-pricing-head .lead {
  max-width: 720px;
}
.compact-pricing-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, .48fr);
  align-items: start;
}
.compact-offer-card {
  display: grid;
  gap: 18px;
}
.compact-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.compact-price-grid div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(216,229,255,.9);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, var(--blue-50));
  text-align: center;
}
.compact-price-grid span,
.compact-price-grid small {
  color: var(--muted);
  font-weight: 800;
}
.compact-price-grid strong {
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}
.compact-included-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.compact-included-line span {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 10px;
  color: var(--blue-900);
  font-weight: 800;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.compact-check-list {
  margin-top: 16px;
}
.compact-option-row .option-card {
  border-radius: 22px;
}
.contact-grid.compact-contact-grid {
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
}
.compact-contact-form textarea {
  resize: vertical;
}
.compact-demo-card {
  display: grid;
  gap: 18px;
}
.compact-demo-card h2 {
  margin: 0;
}
.compact-demo-steps {
  gap: 10px;
}
.compact-demo-steps div {
  padding: 14px;
  border-radius: 16px;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
  }
  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .hero-floating-card {
    animation: softFloat 5.5s ease-in-out infinite;
  }
  .hero-card-booking {
    animation-delay: .9s;
  }
  .btn,
  .tool-card,
  .flow-node,
  .process-grid article,
  .pricing-card,
  .option-card,
  .panel,
  .contact-card,
  .form-card,
  .operation-card,
  .stack-preview-card,
  .hero-mini-board,
  .price-stamp {
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  }
  .tool-card:hover,
  .flow-node:hover,
  .process-grid article:hover,
  .pricing-card:hover,
  .option-card:hover,
  .panel:hover,
  .contact-card:hover,
  .form-card:hover,
  .operation-card:hover,
  .stack-preview-card:hover,
  .hero-mini-board:hover,
  .price-stamp:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 72px rgba(7,22,65,.11);
  }
}

@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-visual { position: relative; min-height: 620px; }
.pro-card {
  position: absolute;
  top: 0;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  z-index: 4;
}
.pro-card span { color: var(--muted); display: block; font-size: .9rem; }
.pro-avatar, .sender-avatar {
  border-radius: 50%;
  background:
    radial-gradient(circle at 56% 24%, #f5c29b 0 14%, transparent 15%),
    linear-gradient(135deg, #0a1d55, #1260ff);
  box-shadow: inset 0 0 0 3px #fff;
}
.pro-avatar { width: 48px; height: 48px; }
.sender-avatar { width: 48px; height: 48px; }
.phone-mockup {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(310px, 54%);
  height: 570px;
  background: linear-gradient(180deg, #fff, #f9fbff);
  border: 10px solid #10141c;
  border-radius: 48px;
  box-shadow: 0 34px 80px rgba(7,22,65,.22);
  padding: 26px 22px;
  z-index: 3;
}
.phone-top {
  width: 86px;
  height: 24px;
  border-radius: 0 0 16px 16px;
  background: #10141c;
  margin: -26px auto 22px;
}
.sender { text-align: center; display: grid; place-items: center; gap: 4px; padding-bottom: 18px; border-bottom: 1px solid #edf2ff; }
.sender strong { font-size: .95rem; }
.sms-bubble {
  margin-top: 28px;
  background: #f0f2f7;
  border-radius: 24px 24px 24px 8px;
  padding: 16px;
  color: #111827;
  font-size: .92rem;
}
.sms-bubble p { margin-bottom: 12px; }
.sms-bubble a,
.sms-bubble .sms-bubble-link { font-weight: 850; color: var(--blue-600); }
.booking-card {
  position: absolute;
  right: 0;
  bottom: 54px;
  width: min(420px, 70%);
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 68px 34px 34px;
  z-index: 2;
}
.browser-bar {
  position: absolute;
  inset: 0 0 auto 0;
  height: 42px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  color: var(--muted);
}
.browser-bar span { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; }
.browser-bar span:nth-child(2) { background: #ffbd2e; }
.browser-bar span:nth-child(3) { background: #28c840; }
.browser-bar small { margin-left: 8px; }
.booking-card h3 { font-size: 1.7rem; }
.slots { display: flex; gap: 10px; margin: 20px 0; }
.slots button,
.slots span {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 10px;
  background: #fff;
  color: var(--blue-900);
  font-weight: 800;
  text-align: center;
}
.slots .active { color: white; background: var(--blue-600); border-color: var(--blue-600); }
.booking-cta { display: block; width: 100%; border: 0; border-radius: 12px; color: white; font-weight: 900; background: var(--blue-600); padding: 14px; text-align: center; }

.section-heading { max-width: 720px; margin-bottom: 28px; }
.tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tool-card, .value-card, .panel, .pricing-card, .form-card, .contact-card, .content-card {
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 52px rgba(7,22,65,.07);
}
.tool-card { padding: 28px; }
.tool-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--blue-100);
  margin-bottom: 20px;
  font-size: 1.55rem;
}
.tool-card p, .value-card span, .pricing-card p, .panel p, .contact-card p, .content-card p { color: var(--muted); }

.muted-section { background: linear-gradient(180deg, rgba(234,242,255,.42), rgba(255,255,255,.6)); border-block: 1px solid rgba(216,229,255,.75); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.value-card { padding: 24px; min-height: 152px; }
.value-card strong { display: block; font-size: 1.25rem; margin-bottom: 10px; letter-spacing: 0; }

.cta-band {
  color: white;
  border-radius: 32px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  background:
    radial-gradient(circle at 88% 16%, rgba(255,255,255,.25), transparent 22%),
    linear-gradient(135deg, #0b55ff, #003bd1);
  box-shadow: 0 30px 80px rgba(11,85,255,.25);
}
.cta-band p { color: rgba(255,255,255,.82); max-width: 680px; margin-bottom: 0; }

.page-hero { text-align: left; padding-bottom: 20px; }
.page-hero h1 { margin-top: 20px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.steps article {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 16px 45px rgba(7,22,65,.06);
}
.steps span { color: var(--blue-600); font-weight: 950; font-size: 1.1rem; }
.steps p { color: var(--muted); }
.split-card {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 28px;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow);
}
.sms-preview-card {
  padding: 24px;
  background: #f0f2f7;
  border-radius: 24px 24px 24px 8px;
  color: #111827;
}
.sms-preview-card strong { display: block; margin-bottom: 14px; }
.sms-preview-card a { font-weight: 900; display: inline-block; margin-bottom: 12px; }
.sms-preview-card.compact { font-size: .96rem; box-shadow: none; }

.pricing-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .7fr); gap: 22px; align-items: start; }
.pricing-card { padding: 28px; }
.pricing-card.featured {
  border-color: rgba(11,85,255,.42);
  box-shadow: 0 0 0 1px rgba(11,85,255,.18), 0 26px 70px rgba(11,85,255,.10);
}
.badge { display: inline-block; background: var(--blue-100); color: var(--blue-700); border-radius: 999px; padding: 8px 12px; font-weight: 900; margin-bottom: 18px; }
.price { font-size: 3rem; line-height: 1; font-weight: 950; letter-spacing: 0; color: var(--blue-900) !important; margin-bottom: 10px; }
.trial { color: var(--blue-600) !important; font-weight: 850; }
.check-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; color: var(--blue-900); font-weight: 650; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 950; }
.check-list.muted li { color: var(--muted); }
.small-note { font-size: .92rem; color: var(--muted); margin: 16px 0 0; }

.auth-section { min-height: 64vh; }
.auth-grid { display: grid; grid-template-columns: .8fr 1fr; gap: 34px; align-items: start; }
.small-auth { grid-template-columns: .9fr .78fr; }
.auth-copy h1 { margin-top: 20px; }
.form-card { padding: 26px; }
.form-card label { display: grid; gap: 8px; font-weight: 800; margin-bottom: 16px; }

/* Formulaire multi-étapes (inscription) */
.form-step[hidden] { display: none; }
.form-step-nav {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}
.form-step-nav .btn { margin: 0; }
.form-step-nav [data-step-prev] { flex: 0 0 auto; }
.form-step-nav [data-step-next],
.form-step-nav [type="submit"] { flex: 1; }
.auth-roadmap [data-roadmap-step].is-current b {
  color: #fff;
  background: var(--blue-600);
}
.auth-roadmap [data-roadmap-step].is-done b {
  color: #fff;
  background: var(--green);
}
.auth-roadmap [data-roadmap-step].is-current span { color: var(--blue-900); }
.form-card input, .form-card textarea, .form-card select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  background: #fbfdff;
  color: var(--blue-900);
  outline: none;
}
.form-card input:focus, .form-card textarea:focus, .form-card select:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(11,85,255,.12); }
.password-field {
  position: relative;
  display: block;
}
.password-field input {
  padding-right: 56px;
}
.password-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: 12px;
  color: var(--blue-900);
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
}
.password-toggle:hover,
.password-toggle.is-visible {
  background: var(--blue-50);
}
.phone-input-shell {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfdff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.phone-input-shell:focus-within {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(11,85,255,.12);
}
.phone-prefix {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: var(--blue-900);
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--blue-50));
  font-weight: 900;
  white-space: nowrap;
}
.phone-prefix span {
  font-size: 1.05rem;
}
.phone-input-shell input {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.mini-card { margin-top: 28px; padding: 22px; border-radius: var(--radius-md); background: white; border: 1px solid var(--line); box-shadow: 0 18px 52px rgba(7,22,65,.07); }
.mini-card strong, .mini-card span { display: block; }
.mini-card span { color: var(--blue-600); font-weight: 900; margin-top: 8px; }

.dashboard-hero { padding-bottom: 30px; }
.dashboard-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.dashboard-head > * { min-width: 0; }
.dashboard-head h1 {
  margin-top: 20px;
  overflow-wrap: anywhere;
}
.status-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px;
  min-width: min(100%, 560px);
}
.status-card { position: relative; min-width: 0; padding: 24px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: white; box-shadow: var(--shadow); }
.status-card span { color: var(--muted); display: block; }
.status-card strong { font-size: 1.6rem; }
.status-card small { display: block; margin-top: 8px; color: var(--muted); font-weight: 700; }
.status-card-action {
  display: block;
  margin: 16px 0 0;
}
.status-card.active { border-color: rgba(20,199,129,.35); background: linear-gradient(180deg, #f1fff9, #fff); }
.status-card.inactive {
  border-color: rgba(245, 158, 11, .38);
  background: linear-gradient(180deg, #fff8e6, #fff);
  box-shadow: 0 24px 70px rgba(180, 83, 9, .12);
}
.status-card.inactive::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #f59e0b;
  box-shadow: 0 0 0 5px rgba(245, 158, 11, .15);
}
.status-card.inactive strong {
  color: #9a3412;
}
.status-card.inactive small {
  color: #7c2d12;
}
.dashboard-grid { display: grid; grid-template-columns: 1.35fr .75fr; gap: 20px; }
.panel { padding: 28px; }
.large-panel { grid-column: span 1; }
.settings-list { display: grid; gap: 12px; margin: 24px 0 6px; }
.settings-list div { display: flex; justify-content: space-between; gap: 18px; padding: 14px; border-radius: 14px; background: var(--blue-50); }
.settings-list span { color: var(--muted); }
.settings-list div.is-missing {
  border: 1px solid rgba(245,158,11,.42);
  background: #fff8e6;
}
.settings-list div.is-missing span,
.settings-list div.is-missing strong {
  color: #9a3412;
}
.next-panel { grid-column: span 1; }
.timeline { margin: 0; padding-left: 20px; color: var(--muted); font-weight: 650; }
.timeline li { margin-bottom: 10px; }

.contact-grid { display: grid; grid-template-columns: 1fr .75fr; gap: 24px; align-items: start; }
.contact-card { padding: 30px; }
.legal-page .content-card { padding: 34px; }
.legal-updated {
  display: inline-flex;
  margin: 8px 0 0;
  padding: 9px 12px;
  color: var(--muted);
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
}
.legal-layout {
  display: grid;
  grid-template-columns: minmax(250px, .35fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.legal-summary {
  position: sticky;
  top: 100px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 52px rgba(7,22,65,.07);
}
.legal-summary h2 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.legal-summary ul,
.legal-content ul {
  margin: 0;
  padding-left: 20px;
}
.legal-summary li,
.legal-content li {
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 650;
}
.legal-content {
  display: grid;
  gap: 18px;
}
.legal-content h2 {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(216,229,255,.78);
  font-size: clamp(1.45rem, 2vw, 2rem);
}
.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.legal-content p {
  color: var(--muted);
}
.legal-content strong {
  color: var(--blue-900);
}
.legal-note {
  padding: 16px 18px;
  border: 1px solid rgba(249,184,55,.28);
  border-radius: 18px;
  background: #fffaf0;
  color: #7a5200 !important;
  font-weight: 750;
}
.legal-definition-list {
  display: grid;
  gap: 10px;
  margin: 0;
}
.legal-definition-list div {
  display: grid;
  grid-template-columns: minmax(160px, .35fr) minmax(0, 1fr);
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(216,229,255,.78);
  border-radius: 16px;
  background: var(--blue-50);
}
.legal-definition-list dt {
  color: var(--muted);
  font-weight: 850;
}
.legal-definition-list dd {
  margin: 0;
  color: var(--blue-900);
  font-weight: 750;
  overflow-wrap: anywhere;
}
.legal-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.legal-table div {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
}
.legal-table div:not(:last-child) {
  border-bottom: 1px solid var(--line);
}
.legal-table div:first-child {
  color: white;
  background: var(--blue-600);
}
.legal-table strong,
.legal-table span {
  padding: 14px 16px;
}
.legal-table strong:not(:last-child),
.legal-table span:not(:last-child) {
  border-right: 1px solid var(--line);
}
.legal-table span {
  color: var(--muted);
  font-weight: 650;
  background: #fff;
}

.footer { padding: 56px 0; border-top: 1px solid var(--line); background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .5fr .5fr; gap: 28px; }
.footer p { color: var(--muted); max-width: 420px; }
.footer h4 { margin: 0 0 12px; }
.footer a:not(.brand) { display: block; color: var(--muted); margin-bottom: 10px; font-weight: 650; }
.footer-brand { margin-bottom: 14px; }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--blue-900); padding: 10px 14px; font-weight: 800; }
  .nav-menu {
    position: absolute;
    top: 76px;
    inset-inline: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .hero-grid, .hero-pro-grid, .page-hero-grid, .feature-duo, .infographic-grid, .operation-grid, .product-grid, .offer-grid, .auth-grid, .small-auth, .split-card, .pricing-grid, .contact-grid, .dashboard-grid, .profile-editor-grid, .public-profile-grid, .legal-layout, .compact-flow-grid, .compact-preview-grid, .compact-pricing-layout, .compact-contact-grid, .call-forwarding-layout, .forwarding-help-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 650px; }
  .hero-showcase { min-height: 560px; }
  .hero-photo img { height: 540px; object-position: 50% 0; }
  .hero-card-sms { left: 18px; }
  .hero-card-booking { right: 18px; }
  .tool-grid, .steps, .value-grid, .process-grid, .flow-diagram, .metric-strip, .option-row, .activation-steps, .compact-step-grid, .compact-flow, .compact-included-line, .compact-offer-strip { grid-template-columns: repeat(2, 1fr); }
  .compact-action-path article:not(:last-child)::after { display: none; }
  .flow-node:not(:last-child)::after { display: none; }
  .metric-strip article:nth-child(2n) { border-right: 0; }
  .metric-strip article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-grid article:not(:last-child)::after { display: none; }
  .trade-grid { grid-template-columns: repeat(3, 1fr); }
  .trade-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .trade-grid article:nth-child(3n+1), .trade-grid article:nth-child(3n+2) { border-right: 1px solid var(--line); }
  .auth-visual-copy { position: static; }
  .mini-booking {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }
  .mini-result {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 18px;
  }
  .legal-summary {
    position: static;
  }
  .public-preview-card {
    position: static;
  }
  .public-reassurance,
  .kpi-grid,
  .lead-details {
    grid-template-columns: repeat(2, 1fr);
  }
  .slot-fieldset {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .forwarding-code-list article,
  .forwarding-primary-code {
    grid-template-columns: 1fr;
  }
  .forwarding-code-list code,
  .forwarding-primary-code code {
    width: 100%;
  }
  .cta-band, .dashboard-head { flex-direction: column; align-items: flex-start; }
  .status-stack { width: 100%; min-width: 0; grid-template-columns: 1fr; }
  .status-card { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container, .narrow { width: min(100% - 28px, 1120px); }
  .section-pad { padding: 48px 0; }
  .compact-top { padding-top: 10px; }
  h1 { font-size: clamp(1.95rem, 8.2vw, 2.55rem); line-height: 1.05; }
  h2 { font-size: clamp(1.62rem, 7.2vw, 2.05rem); }
  .lead,
  .auth-copy p,
  .pricing-trial-highlight,
  .plan-overage-note {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .hero-pro .hero-copy h1,
  .hero-copy h1,
  .page-hero h1,
  .auth-copy h1,
  .compact-pricing-head h1 {
    max-width: min(100%, 310px) !important;
  }
  .hero-pro .hero-copy .hero-split-title {
    max-width: min(100%, 360px) !important;
  }
  .hero-message-split {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
    margin-top: 20px;
  }
  .hero-benefits {
    width: min(100%, 340px);
    margin-inline: auto;
    padding-left: 0;
    padding-top: 14px;
    border-left: 0;
    border-top: 2px solid rgba(11,85,255,.22);
  }
  .hero-split-title {
    gap: 6px;
    font-size: clamp(2.05rem, 9.2vw, 2.75rem);
    line-height: 1.02;
  }
  .hero-split-title .title-support {
    font-size: clamp(.875rem, 3.6vw, 1.1rem);
  }
  .hero-copy .lead,
  .page-hero .lead,
  .auth-copy p,
  .compact-pricing-head .lead {
    max-width: min(100%, 340px);
  }
  .compact-pricing-head h1,
  .compact-pricing-head .lead {
    margin-inline: auto;
  }
  .compact-pricing-head .lead {
    width: min(100%, 300px) !important;
    max-width: 300px !important;
  }
  .mobile-break {
    display: block;
  }
  .pricing-trial-highlight {
    width: min(100%, 300px) !important;
    max-width: 300px !important;
    padding: 12px 14px;
    font-size: .88rem;
    line-height: 1.42;
  }
  .hero-pro { padding-top: 32px; }
  .dashboard-head h1 {
    max-width: 100% !important;
    font-size: clamp(2rem, 9vw, 2.85rem);
  }
  .dashboard-head,
  .dashboard-head > *,
  .pro-dashboard-grid,
  .pro-dashboard-grid > *,
  .status-stack,
  .status-card {
    max-width: 100%;
    min-width: 0 !important;
  }
  .dashboard-head .lead {
    width: 100%;
    max-width: 100%;
  }
  .hero-proof,
  .compact-offer-strip { grid-template-columns: 1fr; }
  .hero-offer-list article {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 7px;
  }
  .hero-offer-list b {
    justify-self: start;
  }
  .hero-actions {
    margin: 24px 0 18px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-showcase { min-height: auto; }
  .allopro-product-visual {
    min-height: auto;
  }
  .hero-speed-card {
    justify-self: start;
    width: 100%;
    padding: 0;
  }
  .product-screen {
    min-height: 0;
    padding: 18px;
    border-radius: 22px;
  }
  .product-screen-head,
  .product-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .product-list strong {
    text-align: left;
  }
  .compact-status-board div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .hero-photo { border-radius: 22px; }
  .hero-photo img { height: auto; max-height: 520px; }
  .hero-floating-card {
    position: static;
    margin-top: 12px;
    min-width: 0;
  }
  .hero-visual { min-height: 720px; }
  .pro-card { left: 0; right: auto; }
  .phone-mockup { width: 86%; height: 545px; }
  .booking-card { width: 88%; right: 0; bottom: 0; padding-inline: 22px; }
  .duo-panel { grid-template-columns: 1fr; padding: 18px; }
  .duo-plus { margin-inline: auto; }
  .section-title-line { grid-template-columns: 1fr; gap: 14px; }
  .section-title-line > span { display: none; }
  .tool-grid, .steps, .value-grid, .process-grid, .flow-diagram, .metric-strip, .option-row, .auth-roadmap, .activation-steps, .form-row, .public-reassurance, .kpi-grid, .quick-form-grid, .choice-fieldset, .slot-fieldset, .lead-details, .trade-grid, .compact-step-grid, .compact-flow, .compact-price-grid, .compact-included-line, .compact-choice-row { grid-template-columns: 1fr; }
  .billing-visual-grid { grid-template-columns: 1fr; }
  .compact-result-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }
  .compact-step-grid article,
  .compact-phone-card,
  .compact-booking-card,
  .compact-offer-card,
  .compact-tariff-side {
    border-radius: 20px;
    padding: 22px;
  }
  .process-grid article { min-height: auto; padding: 16px 8px 22px; }
  .flow-node { min-height: auto; }
  .hero-mini-board, .price-stamp, .operation-card, .stack-preview-card { border-radius: 22px; }
  .setup-timeline div { grid-template-columns: 1fr; }
  .setup-timeline b { grid-row: auto; }
  .stack-preview-card { min-height: auto; padding: 22px; }
  .sheet-row { display: grid; }
  .sheet-row strong { text-align: left; }
  .metric-strip article,
  .metric-strip article:nth-child(2n) {
    border-right: 0;
  }
  .metric-strip article:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }
  .preview-card { min-height: auto; }
  .preview-phone { width: 100%; min-height: auto; }
  .preview-browser {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
    padding-inline: 20px;
  }
  .trade-grid article, .trade-grid article:nth-child(3n+1), .trade-grid article:nth-child(3n+2) { border-right: 0; }
  .login-preview div { grid-template-columns: 1fr; text-align: center; }
  .lead-main,
  .lead-item,
  .dashboard-actions,
  .panel-headline {
    align-items: flex-start;
    flex-direction: column;
  }
  .public-profile-page {
    padding: 44px 0;
  }
  .public-request-card {
    padding: 22px;
  }
  .quick-contact-shell {
    border-radius: 24px;
  }
  .legal-page .content-card,
  .legal-summary {
    padding: 22px;
  }
  .legal-definition-list div,
  .legal-table div {
    grid-template-columns: 1fr;
  }
  .legal-table strong:not(:last-child),
  .legal-table span:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .forwarding-control-grid div {
    display: grid;
  }
  .forwarding-control-grid code {
    width: 100%;
  }
  .hero-actions { flex-direction: column; }
  .btn-large { width: 100%; }
  .cta-band { padding: 28px; }
  .settings-list div { display: grid; }
  .price { font-size: 2.35rem; }
}

.admin-page {
  background: #f6f9ff;
}
.admin-shell {
  padding: 34px 0 72px;
}
.admin-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.admin-hero.compact {
  align-items: center;
}
.admin-hero h1 {
  margin: 0;
  font-size: clamp(2.25rem, 4.8vw, 4.5rem);
  line-height: .95;
}
.admin-hero p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 750;
}
.admin-actions,
.admin-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}
.admin-action-row {
  justify-content: flex-start;
  margin: 20px 0;
}
.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.admin-kpi-grid.mini {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.admin-kpi-grid article,
.admin-status-strip div,
.admin-panel {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 46px rgba(7,22,65,.06);
}
.admin-kpi-grid article {
  display: grid;
  gap: 5px;
  min-height: 118px;
  padding: 17px;
  border-radius: 16px;
}
.admin-kpi-grid span,
.admin-status-strip span,
.admin-table small {
  color: var(--muted);
  font-weight: 800;
}
.admin-kpi-grid strong {
  color: var(--blue-900);
  font-size: 1.55rem;
  line-height: 1.05;
  overflow-wrap: anywhere;
}
.admin-kpi-grid small {
  color: var(--muted);
  font-weight: 700;
}
.admin-status-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 24px;
}
.admin-status-strip div {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 14px;
}
.admin-status-strip strong {
  font-size: 1.35rem;
}
.admin-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.admin-panel {
  min-width: 0;
  padding: 22px;
  border-radius: 18px;
}
.admin-panel h2 {
  margin: 0 0 16px;
  font-size: 1.45rem;
}
.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.admin-panel-head h2 {
  margin: 0;
}
.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}
.admin-table.wide {
  min-width: 980px;
}
.admin-table th,
.admin-table td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(216,229,255,.78);
  text-align: left;
  vertical-align: top;
}
.admin-table th {
  color: var(--muted);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: 0;
}
.admin-table td {
  color: var(--blue-900);
  font-weight: 750;
}
.admin-table td small,
.admin-table td span {
  display: block;
  overflow-wrap: anywhere;
}
.admin-table .admin-message-cell {
  min-width: 240px;
  max-width: 420px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.admin-pill {
  display: inline-flex !important;
  width: max-content;
  max-width: 100%;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: .8rem;
  font-weight: 900;
}
.admin-pill.status-active,
.admin-pill.status-trialing {
  background: #e6fbf0;
  color: #047857;
}
.admin-pill.status-past_due,
.admin-pill.status-unpaid,
.admin-pill.status-canceled {
  background: #fff1f2;
  color: #b42318;
}
.admin-pill.invoice-open {
  background: #fff7ed;
  color: #b45309;
}
.admin-pill.invoice-uncollectible {
  background: #fff1f2;
  color: #b42318;
}
.admin-pill.invoice-paid {
  background: #e6fbf0;
  color: #047857;
}
.admin-pill.invoice-void {
  background: #eef2f7;
  color: #475467;
}
.admin-full-panel {
  margin-top: 18px;
}
.admin-chart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
  gap: 18px;
  margin: 18px 0;
}
.admin-chart-panel {
  display: grid;
  gap: 14px;
}
.admin-chart-panel .admin-panel-head span {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 850;
}
.admin-demo-layout {
  display: grid;
  grid-template-columns: minmax(320px, .42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.admin-demo-form h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.admin-demo-url-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.admin-demo-url-field span {
  height: 100%;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--muted);
  font-weight: 900;
  background: var(--blue-50);
  border-right: 1px solid var(--line);
}
.admin-demo-url-field input {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.admin-demo-list-panel {
  min-width: 0;
}
.admin-demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.admin-demo-actions form {
  margin: 0;
}
.admin-color-swatch {
  width: 36px;
  height: 36px;
  display: inline-block !important;
  border: 1px solid rgba(7,22,65,.12);
  border-radius: 12px;
  background: var(--swatch-color);
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.56);
}
.admin-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 850;
}
.admin-chart-legend span,
.admin-horizontal-row > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.admin-chart-legend span::before,
.admin-horizontal-row > span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--blue-600);
}
.legend-visits::before { background: var(--blue-600) !important; }
.legend-accounts::before { background: #14c781 !important; }
.legend-leads::before { background: #f59e0b !important; }
.legend-revenue::before { background: #14c781 !important; }
.legend-cost::before { background: #ef4444 !important; }
.legend-profit::before { background: var(--blue-600) !important; }
.admin-day-chart {
  display: grid;
  grid-template-columns: repeat(14, minmax(26px, 1fr));
  gap: 9px;
  min-height: 210px;
  align-items: end;
  padding-top: 8px;
}
.admin-day-group {
  display: grid;
  gap: 8px;
  min-width: 0;
}
.admin-day-bars {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 3px;
  height: 168px;
  padding: 8px 4px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fbff, #edf4ff);
  border: 1px solid rgba(216,229,255,.72);
}
.admin-day-bars span {
  display: block;
  width: 8px;
  min-height: 4px;
  border-radius: 999px 999px 4px 4px;
}
.admin-day-bars span.is-zero {
  min-height: 0;
}
.bar-visits { background: var(--blue-600); }
.bar-accounts { background: #14c781; }
.bar-leads { background: #f59e0b; }
.admin-day-group small {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}
.admin-horizontal-chart {
  display: grid;
  gap: 12px;
}
.admin-horizontal-row {
  display: grid;
  grid-template-columns: minmax(120px, .85fr) minmax(120px, 1fr) auto;
  gap: 10px;
  align-items: center;
  color: var(--blue-900);
  font-weight: 850;
}
.admin-horizontal-row small {
  grid-column: 2 / -1;
  color: var(--muted);
  font-weight: 750;
}
.admin-horizontal-row > div {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7efff;
}
.admin-horizontal-row > div b {
  display: block;
  height: 100%;
  min-width: 2px;
  border-radius: inherit;
  background: var(--blue-600);
}
.admin-finance-chart {
  display: grid;
  gap: 12px;
}
.admin-finance-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(210px, auto);
  gap: 12px;
  align-items: center;
}
.admin-finance-row > span {
  color: var(--muted);
  font-weight: 850;
}
.admin-finance-row small {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  text-align: right;
}
.admin-finance-bars {
  display: grid;
  gap: 4px;
}
.admin-finance-bars i {
  display: block;
  height: 8px;
  min-width: 2px;
  border-radius: 999px;
}
.finance-revenue { background: #14c781; }
.finance-cost { background: #ef4444; }
.finance-profit { background: var(--blue-600); }
.finance-profit.negative { background: #f59e0b; }
.admin-filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 190px 190px auto;
  gap: 12px;
  align-items: end;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}
.admin-filter-bar label,
.admin-form-grid label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 850;
  min-width: 0;
}
.admin-filter-bar input,
.admin-filter-bar select,
.admin-form-grid input,
.admin-form-grid select,
.admin-form-grid textarea,
.admin-wide-panel textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  background: #fff;
  color: var(--blue-900);
  font-weight: 750;
}
.admin-filter-bar input:focus,
.admin-filter-bar select:focus,
.admin-form-grid input:focus,
.admin-form-grid select:focus,
.admin-form-grid textarea:focus,
.admin-wide-panel textarea:focus {
  outline: 0;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(11,85,255,.1);
}
.admin-edit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.admin-domain-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 12px;
}
.admin-domain-summary div {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(216,229,255,.82);
  border-radius: 12px;
  background: #f5f9ff;
}
.admin-domain-summary span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 850;
}
.admin-domain-summary strong {
  color: var(--blue-900);
  overflow-wrap: anywhere;
}
.admin-muted-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 750;
}
.admin-wide,
.admin-wide-panel,
.admin-save-bar {
  grid-column: 1 / -1;
}
.admin-check {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 10px !important;
  color: var(--blue-900) !important;
}
.admin-check input {
  width: 18px;
  height: 18px;
}
.admin-save-bar {
  position: sticky;
  bottom: 14px;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 44px rgba(7,22,65,.12);
}
.admin-danger-zone {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr);
  gap: 18px;
  align-items: start;
  margin: 22px 0;
  border-color: rgba(217,45,32,.26);
  background: #fff7f7;
}
.admin-danger-zone h2 {
  color: #b42318;
}
.admin-danger-zone p {
  margin: 0;
  color: #7a271a;
  font-weight: 750;
}
.admin-danger-zone form {
  display: grid;
  gap: 12px;
}
.admin-danger-zone label {
  display: grid;
  gap: 7px;
  color: #7a271a;
  font-weight: 850;
}
.admin-danger-zone input[type="text"],
.admin-danger-zone input[name="delete_confirmation"] {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(217,45,32,.28);
  border-radius: 12px;
  padding: 11px 12px;
  background: white;
  color: var(--blue-900);
  font-weight: 750;
}

@media (max-width: 1100px) {
  .admin-kpi-grid,
  .admin-kpi-grid.mini,
  .admin-status-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .admin-edit-grid,
  .admin-two-col,
  .admin-chart-layout,
  .admin-demo-layout,
  .admin-danger-zone {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .admin-hero {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-actions,
  .admin-action-row {
    justify-content: flex-start;
    width: 100%;
  }
  .admin-actions .btn,
  .admin-action-row .btn,
  .admin-action-row form {
    width: 100%;
  }
  .admin-kpi-grid,
  .admin-kpi-grid.mini,
  .admin-status-strip,
  .admin-filter-bar,
  .admin-form-grid,
  .admin-domain-summary {
    grid-template-columns: 1fr;
  }
  .admin-panel {
    padding: 18px;
  }
  .admin-day-chart {
    grid-template-columns: repeat(14, 34px);
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .admin-horizontal-row,
  .admin-finance-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .admin-horizontal-row small {
    grid-column: auto;
  }
  .admin-finance-row small {
    text-align: left;
  }
  .admin-save-bar .btn {
    width: 100%;
  }
}
