/* ============================================================
   Audace Consulting - Landing formation avocates
   Editorial premium build. Inter, fond clair, CTA #DFF957.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;0,14..32,900&display=swap');

:root {
  --bg:        #ffffff;
  --bg-soft:   #f5f3ec;      /* warm off-white band */
  --bg-ink:    #101014;      /* dark band */
  --ink:       #0d0d0f;      /* headings */
  --ink-2:     #43434b;      /* body */
  --ink-3:     #77777f;      /* muted */
  --border:    #e8e6dd;
  --border-2:  #edece4;
  --accent:    #dff957;      /* jaune-vert CTA */
  --accent-hi: #e9ff77;
  --accent-lo: #cfe93f;      /* hover */
  --accent-ink:#11130a;      /* ink on yellow */
  --accent-deep:#6f8a12;     /* dark green for checks/ticks */
  --card:      #ffffff;
  --shadow-sm: 0 1px 2px rgba(13,13,15,.04), 0 8px 24px rgba(13,13,15,.05);
  --shadow-md: 0 2px 6px rgba(13,13,15,.05), 0 22px 50px rgba(13,13,15,.10);
  --radius:    16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --maxw:      1180px;
  --gutter:    clamp(20px, 5vw, 64px);
  --font:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink-2);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0;
  font-weight: 800;
  text-wrap: balance;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- Highlighter (signature jaune sur mots-cles) ---------- */
.mark {
  background-image: linear-gradient(transparent 56%, var(--accent) 56%, var(--accent) 94%, transparent 94%);
  padding: 0 .06em;
  border-radius: 2px;
  color: inherit;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(54px, 5vw, 78px); position: relative; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding-block: clamp(52px, 7vw, 96px); }

/* Deux sections de meme fond (claires) qui se suivent : on resserre la frontiere
   pour eviter le double padding qui creait un grand vide blanc. */
.section:not(.section--soft):has(+ .section:not(.section--soft)) { padding-bottom: clamp(32px, 3.6vw, 46px); }
.section:not(.section--soft) + .section:not(.section--soft) { padding-top: clamp(32px, 3.6vw, 46px); }

/* kicker: petit index editorial (non-copy) */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-3);
  margin-bottom: 18px;
}
.kicker::before {
  content: ""; width: 26px; height: 2px; background: var(--accent-lo); border-radius: 2px;
}
.kicker--center { justify-content: center; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-ink);
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--accent);
  margin-bottom: 22px;
}
.eyebrow--plain {
  background: transparent;
  color: var(--ink-3);
  padding: 0;
  margin-bottom: 16px;
  letter-spacing: 0.2em;
}

.lead {
  font-size: clamp(1.08rem, 1.4vw, 1.24rem);
  color: var(--ink-2);
  line-height: 1.7;
}

h2.h-section {
  font-size: clamp(1.75rem, 3.7vw, 2.8rem);
  font-weight: 800;
  line-height: 1.06;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent-ink);
  background: var(--accent);
  border: none;
  border-radius: 12px;
  padding: 16px 26px;
  min-height: 52px;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  box-shadow: 0 1px 0 rgba(13,13,15,.04);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
/* Les boutons du modal (fondateur) restent en casse normale */
.lead-form__submit,
.lead-modal__success .btn { text-transform: none; letter-spacing: -0.01em; }
.btn:hover { background: var(--accent-lo); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid #1c1c22; outline-offset: 3px; }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn--sm { padding: 12px 20px; min-height: 44px; font-size: 0.92rem; border-radius: 10px; }
.btn--lg { padding: 19px 34px; font-size: 1.06rem; min-height: 60px; }
.btn--onDark { box-shadow: 0 10px 30px rgba(223,249,87,.24); }
.btn--onDark:focus-visible { outline-color: var(--accent); }

.microcta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-top: 30px;
}

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--ink);
  color: var(--accent);
  display: grid; place-items: center;
  flex: none;
}
.brand__mark svg { width: 19px; height: 19px; }
.brand__name {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1.05;
}
.brand__name span { display: block; font-size: 0.66rem; letter-spacing: 0.22em; color: var(--ink-3); font-weight: 600; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(42px, 5vw, 78px); padding-bottom: clamp(48px, 5vw, 74px); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.1rem, 3.9vw, 3.15rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.028em;
  margin-bottom: 24px;
}
.hero .lead { max-width: 40ch; }
.hero .lead strong { color: var(--ink); font-weight: 700; }
.hero__note {
  margin-top: 24px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 48ch;
}

/* Preuve hero : avatars + stat */
.hero__proof {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px; padding-top: 26px;
  border-top: 1px solid var(--border);
}
.avstack { display: flex; }
.avstack img {
  width: 42px; height: 42px; border-radius: 999px;
  object-fit: cover; border: 2.5px solid var(--bg);
  background: var(--bg-soft);
}
.avstack img + img { margin-left: -14px; }
.hero__proof-txt { display: flex; flex-direction: column; line-height: 1.25; }
.hero__proof-num { font-weight: 800; color: var(--ink); font-size: 1.02rem; letter-spacing: -0.02em; }
.hero__proof-sub { font-size: 0.82rem; color: var(--ink-3); }
.hero__proof .stars { margin: 0 0 3px; }

.hero__media { position: relative; display: block; width: 100%; padding: 0; border: 0; background: none; cursor: pointer; border-radius: var(--radius-xl); }
.hero__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: transform .4s ease;
}
.hero__media:hover img { transform: scale(1.015); }
.hero__media:focus-visible { outline: 3px solid var(--ink); outline-offset: 4px; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 1px rgba(13,13,15,.06);
  pointer-events: none;
}

/* ---------- CTA de section (centre) ---------- */
.section-cta { display: flex; justify-content: center; margin-top: clamp(34px, 4vw, 50px); }

/* ---------- Section heading block ---------- */
.h-center { text-align: center; margin-inline: auto; }
.section-head { max-width: 780px; margin-inline: auto; text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }

/* ---------- Testimonials (paire) ---------- */
.tm-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 20px 32px;
  margin-bottom: clamp(34px, 4vw, 52px);
}
.tm-head h2 { max-width: 18ch; }
.proof-stat { text-align: right; flex: none; }
.proof-stat b {
  display: block; font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 800;
  color: var(--ink); letter-spacing: -0.04em; line-height: 1;
}
.proof-stat span { color: var(--ink-3); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.02em; }
.proof-stat b .mark { padding: 0 .04em; }

.tgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 28px);
}
.tcard {
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.tcard__quote {
  font-size: 1.1rem;
  line-height: 1.66;
  color: #242429;
  margin-bottom: 26px;
  letter-spacing: -0.01em;
}
.tcard__foot {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.tcard__avatar {
  width: 54px; height: 54px; flex: none;
  border-radius: 999px;
  object-fit: cover;
  background: var(--bg-soft);
}
.tcard__who { display: flex; flex-direction: column; line-height: 1.35; }
.tcard__who b { color: var(--ink); font-weight: 700; font-size: 0.98rem; }
.tcard__who span { color: var(--ink-3); font-size: 0.86rem; }
.tcard__firm {
  margin-left: auto;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  text-align: center;
}
.tcard__firm img { height: 34px; width: 34px; object-fit: contain; border-radius: 999px; }
.tcard__firm span { color: var(--ink-3); font-size: 0.72rem; }

.stars { display: flex; gap: 3px; margin-bottom: 18px; }
.stars svg { width: 17px; height: 17px; fill: #e0b93a; }

/* ---------- Manifeste : la lettre ---------- */
.manifesto { max-width: 880px; margin-inline: auto; }
.manifesto__head {
  font-size: clamp(1.75rem, 3.7vw, 2.7rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.028em;
  text-align: center;
  max-width: 20ch;
  margin: 0 auto clamp(34px, 4.5vw, 52px);
}
.letter {
  background: var(--bg-soft);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: clamp(30px, 5vw, 66px) clamp(26px, 5vw, 72px);
  box-shadow: var(--shadow-sm);
}
.letter__body { max-width: 620px; margin-inline: auto; }
.letter__body p { font-size: 1.08rem; line-height: 1.66; color: var(--ink-2); }
.letter__body p + p { margin-top: 1.4em; }
.letter__body strong { color: var(--ink); font-weight: 700; }
.letter__salut {
  font-size: 1.28rem !important; font-weight: 700; color: var(--ink) !important;
  letter-spacing: -0.02em; margin-bottom: 0.2em;
}
.letter__kicker {
  font-size: 1.14rem !important; font-weight: 700; color: var(--ink) !important;
}

.checkflow { list-style: none; margin: 1.6em 0; padding: 0; display: grid; gap: 14px; }
.checkflow li {
  display: flex; align-items: flex-start; gap: 13px;
  font-size: 1.06rem; line-height: 1.5; color: var(--ink-2);
}
.checkflow li::before {
  content: "";
  flex: none; width: 24px; height: 24px; margin-top: 2px;
  border-radius: 7px;
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12l5 5L20 6' fill='none' stroke='%2311130a' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 15px; background-repeat: no-repeat; background-position: center;
}

/* ---------- Check icon (partage) ---------- */
.check {
  flex: none; width: 26px; height: 26px; margin-top: 1px;
  border-radius: 8px;
  background: var(--accent);
  display: grid; place-items: center;
}
.check svg { width: 15px; height: 15px; stroke: var(--accent-ink); stroke-width: 2.6; fill: none; }

/* ---------- Section video (titre + raisons numerotees) ---------- */
.videosec { max-width: 980px; margin-inline: auto; }
.videosec__media {
  position: relative;
  margin: 0 auto clamp(40px, 5vw, 60px);
  max-width: 760px;
  border: 0; padding: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  display: block; width: 100%;
  box-shadow: var(--shadow-md);
}
.videosec__media img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.videosec__media:hover img { transform: scale(1.03); }
.videosec__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,15,0) 40%, rgba(13,13,15,.28));
}
.playbtn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 2;
  width: 74px; height: 74px; border-radius: 999px;
  background: var(--accent);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(13,13,15,.28);
  transition: transform .2s ease;
}
.videosec__media:hover .playbtn { transform: translate(-50%, -50%) scale(1.08); }
.playbtn svg { width: 26px; height: 26px; margin-left: 3px; fill: var(--ink); }

.reasons { display: grid; gap: clamp(4px, 1vw, 8px); max-width: 760px; margin-inline: auto; }
.reason {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  padding: clamp(26px, 3.4vw, 34px) 0;
  border-top: 1px solid var(--border);
}
.reason:last-child { border-bottom: 1px solid var(--border); }
.reason__num {
  font-size: 1rem; font-weight: 800; color: var(--ink);
  letter-spacing: 0.02em;
  padding-top: 3px;
  font-variant-numeric: tabular-nums;
}
.reason__num i { color: var(--accent-deep); font-style: normal; }
.reason h3 {
  font-size: clamp(1.28rem, 2.4vw, 1.65rem);
  font-weight: 800; line-height: 1.18; letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.reason p { font-size: 1.04rem; line-height: 1.62; color: var(--ink-2); }

/* ---------- Carte histoire (Anne-Sophie) avant / apres ---------- */
.storycard {
  max-width: 900px; margin: clamp(30px, 4vw, 44px) auto 0;
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: clamp(28px, 3.6vw, 46px);
}
.storycard__head {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 24px; margin-bottom: 26px;
  border-bottom: 1px solid var(--border);
}
.storycard__avatar {
  width: 56px; height: 56px; flex: none;
  border-radius: 999px; object-fit: cover; background: var(--bg-soft);
}
.storycard__who b { display: block; color: var(--ink); font-weight: 700; font-size: 1.05rem; }
.storycard__who span { color: var(--ink-3); font-size: 0.88rem; }
.storycard__who strong { color: var(--ink-2); font-weight: 600; }

.ba-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 22px); }
.ba {
  border-radius: var(--radius); padding: clamp(22px, 2.6vw, 30px);
  font-size: 1.02rem; line-height: 1.6; margin: 0;
  position: relative;
}
.ba strong {
  display: block; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 12px;
}
.ba--before { background: #17171b; color: #cfcfd6; }
.ba--before strong { color: #86868f; }
.ba--after { background: #eef4d4; color: #33361f; }
.ba--after strong { color: var(--accent-deep); }
.storycard__quote {
  margin: clamp(26px, 3vw, 34px) 0 0;
  font-size: clamp(1.14rem, 2vw, 1.4rem); line-height: 1.4; font-weight: 700;
  color: var(--ink); letter-spacing: -0.02em; text-align: center;
  max-width: 24ch; margin-inline: auto;
}

/* ---------- Cartes (3) pourquoi differente ---------- */
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 26px);
  align-items: stretch;
}
.tintcard {
  background: var(--bg-soft);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 2.8vw, 38px);
  display: flex; flex-direction: column;
}
.tintcard__num {
  font-size: 0.82rem; font-weight: 800; color: var(--accent-deep);
  letter-spacing: 0.04em; margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}
.tintcard h3 { font-size: 1.22rem; font-weight: 800; line-height: 1.2; margin-bottom: 13px; letter-spacing: -0.02em; }
.tintcard p { color: #3a3d2e; font-size: 1rem; line-height: 1.6; }

/* ---------- Qui suis-je (portrait + bio) ---------- */
.about { max-width: 980px; margin-inline: auto; }
.about__grid {
  display: grid; grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 64px); align-items: center;
  margin-top: clamp(36px, 4.5vw, 56px);
}
.about__portrait {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  background: var(--bg-soft); box-shadow: var(--shadow-md);
}
.about__portrait img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top;
}
.about__name { display: block; color: var(--ink); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em; }
.about__role { display: block; color: var(--accent-deep); font-weight: 700; font-size: 0.92rem; margin-top: 6px; letter-spacing: 0.02em; text-transform: uppercase; }
.about__body { margin-top: 22px; }
.about__body p { font-size: 1.06rem; line-height: 1.66; color: var(--ink-2); }
.about__body p + p { margin-top: 16px; }

/* ---------- En 10 minutes ---------- */
.tenmin { max-width: 900px; margin-inline: auto; }
.tenmin__list {
  list-style: none; padding: 0;
  margin: clamp(34px, 4vw, 52px) 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 34px;
}
.tenmin__list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 1.05rem; color: #2a2a30; line-height: 1.45;
  padding: 4px 0;
}
.tenmin__free { text-align: center; margin-top: clamp(30px, 3.5vw, 42px); font-size: 1.14rem; font-weight: 700; color: var(--ink); }
.tenmin__note {
  text-align: center; margin: clamp(28px, 3.5vw, 40px) auto 0; max-width: 60ch;
  color: var(--ink-3); font-size: 0.94rem; line-height: 1.6;
}

/* ---------- Bande CTA finale ---------- */
.finalcta { background: var(--bg-ink); color: #fff; padding-block: clamp(60px, 6.5vw, 88px); }
.finalcta__inner { max-width: 760px; margin-inline: auto; text-align: center; }
.finalcta .kicker { color: rgba(255,255,255,.6); }
.finalcta .kicker::before { background: var(--accent); }
.finalcta h2 {
  color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.06;
  letter-spacing: -0.03em; max-width: 18ch; margin: 0 auto clamp(30px, 4vw, 42px);
}
.finalcta h2 .mark {
  color: var(--ink);
  background-image: none;
  background-color: var(--accent);
  padding: 0.02em 0.18em;
  border-radius: 6px;
}
.finalcta__note { color: rgba(255,255,255,.5); font-size: 0.92rem; line-height: 1.6; max-width: 52ch; margin: clamp(24px, 3vw, 32px) auto 0; }

/* ---------- Footer ---------- */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding-block: 48px; }
.footer__inner { display: grid; gap: 14px; justify-items: center; text-align: center; }
.footer__links { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 14px; }
.footer__links a { color: var(--ink-2); font-size: 0.9rem; }
.footer__links a:hover { color: var(--ink); }
.footer__links span { color: var(--ink-3); }
.footer__copy { color: var(--ink-3); font-size: 0.82rem; letter-spacing: 0.02em; text-transform: uppercase; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__media { order: -1; }
  .hero__media img { aspect-ratio: 16 / 10; }
  .hero .lead { max-width: none; }
  .cards3 { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .about__grid { grid-template-columns: 1fr; gap: 28px; max-width: 560px; margin-inline: auto; text-align: center; }
  .about__portrait { max-width: 380px; margin-inline: auto; }
  .about__portrait img { aspect-ratio: 4 / 4.4; }
  .about__body { text-align: left; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .tgrid { grid-template-columns: 1fr; }
  .tm-head { flex-direction: column; align-items: flex-start; }
  .tm-head h2 { max-width: none; }
  .proof-stat { text-align: left; }
  .ba-cols { grid-template-columns: 1fr; }
  .tenmin__list { grid-template-columns: 1fr; gap: 13px; }
  .nav__inner { min-height: 64px; }
  .nav .btn { padding: 10px 16px; min-height: 42px; font-size: 0.85rem; }
  .brand__name { font-size: 0.82rem; }
  .reason { grid-template-columns: 1fr; gap: 6px; }
  .reason__num { padding-top: 0; }
}

@media (max-width: 460px) {
  :root { --gutter: 20px; }
  .nav .brand__name span { display: none; }
  .btn { width: 100%; }
  .microcta .btn { width: 100%; }
  .section-cta .btn { width: 100%; }
  .finalcta .btn { width: 100%; }
  .nav .btn { width: auto; }
  .tcard__foot { flex-wrap: wrap; }
  .tcard__firm { margin-left: 0; flex-direction: row; gap: 8px; }
  .letter { padding-left: 22px; padding-right: 22px; }
}

/* ---------- Popup capture de leads ---------- */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}
.lead-modal[hidden] { display: none; }
.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13,13,15,.62);
  backdrop-filter: blur(4px);
  animation: leadFade .2s ease;
}
.lead-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(24px, 4vw, 40px);
  animation: leadPop .24s cubic-bezier(.16,1,.3,1);
}
.lead-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-2);
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.lead-modal__close:hover { background: var(--bg-soft); color: var(--ink); }
.lead-modal__close:focus-visible { outline: 3px solid #1c1c22; outline-offset: 2px; }
.lead-modal__close svg { width: 20px; height: 20px; }

.lead-modal .eyebrow { margin-bottom: 16px; }
@media (max-width: 460px) { .lead-modal .eyebrow { font-size: 0.72rem; } }
.lead-modal__title {
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 10px;
  padding-right: 32px;
}
.lead-modal__sub {
  color: var(--ink-3);
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 26px;
}

.lead-form { display: grid; gap: 16px; }
.lead-field { display: grid; gap: 7px; }
.lead-field label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
}
.lead-field input {
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  min-height: 52px;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.lead-field input::placeholder { color: var(--ink-3); }
.lead-field input:focus {
  outline: none;
  background: #fff;
  border-color: var(--accent-lo);
  box-shadow: 0 0 0 3px rgba(207,233,63,.32);
}
.lead-field input.is-invalid {
  border-color: #d9524b;
  background: #fdf5f5;
}
.lead-field input.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(217,82,75,.22);
}
.lead-field__err {
  color: #c33a33;
  font-size: 0.82rem;
  line-height: 1.4;
  min-height: 0;
}
.lead-field__err:empty { display: none; }

.lead-form__submit { width: 100%; margin-top: 6px; }
.lead-form__note {
  color: var(--ink-3);
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: center;
  margin-top: 2px;
}

.lead-modal__success { text-align: center; }
.lead-modal__check {
  width: 64px; height: 64px;
  margin: 4px auto 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  display: grid; place-items: center;
}
.lead-modal__check svg { width: 30px; height: 30px; }
.lead-modal__success .lead-modal__title { padding-right: 0; }
.lead-modal__success .btn { width: 100%; margin-top: 26px; }

@keyframes leadFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes leadPop {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 460px) {
  .lead-modal { padding: 12px; }
  .lead-modal__dialog { padding: 24px 20px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .lead-modal__backdrop, .lead-modal__dialog { animation: none !important; }
  .videosec__media:hover img,
  .hero__media:hover img { transform: none; }
}
