/* Reset compact (remplace Tailwind) — pour un rendu identique sans framework */
h1, h2, h3, h4, h5, h6, p, figure, ul, ol {
  margin: 0;
}

ul, ol {
  list-style: none;
  padding: 0;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

:root {
  --font-geist-sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --navy-950: #06143d;
  --navy-900: #0a1948;
  --navy-800: #172b61;
  --navy-700: #354874;
  --violet-700: #4320e8;
  --violet-600: #572cff;
  --violet-500: #7437ff;
  --violet-200: #dcd4ff;
  --violet-100: #f0edff;
  --violet-50: #f8f6ff;
  --gray-50: #fbfbfe;
  --gray-100: #f5f6fa;
  --gray-200: #e3e6f0;
  --gray-300: #d3d8e6;
  --gray-500: #75809d;
  --white: #fff;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fbfaff;
  color: var(--navy-950);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  margin: 0;
  min-width: 320px;
}

a {
  color: inherit;
}

.site-shell {
  background:
    radial-gradient(circle at 70% 14%, rgba(106, 59, 255, 0.08), transparent 27rem),
    linear-gradient(180deg, #fff 0, #fcfbff 52rem, #fff 100%);
  min-height: 100vh;
  overflow-x: clip;
}

.page-width {
  margin-inline: auto;
  max-width: 1450px;
  padding-inline: 56px;
  width: 100%;
}

.topbar {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(218, 222, 234, 0.92);
  position: relative;
  z-index: 20;
}

.topbar-inner {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: 264px minmax(0, 1fr) auto;
  height: 100px;
}

.brand-link {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo-frame {
  display: block;
  flex: 0 0 auto;
  height: 72px;
  width: 72px;
}

.brand-logo-image {
  display: block;
  height: 72px;
  width: 72px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.brand-name {
  color: var(--navy-950);
  font-size: 1.18rem;
  font-weight: 730;
  letter-spacing: -0.02em;
}

.brand-sub {
  color: var(--gray-500);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.main-navigation {
  align-items: center;
  display: flex;
  gap: clamp(24px, 4vw, 70px);
  justify-content: center;
}

.main-navigation a {
  color: var(--navy-900);
  font-size: 0.96rem;
  font-weight: 520;
  text-decoration: none;
  transition: color 160ms ease;
}

.main-navigation a:hover {
  color: var(--violet-600);
}

.demo-button {
  align-items: center;
  background: linear-gradient(105deg, #6c35ff 0%, #5223ef 50%, #4523ef 100%);
  border: 1px solid rgba(68, 27, 219, 0.15);
  border-radius: 11px;
  box-shadow: 0 12px 26px rgba(75, 42, 223, 0.2);
  color: #fff;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 650;
  justify-content: center;
  min-height: 56px;
  padding: 14px 30px;
  text-decoration: none;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.demo-button:hover {
  box-shadow: 0 15px 34px rgba(75, 42, 223, 0.28);
  transform: translateY(-1px);
}

.demo-button-header {
  min-height: 54px;
  min-width: 210px;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(36px, 4vw, 74px);
  grid-template-columns: minmax(410px, 0.89fr) minmax(570px, 1.11fr);
  min-height: 0;
  padding-bottom: 18px;
  padding-top: 14px;
}

.hero-copy {
  padding-left: 26px;
  position: relative;
  z-index: 4;
}

.eyebrow,
.section-kicker {
  color: var(--violet-600);
  font-size: 0.85rem;
  font-weight: 740;
  letter-spacing: 0.16em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero-copy h1 {
  color: var(--navy-950);
  font-size: clamp(2.15rem, 3.1vw, 3.15rem);
  font-weight: 730;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0;
  max-width: 670px;
}

.hero-copy h1 span {
  background: linear-gradient(90deg, #4c29fa 0%, #7c35f3 83%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.hero-description {
  color: var(--navy-700);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 14px 0 18px;
  max-width: 560px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.text-link {
  align-items: center;
  color: var(--violet-600);
  display: inline-flex;
  font-size: 1rem;
  font-weight: 590;
  gap: 8px;
  padding: 10px 0;
  text-decoration: none;
}

.text-link svg {
  height: 18px;
  transition: transform 160ms ease;
  width: 18px;
}

.text-link:hover svg {
  transform: translateX(3px);
}

.launch-note {
  align-items: center;
  color: #596888;
  display: flex;
  font-size: 0.88rem;
  gap: 9px;
  margin: 14px 0 0;
}

.launch-note svg {
  color: var(--navy-700);
  height: 18px;
  width: 18px;
}

.product-visual {
  min-width: 0;
  padding: 2px 0 10px;
  position: relative;
  z-index: 2;
}

.product-glow {
  background: radial-gradient(circle, rgba(97, 46, 244, 0.18), rgba(107, 61, 255, 0.04) 48%, transparent 72%);
  border-radius: 50%;
  filter: blur(5px);
  height: 590px;
  left: -55px;
  position: absolute;
  top: -44px;
  width: 760px;
  z-index: -1;
}

.product-visual::after {
  background-image: radial-gradient(#936fff 1.4px, transparent 1.4px);
  background-size: 13px 13px;
  content: "";
  height: 108px;
  opacity: 0.22;
  position: absolute;
  right: -22px;
  top: 53px;
  width: 100px;
  z-index: -1;
}

.dashboard-shell {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #d6dcea;
  border-radius: 21px;
  box-shadow: 0 25px 60px rgba(38, 38, 108, 0.14), 0 3px 12px rgba(42, 44, 92, 0.06);
  display: grid;
  grid-template-columns: 158px minmax(0, 1fr);
  min-height: 446px;
  overflow: hidden;
  padding-top: 34px;
  position: relative;
}

.window-bar {
  align-items: center;
  display: flex;
  gap: 7px;
  height: 40px;
  left: 0;
  padding-left: 18px;
  position: absolute;
  top: 0;
  width: 100%;
}

.window-dot {
  border-radius: 50%;
  height: 9px;
  width: 9px;
}

.window-dot-red { background: #ff5e57; }
.window-dot-yellow { background: #ffbd2e; }
.window-dot-green { background: #28c840; }

.dashboard-sidebar {
  border-right: 1px solid #e2e5ee;
  padding: 14px 10px;
}

.dashboard-brand {
  align-items: center;
  display: flex;
  gap: 8px;
  margin: 0 7px 20px;
}

.dashboard-brand img {
  height: 30px;
  object-fit: contain;
  width: 30px;
}

.dashboard-brand strong {
  color: var(--navy-950);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dashboard-menu {
  display: grid;
  gap: 8px;
}

.menu-item {
  align-items: center;
  border-radius: 9px;
  color: #455272;
  display: grid;
  font-size: 0.68rem;
  gap: 9px;
  grid-template-columns: 20px 1fr;
  min-height: 43px;
  padding: 8px 10px;
}

.menu-item svg {
  height: 19px;
  stroke-width: 1.65;
  width: 19px;
}

.menu-item.selected {
  background: var(--violet-100);
  color: var(--violet-600);
}

.dashboard-workspace {
  min-width: 0;
  padding: 0 20px 18px;
}

.dashboard-heading {
  align-items: center;
  display: flex;
  height: 53px;
  justify-content: space-between;
}

.dashboard-heading h2 {
  color: var(--navy-950);
  font-size: 1.12rem;
  letter-spacing: -0.025em;
  margin: 0;
}

.dashboard-profile {
  align-items: center;
  display: flex;
  gap: 14px;
}

.dashboard-profile svg {
  height: 18px;
  stroke-width: 1.55;
  width: 18px;
}

.dashboard-profile span {
  align-items: center;
  background: #f0edff;
  border-radius: 50%;
  color: var(--violet-600);
  display: flex;
  font-size: 0.68rem;
  font-weight: 700;
  height: 27px;
  justify-content: center;
  width: 27px;
}

.dashboard-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.38fr) minmax(168px, 0.88fr);
}

.assistant-panel,
.has-panel,
.dashboard-stat {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #dce1eb;
  border-radius: 13px;
}

.assistant-panel {
  min-height: 323px;
  padding: 17px 16px 14px;
}

.assistant-panel h3,
.has-panel h3 {
  color: var(--navy-950);
  font-size: 0.84rem;
  margin: 0;
}

.assistant-panel h3 {
  align-items: center;
  display: flex;
  gap: 8px;
}

.assistant-panel h3 svg {
  color: var(--violet-600);
  height: 20px;
  width: 20px;
}

.question-bubble {
  background: linear-gradient(135deg, #f2efff, #ebe7ff);
  border-radius: 9px;
  color: var(--navy-950);
  font-size: 0.69rem;
  line-height: 1.45;
  margin: 17px 0 13px;
  padding: 12px 13px;
}

.answer-heading {
  color: #28385f;
  font-size: 0.61rem;
  margin: 0 0 11px;
}

.answer-preview {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
}

.answer-preview span {
  align-items: center;
  color: #8a93a9;
  display: grid;
  font-size: 0.55rem;
  gap: 7px;
  grid-template-columns: 6px 1fr;
}

.answer-preview span::after {
  background: #e4e6ed;
  border-radius: 99px;
  content: "";
  grid-column: 2;
  height: 4px;
  margin-top: -3px;
  width: 84%;
}

.answer-preview i {
  background: #d9ccff;
  border-radius: 50%;
  grid-row: 1 / span 2;
  height: 6px;
  width: 6px;
}

.recommendation-button {
  align-items: center;
  background: linear-gradient(100deg, #4d27f0, #802eff);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-size: 0.58rem;
  font-weight: 610;
  gap: 6px;
  min-height: 34px;
  padding: 8px 12px;
}

.recommendation-button svg {
  height: 12px;
  width: 12px;
}

.has-panel {
  min-height: 323px;
  padding: 18px 15px 13px;
}

.has-panel h3 {
  font-size: 0.93rem;
}

.progress-ring {
  align-items: center;
  background: conic-gradient(var(--violet-600) 0 72%, #e8eaf0 72% 100%);
  border-radius: 50%;
  display: flex;
  height: 104px;
  justify-content: center;
  margin: 20px auto 17px;
  position: relative;
  width: 104px;
}

.progress-ring::before {
  background: #fff;
  border-radius: 50%;
  content: "";
  height: 84px;
  position: absolute;
  width: 84px;
}

.progress-ring div {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.progress-ring strong {
  color: var(--navy-950);
  font-size: 1.48rem;
  line-height: 1;
}

.progress-ring span {
  color: #6d7894;
  font-size: 0.42rem;
  margin-top: 4px;
}

.has-panel ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.has-panel li {
  align-items: center;
  color: #4d5874;
  display: grid;
  font-size: 0.57rem;
  gap: 7px;
  grid-template-columns: 16px 1fr;
}

.has-panel li svg {
  color: var(--violet-600);
  fill: var(--violet-600);
  height: 15px;
  stroke: #fff;
  stroke-width: 3;
  width: 15px;
}

.has-panel li.pending span {
  border: 1px solid #cdd3df;
  border-radius: 50%;
  height: 15px;
  width: 15px;
}

.dashboard-stat {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 40px 1fr;
  min-height: 70px;
  padding: 10px 13px;
}

.dashboard-stat svg {
  background: #f3f0ff;
  border-radius: 7px;
  color: var(--violet-600);
  height: 40px;
  padding: 9px;
  width: 40px;
}

.dashboard-stat span {
  color: #5d6883;
  display: flex;
  flex-direction: column;
  font-size: 0.54rem;
}

.dashboard-stat strong {
  color: var(--violet-600);
  font-size: 1.22rem;
  margin-top: 2px;
}

.floating-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #d9deea;
  border-radius: 15px;
  box-shadow: 0 18px 35px rgba(40, 43, 100, 0.13);
  display: flex;
  position: absolute;
  z-index: 3;
}

.time-card {
  bottom: 83px;
  gap: 12px;
  left: -70px;
  min-height: 104px;
  padding: 15px 18px;
  width: 174px;
}

.floating-icon {
  align-items: center;
  background: #f4f1ff;
  border-radius: 50%;
  color: var(--violet-600);
  display: flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.floating-icon svg {
  height: 27px;
  width: 27px;
}

.time-card p,
.proof-card p {
  color: var(--navy-950);
  font-size: 0.68rem;
  line-height: 1.25;
  margin: 0;
}

.time-card p {
  display: flex;
  flex-direction: column;
}

.time-card strong {
  color: var(--violet-600);
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 5px;
}

.proof-card {
  bottom: 83px;
  gap: 10px;
  min-height: 79px;
  padding: 13px 15px;
  right: -40px;
  width: 146px;
}

.proof-check {
  align-items: center;
  border: 3px solid var(--violet-600);
  border-radius: 50%;
  color: var(--violet-600);
  display: flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.proof-check svg {
  height: 20px;
  stroke-width: 2.4;
  width: 20px;
}

.mini-check {
  color: var(--violet-600);
  height: 15px;
  width: 15px;
}

.feature-section {
  background:
    radial-gradient(circle at 12% 0, rgba(104, 60, 255, 0.05), transparent 25rem),
    #fff;
  border-top: 1px solid #e4e7f0;
  padding: 26px 0 28px;
  scroll-margin-top: 20px;
}

.section-kicker {
  font-size: 0.72rem;
  margin-bottom: 10px;
  text-align: center;
}

.feature-section h2 {
  color: var(--navy-950);
  font-size: clamp(1.8rem, 2.35vw, 2.35rem);
  letter-spacing: -0.035em;
  margin: 0 0 29px;
  text-align: center;
}

.feature-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d9deea;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(40, 44, 95, 0.035);
  display: grid;
  gap: 22px;
  grid-template-columns: 72px minmax(0, 1fr);
  min-height: 116px;
  padding: 18px 25px;
}

.feature-icon {
  align-items: center;
  background: linear-gradient(145deg, #f7f5ff, #eeeaff);
  border-radius: 13px;
  color: var(--violet-600);
  display: flex;
  height: 64px;
  justify-content: center;
  width: 64px;
}

.feature-icon svg {
  height: 36px;
  stroke-width: 1.65;
  width: 36px;
}

.feature-card h3 {
  color: var(--navy-950);
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  margin: 0 0 7px;
}

.feature-card p {
  color: var(--navy-700);
  font-size: 0.78rem;
  line-height: 1.45;
  margin: 0;
}

.trust-bar {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d9deea;
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
  min-height: 76px;
  scroll-margin-top: 110px;
}

.trust-bar div {
  align-items: center;
  color: var(--navy-900);
  display: flex;
  font-size: 0.75rem;
  gap: 15px;
  justify-content: center;
  padding: 12px 22px;
}

.trust-bar div + div {
  border-left: 1px solid #dce1eb;
}

.trust-bar svg {
  color: var(--navy-700);
  height: 28px;
  stroke-width: 1.55;
  width: 28px;
}

.site-footer {
  background: var(--navy-950);
  color: #fff;
}

.footer-inner {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto auto;
  min-height: 88px;
}

.footer-inner > div {
  display: flex;
  flex-direction: column;
}

.footer-inner strong {
  font-size: 0.96rem;
}

.footer-inner span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  margin-top: 3px;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  text-decoration: none;
}

.footer-inner a:hover {
  color: #fff;
}

.brand-link:focus-visible,
.main-navigation a:focus-visible,
.demo-button:focus-visible,
.text-link:focus-visible,
.footer-inner a:focus-visible {
  border-radius: 6px;
  outline: 3px solid #ae99ff;
  outline-offset: 4px;
}

@media (max-width: 1250px) {
  .page-width {
    padding-inline: 36px;
  }

  .topbar-inner {
    gap: 22px;
    grid-template-columns: 244px minmax(0, 1fr) auto;
  }

  .brand-logo-frame,
  .brand-logo-image {
    height: 68px;
    width: 68px;
  }

  .main-navigation {
    gap: 28px;
  }

  .hero {
    gap: 35px;
    grid-template-columns: minmax(390px, 0.85fr) minmax(545px, 1.15fr);
  }

  .hero-copy {
    padding-left: 8px;
  }

  .dashboard-shell {
    grid-template-columns: 142px minmax(0, 1fr);
  }

  .time-card {
    left: -40px;
  }

  .proof-card {
    right: -18px;
  }
}

@media (max-width: 1080px) {
  .topbar-inner {
    grid-template-columns: 232px 1fr auto;
  }

  .main-navigation {
    gap: 22px;
  }

  .main-navigation a {
    font-size: 0.86rem;
  }

  .demo-button-header {
    min-width: 176px;
    padding-inline: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 72px;
    padding-top: 66px;
  }

  .hero-copy {
    max-width: 760px;
    padding-left: 0;
  }

  .hero-copy h1 {
    font-size: clamp(3.4rem, 7vw, 4.8rem);
  }

  .product-visual {
    margin-inline: auto;
    max-width: 820px;
    width: 100%;
  }

  .product-glow {
    left: 2%;
    width: 94%;
  }

  .feature-grid {
    gap: 16px;
  }

  .feature-card {
    gap: 14px;
    grid-template-columns: 58px 1fr;
    padding-inline: 17px;
  }

  .feature-icon {
    height: 54px;
    width: 54px;
  }

  .feature-icon svg {
    height: 31px;
    width: 31px;
  }
}

@media (max-width: 820px) {
  .page-width {
    padding-inline: 24px;
  }

  .topbar-inner {
    grid-template-columns: 1fr auto;
    height: 92px;
  }

  .brand-logo-frame,
  .brand-logo-image {
    height: 64px;
    width: 64px;
  }

  .main-navigation {
    display: none;
  }

  .demo-button-header {
    font-size: 0.84rem;
    min-height: 46px;
    min-width: 158px;
  }

  .hero {
    padding-bottom: 55px;
    padding-top: 50px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 9vw, 4.35rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .dashboard-shell {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .dashboard-workspace {
    padding-inline: 14px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-template-columns: 68px 1fr;
    min-height: 105px;
    padding-inline: 24px;
  }

  .trust-bar {
    grid-template-columns: 1fr 1fr;
  }

  .trust-bar div:nth-child(3) {
    border-left: 0;
  }

  .trust-bar div:nth-child(n + 3) {
    border-top: 1px solid #dce1eb;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    padding-block: 20px;
  }

  .footer-inner > a:last-child {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .topbar-inner {
    gap: 12px;
  }

  .brand-logo-frame,
  .brand-logo-image {
    height: 56px;
    width: 56px;
  }

  .brand-sub {
    display: none;
  }

  .demo-button-header {
    min-width: 0;
    padding-inline: 15px;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.13em;
    margin-bottom: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 12.5vw, 3.55rem);
    line-height: 1.02;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .hero-actions .demo-button {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .dashboard-shell {
    display: block;
    min-height: 0;
    padding-top: 40px;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-workspace {
    padding: 0 13px 14px;
  }

  .dashboard-heading {
    height: 50px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .assistant-panel,
  .has-panel {
    min-height: 0;
  }

  .has-panel {
    padding-bottom: 18px;
  }

  .progress-ring {
    height: 120px;
    width: 120px;
  }

  .progress-ring::before {
    height: 98px;
    width: 98px;
  }

  .dashboard-stat {
    min-height: 76px;
  }

  .floating-card {
    display: none;
  }

  .product-visual::after {
    display: none;
  }

  .feature-section {
    padding-top: 36px;
  }

  .section-kicker {
    line-height: 1.5;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-bar div {
    justify-content: flex-start;
    min-height: 64px;
  }

  .trust-bar div + div,
  .trust-bar div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #dce1eb;
  }

  .footer-inner {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 13px;
  }
}

@media (max-width: 420px) {
  .page-width {
    padding-inline: 18px;
  }

  .topbar-inner {
    height: 78px;
  }

  .brand-logo-frame,
  .brand-logo-image {
    height: 50px;
    width: 50px;
  }

  .demo-button-header {
    border-radius: 9px;
    font-size: 0.72rem;
    min-height: 42px;
    padding-inline: 11px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-copy h1 {
    font-size: 2.55rem;
  }

  .hero-description {
    font-size: 0.94rem;
  }

  .feature-card {
    gap: 15px;
    grid-template-columns: 58px 1fr;
    padding-inline: 17px;
  }

  .feature-icon {
    height: 52px;
    width: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   Bande accroche — bloc ajouté lors du portage HTML statique
   ============================================================ */
.accroche-band {
  background: var(--violet-50);
  border-bottom: 1px solid #ece7ff;
  border-top: 1px solid #ece7ff;
  padding: 20px 0;
}

.accroche-band p {
  color: var(--navy-900);
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 780px;
  text-align: center;
}

.accroche-band strong {
  color: var(--violet-700);
  font-weight: 700;
}

/* ============================================================
   Section formulaire de démo — bloc ajouté lors du portage
   ============================================================ */
.demo-section {
  background: #fff;
  border-top: 1px solid #e4e7f0;
  padding: 34px 0 44px;
  scroll-margin-top: 20px;
}

.demo-section h2 {
  color: var(--navy-950);
  font-size: clamp(1.8rem, 2.35vw, 2.35rem);
  letter-spacing: -0.035em;
  margin: 0 0 14px;
  text-align: center;
}

.demo-intro {
  color: var(--navy-700);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 auto 40px;
  max-width: 60ch;
  text-align: center;
}

.demo-card {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #d9deea;
  border-radius: 21px;
  box-shadow: 0 25px 60px rgba(38, 38, 108, 0.1), 0 3px 12px rgba(42, 44, 92, 0.05);
  margin: 0 auto;
  max-width: 640px;
  padding: 40px 36px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  color: var(--navy-950);
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.field input {
  background: #fff;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  color: var(--navy-950);
  font-size: 1rem;
  padding: 12px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

.field input:focus {
  border-color: var(--violet-600);
  box-shadow: 0 0 0 3px rgba(87, 44, 255, 0.16);
  outline: none;
}

/* Honeypot anti-spam — masqué aux humains, ignoré des lecteurs d'écran */
.hp {
  height: 1px;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.consent {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  margin: 8px 0 24px;
}

.consent input {
  accent-color: var(--violet-600);
  flex: 0 0 auto;
  height: 18px;
  margin-top: 4px;
  width: 18px;
}

.consent label {
  color: var(--navy-700);
  font-size: 0.88rem;
  line-height: 1.55;
}

.consent a {
  color: var(--violet-600);
  text-decoration: underline;
}

.demo-card .demo-button {
  appearance: none;
  border: none;
  cursor: pointer;
  width: 100%;
}

.form-msg {
  border-radius: 10px;
  display: none;
  font-size: 0.92rem;
  margin-top: 16px;
  padding: 14px 16px;
}

.form-msg.show {
  display: block;
}

.form-msg.ok {
  background: #e8f6ef;
  border: 1px solid #bfe6d2;
  color: #1f8a5b;
}

.form-msg.err {
  background: #fceef0;
  border: 1px solid #f3ccd3;
  color: #b4233a;
}

.finalite {
  color: var(--gray-500);
  font-size: 0.82rem;
  margin-top: 16px;
  text-align: center;
}

/* ============================================================
   Footer enrichi (liens légaux + copyright) — ajouté au portage
   ============================================================ */
.footer-inner {
  padding-block: 24px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 0.68rem !important;
  margin-top: 6px !important;
}

.footer-legal-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  grid-column: 2 / -1;
  justify-content: flex-end;
}

@media (max-width: 820px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-legal-links {
    grid-column: 1;
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .footer-legal-links {
    gap: 8px 16px;
  }
}

@media (max-width: 420px) {
  .demo-card {
    padding: 30px 22px;
  }
}
