
/* ==========================================================================
   1. VARIABLES & RESET GLOBAL
   ========================================================================== */
:root {
  --orange: #f47735;
  --orange-dark: #ba4713;
  --ink: #252722;
  --muted: #777a73;
  --cream: #fffaf6;
  --soft: #fff0e5;
  --line: #eaeae5;
  --font: 'DM Sans', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.7;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.09;
  letter-spacing: -0.045em;
}

h1,
h2 {
  font-weight: 800;
}

h1 span,
h2 span {
  color: #df6628;
}

p {
  color: var(--muted);
}

.wrap {
  width: min(1200px, calc(100% - 80px));
  margin-inline: auto;
}

.sr-only,
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 12px;
  background: white;
  z-index: 100;
  padding: 15px;
}

.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: 3px solid var(--orange-dark);
  outline-offset: 5px;
}

::selection {
  background: #ffdabd;
  color: #482d1e;
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0 0;
  pointer-events: none;
}

.nav {
  height: 76px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #f0efeb;
  border-radius: 23px;
  box-shadow: 0 3px 3px #25272204, 0 12px 35px #25272205;
  display: flex;
  align-items: center;
  padding: 0 25px;
  gap: 30px;
  pointer-events: auto;
  backdrop-filter: blur(16px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 850;
  font-size: 34px;
  letter-spacing: -2px;
}

.logo-dot {
  color: var(--orange);
  margin-left: -8px;
}

.nav-links {
  margin-inline: auto;
  display: flex;
  gap: 27px;
  font-size: 13px;
  font-weight: 600;
}

.nav-links a {
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--orange-dark);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  background: var(--ink);
  color: white;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.015em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  line-height: 1.3;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 16px #25272218;
}

.button-dot {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px #f477351a;
}

.button > span:last-child:not(.button-dot) {
  margin-left: 4px;
  font-size: 18px;
}

.primary {
  background: var(--orange);
  color: #291b12;
  box-shadow: 0 4px 0 #d9612030, 0 7px 18px #f4773514;
}

.primary .button-dot {
  background: #fff;
  box-shadow: 0 0 0 5px #ffffff26;
}

.nav-cta {
  font-size: 12px;
  min-height: 43px;
  padding: 11px 17px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

/* ==========================================================================
   3. MASCOTTE ANIMÉE
   ========================================================================== */
.mascot {
  --size: 40px;
  width: var(--size);
  height: calc(var(--size) * 0.84);
  background: var(--orange);
  border-radius: 43% 43% 43% 13%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(var(--size) * 0.12);
  position: relative;
  flex-shrink: 0;
  transform: rotate(-5deg);
}

.mascot:after {
  content: "";
  position: absolute;
  width: calc(var(--size) * 0.21);
  height: calc(var(--size) * 0.2);
  background: inherit;
  left: calc(var(--size) * 0.03);
  bottom: calc(var(--size) * -0.08);
  border-radius: 0 0 80% 10%;
  transform: skewY(-22deg);
}

.mascot i {
  width: calc(var(--size) * 0.105);
  height: calc(var(--size) * 0.25);
  background: #fff;
  border-radius: 99px;
  z-index: 1;
  animation: blink 6s infinite;
  transform: rotate(5deg);
}

.mascot.small {
  --size: 30px;
}

.mascot.large {
  --size: 72px;
}

.mascot.tiny {
  --size: 28px;
}

.mascot.giant {
  --size: 112px;
  animation: bob 5s ease-in-out infinite;
}

.mini-eyes {
  letter-spacing: 3px;
  font-weight: 900;
  font-size: 20px;
}

/* ==========================================================================
   4. SECTION HERO
   ========================================================================== */
.hero {
  padding-top: 73px;
  padding-bottom: 75px;
  display: grid;
  grid-template-columns: 1.16fr 1fr;
  gap: 70px;
  align-items: center;
}

.hero-copy {
  padding-bottom: 12px;
  animation: enter 0.65s both;
}

.eyebrow {
  font-size: 10px;
  letter-spacing: 1.8px;
  font-weight: 750;
  color: var(--orange-dark);
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 20px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
  flex: none;
  box-shadow: 0 0 0 4px #f4773515;
}

.hero h1 {
  font-size: clamp(43px, 4.25vw, 59px);
  line-height: 1.12;
  letter-spacing: -0.052em;
  margin-bottom: 25px;
  max-width: 650px;
}

.hero-description {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-cta {
  padding: 17px 20px;
  font-size: 13px;
  min-height: 56px;
}

.hero-facts {
  display: flex;
  gap: 16px;
  margin-top: 21px;
  font-size: 10px;
  color: #787b73;
}

.hero-facts b {
  color: var(--orange-dark);
  font-weight: 700;
  margin-right: 3px;
}

/* ==========================================================================
   5. WIDGET CHAT & DÉMO HERO
   ========================================================================== */
.hero-demo {
  position: relative;
  animation: enter 0.85s 0.1s both;
  min-width: 0;
  padding-top: 19px;
}

.hero-demo:before {
  content: "";
  position: absolute;
  inset: 0 -30px -22px;
  background: radial-gradient(ellipse, #fff0e2 0%, #fffaf6 60%, transparent 73%);
  z-index: -1;
}

.demo-caption {
  position: absolute;
  top: -24px;
  left: 20px;
  font-size: 12px;
  color: #8a6148;
  display: flex;
  gap: 8px;
  align-items: center;
  transform: rotate(-3deg);
}

.little-spark {
  font-size: 23px;
  color: var(--orange);
}

.demo-caption svg {
  width: 43px;
  height: 34px;
  stroke: #bd8c6e;
  fill: none;
  stroke-width: 1.7;
  transform: translateY(8px);
}

.chat {
  background: #fff;
  border-radius: 22px;
  border: 1px solid #e8e7e1;
  box-shadow: 0 3px 0 #eeebe74d, 0 18px 55px #7742210b;
  overflow: hidden;
  position: relative;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 19px 21px;
  border-bottom: 1px solid #f2f0ec;
}

.chat-header strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

.chat-header div > span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}

.icon-button {
  border: 0;
  background: #f8f8f4;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  margin-left: auto;
  color: #85877f;
  font-size: 20px;
  line-height: 1;
}

.chat-messages {
  height: 281px;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 16px 18px 6px;
  scrollbar-width: thin;
  scrollbar-color: #e9e4de transparent;
}

.chat-context {
  font-size: 8px;
  letter-spacing: 1.25px;
  text-align: center;
  color: #90918b;
  margin-bottom: 16px;
}

.message {
  margin-bottom: 12px;
  max-width: 90%;
  font-size: 12px;
  line-height: 1.6;
  animation: message-in 0.3s both;
}

.message p {
  color: inherit;
}

.message.bot {
  padding: 12px 14px;
  background: #f7f7f3;
  border-radius: 3px 15px 15px 15px;
  color: #50534d;
  width: fit-content;
}

.message.visitor {
  margin-left: auto;
  padding: 10px 14px;
  border-radius: 15px 3px 15px 15px;
  background: var(--soft);
  color: #6b4027;
  width: fit-content;
}

.source {
  display: block;
  color: #a76c45;
  font-size: 9px;
  margin-top: 8px;
}

.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px 18px 12px;
}

.suggestions button {
  font-size: 10px;
  background: white;
  border: 1px solid #e7e6df;
  border-radius: 100px;
  padding: 7px 9px;
  color: #6e7368;
  transition: border-color 0.2s;
}

.suggestions button:hover {
  border-color: var(--orange);
  background: var(--cream);
}

.chat-form {
  margin: 0 15px;
  display: flex;
  gap: 8px;
  padding: 7px 7px 7px 13px;
  border-radius: 12px;
  border: 1px solid #e4e4df;
}

.chat-form:focus-within {
  border-color: var(--orange);
}

.chat-form input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 12px;
}

.chat-form button {
  width: 31px;
  height: 31px;
  flex: none;
  border-radius: 9px;
  background: var(--orange);
  border: 0;
  color: #fff;
  font-size: 23px;
  line-height: 1;
}

.chat-footer {
  font-size: 8px;
  text-align: center;
  padding: 8px 5px;
  color: #999b91;
}

.chat-footer .mini-eyes {
  font-size: 14px;
  color: var(--orange);
  margin-left: 2px;
}

.demo-under {
  font-size: 9px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: #8b8d84;
  flex-wrap: wrap;
  padding-inline: 4px;
}

.demo-under .status-dot {
  width: 4px;
  height: 4px;
  box-shadow: none;
}

.demo-under button {
  background: none;
  border: 0;
  color: #8b6b55;
  padding: 0;
  font-size: 9px;
  margin-left: auto;
}

.typing {
  display: flex;
  gap: 4px;
  padding: 7px 1px;
}

.typing i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c49a7b;
  animation: typing 0.8s infinite alternate;
}

.typing i:nth-child(2) {
  animation-delay: 0.15s;
}

.typing i:nth-child(3) {
  animation-delay: 0.3s;
}

/* ==========================================================================
   6. BANDEAU CIBLES & SECTIONS GÉNÉRALES
   ========================================================================== */
.audience {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 17px;
}

.audience > span {
  font-size: 8px;
  letter-spacing: 1.4px;
  line-height: 1.7;
  color: #91948c;
}

.audience div {
  font-size: 14px;
  color: #71766a;
  font-weight: 550;
  letter-spacing: -0.3px;
}

.audience i {
  font-size: 19px;
  color: #dcded6;
  font-style: normal;
}

.section {
  padding-block: 90px;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 37px;
}

.section-heading .eyebrow {
  justify-content: center;
  margin-bottom: 17px;
}

.section-heading h2 {
  font-size: 46px;
  margin-bottom: 19px;
}

.section-heading > p:last-child {
  font-size: 14px;
  line-height: 1.65;
  max-width: 540px;
  margin-inline: auto;
}

/* ==========================================================================
   7. GRILLE TARIFAIRE (PRICING)
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  background: #fff;
}

.price-card.featured {
  background: #fffbf7;
  border-color: #f4be96;
  box-shadow: 0 0 0 4px #fff8f1;
}

.plan-top {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.plan-symbol {
  color: var(--orange-dark);
  font-size: 22px;
  line-height: 1;
}

.plan-top h3 {
  font-size: 21px;
  font-weight: 750;
  letter-spacing: -0.8px;
}

.plan-tag {
  margin-left: auto;
  background: #f6f6f1;
  border: 1px solid #edede5;
  border-radius: 100px;
  padding: 3px 8px;
  font-size: 8px;
  color: #7d8273;
}

.featured .plan-tag {
  background: #ffeddf;
  border-color: #f8dbbf;
  color: #a15b2f;
}

.price-card > p {
  font-size: 12px;
  line-height: 1.6;
  margin-top: 16px;
  min-height: 38px;
  max-width: 245px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 22px;
}

.price strong {
  font-size: 48px;
  font-weight: 750;
  letter-spacing: -2px;
  line-height: 1.1;
}

.price > span {
  font-size: 10px;
  color: var(--muted);
}

.season-detail {
  font-size: 10px;
  min-height: 35px;
  color: var(--muted);
  margin: 10px 0 13px;
}

.season-detail b {
  font-weight: 600;
  color: #626655;
}

.moon {
  font-size: 16px;
  color: var(--orange-dark);
  margin-right: 5px;
}

.plan-button {
  display: flex;
  width: 100%;
  border: 1px solid #e6e7df;
  background: white;
  color: #454a3d;
  min-height: 43px; 
  font-size: 11px;
  padding: 11px 15px;
  justify-content: center;

  font-size: 14px; 
  font-weight: 700;
}

.plan-button.primary {
  border-color: var(--orange);
  background: var(--orange);
  color: #291b12;
}

.price-card ul {
  list-style: none;
  padding: 19px 0 0;
  margin: 22px 0 0;
  border-top: 1px solid #eeeae4;
  display: grid;
  gap: 12px;
  font-size: 11px;
  color: #646b5c;
}

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

.price-card li:before {
  content: "✓";
  color: var(--orange-dark);
  font-weight: 700;
}

.setup-strip {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  background: #f9f9f5;
  border: 1px solid #eeeeE8;
  border-radius: 15px;
  margin-top: 20px;
  padding: 19px 24px;
}

.setup-strip > div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.setup-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff;
  color: var(--orange-dark);
  border: 1px solid #ecece4;
}

.setup-strip p strong {
  display: block;
  font-size: 12px;
  color: var(--ink);
  font-weight: 650;
}

.setup-strip p span {
  display: block;
  font-size: 10px;
  margin-top: 3px;
}

.setup-strip > p {
  display: flex;
  align-items: baseline;
  gap: 9px;
  white-space: nowrap;
}

.setup-strip > p strong {
  font-size: 25px;
  font-weight: 750;
  letter-spacing: -1px;
}

.pricing-footnote {
  margin-top: 17px;
  text-align: center;
}

.pricing-footnote p {
  font-size: 9px;
  color: #8b8d83;
  margin-top: 5px;
}

.pricing-footnote strong {
  color: #74796b;
  font-weight: 600;
}

/* ==========================================================================
   8. MÉTHODE (PROCESSUS EN 3 ÉTAPES)
   ========================================================================== */
.method-section {
  background: var(--cream);
  padding: 83px 0 48px;
  border-top: 1px solid #fbf0e6;
  border-bottom: 1px solid #fbf0e6;
}

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

.step-art {
  height: 175px;
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 23px;
}

.step-label {
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: white;
  border: 1px solid #f3e5d9;
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 600;
  color: #b6a694;
}

.process-step:not(:last-child) .step-art:after {
  content: "→";
  position: absolute;
  right: -30px;
  top: 42%;
  color: #d2b59b;
  font-size: 23px;
}

.process-step h3 {
  font-size: 21px;
  font-weight: 750;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.8px;
}

.process-step > p {
  font-size: 12px;
  line-height: 1.8;
  max-width: 300px;
}

.document-art {
  width: 185px;
  background: white;
  position: relative;
  border: 1px solid #eedfce;
  border-radius: 12px;
  padding: 15px;
  transform: rotate(-5deg);
  box-shadow: 0 8px 20px #ac6a2d09;
}

.doc-top {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 15px;
}

.doc-top > span {
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: #ffe5ce;
}

.doc-top > i {
  height: 4px;
  width: 45px;
  background: #eeeeE7;
  border-radius: 10px;
}

.document-art b {
  font-size: 11px;
  font-weight: 650;
}

.doc-line {
  display: block;
  height: 4px;
  width: 95%;
  background: #eeeeE7;
  border-radius: 4px;
  margin-top: 9px;
}

.doc-line.short {
  width: 70%;
  margin-bottom: 13px;
}

.doc-tags {
  display: flex;
  gap: 6px;
}

.doc-tags span {
  font-size: 7px;
  color: #a87851;
  background: #fff1e5;
  padding: 4px 8px;
  border-radius: 5px;
}

.doc-check {
  position: absolute;
  right: -13px;
  bottom: 22px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  border: 4px solid var(--cream);
}

.training-art {
  width: 190px;
  height: 157px;
  position: relative;
  display: grid;
  place-items: center;
}

.orbit-one,
.orbit-two {
  position: absolute;
  inset: 15px;
  border: 1px dashed #ebd4c0;
  border-radius: 50%;
}

.orbit-two {
  inset: 35px 2px;
  transform: rotate(-25deg);
}

.training-art .mascot {
  animation: bob 5s ease-in-out infinite;
}

.training-chip {
  position: absolute;
  bottom: 0;
  left: 16px;
  background: white;
  border: 1px solid #f1e6d9;
  box-shadow: 0 5px 15px #ac6a2d08;
  padding: 7px 12px;
  font-size: 8px;
  border-radius: 20px;
  color: #a58367;
  transform: rotate(-3deg);
}

.training-chip b {
  color: var(--orange);
  margin-left: 9px;
}

.site-art {
  width: 199px;
  height: 125px;
  background: white;
  border: 1px solid #eadfce;
  border-radius: 12px;
  transform: rotate(4deg);
  position: relative;
  box-shadow: 0 8px 20px #ac6a2d09;
}

.site-bar {
  border-bottom: 1px solid #f2ede5;
  color: #d7cfc4;
  padding: 5px 12px;
  font-size: 10px;
  letter-spacing: 2px;
}

.site-bar span {
  letter-spacing: 0;
  font-size: 7px;
  margin-left: 10px;
  color: #aaa99e;
}

.site-lines {
  padding: 21px 15px;
}

.site-lines i {
  display: block;
  width: 55%;
  height: 6px;
  background: #f2f2ed;
  border-radius: 5px;
  margin-bottom: 9px;
}

.site-lines i:last-child {
  width: 35%;
}

.site-bubble {
  position: absolute;
  right: 13px;
  bottom: 15px;
  background: var(--orange);
  width: 33px;
  height: 31px;
  border-radius: 13px 13px 13px 3px;
  display: grid;
  place-items: center;
  color: white;
}

.site-online {
  position: absolute;
  bottom: -14px;
  left: 15px;
  font-size: 8px;
  background: white;
  border: 1px solid #f0e6da;
  border-radius: 30px;
  padding: 7px 11px;
  color: #8b7e6e;
}

.site-online i {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  margin-left: 15px;
}

.human-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #efe4d9;
  padding-top: 24px;
  margin-top: 34px;
}

.human-note p {
  font-size: 11px;
  color: #968979;
}

.human-note strong {
  color: #766554;
  font-weight: 650;
}

/* ==========================================================================
   9. FORMULAIRE DE DEMANDE (LEAD FORM)
   ========================================================================== */
.request-section {
  padding: 100px 0 84px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 105px;
  align-items: center;
}

.request-copy h2 {
  font-size: 57px;
  margin-bottom: 23px;
}

.request-copy > p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.8;
  max-width: 360px;
}

.request-mascot {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 36px 0 0 24px;
}

.speech-note {
  font-size: 11px;
  background: #f8f8f3;
  border: 1px solid #f0f0e8;
  padding: 10px 16px;
  border-radius: 14px 14px 14px 2px;
  transform: rotate(-6deg);
  color: #8b8d7e;
}

.request-card {
  padding: 31px;
  border: 1px solid #e9e9e2;
  border-radius: 24px;
  box-shadow: 0 12px 40px #25272204;
  background: white;
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  letter-spacing: 1.4px;
  color: #969687;
  margin-bottom: 19px;
}

.request-card h3 {
  font-size: 25px;
  font-weight: 750;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.request-card label {
  display: block;
  font-size: 11px;
  font-weight: 650;
  margin: 16px 0 7px;
  color: #696d60;
}

.request-card input,
.request-card select {
  width: 100%;
  padding: 13px;
  border: 1px solid #e5e6de;
  background: #fdfdfb;
  border-radius: 10px;
  font-size: 12px;
  color: #63695b;
  min-height: 45px;
}

.request-card input::placeholder {
  color: #b0b2a7;
}

.request-submit {
  width: 100%;
  font-size: 11px;
  min-height: 49px;
  margin-top: 23px;
  padding-inline: 12px;
}

.form-note {
  font-size: 9px;
  line-height: 1.6;
  color: #a0a395;
  margin-top: 12px;
}

.form-status {
  font-size: 12px;
  color: #805632;
  margin-top: 12px;
}

.form-status:empty {
  display: none;
}

.meeting {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 18px;
  text-align: center;
}

.meeting > span {
  font-size: 10px;
  color: #969b8c;
}

.text-link {
  background: none;
  border: 0;
  padding: 5px 0 5px 8px;
  font-size: 10px;
  font-weight: 650;
  color: #686f5c;
}

.text-link .status-dot {
  width: 5px;
  height: 5px;
  box-shadow: none;
  margin-left: 4px;
}

.meeting > p {
  font-size: 11px;
  margin-top: 8px;
}

/* ==========================================================================
   10. FAQ, FOOTER & DIALOG
   ========================================================================== */
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  padding-top: 32px;
  padding-bottom: 90px;
}

.faq-section h2 {
  font-size: 43px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary > span {
  font-size: 21px;
  font-weight: 450;
  color: #a1a497;
  transition: transform 0.2s;
}

details[open] summary > span {
  transform: rotate(45deg);
  color: var(--orange);
}

details > p {
  font-size: 12px;
  line-height: 1.8;
  padding: 0 27px 20px 0;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding: 32px 0 37px;
}

.footer .logo {
  font-size: 29px;
}

.footer p {
  font-size: 11px;
  line-height: 1.7;
  color: #a1a494;
}

.footer > div {
  display: flex;
  gap: 23px;
  font-size: 10px;
  color: #848b77;
}

.footer small {
  font-size: 9px;
  color: #a6ab9b;
}

dialog {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  max-width: 560px;
  width: calc(100% - 32px);
  max-height: 85vh;
  color: var(--ink);
}

dialog::backdrop {
  background: #25272266;
  backdrop-filter: blur(5px);
}

dialog h2 {
  font-size: 29px;
  margin-bottom: 16px;
}

dialog p {
  font-size: 13px;
}

.dialog-close {
  position: absolute;
  right: 16px;
  top: 10px;
  background: none;
  border: 0;
  font-size: 28px;
  color: #777;
}

dialog dt {
  font-weight: 700;
  font-size: 13px;
  margin-top: 15px;
}

dialog dd {
  margin: 3px 0;
  font-size: 12px;
  color: var(--muted);
}

/* ==========================================================================
   11. ANIMATIONS KEYFRAMES
   ========================================================================== */
@keyframes blink {
  0%, 42%, 46%, 100% {
    transform: rotate(5deg) scaleY(1);
  }
  44% {
    transform: rotate(5deg) scaleY(0.08);
  }
}

@keyframes bob {
  0%, 100% {
    transform: rotate(-5deg) translateY(0);
  }
  50% {
    transform: rotate(1deg) translateY(-5px);
  }
}

@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes message-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes typing {
  from {
    opacity: 0.4;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.motion .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.motion .reveal.visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   12. MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */
@media (min-width: 1450px) {
  .hero {
    padding-top: 95px;
    padding-bottom: 95px;
  }
}

@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .hero {
    gap: 32px;
    padding-top: 60px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .nav {
    gap: 20px;
    padding-inline: 20px;
  }
  .nav-links {
    gap: 18px;
    font-size: 12px;
  }
  .nav-cta {
    font-size: 11px;
    padding: 10px 12px;
  }
  .hero-facts {
    gap: 9px;
    font-size: 9px;
  }
  .hero-cta {
    font-size: 11px;
    padding-inline: 16px;
  }
  .price-card {
    padding: 20px;
  }
  .plan-tag {
    font-size: 7px;
    padding-inline: 5px;
  }
  .request-section {
    gap: 55px;
  }
  .footer {
    gap: 20px;
  }
  .audience div {
    font-size: 12px;
  }
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 89px;
    left: 24px;
    right: 24px;
    border: 1px solid var(--line);
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 20px #00000006;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-cta {
    margin-left: auto;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 44px;
    padding-bottom: 48px;
  }
  .hero-copy {
    text-align: center;
    padding: 0;
  }
  .hero-copy .eyebrow {
    justify-content: center;
  }
  .hero h1 {
    font-size: 53px;
  }
  .hero-description {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .hero-facts {
    justify-content: center;
    font-size: 10px;
  }
  .hero-demo {
    width: min(440px, 100%);
    margin: auto;
  }
  .hero-cta {
    font-size: 12px;
  }
  .audience {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .audience > span {
    width: 100%;
    text-align: center;
  }
  .audience > span br {
    display: none;
  }
  .audience i {
    display: none;
  }
  .audience div {
    font-size: 11px;
  }
  .pricing-grid {
    gap: 12px;
  }
  .plan-tag {
    display: none;
  }
  .price-card {
    padding: 18px;
  }
  .price strong {
    font-size: 38px;
  }
  .price-card > p {
    font-size: 11px;
    min-height: 52px;
  }
  .price > span {
    font-size: 8px;
  }
  .season-detail {
    font-size: 9px;
    min-height: 43px;
  }
  .price-card ul {
    font-size: 10px;
  }
  .section-heading h2 {
    font-size: 39px;
  }
  .process {
    gap: 22px;
  }
  .process-step h3 {
    font-size: 18px;
  }
  .process-step:not(:last-child) .step-art:after {
    display: none;
  }
  .document-art {
    width: 155px;
  }
  .site-art {
    width: 163px;
  }
  .training-art {
    width: 160px;
  }
  .process-step > p {
    font-size: 11px;
  }
  .request-section {
    gap: 28px;
  }
  .request-copy h2 {
    font-size: 47px;
  }
  .request-card {
    padding: 23px;
  }
  .request-mascot {
    margin-left: 0;
    gap: 10px;
  }
  .mascot.giant {
    --size: 85px;
  }
  .speech-note {
    font-size: 9px;
    padding: 8px;
  }
  .faq-section {
    gap: 30px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .footer {
    grid-template-columns: 1fr 1fr;
  }
  .footer small {
    text-align: right;
  }
  .footer > div {
    gap: 16px;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 90px;
  }
  .wrap {
    width: calc(100% - 36px);
  }
  .header {
    padding-top: 10px;
  }
  .nav {
    height: 62px;
    border-radius: 17px;
    padding: 0 13px;
    gap: 8px;
  }
  .logo {
    font-size: 28px;
    gap: 7px;
  }
  .mascot.small {
    --size: 25px;
  }
  .nav-cta {
    font-size: 9px;
    padding: 9px 11px;
    gap: 7px;
    min-height: 34px;
    flex-shrink: 1;
  }
  .nav-cta .button-dot {
    width: 4px;
    height: 4px;
    box-shadow: none;
  }
  .nav-cta > span:last-child {
    font-size: 13px;
    margin: 0;
  }
  .menu-toggle {
    padding: 8px 3px;
  }
  .nav-links {
    top: 79px;
    left: 18px;
    right: 18px;
  }
  .hero {
    padding-top: 36px;
    gap: 40px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  .hero h1 {
    font-size: clamp(35px, 9.5vw, 50px);
    letter-spacing: -0.05em;
    line-height: 1.12;
    margin-bottom: 20px;
  }
  .hero-description {
    font-size: 13px;
    line-height: 1.7;
  }
  .hero-cta {
    font-size: 10px;
    padding: 15px 13px;
    min-height: 49px;
    gap: 9px;
  }
  .hero-facts {
    font-size: 8px;
    gap: 11px;
    margin-top: 17px;
  }
  .hero-demo:before {
    inset: 0 -10px -22px;
  }
  .demo-caption {
    font-size: 10px;
    top: -19px;
  }
  .demo-under {
    font-size: 8px;
    gap: 5px;
  }
  .demo-under button {
    font-size: 8px;
  }
  .chat-header {
    padding: 16px;
  }
  .chat-messages {
    padding-inline: 14px;
    height: 270px;
  }
  .chat-header div > span {
    font-size: 9px;
  }
  .message {
    font-size: 11px;
  }
  .suggestions {
    gap: 5px;
    padding-inline: 13px;
  }
  .suggestions button {
    font-size: 9px;
    padding: 6px 8px;
  }
  .audience {
    gap: 13px;
    padding-block: 20px;
  }
  .audience div {
    font-size: 9px;
  }
  .section {
    padding-block: 58px;
  }
  .section-heading {
    margin-bottom: 27px;
  }
  .section-heading h2 {
    font-size: 35px;
    margin-bottom: 14px;
  }
  .section-heading > p:last-child {
    font-size: 12px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .price-card {
    padding: 24px;
  }
  .plan-tag {
    display: block;
    font-size: 9px;
    padding: 4px 9px;
  }
  .price-card > p {
    min-height: 0;
    max-width: none;
    font-size: 12px;
  }
  .price strong {
    font-size: 44px;
  }
  .price > span {
    font-size: 11px;
  }
  .season-detail {
    font-size: 11px;
    min-height: 0;
    margin-bottom: 18px;
  }
  .price-card ul {
    font-size: 12px;
  }
  .setup-strip {
    padding: 17px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .setup-strip p strong {
    font-size: 12px;
  }
  .setup-strip p span {
    font-size: 10px;
  }
  .setup-strip > p {
    margin-left: 49px;
  }
  .setup-strip > p strong {
    font-size: 24px;
  }
  .pricing-footnote p {
    font-size: 9px;
  }
  .method-section {
    padding: 58px 0 30px;
  }
  .process {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .process-step {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 0 20px;
    align-items: center;
  }
  .step-art {
    grid-row: 1/3;
    margin: 0;
    height: 157px;
  }
  .step-label {
    left: -2px;
    top: -5px;
    width: 21px;
    height: 21px;
    font-size: 8px;
    z-index: 2;
  }
  .document-art {
    width: 125px;
    padding: 12px;
  }
  .document-art b {
    font-size: 8px;
  }
  .doc-tags span {
    font-size: 6px;
    padding: 3px 4px;
  }
  .training-art {
    width: 125px;
    height: 130px;
  }
  .training-chip {
    font-size: 6px;
    padding: 6px;
    left: 4px;
  }
  .site-art {
    width: 124px;
    height: 108px;
  }
  .site-bar {
    padding-inline: 7px;
  }
  .site-bar span {
    font-size: 6px;
    margin-left: 2px;
  }
  .site-online {
    font-size: 6px;
    left: 2px;
    padding: 5px;
  }
  .process-step h3 {
    font-size: 17px;
    margin: 0 0 9px;
    align-self: end;
    line-height: 1.2;
  }
  .process-step > p {
    font-size: 10px;
    line-height: 1.7;
    align-self: start;
  }
  .human-note {
    align-items: flex-start;
  }
  .human-note p {
    font-size: 10px;
  }
  .request-section {
    grid-template-columns: 1fr;
    padding: 62px 0 45px;
    gap: 28px;
  }
  .request-copy h2 {
    font-size: 44px;
  }
  .request-copy > p:not(.eyebrow) {
    font-size: 13px;
    max-width: 330px;
  }
  .request-mascot {
    margin-top: 24px;
  }
  .mascot.giant {
    --size: 62px;
  }
  .speech-note {
    font-size: 10px;
  }
  .request-card {
    padding: 24px;
  }
  .request-submit {
    font-size: 10px;
    white-space: normal;
  }
  .faq-section {
    grid-template-columns: 1fr;
    padding-top: 20px;
    padding-bottom: 45px;
    gap: 24px;
  }
  .faq-section h2 {
    font-size: 34px;
  }
  .faq-section h2 br {
    display: none;
  }
  .faq-section h2 span:before {
    content: " ";
  }
  .faq-section .eyebrow {
    margin-bottom: 10px;
  }
  summary {
    font-size: 11px;
    padding-block: 15px;
  }
  .footer {
    gap: 20px;
    padding: 24px 0;
  }
  .footer p {
    font-size: 10px;
    text-align: right;
  }
  .footer > div {
    font-size: 9px;
  }
  .footer small {
    font-size: 9px;
  }
}

/* ==========================================================================
   13. ACCESSIBILITÉ (RÉDUCTION DES MOUVEMENTS)
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .motion .reveal {
    opacity: 1;
    transform: none;
  }
}


.setup-strip.setup-strip--detailed {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 24px 32px;
  padding: 26px;
  color: var(--ink);
  font-family: var(--font);
}

.setup-strip--detailed .setup-strip__intro {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  min-width: 0;
}

.setup-strip--detailed .setup-icon { flex-shrink: 0; }

.setup-strip--detailed .setup-strip__copy h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -.7px;
}

.setup-strip--detailed .setup-strip__copy p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.setup-strip--detailed .setup-strip__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  text-align: right;
}

.setup-strip--detailed .setup-strip__price p {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 9px;
  margin: 0;
}

.setup-strip--detailed .setup-strip__price strong {
  color: var(--ink);
  font-size: 38px;
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -1.5px;
  white-space: nowrap;
}

.setup-strip--detailed .setup-strip__price p span {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.setup-strip--detailed .setup-strip__once {
  max-width: 210px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.setup-strip--detailed .setup-strip__services {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 30px;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.setup-strip--detailed .setup-strip__services li {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 9px;
  margin: 0;
  color: #646b5c;
  font-size: 12px;
  line-height: 1.6;
}

.setup-strip--detailed .setup-strip__check {
  color: var(--orange-dark);
  font-weight: 700;
}

.setup-strip--detailed .setup-strip__footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.setup-strip--detailed .setup-strip__footer p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.setup-strip--detailed .setup-strip__footer strong {
  display: inline;
  color: var(--ink);
  font-size: inherit;
  font-weight: 650;
}

@media (max-width: 820px) {
  .setup-strip.setup-strip--detailed { gap: 22px; padding: 22px; }
  .setup-strip--detailed .setup-strip__copy h3 { font-size: 18px; }
  .setup-strip--detailed .setup-strip__price strong { font-size: 34px; }
}

@media (max-width: 560px) {
  .setup-strip.setup-strip--detailed {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    padding: 20px;
  }
  .setup-strip--detailed .setup-strip__price {
    align-items: flex-start;
    margin-left: 49px;
    text-align: left;
  }
  .setup-strip--detailed .setup-strip__services {
    grid-template-columns: minmax(0, 1fr);
    gap: 13px;
    padding-top: 19px;
  }
}

/* ==========================================================================
   14. PRIX DÉTAILLÉS (DÉTAILS DE LA CONFIGURATION)
   ========================================================================== */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-actions .nav-cta {
  width: auto;
  margin-left: 0;
  min-height: 43px;
  padding: 11px 15px;
  font-size: 11px;
  white-space: nowrap;
}

.mobile-label {
  display: none;
}

@media (max-width: 1100px) {
  .nav-actions .nav-cta {
    padding-inline: 12px;
    font-size: 10px;
  }
}

@media (max-width: 820px) {
  .desktop-label {
    display: none;
  }

  .mobile-label {
    display: inline;
  }
}

@media (max-width: 560px) {
  .nav-actions {
    gap: 6px;
  }

  .nav-actions .nav-cta {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 9px;
    gap: 6px;
  }

  .nav-actions .button-dot {
    width: 5px;
    height: 5px;
    box-shadow: none;
  }

  .nav-actions .nav-action-arrow {
    display: none;
  }
}

.nav-contact-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-contact-actions .nav-cta {
  width: auto;
  margin-left: 0;
}

.nav-contact-actions .whatsapp-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  border: 1px solid #159c45;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 12px #25d36635;
  transition: transform 0.2s, background 0.2s;
}

.nav-contact-actions .whatsapp-button::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid #a5edb8;
  border-radius: 50%;
}

.nav-contact-actions .whatsapp-icon {
  display: block;
  width: 25px;
  height: 25px;
}

.nav-contact-actions .whatsapp-button:hover {
  background: #1fbd5a;
  transform: translateY(-2px);
}

@media (max-width: 560px) {
  .nav-contact-actions {
    gap: 10px;
  }

  .nav-contact-actions .whatsapp-button {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .nav-contact-actions .whatsapp-icon {
    width: 21px;
    height: 21px;
  }

  .nav-contact-actions .whatsapp-button::before {
    inset: -4px;
  }
}

.appointment-button {
  position: relative;
  overflow: visible;
}

.appointment-notification {
  position: absolute;
  top: -6px;
  right: -5px;
  z-index: 2;

  width: 17px;
  height: 17px;

  border: 2px solid #fff;
  border-radius: 50%;

  background: var(--orange);
  box-shadow:
    0 2px 7px #25272225,
    0 0 0 0 #f4773555;

  animation: notification-pulse 2.4s ease-out infinite;
}

@keyframes notification-pulse {
  0% {
    box-shadow:
      0 2px 7px #25272225,
      0 0 0 0 #f4773555;
  }

  35% {
    box-shadow:
      0 2px 7px #25272225,
      0 0 0 7px #f4773500;
  }

  100% {
    box-shadow:
      0 2px 7px #25272225,
      0 0 0 7px #f4773500;
  }
}

@media (prefers-reduced-motion: reduce) {
  .appointment-notification {
    animation: none;
  }
}