/* =========================================================
   GANI MOBILITY — Page /assistant
   Préfixe : ap-   (évite toute collision avec le widget existant)
   ========================================================= */

/* ── Variables rapides ─────────────────────────────────── */
/* Toutes les valeurs sont alignées sur la charte existante */

/* ═══════════════════════════════════════════════════════════
   HERO — Design premium noir / doré
   ═══════════════════════════════════════════════════════════ */

/* Section wrapper */
.ap-hero {
  padding: 1.75rem 1.25rem 2.5rem;
  background: #f7f5f0;
}

/* Grande carte arrondie */
.ap-hero__card {
  max-width: 1240px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e6e1d8;
  border-radius: 32px;
  box-shadow: 0 4px 48px rgba(0, 0, 0, 0.055);
  overflow: hidden;
}

/* Grille 2 colonnes */
.ap-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 3.5rem 3.5rem 2.5rem;
  gap: 2rem;
}

/* Badge eyebrow */
.ap-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #c9a24d;
  margin: 0 0 1.1rem;
}
.ap-hero__badge-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c9a24d;
  flex-shrink: 0;
}

/* Titre */
.ap-hero__title {
  font-size: clamp(1.75rem, 3.2vw, 2.65rem);
  font-weight: 700;
  color: #0b0f19;
  letter-spacing: -0.03em;
  line-height: 1.14;
  margin: 0 0 1.1rem;
}
.ap-hero__title-gold {
  color: #c9a24d;
  display: block;
}

/* Lead */
.ap-hero__lead {
  font-size: 0.98rem;
  color: #5f6b7a;
  line-height: 1.75;
  margin: 0 0 2rem;
  max-width: 34rem;
}

/* CTAs */
.ap-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.ap-btn-primary {
  background: #0b0f19;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.78rem 1.6rem;
  font-size: 0.91rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.ap-btn-primary:hover { opacity: 0.82; }
.ap-btn-ghost {
  background: transparent;
  color: #0b0f19;
  border: 1.5px solid #c9a24d;
  border-radius: 999px;
  padding: 0.78rem 1.6rem;
  font-size: 0.91rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.ap-btn-ghost:hover { background: #c9a24d; color: #fff; }

/* Bénéfices */
.ap-hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.ap-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}
.ap-benefit__icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #f7f5f0;
  border: 1px solid #e6e1d8;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #c9a24d;
}
.ap-benefit__text {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  color: #5f6b7a;
  line-height: 1.35;
}
.ap-benefit__text strong {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0b0f19;
  margin-bottom: 0.1rem;
}

/* ── Colonne robot ──────────────────────────────────── */
.ap-hero__robot-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

/* Halo doré derrière le robot */
.ap-hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 77, 0.22) 0%, rgba(201, 162, 77, 0) 68%);
  pointer-events: none;
}

/* Robot 3D Spline */
.ap-robot-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  z-index: 2;
}

/* Shell Spline : réserve la place et gère l'état de chargement */
.gani-spline-shell {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
}

.gani-spline-shell spline-viewer {
  width: 100%;
  height: 100%;
  display: block;
}

/* Placeholder minimaliste pendant le chargement */
.gani-spline-fallback {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: transparent;
  pointer-events: none;
  z-index: 1;
}

/* Sur très petit écran : cache le viewer lourd, garde le fallback */

/* ── Bulles flottantes ─────────────────────────────── */
.ap-bubble {
  position: absolute;
  border-radius: 14px;
  padding: 0.55rem 0.85rem;
  font-size: 0.74rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 175px;
  line-height: 1.35;
  z-index: 3;
}
.ap-bubble--light {
  background: #ffffff;
  color: #0b0f19;
  border: 1px solid #e6e1d8;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}
.ap-bubble--dark {
  background: #0b0f19;
  color: #ffffff;
  border: 1px solid #1e2433;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}
.ap-bubble__icon { flex-shrink: 0; color: #c9a24d; }
.ap-bubble--dark .ap-bubble__icon { color: #c9a24d; }
.ap-bubble__dots {
  display: inline-flex;
  gap: 3px;
}
.ap-bubble__dots span {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c9a24d;
}

/* Positions */
.ap-bubble--tl { top: 10%; left: 0%; }
.ap-bubble--tr { top: 8%;  right: 0%; }
.ap-bubble--bl { bottom: 28%; left: 0%; }
.ap-bubble--br { bottom: 20%; right: 0%; }

/* Animations flottantes décalées */
@media (prefers-reduced-motion: no-preference) {
  .ap-bubble--tl { animation: ap-bubble-float 5.2s ease-in-out infinite; }
  .ap-bubble--tr { animation: ap-bubble-float 5.8s ease-in-out infinite 0.9s; }
  .ap-bubble--bl { animation: ap-bubble-float 6.4s ease-in-out infinite 1.6s; }
  .ap-bubble--br { animation: ap-bubble-float 5.0s ease-in-out infinite 0.4s; }
}
@keyframes ap-bubble-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

/* ── Règles de confiance ──────────────────────────── */
.ap-hero__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e6e1d8;
  margin: 0 3.5rem;
  padding: 2rem 0 2.25rem;
}
.ap-trust-rule {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding-right: 2rem;
}
.ap-trust-rule + .ap-trust-rule {
  padding-left: 2rem;
  padding-right: 2rem;
  border-left: 1px solid #e6e1d8;
}
.ap-trust-rule:last-child { padding-right: 0; }
.ap-trust-rule__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f7f5f0;
  border: 1px solid #e6e1d8;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #c9a24d;
}
.ap-trust-rule__text strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0b0f19;
  display: block;
  margin-bottom: 0.25rem;
}
.ap-trust-rule__text p {
  font-size: 0.79rem;
  color: #5f6b7a;
  line-height: 1.5;
  margin: 0;
}

/* ── Bandeau disclaimer ───────────────────────────── */
.ap-hero__disclaimer {
  max-width: 1240px;
  margin: 0.9rem auto 0;
  font-size: 0.79rem;
  color: #7a6a47;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: #fffbf0;
  border: 1px solid #e8dfc5;
  border-radius: 14px;
  padding: 0.75rem 1.1rem;
  line-height: 1.55;
}
.ap-hero__disclaimer svg { flex-shrink: 0; margin-top: 1px; color: #c9a24d; }

/* ── Responsive hero ──────────────────────────────── */
@media (max-width: 1024px) {
  .ap-hero__inner { padding: 2.75rem 2.5rem 2rem; }
  .ap-hero__trust { margin: 0 2.5rem; }
}
@media (max-width: 820px) {
  .ap-hero__inner {
    grid-template-columns: 1fr;
    padding: 2.25rem 2rem 1.75rem;
  }
  .ap-hero__robot-col {
    min-height: 300px;
    order: -1;
  }
  .ap-hero__trust { margin: 0 2rem; }
  .ap-bubble--tl { top: 4%;  left: 4%; }
  .ap-bubble--tr { top: 4%;  right: 4%; }
  .ap-bubble--bl { bottom: 4%; left: 4%; }
  .ap-bubble--br { bottom: 4%; right: 4%; }
}
@media (max-width: 600px) {
  .ap-hero { padding: 1rem 0.75rem 1.75rem; }
  .ap-hero__card { border-radius: 20px; }
  .ap-hero__inner { padding: 2rem 1.5rem 1.5rem; }
  .ap-hero__trust {
    grid-template-columns: 1fr;
    margin: 0 1.5rem;
    padding: 1.5rem 0 2rem;
    gap: 1.25rem;
  }
  .ap-trust-rule + .ap-trust-rule {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #e6e1d8;
    padding-top: 1.25rem;
  }
  .ap-bubble { display: none; }
  .ap-hero__robot-col { min-height: 240px; }
  .ap-hero__disclaimer { margin: 0.6rem 0.75rem 0; font-size: 0.75rem; }
}

/* ═══════════════════════════════════════════════════════════
   FEATURES (3 cartes)
   ═══════════════════════════════════════════════════════════ */
.ap-features {
  background: #f4f4f2;
  padding: 4rem 1.25rem;
}
.ap-features__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.ap-features__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 2.5rem;
  display: block;
}
.ap-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ap-card {
  background: #fff;
  border: 1px solid #e7e6e2;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ap-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #111827;
  display: grid;
  place-items: center;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}
.ap-card__icon svg { color: #fff; }
.ap-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  letter-spacing: -0.01em;
}
.ap-card__text {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   QUI EST GANI
   ═══════════════════════════════════════════════════════════ */
.ap-who {
  padding: 4.5rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}
.ap-who__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ap-who__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.75rem;
  display: block;
}
.ap-who__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #111827;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.ap-who__text {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.ap-who__note {
  font-size: 0.85rem;
  color: #9ca3af;
  line-height: 1.6;
}
.ap-who__langs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.ap-lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1.5px solid #e7e6e2;
  background: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  color: #374151;
}
.ap-lang-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #111827;
  flex-shrink: 0;
}
.ap-who__limits {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.ap-limit-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: #f4f4f2;
  border-radius: 12px;
  border: 1px solid #e7e6e2;
}
.ap-limit-row__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #111827;
  display: grid;
  place-items: center;
  margin-top: 0.05rem;
}
.ap-limit-row__icon svg { color: #fff; }
.ap-limit-row__text {
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.55;
}
.ap-limit-row__text strong {
  display: block;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.1rem;
}

/* ═══════════════════════════════════════════════════════════
   INTERACT — section premium chat + vocal côte à côte
   ═══════════════════════════════════════════════════════════ */
.ap-interact {
  background: #f7f5f0;
  padding: 4rem 1.25rem 3rem;
}
.ap-interact__wrap {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.ap-interact__card {
  display: flex;
  border-radius: 32px;
  border: 1px solid #e6e1d8;
  box-shadow: 0 4px 40px rgba(0,0,0,0.07);
  overflow: hidden;
  background: #fff;
  min-height: 560px;
}

/* ── Voix (gauche) ── */
.ap-interact__voice {
  width: 40%;
  flex-shrink: 0;
  background: #071326;
  position: relative;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ap-voice__glow-bg {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,77,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.ap-voice__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}
.ap-voice__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9a24d;
  margin: 0;
}
.ap-voice__title {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
}
.ap-voice__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
  margin: -0.75rem 0 0;
}
.ap-voice__btn-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
}
.ap-call-btn {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #c9a24d 0%, #a07832 100%);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 8px 40px rgba(201,162,77,0.45);
}
.ap-call-btn:hover { transform: scale(1.05); box-shadow: 0 12px 50px rgba(201,162,77,0.6); }
@media (prefers-reduced-motion: no-preference) {
  .ap-call-btn::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: rgba(201,162,77,0.14);
    animation: ap-fab-pulse 2.5s ease-in-out infinite;
  }
  .ap-call-btn::after {
    content: "";
    position: absolute;
    inset: -24px;
    border-radius: 50%;
    background: rgba(201,162,77,0.07);
    animation: ap-fab-pulse 2.5s ease-in-out infinite 0.6s;
  }
}
@keyframes ap-fab-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.2); opacity: 0; }
}
.ap-call-btn--active {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  box-shadow: 0 8px 40px rgba(185,28,28,0.5);
}
.ap-call-btn--active::before { background: rgba(220,38,38,0.14); }
.ap-call-btn--active::after  { background: rgba(220,38,38,0.07); }
.ap-call-btn__hang-icon { display: none; }
.ap-call-btn--active .ap-call-btn__phone-icon { display: none; }
.ap-call-btn--active .ap-call-btn__hang-icon  { display: block; }
.ap-call-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  letter-spacing: -0.01em;
}
.ap-call-status {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
  text-align: center;
  line-height: 1.5;
}
.ap-call-mic-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.42);
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Steps in voice col */
.ap-voice__steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ap-voice-step {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.ap-voice-step__num {
  font-size: 0.72rem;
  font-weight: 700;
  color: #071326;
  background: #c9a24d;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.ap-voice-step__copy {}
.ap-voice-step__title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.15rem;
}
.ap-voice-step__text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.ap-voice__wave {
  margin-top: auto;
  padding-top: 1.5rem;
  opacity: 0.8;
}

/* ── Chat (droite) ── */
.ap-interact__chat {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.ap-chat__box {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.ap-chat__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e6e1d8;
}
.ap-chat__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0b0f19;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 2px solid rgba(201,162,77,0.4);
}
.ap-chat__info { flex: 1; }
.ap-chat__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0b0f19;
}
.ap-chat__status {
  font-size: 0.75rem;
  color: #5f6b7a;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.ap-chat__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  display: inline-block;
}
.ap-chat__badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: #c9a24d;
  background: rgba(201,162,77,0.1);
  border: 1px solid rgba(201,162,77,0.3);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.ap-chat__messages {
  flex: 1;
  min-height: 180px;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  scroll-behavior: smooth;
}
.ap-message {
  display: flex;
  flex-direction: column;
}
.ap-message--user  { align-items: flex-end; }
.ap-message--gani  { align-items: flex-start; }
.ap-message--error { align-items: flex-start; }
.ap-message__bubble {
  max-width: 78%;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}
.ap-message--user .ap-message__bubble {
  background: #0b0f19;
  color: #fff;
  border-bottom-right-radius: 4px;
}
.ap-message--gani .ap-message__bubble {
  background: #f7f5f0;
  color: #0b0f19;
  border-bottom-left-radius: 4px;
  border: 1px solid #e6e1d8;
}
.ap-message--error .ap-message__bubble {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  border-bottom-left-radius: 4px;
  font-size: 0.83rem;
}
.ap-msg-link {
  color: #c9a24d;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
  transition: opacity 0.15s;
}
.ap-msg-link:hover { opacity: 0.7; }
.ap-message--user .ap-msg-link { color: #e8c87a; }

/* Typing dots */
.ap-typing {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.9rem;
  background: #f7f5f0;
  border: 1px solid #e6e1d8;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}
.ap-typing__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9ca3af;
}
@media (prefers-reduced-motion: no-preference) {
  .ap-typing__dot {
    animation: ap-typing-dot 1.2s ease-in-out infinite;
  }
  .ap-typing__dot:nth-child(2) { animation-delay: 0.2s; }
  .ap-typing__dot:nth-child(3) { animation-delay: 0.4s; }
}
@keyframes ap-typing-dot {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.5; }
  40%           { transform: translateY(-5px); opacity: 1; }
}

/* Suggestions */
.ap-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid #e6e1d8;
}
.ap-chip {
  display: inline-block;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  border: 1.5px solid #e6e1d8;
  background: #fff;
  font-size: 0.78rem;
  color: #374151;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  font-family: inherit;
}
.ap-chip:hover { border-color: #c9a24d; background: rgba(201,162,77,0.06); color: #0b0f19; }

/* Form */
.ap-chat__form {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.25rem;
  border-top: 1px solid #e6e1d8;
}
.ap-chat__input {
  flex: 1;
  border: 1.5px solid #e6e1d8;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  font-family: inherit;
  color: #0b0f19;
  background: #f7f5f0;
  outline: none;
  transition: border-color 0.15s;
}
.ap-chat__input::placeholder { color: #9ca3af; }
.ap-chat__input:focus { border-color: #c9a24d; background: #fff; }
.ap-chat__input:disabled { opacity: 0.5; cursor: not-allowed; }
.ap-chat__send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #0b0f19;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.15s, opacity 0.15s;
}
.ap-chat__send:hover { background: #c9a24d; }
.ap-chat__send:disabled { opacity: 0.35; cursor: not-allowed; }

/* ── Bandeau 4 features ── */
.ap-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.ap-feat-card {
  background: #fff;
  border: 1px solid #e6e1d8;
  border-radius: 18px;
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.ap-feat-card__icon {
  color: #c9a24d;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.ap-feat-card__body {}
.ap-feat-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0b0f19;
  margin-bottom: 0.3rem;
}
.ap-feat-card__text {
  font-size: 0.8rem;
  color: #5f6b7a;
  line-height: 1.5;
}

/* ── Disclaimer dans la section interact ── */
.ap-interact__disclaimer {
  background: #fffbf0;
  border: 1px solid #e8dfc5;
  border-radius: 14px;
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
  color: #7a6a45;
  line-height: 1.6;
  text-align: center;
}
.ap-disclaimer { display: none; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .ap-features-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .ap-interact__card { flex-direction: column; }
  .ap-interact__voice { width: 100%; padding: 2.5rem 2rem; }
  .ap-voice__wave { display: none; }
}

@media (max-width: 700px) {
  .ap-hero { padding: 3.5rem 1rem 3rem; }
  .ap-hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ap-hero__robot { order: -1; }
  .ap-robot-wrap { max-width: 280px; }
  .ap-chat__messages { min-height: 200px; }
  .ap-message__bubble { max-width: 92%; }
  .ap-features-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .ap-hero__title { font-size: 1.75rem; }
  .ap-interact { padding-top: 3rem; padding-bottom: 3rem; }
  .ap-interact__voice { padding: 2rem 1.5rem; }
  .ap-call-btn { width: 88px; height: 88px; }
}
