:root {
  --navy-950: #061122;
  --navy-900: #07162f;
  --navy-850: #0b1e3b;
  --navy-800: #10264b;
  --blue-600: #2563eb;
  --blue-500: #2f79ff;
  --gold-500: #f4b941;
  --gold-400: #ffd56b;
  --green-500: #23c56e;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f6f8fc;
  --soft-blue: #eef5ff;
  --white: #ffffff;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, .08);
  --shadow-md: 0 20px 55px rgba(15, 23, 42, .14);
  --shadow-dark: 0 20px 70px rgba(0, 0, 0, .35);
  --container: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
code { padding: .1rem .35rem; border-radius: .45rem; background: #eef2ff; color: #1e3a8a; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: .5rem;
  transform: translateY(-160%);
  background: var(--navy-950);
  color: #fff;
  padding: .7rem 1rem;
  border-radius: 999px;
  z-index: 1000;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.narrow { width: min(calc(100% - 40px), 860px); }
.section-pad { padding: clamp(72px, 8vw, 118px) 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, .72);
}
.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  padding: 7px 12px;
  border: 1px solid rgba(226,232,240,.92);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 28px rgba(15,23,42,.07);
}
.brand img {
  height: 38px;
  width: auto;
  max-width: 258px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.brand-baseline {
  display: block;
  padding-left: 12px;
  border-left: 1px solid rgba(100, 116, 139, .24);
  color: #526078;
  font-size: .78rem;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  color: #24324b;
}
.main-nav a { opacity: .84; }
.main-nav a:hover { opacity: 1; color: var(--blue-600); }

/* Menu déroulant offres depuis "Pour qui ?" */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  opacity: .84;
  padding: 0;
}
.nav-dropdown-trigger:hover,
.nav-dropdown.is-open .nav-dropdown-trigger {
  opacity: 1;
  color: var(--blue-600);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  min-width: 310px;
  display: none;
  padding: 10px;
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 20px;
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow-md);
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -18px;
  right: 0;
  left: 0;
  height: 18px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  display: grid;
  gap: 4px;
}
.nav-dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: #24324b;
  font-size: .94rem;
  line-height: 1.25;
  font-weight: 850;
  opacity: 1;
}
.nav-dropdown-menu a:hover {
  background: #f1f6ff;
  color: var(--blue-600);
}
@media (max-width: 760px) {
  .nav-dropdown {
    width: 100%;
  }
  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 15px;
    border-radius: 12px;
    font-size: 1.12rem;
  }
  .nav-dropdown-trigger:hover {
    background: #f8fafc;
  }
  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 4px;
    box-shadow: none;
    background: #f8fbff;
  }
  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }
  .nav-dropdown.is-open .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: grid;
  }
  .nav-dropdown-menu a {
    font-size: 1.04rem;
    padding: 13px 14px;
  }
}

.menu-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 46px;
  padding: .86rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark { background: var(--navy-950); color: #fff; box-shadow: 0 12px 30px rgba(6, 17, 34, .22); }
.btn-dark:hover { box-shadow: 0 16px 38px rgba(6, 17, 34, .3); }
.btn-soft { background: rgba(255,255,255,.88); color: var(--navy-950); border-color: rgba(15,23,42,.12); box-shadow: var(--shadow-sm); }
.btn-gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: #141414; box-shadow: 0 14px 34px rgba(244,185,65,.28); }
.btn-outline-dark { border-color: rgba(255,255,255,.32); color: #fff; background: rgba(255,255,255,.04); }
.btn-xl { min-height: 54px; padding-inline: 1.35rem; }
.full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 26%, rgba(58, 126, 255, .22), transparent 34%),
    linear-gradient(135deg, #f8fbff 0%, #eef5ff 52%, #ffffff 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 48%, rgba(238,245,255,.82) 100%);
  opacity: .95;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(520px, 1.06fr);
  align-items: center;
  gap: clamp(28px, 4vw, 52px);
  min-height: 590px;
}
.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.eyebrow-row span {
  padding: .5rem .72rem;
  border: 1px solid #d8e7ff;
  color: #2363d1;
  background: rgba(255,255,255,.76);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 800;
}
.hero h1 {
  margin: 0;
  max-width: 570px;
  font-size: clamp(2rem, 3.25vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -.048em;
  color: #040a18;
}
.hero-subtitle {
  margin: 24px 0 0;
  max-width: 590px;
  color: #475569;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.72;
}
.hero-actions { display: flex; flex-wrap: nowrap; align-items: center; gap: 12px; margin-top: 30px; }
.hero-actions .btn-xl { min-height: 50px; padding-inline: 1.05rem; font-size: .94rem; }
.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #475569;
  font-weight: 750;
}
.proof-list li { display: inline-flex; align-items: center; gap: .55rem; }
.proof-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border: 2px solid var(--blue-500);
  border-radius: 999px;
  color: var(--blue-600);
  font-size: .75rem;
}
.hero-visual { position: relative; min-height: 0; display: flex; justify-content: flex-end; }
.photo-card {
  position: relative;
  width: min(100%, 660px);
  aspect-ratio: 1.21 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,.62);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.mobile-hero-cards {
  display: none;
}
.mobile-hero-card {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-sm);
}
.mobile-hero-card strong {
  display: block;
  margin-bottom: 4px;
  color: #101827;
  font-size: .92rem;
  line-height: 1.2;
}
.mobile-hero-card p {
  margin: 0;
  color: #111827;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 800;
}
.mobile-hero-card small {
  display: block;
  margin-top: 5px;
  color: #64748b;
  font-size: .82rem;
  font-weight: 750;
}
.mobile-hero-card em {
  align-self: start;
  color: #94a3b8;
  font-style: normal;
  font-weight: 800;
  font-size: .82rem;
}
.mobile-hero-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #eef5ff;
  color: var(--blue-600);
  font-size: 1.25rem;
  font-weight: 900;
}
.mobile-hero-card-primary {
  grid-template-columns: 52px 1fr;
  border: 0;
  background: linear-gradient(135deg, #2563eb, #0f65db 58%, #1155cc);
  color: #fff;
  box-shadow: 0 18px 42px rgba(37, 99, 235, .28);
}
.mobile-hero-card-primary .mobile-hero-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.16);
  color: #fff;
}
.mobile-hero-card-primary strong,
.mobile-hero-card-primary p {
  color: #fff;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
  padding: 17px 18px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-sm);
}
.floating-card strong { display: block; color: #101827; font-size: .9rem; }
.floating-card small { display: block; color: #475569; margin-top: 4px; font-weight: 700; }
.icon-dot {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 16px;
  color: #2563eb;
  background: #eef5ff;
  font-weight: 900;
}
.card-1 { top: 92px; right: 0; }
.card-2 { top: 225px; right: 18px; }
.card-3 { top: 356px; right: 0; }
.opportunity-card {
  position: absolute;
  right: -16px;
  bottom: 72px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(350px, 86%);
  padding: 22px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #1f66ff, #0e48d9 68%, #073188);
  box-shadow: 0 28px 64px rgba(37,99,235,.34);
}
.opportunity-card strong { display: block; margin-bottom: 6px; }
.opportunity-card span { color: #dbeafe; font-weight: 700; }
.target-icon { flex: 0 0 auto; display: grid; place-items: center; width: 62px; height: 62px; border-radius: 22px; background: rgba(255,255,255,.16); font-size: 2rem; }

.section-heading { max-width: 790px; margin-bottom: 42px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.kicker {
  margin: 0 0 12px;
  color: var(--blue-600);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 950;
}
.kicker.gold { color: var(--gold-500); }
.section-heading h2,
.personalization h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  color: var(--navy-950);
}
.section-heading p,
.personalization p,
.final-cta p {
  color: #546179;
  font-size: 1.08rem;
  line-height: 1.72;
}

.problem-section { background: var(--soft); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.problem-card {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  column-gap: 22px;
  padding: 32px;
  border: 1px solid rgba(226,232,240,.82);
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.problem-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.08), transparent 70%);
}
.problem-icon {
  grid-row: span 4;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #eef5ff;
  color: var(--blue-600);
  box-shadow: inset 0 0 0 1px rgba(37,99,235,.12);
}
.problem-icon svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.label {
  margin: 0 0 8px;
  color: var(--blue-600);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .82rem;
  font-weight: 950;
}
.problem-card h3 { margin: 0; font-size: 1.34rem; line-height: 1.3; color: var(--navy-950); }
.problem-card p:not(.label) { margin: 0; color: #526078; font-size: 1.04rem; line-height: 1.68; font-weight: 650; }
.down-arrow {
  justify-self: center;
  width: 68px;
  height: 80px;
  margin: 20px auto 18px;
  background: url("../img/arrow-down-blue.png") center / contain no-repeat;
  filter: drop-shadow(0 8px 16px rgba(37, 99, 235, .18));
}
.down-arrow::before,
.down-arrow::after {
  content: none;
}

.trial-strip { padding: 30px 0; background: #fff; }
.trial-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-950), #0b2554);
  box-shadow: var(--shadow-dark);
}
.trial-strip p { margin: 0; font-size: clamp(1.05rem, 2vw, 1.45rem); font-weight: 900; line-height: 1.35; }

.process-section { background: #fff; }
.process-wrap { position: relative; max-width: 820px; margin: 0 auto; padding: 0 0 0 108px; }
.loop-arrow {
  position: absolute;
  left: 0;
  top: 5px;
  width: 112px;
  height: calc(100% - 58px);
  color: #3b82f6;
  opacity: .82;
}
.process-list { display: grid; gap: 78px; }
.process-card {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 128px;
  padding: 22px 30px 22px 22px;
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -86px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 98px;
  background: url("../img/arrow-down-blue.png") center / contain no-repeat;
  filter: drop-shadow(0 12px 22px rgba(37, 99, 235, .24));
  z-index: 2;
}
.step-index { display: none; }
.process-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #f8fbff;
  color: var(--blue-600);
  box-shadow: inset 0 0 0 1px rgba(37,99,235,.12), 0 10px 24px rgba(15,23,42,.06);
}
.process-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-card h3 { margin: 0 0 6px; font-size: 1.4rem; color: var(--navy-950); }
.process-card p { margin: 0; color: #526078; line-height: 1.6; font-weight: 650; }
.daily-loop {
  width: max-content;
  max-width: 100%;
  margin: 24px auto 0;
  padding: .72rem 1rem;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue-600);
  font-weight: 850;
}
.daily-loop span { font-size: 1.2rem; vertical-align: -1px; }

.differentiation { background: var(--soft); }
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.feature-card {
  padding: 32px 22px 34px;
  border: 1px solid rgba(226,232,240,.84);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
  color: var(--blue-600);
}
.feature-icon svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card h3 { margin: 0 0 18px; color: var(--navy-950); }
.feature-card h3::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin-top: 12px;
  border-radius: 99px;
  background: var(--blue-600);
}
.feature-card p { margin: 0; color: #526078; line-height: 1.62; font-weight: 650; }

.prospecting-focus { background: #fff; }
.prospecting-shell {
  padding: clamp(34px, 5vw, 56px);
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--shadow-md);
}
.prospecting-heading {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.prospecting-heading h2 {
  text-transform: none;
}
.prospecting-heading p {
  margin-left: auto;
  margin-right: auto;
}
.prospecting-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}
.prospecting-card {
  padding: 28px 26px;
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.prospecting-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.prospecting-icon {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 66px;
  height: 66px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
  color: var(--blue-600);
}
.prospecting-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.prospecting-icon::after {
  content: "↗";
  position: absolute;
  right: -20px;
  top: 8px;
  color: #e0314f;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-8deg);
}
.prospecting-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.4rem;
}
.prospecting-card p {
  margin: 0;
  color: #526078;
  line-height: 1.68;
  font-weight: 650;
}
.prospecting-card p + p {
  margin-top: 14px;
}
.prospecting-footer {
  margin: 34px auto 0;
  max-width: 860px;
  text-align: center;
  font-weight: 850;
  color: var(--navy-950) !important;
}

.email-section { background: #fff; }
.email-card {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.email-meta { margin: 0 0 18px; color: var(--blue-600); font-size: .74rem; letter-spacing: .16em; font-weight: 950; }
.email-card h3 { padding-bottom: 18px; margin: 0 0 28px; border-bottom: 1px solid var(--line); color: var(--navy-950); }
.email-card p { color: #334155; line-height: 1.82; }
.email-card strong { color: #111827; }

.market-section { background: linear-gradient(180deg, #f8fbff 0%, #fff 100%); }
.market-shell {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 20%, rgba(244,185,65,.16), transparent 30%),
    linear-gradient(135deg, #071122, #0b1834 60%, #050912);
  box-shadow: var(--shadow-dark);
}
.market-head { margin-bottom: 30px; }
.market-head h2 { margin: 0; font-size: clamp(2rem, 4.3vw, 3.8rem); line-height: 1.02; letter-spacing: -.055em; }
.market-head p:last-child { color: #bdc9dd; font-size: 1.08rem; line-height: 1.6; }
.market-grid { display: grid; grid-template-columns: 390px 1fr; gap: 28px; align-items: stretch; }
.market-tabs { display: grid; gap: 12px; }
.market-tab {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  color: #fff;
  background: rgba(255,255,255,.045);
  text-align: left;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.market-tab strong {
  font-size: clamp(1.12rem, 1.35vw, 1.32rem);
  line-height: 1.18;
  letter-spacing: -.025em;
}
.market-tab small { color: #cbd5e1; font-size: .92rem; font-weight: 850; white-space: nowrap; }
.market-tab:hover, .market-tab.active {
  transform: translateY(-1px);
  border-color: rgba(255,213,107,.8);
  background: linear-gradient(135deg, rgba(255,213,107,.98), rgba(255,255,255,.94));
  color: var(--navy-950);
  box-shadow: 0 18px 40px rgba(244,185,65,.18);
}
.market-tab.active small, .market-tab:hover small { color: #334155; }
.market-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(255,213,107,.64);
  border-radius: 28px;
  background: #fff9ea;
  color: var(--navy-950);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.market-visual { background: radial-gradient(circle at 50% 12%, #fff, #fff3cd); padding: 18px; }
.market-visual img {
  width: 100%;
  height: clamp(260px, 32vw, 430px);
  object-fit: contain;
  border-radius: 20px;
}
.market-detail { padding: 24px; }
.market-detail h3 { margin: 0 0 12px; font-size: clamp(1.45rem, 2.5vw, 2rem); letter-spacing: -.035em; }
.market-detail p { color: #475569; line-height: 1.62; font-weight: 700; }
.market-detail dl { display: grid; gap: 18px; margin: 22px 0 0; }
.market-detail dl > div { display: grid; grid-template-columns: 125px 1fr; gap: 18px; }
.market-detail dt { color: #6d28d9; font-weight: 950; }
.market-detail dd { margin: 0; color: #334155; line-height: 1.55; font-weight: 700; }
.benefit-row { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; }
.benefit-row span { display: grid; place-items: center; min-height: 74px; padding: 10px; border: 1px solid #f3df9e; border-radius: 16px; color: #7c5a0b; background: #fffdf5; font-size: .84rem; text-align: center; font-weight: 900; }
.market-actions { display: flex; gap: 14px; justify-content: center; margin-top: 28px; }

.pack-carousel-section { background: #fff; }
.carousel { position: relative; max-width: 940px; margin: 0 auto; }
.carousel-track { position: relative; overflow: hidden; border-radius: 30px; background: #f8fafc; box-shadow: var(--shadow-md); }
.carousel-slide { display: none; margin: 0; padding: clamp(18px, 4vw, 34px); text-align: center; }
.carousel-slide.active { display: block; animation: fadeIn .26s ease both; }
.carousel-slide img { width: 100%; max-height: 620px; object-fit: contain; border-radius: 22px; }
.carousel-slide figcaption { margin-top: 18px; color: var(--navy-950); font-weight: 950; font-size: 1.16rem; }
.carousel-btn {
  position: absolute;
  top: 46%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--navy-950);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  font-size: 2.2rem;
  line-height: 1;
}
.carousel-btn.prev { left: -24px; }
.carousel-btn.next { right: -24px; }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.carousel-dots button { width: 10px; height: 10px; border: 0; border-radius: 50%; background: #cbd5e1; cursor: pointer; }
.carousel-dots button.active { width: 28px; border-radius: 999px; background: var(--blue-600); }

.formats-section { background: var(--soft); }
.formats-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.format-card {
  padding: 24px;
  border: 1px solid rgba(226,232,240,.84);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.format-card h3 { margin: 0 0 10px; color: var(--navy-950); }
.format-card p { margin: 0; color: #526078; line-height: 1.6; font-weight: 650; }

.pricing-section { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.price-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.price-card.highlight { background: linear-gradient(135deg, #0c1f45, #061122); color: #fff; border-color: #1d3563; }
.price-card h3 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -.04em; }
.price-card p { margin: 0; color: #526078; line-height: 1.65; font-weight: 700; }
.price-card.highlight p { color: #dbeafe; }

.final-cta { background: #fff; }
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(244,185,65,.18), transparent 28%),
    linear-gradient(135deg, var(--navy-950), #0c2147);
  box-shadow: var(--shadow-dark);
}
.final-cta h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 3rem); }
.final-cta p { color: #d7e4f7; max-width: 760px; }

.site-footer { padding: 28px 0; border-top: 1px solid var(--line); background: #fff; color: #64748b; font-weight: 700; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-inner p { margin: 0; }
.footer-inner a { color: var(--blue-600); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes fadeIn { from { opacity: .35; transform: scale(.992); } to { opacity: 1; transform: scale(1); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-visual { min-height: 0; justify-content: center; }
  .photo-card { width: min(100%, 760px); }
  .card-1, .card-2, .card-3 { right: 0; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .market-grid { grid-template-columns: 1fr; }
  .market-tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .market-tab { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .market-tab strong { font-size: 1.08rem; }
  .market-tab small { display: none; }
  .formats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  body { font-size: 19px; }
  p, li, dd, dt { font-size: 1.12rem; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2,
  .prospecting-heading h2,
  .final-cta h2 { font-size: clamp(2.2rem, 8.4vw, 3rem); line-height: 1.08; }
  .section-heading p,
  .personalization p,
  .final-cta p,
  .prospecting-heading p,
  .prospecting-footer { font-size: 1.2rem; line-height: 1.76; }
  .process-card p,
  .feature-card p,
  .format-card p,
  .price-card p,
  .market-detail p,
  .market-detail dd,
  .email-card p,
  .trial-strip p,
  .prospecting-card p { font-size: 1.14rem; line-height: 1.72; }
  .process-card h3,
  .feature-card h3,
  .format-card h3,
  .prospecting-card h3,
  .market-detail h3,
  .email-card h3 { font-size: 1.4rem; }
  .feature-icon { width: 78px; height: 78px; margin-bottom: 20px; }
  .feature-icon svg { width: 60px; height: 60px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 64px 0; }
  .header-inner { height: 68px; }
  .brand { padding: 6px 10px; border-radius: 16px; }
  .brand img { height: 34px; max-width: 230px; }
  .brand-baseline { display: none; }
  .menu-toggle {
    margin-left: auto;
    display: inline-grid;
    place-items: center;
    gap: 4px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
  }
  .menu-toggle span { display: block; width: 18px; height: 2px; background: var(--navy-950); border-radius: 99px; }
  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-md);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 15px; border-radius: 12px; font-size: 1.12rem; }
  .main-nav a:hover { background: #f8fafc; }
  .hero-bg { background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(238,245,255,.86)); }
  .hero h1 { font-size: clamp(2.35rem, 9.8vw, 3.45rem); line-height: 1.06; }
  .hero-actions { flex-direction: column; flex-wrap: nowrap; align-items: stretch; }
  .btn { width: 100%; font-size: 1.1rem; min-height: 54px; }
  .proof-list { display: grid; }
  .hero-visual { min-height: 0; }
  .photo-card { display: none; }
  .mobile-hero-cards { display: grid; width: 100%; gap: 14px; }
  .floating-card { min-width: 225px; padding: 13px; }
  .card-1 { top: 36px; right: 12px; }
  .card-2 { top: 156px; right: 28px; }
  .card-3 { top: 276px; right: 12px; }
  .opportunity-card { right: 12px; bottom: 18px; }
  .problem-grid, .pricing-grid { grid-template-columns: 1fr; }
  .problem-card { grid-template-columns: 82px 1fr; column-gap: 20px; padding: 26px; }
  .problem-icon { width: 68px; height: 68px; }
  .problem-icon svg { width: 35px; height: 35px; }
  .problem-card h3 { font-size: 1.46rem; line-height: 1.3; }
  .problem-card p:not(.label) { font-size: 1.16rem; line-height: 1.74; }
  .label { font-size: .9rem; }
  .down-arrow { width: 76px; height: 90px; margin: 22px 0 20px; }
  .trial-strip-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .process-wrap { padding-left: 0; }
  .loop-arrow { display: none; }
  .process-list { gap: 70px; }
  .process-card { grid-template-columns: 78px 1fr; gap: 18px; padding: 22px; }
  .process-card:not(:last-child)::after { bottom: -78px; width: 74px; height: 88px; }
  .step-index { display: none; }
  .process-icon { width: 66px; height: 66px; }
  .process-icon svg { width: 42px; height: 42px; }
  .feature-grid, .formats-grid { grid-template-columns: 1fr; }
  .prospecting-cards { grid-template-columns: 1fr; }
  .prospecting-card-head { gap: 14px; }
  .prospecting-icon { width: 62px; height: 62px; }
  .prospecting-icon svg { width: 39px; height: 39px; }
  .market-shell { padding: 20px; border-radius: 26px; }
  .market-tabs { display: flex; overflow-x: auto; gap: 10px; padding-bottom: 8px; scroll-snap-type: x mandatory; }
  .market-tab { min-width: 190px; min-height: 114px; scroll-snap-align: start; padding: 18px 14px; }
  .market-tab strong { font-size: 1.08rem; line-height: 1.18; }
  .market-detail dl > div { grid-template-columns: 1fr; gap: 4px; }
  .benefit-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .market-actions { flex-direction: column; }
  .carousel-btn { width: 44px; height: 44px; font-size: 1.8rem; }
  .carousel-btn.prev { left: 6px; }
  .carousel-btn.next { right: 6px; }
  .final-cta-inner { flex-direction: column; align-items: stretch; text-align: left; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 460px) {
  body { font-size: 19px; }
  p, li, dd, dt { font-size: 1.1rem; }
  .section-heading p,
  .prospecting-heading p,
  .prospecting-footer,
  .final-cta p { font-size: 1.16rem; line-height: 1.74; }
  .hero-visual { min-height: 0; }
  .floating-card { min-width: auto; width: calc(100% - 24px); }
  .card-1, .card-2, .card-3 { left: 12px; right: 12px; }
  .card-2 { top: 132px; }
  .card-3 { top: 228px; }
  .opportunity-card { width: calc(100% - 24px); }

  .problem-card { grid-template-columns: 72px 1fr; padding: 24px; }
  .problem-icon { width: 62px; height: 62px; }
  .problem-icon svg { width: 32px; height: 32px; }
  .problem-card h3 { font-size: 1.38rem; }
  .problem-card p:not(.label) { font-size: 1.14rem; line-height: 1.74; }
  .down-arrow { width: 78px; height: 92px; margin: 22px 0 20px; }
  .market-visual img { height: 250px; }
}

/* Recette v7 — header sans cartouche, menu premium et hero pleine largeur */
.brand,
.offer-brand {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.brand img,
.offer-brand img {
  mix-blend-mode: normal;
  filter: none;
}
.brand-baseline,
.offer-brand small {
  border-left: 1px solid rgba(71, 85, 105, .22);
  color: #475569;
}
.nav-dropdown-trigger {
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  line-height: 1;
  transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.nav-dropdown-trigger:hover,
.nav-dropdown.is-open .nav-dropdown-trigger,
.nav-dropdown-trigger:focus-visible {
  background: #f1f6ff;
  border-color: rgba(37, 99, 235, .14);
  color: var(--blue-600);
  box-shadow: 0 10px 24px rgba(37, 99, 235, .08);
}
.nav-caret {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(1px);
  transition: transform .18s ease;
}
.nav-dropdown.is-open .nav-caret,
.nav-dropdown:hover .nav-caret {
  transform: translateY(1px) rotate(180deg);
}

.hero {
  min-height: 670px;
  background-color: #f8fbff;
  background-image: url('../img/hero-photo.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}
.hero-bg {
  background: linear-gradient(90deg,
    rgba(248,251,255,.995) 0%,
    rgba(248,251,255,.98) 34%,
    rgba(248,251,255,.82) 47%,
    rgba(248,251,255,.32) 62%,
    rgba(248,251,255,.08) 100%);
  opacity: 1;
}
.hero-grid {
  grid-template-columns: minmax(0, .96fr) minmax(500px, 1fr);
}
.hero-copy {
  max-width: 610px;
}
.hero-visual,
.photo-card,
.mobile-hero-cards {
  display: none;
}

/* Page de demande de test */
.trial-page {
  background:
    radial-gradient(circle at top right, rgba(37,99,235,.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fe 100%);
}
.trial-page .site-header { position: sticky; }
.trial-hero {
  padding: clamp(64px, 8vw, 104px) 0 clamp(52px, 7vw, 84px);
}
.trial-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}
.trial-copy h1 {
  margin: 0;
  max-width: 720px;
  color: var(--navy-950);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: .98;
  letter-spacing: -.06em;
}
.trial-copy p {
  max-width: 660px;
  margin: 24px 0 0;
  color: #475569;
  font-size: 1.18rem;
  line-height: 1.78;
}
.trial-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 30px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 24px 70px rgba(15,23,42,.09);
}
.trial-form {
  display: grid;
  gap: 16px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.form-field {
  display: grid;
  gap: 7px;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  color: #1f2937;
  font-weight: 850;
  font-size: .95rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(203,213,225,.95);
  border-radius: 14px;
  background: #fff;
  color: #0f172a;
  font: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form-field textarea {
  min-height: 132px;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(37,99,235,.66);
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}
.form-note {
  margin: 2px 0 0;
  color: #64748b;
  font-size: .92rem;
  line-height: 1.5;
}
.thanks-card {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 34px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 70px rgba(15,23,42,.08);
  text-align: center;
}
.thanks-card h1 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -.055em;
}
.thanks-card p {
  margin: 20px auto 0;
  max-width: 620px;
  color: #475569;
  font-size: 1.18rem;
  line-height: 1.78;
}
.thanks-card .btn { margin-top: 28px; }

@media (max-width: 1050px) {
  .hero {
    background-position: 62% center;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-copy {
    max-width: 670px;
  }
  .trial-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .brand { padding: 0; border-radius: 0; }
  .nav-dropdown-trigger {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    line-height: 1.2;
  }
  .hero {
    min-height: 0;
    background-image: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
    background-position: center;
  }
  .hero-bg {
    background: transparent;
  }
  .hero-visual,
  .mobile-hero-cards,
  .photo-card {
    display: none !important;
  }
  .trial-hero {
    padding-top: 52px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}


/* Recette v7.1 — correction hero : image non zoomée, bords carrés, continuité visuelle */
.hero {
  min-height: 0;
  background: #f8fbff;
  isolation: isolate;
}
.hero.section-pad {
  padding: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url('../img/hero-photo.jpg');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
}
.hero-bg {
  z-index: 0;
  background: linear-gradient(90deg,
    rgba(248,251,255,1) 0%,
    rgba(248,251,255,.995) 32%,
    rgba(248,251,255,.88) 44%,
    rgba(248,251,255,.42) 58%,
    rgba(248,251,255,.08) 76%,
    rgba(248,251,255,0) 100%);
  opacity: 1;
}
.hero-grid {
  min-height: clamp(430px, 39.5vw, 650px);
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  gap: 0;
}
.hero-copy {
  max-width: 650px;
  padding: clamp(54px, 6vw, 82px) 0;
}
.hero h1 {
  max-width: 660px;
  font-size: clamp(2.65rem, 3.8vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.hero-subtitle {
  max-width: 640px;
  color: #334155;
}
.hero-visual,
.photo-card,
.mobile-hero-cards {
  display: none !important;
}

@media (max-width: 1050px) {
  .hero::before {
    background-size: auto 100%;
    background-position: right center;
    opacity: .42;
  }
  .hero-bg {
    background: linear-gradient(90deg,
      rgba(248,251,255,1) 0%,
      rgba(248,251,255,.98) 52%,
      rgba(248,251,255,.80) 78%,
      rgba(248,251,255,.48) 100%);
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 700px;
  }
}

@media (max-width: 760px) {
  .hero {
    background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
  }
  .hero::before {
    display: none;
  }
  .hero-grid {
    min-height: 0;
  }
  .hero-copy {
    padding: 44px 0 54px;
  }
}


/* Correctif recette — section marchés, CTA intégrés et titres centrés */
.market-visual-link {
  display: block;
  border-radius: 20px;
  outline-offset: 4px;
}
.market-visual-link:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .55);
}
.market-visual-link img {
  transition: opacity .18s ease, transform .18s ease;
}
.market-visual-link:hover img {
  transform: translateY(-2px);
}
.market-detail {
  display: flex;
  flex-direction: column;
}
.market-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}
.market-detail-actions .btn {
  min-height: 48px;
}
.btn-outline-market {
  border-color: rgba(6,17,34,.16);
  color: var(--navy-950);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-outline-market:hover {
  border-color: rgba(37,99,235,.28);
  color: var(--blue-600);
}

@media (max-width: 760px) {
  .market-detail-actions {
    flex-direction: column;
  }
}

/* Formulaire test gratuit — marchés et ciblage régional */
.form-field select {
  width: 100%;
  min-height: 50px;
  padding: 12px 42px 12px 14px;
  border: 1px solid rgba(203,213,225,.95);
  border-radius: 14px;
  background: #fff;
  color: #0f172a;
  font: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #64748b 50%), linear-gradient(135deg, #64748b 50%, transparent 50%);
  background-position: calc(100% - 21px) 21px, calc(100% - 15px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.form-field select:focus {
  border-color: rgba(37,99,235,.66);
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}
.trial-region-map {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.trial-region-map img {
  display: block;
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  border-radius: 16px;
}

/* Section exemple — du fichier quotidien au mail généré */
.delivery-example-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(47,121,255,.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.delivery-example-section .container {
  width: min(calc(100% - 40px), 1120px);
}
.delivery-showcase {
  display: grid;
  gap: 24px;
}
.delivery-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: -10px;
}
.delivery-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid rgba(203,213,225,.85);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #24324b;
  font-size: .98rem;
  font-weight: 760;
  box-shadow: 0 10px 28px rgba(15,23,42,.06);
}
.delivery-pill svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue-600);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.delivery-pill strong {
  color: var(--blue-600);
  font-weight: 950;
}
.daily-delivery-card,
.delivery-email-card {
  width: min(100%, 980px);
  margin-inline: auto;
}
.daily-delivery-card {
  overflow: hidden;
  padding: clamp(22px, 3.4vw, 34px);
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 30px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 70px rgba(15,23,42,.09);
}
.daily-delivery-head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(280px, .72fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}
.delivery-eyebrow {
  margin: 0 0 8px;
  color: var(--blue-600);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.daily-delivery-head h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(1.55rem, 3.1vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.daily-delivery-head p:last-child {
  margin: 0;
  color: #526078;
  font-size: 1rem;
  line-height: 1.58;
  font-weight: 650;
}
.delivery-table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 22px;
  background: #fff;
}
.delivery-table {
  width: 100%;
  min-width: 860px;
  border-collapse: separate;
  border-spacing: 0;
  color: #1f2937;
}
.delivery-table th,
.delivery-table td {
  padding: 16px 15px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid rgba(226,232,240,.9);
}
.delivery-table th {
  background: #f8fbff;
  color: #41516e;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .02em;
  white-space: nowrap;
}
.delivery-table td {
  color: #25324a;
  font-size: .88rem;
  line-height: 1.5;
  font-weight: 650;
}
.delivery-table tr:last-child td {
  border-bottom: 0;
}
.delivery-table tr.is-selected td {
  background: linear-gradient(180deg, rgba(238,245,255,.96) 0%, rgba(255,255,255,.96) 100%);
}
.delivery-table tr.is-selected td:first-child {
  box-shadow: inset 4px 0 0 var(--blue-600);
}
.delivery-table a {
  color: var(--blue-600);
  font-weight: 850;
  overflow-wrap: anywhere;
}
.delivery-table strong {
  color: var(--navy-950);
  font-weight: 950;
}
.signal-type {
  display: block;
  color: var(--navy-950);
  font-weight: 950;
}
.delivery-table small {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: .78rem;
  font-weight: 750;
}
.delivery-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 0;
  color: #475569;
  font-size: .98rem;
  line-height: 1.55;
  font-weight: 760;
}
.delivery-note::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--soft-blue);
  box-shadow: inset 0 0 0 1px rgba(37,99,235,.2);
}
.vertical-mail-arrow {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: -2px 0;
  color: var(--blue-600);
  text-align: center;
  font-weight: 950;
}
.vertical-mail-arrow span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid rgba(37,99,235,.22);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(37,99,235,.09);
}
.mail-arrow-img {
  width: 84px;
  height: 98px;
  background: url("../img/arrow-down-blue.png") center / contain no-repeat;
  filter: drop-shadow(0 12px 22px rgba(37, 99, 235, .24));
}
.vertical-mail-arrow svg {
  width: 40px;
  height: 72px;
  fill: none;
  stroke: var(--blue-600);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 8px 14px rgba(37,99,235,.18));
}
.delivery-email-card {
  box-shadow: 0 24px 70px rgba(15,23,42,.11);
}

@media (max-width: 900px) {
  .daily-delivery-head {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .delivery-example-section .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .delivery-pills {
    justify-content: stretch;
  }
  .delivery-pill {
    width: 100%;
    align-items: flex-start;
    border-radius: 18px;
    font-size: 1rem;
  }
  .daily-delivery-card {
    padding: 18px;
    border-radius: 24px;
  }
  .daily-delivery-head h3 {
    font-size: clamp(1.7rem, 7vw, 2.15rem);
  }
  .daily-delivery-head p:last-child,
  .delivery-note {
    font-size: 1.04rem;
    line-height: 1.62;
  }
  .delivery-table {
    min-width: 820px;
  }
  .delivery-table th,
  .delivery-table td {
    padding: 14px 13px;
  }
  .delivery-table td {
    font-size: .92rem;
  }
  .vertical-mail-arrow span {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
  .delivery-email-card {
    padding: 22px;
  }
}

/* Accès compte SaaS — lot 3 */
.header-account{margin-left:auto;display:flex;align-items:center;justify-content:flex-end}.account-cta{white-space:nowrap;border:1px solid rgba(6,17,34,.22);background:#fff;color:#061122;padding:11px 16px;border-radius:10px;font-weight:750;box-shadow:0 4px 14px rgba(6,17,34,.06)}.account-cta:hover{border-color:#061122;transform:translateY(-1px)}@media(max-width:980px){.header-account{position:absolute;right:72px;top:50%;transform:translateY(-50%)}.account-cta{padding:9px 12px;font-size:.88rem}}@media(max-width:650px){.header-account{right:62px}.account-cta{font-size:0;width:42px;height:42px;padding:0;display:grid;place-items:center;border-radius:50%}.account-cta::before{content:'↗';font-size:1.1rem;font-weight:900}}@media(max-width:420px){.header-account{display:none}.main-nav.open::before{content:'Inscription / Connexion';display:block;padding:13px 15px;margin-bottom:8px;border:1px solid rgba(6,17,34,.18);border-radius:10px;font-weight:800;background:#fff}}
