/* BPM — Layout Mynt (capture 8ef42b2) */

:root {
  --purple-50: #f3e8ff;
  --purple-100: #ede9fe;
  --purple-200: #ddd6fe;
  --purple-300: #c4b5fd;
  --purple-glow: #a78bfa;
  --purple-deep: #2d1b5e;
  --ink: #1e1b4b;
  --ink-soft: #6b5b8a;
  --white: #ffffff;
  --blue-card: #dbeafe;
  --green-card: #d1fae5;
  --lavender-card: #ede9fe;
  --indigo-card: #c7d2fe;
  --dark: #1e1b4b;
  --radius: 24px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --radius-pill: 999px;
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Sora', system-ui, sans-serif;
  --shadow: 0 20px 60px rgba(30, 27, 75, 0.08);
  --shadow-lg: 0 40px 100px rgba(30, 27, 75, 0.14);
  --shadow-dash: 0 32px 80px rgba(30, 27, 75, 0.12), 0 8px 24px rgba(30, 27, 75, 0.06);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--purple-50);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ── BANNER / HERO (Mynt) ──────────────────── */
.hero-banner {
  position: relative;
  overflow: hidden;
  padding-bottom: 56px;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, #faf7ff 0%, #f0e8ff 30%, transparent 70%),
    linear-gradient(180deg,
      #faf6ff 0%,
      #ede4ff 25%,
      #ddd0fc 50%,
      #c9b8f5 72%,
      #b39ddb 88%,
      #9b7ed4 100%
    );
}

.hero-bg-deco {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none;
  z-index: 0;
}

/* Accent violet intense en bas + coins */
.hero-gradient-bottom {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(124, 58, 237, 0.45), transparent 70%),
    radial-gradient(ellipse 55% 45% at 100% 100%, rgba(109, 40, 217, 0.42), transparent 70%),
    radial-gradient(ellipse 80% 40% at 50% 110%, rgba(91, 33, 182, 0.35), transparent 65%);
  pointer-events: none;
}

/* Rayons lumineux */
.hero-ray {
  position: absolute;
  top: -30%; left: -15%;
  width: 75%; height: 90%;
  background: conic-gradient(
    from 210deg at 25% 25%,
    rgba(255, 255, 255, 0.7) 0deg,
    rgba(255, 255, 255, 0.2) 35deg,
    transparent 70deg,
    transparent 360deg
  );
  opacity: 0.85;
}
.hero-ray-2 {
  top: -10%; left: 5%;
  width: 50%; height: 60%;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.08) 40%,
    transparent 70%
  );
  opacity: 0.7;
}

/* Formes décoratives latérales */
.hero-shape {
  position: absolute;
  border-radius: 36px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.42) 0%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.08) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 20px 60px rgba(91, 33, 182, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ── Côté gauche ── */
.shape-left.shape-l1 {
  width: 220px; height: 340px;
  left: -4%; top: 22%;
  transform: rotate(-14deg);
  border-radius: 48px;
  opacity: 0.75;
}
.shape-left.shape-l2 {
  width: 160px; height: 260px;
  left: 2%; bottom: 8%;
  transform: rotate(-8deg);
  border-radius: 40px;
  opacity: 0.55;
}
.shape-left.shape-l3 {
  width: 100px; height: 180px;
  left: 8%; top: 48%;
  transform: rotate(-20deg);
  border-radius: 999px;
  opacity: 0.4;
}

/* ── Côté droit ── */
.shape-right.shape-r1 {
  width: 240px; height: 360px;
  right: -5%; top: 18%;
  transform: rotate(12deg);
  border-radius: 48px;
  opacity: 0.75;
}
.shape-right.shape-r2 {
  width: 170px; height: 280px;
  right: 1%; bottom: 6%;
  transform: rotate(9deg);
  border-radius: 40px;
  opacity: 0.55;
}
.shape-right.shape-r3 {
  width: 110px; height: 200px;
  right: 7%; top: 44%;
  transform: rotate(18deg);
  border-radius: 999px;
  opacity: 0.4;
}

.hero-inner {
  position: relative; z-index: 2;
  padding-top: 24px;
}

/* Nav pill flottante centrée */
.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto 56px;
  padding: 10px 12px 10px 20px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 24px rgba(30, 27, 75, 0.06), 0 1px 0 rgba(255,255,255,.8) inset;
}

.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.05rem;
  color: var(--ink);
  flex-shrink: 0;
}
.brand-bars {
  display: flex; align-items: flex-end; gap: 3px;
  height: 22px;
}
.brand-bars span {
  display: block; width: 4px;
  background: var(--ink);
  border-radius: 2px;
}
.brand-bars span:nth-child(1) { height: 10px; }
.brand-bars span:nth-child(2) { height: 16px; }
.brand-bars span:nth-child(3) { height: 22px; }
.brand-bars span:nth-child(4) { height: 14px; }

.nav-center {
  display: flex; gap: 28px; list-style: none;
  margin: 0; padding: 0; flex: 1; justify-content: center;
}
.nav-center a {
  font-size: .86rem; font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s;
}
.nav-center a:hover { color: var(--ink); }

.btn-signup {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid rgba(30, 27, 75, 0.06);
  font-size: .84rem; font-weight: 600;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(30, 27, 75, 0.05);
  transition: all .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-signup:hover {
  box-shadow: 0 6px 20px rgba(30, 27, 75, 0.1);
  transform: translateY(-1px);
}
.nav-burger {
  display: none; background: none; border: none;
  cursor: pointer; font-size: 1.35rem; color: var(--ink);
}

/* Hero texte */
.hero {
  text-align: center;
  padding: 0 16px;
  position: relative; z-index: 2;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.04em;
  max-width: 860px;
  margin: 0 auto 22px;
  color: var(--ink);
}
.hero-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.hero-btns {
  display: flex; gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.btn-dark {
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  background: var(--purple-deep);
  color: var(--white);
  font-weight: 600; font-size: .92rem;
  border: none; cursor: pointer;
  transition: all .25s;
  box-shadow: 0 8px 24px rgba(45, 27, 94, 0.25);
}
.btn-dark:hover {
  background: #1a1040;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(45, 27, 94, 0.3);
}
.btn-light {
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  font-weight: 600; font-size: .92rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  cursor: pointer; transition: all .25s;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(30, 27, 75, 0.04);
}
.btn-light:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-1px);
}

/* Dashboard incrusté dans le banner — ne déborde pas */
.hero-dashboard {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  margin-bottom: 0;
  padding: 0 24px;
}
.dash-card {
  max-width: 1180px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 12px;
  box-shadow: var(--shadow-dash);
  border: 1px solid rgba(30, 27, 75, 0.05);
}
.dash-card img {
  width: 100%;
  border-radius: calc(var(--radius-xl) - 8px);
  border: 1px solid rgba(30, 27, 75, 0.04);
}

/* Legacy — supprimé */
.hero-shell { display: none; }
.top-nav { display: none; }
.dash-glass { display: none; }
.brand-icon { display: none; }

/* ── LOGOS ─────────────────────────────────── */
.logos-section {
  padding: 72px 0 80px;
  text-align: center;
  background: var(--white);
  position: relative;
}
.logos-section p {
  font-size: .88rem; color: var(--ink-soft);
  margin: 0 0 28px;
}
.logo-pills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
}
.logo-pill {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 36px;
  box-shadow: 0 4px 20px rgba(17,24,39,.05);
  border: 1px solid rgba(17,24,39,.04);
  display: flex; align-items: center; justify-content: center;
  min-width: 140px; min-height: 64px;
}
.logo-pill img { height: 28px; width: auto; opacity: .7; filter: grayscale(1); }
.logo-pill:hover img { opacity: 1; filter: none; }

/* ── FEATURES 2x2 ─────────────────────────── */
.features-section {
  padding: 80px 0 100px;
  background: var(--purple-50);
}
.features-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.25;
  letter-spacing: -.02em;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feature-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .3s;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  margin: 0 0 8px;
}
.feature-card p {
  font-size: .88rem; color: var(--ink-soft);
  margin: 0 0 20px; line-height: 1.6;
  max-width: 280px;
}
.feature-card .fc-visual {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  border: 1px solid rgba(255,255,255,.5);
}
.feature-card .fc-visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top left;
}
.feature-card.blue { background: var(--blue-card); }
.feature-card.green { background: var(--green-card); }
.feature-card.lavender { background: var(--lavender-card); }
.feature-card.indigo { background: var(--indigo-card); }

/* ── STATS ─────────────────────────────────── */
.stats-section {
  padding: 80px 0 100px;
  text-align: center;
}
.stats-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 48px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.stat-item p {
  font-size: .85rem; color: var(--ink-soft);
  margin: 0; line-height: 1.55;
  max-width: 200px;
  margin-inline: auto;
}

/* ── SOLUTIONS ─────────────────────────────── */
.solutions-section {
  padding: 0 0 100px;
}
.solutions-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px;
}
.solutions-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
.solution-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid rgba(17,24,39,.05);
  box-shadow: 0 4px 20px rgba(17,24,39,.04);
  display: flex; flex-direction: column;
  min-height: 320px;
  transition: transform .3s;
}
.solution-card:hover { transform: translateY(-4px); }
.solution-card .sol-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.3rem; margin-bottom: 20px;
}
.solution-card h3 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  margin: 0 0 10px;
}
.solution-card p {
  font-size: .82rem; color: var(--ink-soft);
  margin: 0; line-height: 1.6; flex: 1;
}
.solution-card.dark {
  background: var(--dark);
  color: var(--white);
  border: none;
  justify-content: space-between;
}
.solution-card.dark p { color: rgba(255,255,255,.65); }
.solution-card.dark .btn-dark {
  background: var(--white); color: var(--ink);
  width: 100%; justify-content: center;
  display: inline-flex; margin-top: 20px;
}
.sol-preview {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(17,24,39,.06);
}
.sol-preview img { width: 100%; }

/* ── TESTIMONIAL ───────────────────────────── */
.testimonial-section {
  padding: 0 0 100px;
}
.testimonial-wrap {
  position: relative;
  max-width: 720px; margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17,24,39,.04);
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 500;
  line-height: 1.7; margin: 0 0 28px;
  color: var(--ink);
}
.testimonial-author {
  display: flex; align-items: center;
  justify-content: center; gap: 12px;
}
.testimonial-author img,
.testimonial-author .av {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover;
}
.testimonial-author .av {
  background: var(--purple-200);
  display: grid; place-items: center;
  font-weight: 700; font-size: .85rem;
}
.testimonial-author strong { display: block; font-size: .9rem; text-align: left; }
.testimonial-author span { font-size: .78rem; color: var(--ink-soft); }
.testi-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 1px solid rgba(17,24,39,.08);
  display: grid; place-items: center; cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  transition: all .2s; color: var(--ink-soft);
}
.testi-arrow:hover { color: var(--ink); box-shadow: var(--shadow); }
.testi-arrow.prev { left: -56px; }
.testi-arrow.next { right: -56px; }

/* ── CONTACT + FOOTER ──────────────────────── */
.contact-section {
  padding: 0 0 80px;
}
.contact-band {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  border: 1px solid rgba(17,24,39,.04);
}
.contact-band h2 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  margin: 0 0 12px;
}
.contact-band .sub { color: var(--ink-soft); margin-bottom: 24px; font-size: .92rem; }
.contact-list { display: flex; flex-direction: column; gap: 12px; font-size: .9rem; }
.contact-list i { color: var(--purple-glow); margin-right: 8px; }
.contact-list a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .78rem; font-weight: 600; margin-bottom: 6px; color: var(--ink-soft); }
.field input, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid rgba(17,24,39,.1);
  border-radius: 12px; font-family: inherit;
  font-size: .9rem; background: var(--purple-50);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--purple-glow);
  background: var(--white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.site-footer {
  padding: 32px 0 48px;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 16px; font-size: .82rem; color: var(--ink-soft);
  border-top: 1px solid rgba(17,24,39,.06);
}
.site-footer a:hover { color: var(--ink); }

/* ── REVEAL ────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1200px) {
  .shape-left.shape-l1, .shape-right.shape-r1 { width: 180px; height: 280px; opacity: 0.6; }
  .shape-left.shape-l2, .shape-right.shape-r2 { width: 130px; height: 220px; opacity: 0.45; }
  .shape-left.shape-l3, .shape-right.shape-r3 { display: none; }
}
@media (max-width: 960px) {
  .nav-pill { margin-bottom: 40px; padding: 10px 16px; }
  .nav-center { display: none; }
  .nav-burger { display: block; margin-left: auto; }
  .btn-signup { display: none; }
  .hero-shape { display: none; }
  .hero-dashboard { margin-top: 32px; padding: 0 16px; }
  .dash-card { border-radius: 24px; padding: 8px; }
  .logos-section { padding-top: 56px; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .solutions-row { grid-template-columns: 1fr 1fr; }
  .contact-band { grid-template-columns: 1fr; }
  .testi-arrow.prev { left: -8px; }
  .testi-arrow.next { right: -8px; }
}
@media (max-width: 600px) {
  .stats-row, .solutions-row { grid-template-columns: 1fr; }
  .testimonial-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .logo-pill { min-width: 120px; padding: 16px 24px; }
}

.nav-mobile {
  display: none;
  position: fixed; top: 80px; left: 16px; right: 16px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  flex-direction: column; gap: 4px;
  border: 1px solid rgba(255,255,255,.8);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 12px 16px; border-radius: 12px; font-weight: 500; }
.nav-mobile a:hover { background: var(--purple-100); }
