/* Boost Industrie — Charte Verveine 2026
   Vert #48b166 · Corail #ef5252 · Navy profond (bannière LinkedIn) */

:root {
  --green: #48b166;
  --green-dark: #3a9454;
  --green-soft: rgba(72, 177, 102, 0.12);
  --coral: #ef5252;
  --coral-soft: rgba(239, 82, 82, 0.1);
  --navy: #0b1420;
  --navy-mid: #132033;
  --navy-soft: #1c2e44;
  --ink: #1a2430;
  --muted: #5a6a78;
  --line: #d7e0e6;
  --bg: #f5f8f6;
  --bg-alt: #eef3f0;
  --white: #ffffff;
  --max: 1120px;
  --pad: clamp(1.25rem, 4vw, 2rem);
  --radius: 2px;
  --shadow: 0 20px 50px rgba(11, 20, 32, 0.12);
  --font-display: "Poppins", sans-serif;
  --font-body: "BIZ UDPGothic", "Noto Sans JP", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(72, 177, 102, 0.07), transparent 55%),
    radial-gradient(700px 360px at 100% 10%, rgba(239, 82, 82, 0.04), transparent 50%),
    var(--bg);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green-dark);
  text-decoration: none;
}

a:hover {
  color: var(--navy);
}

.container {
  width: min(100% - 2 * var(--pad), var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
}

.section--alt {
  background: var(--bg-alt);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.section--navy::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 120px 120px;
  border-color: transparent transparent var(--green) transparent;
  opacity: 0.9;
  pointer-events: none;
}

.section--navy .section__title,
.section--navy .section__lead,
.section--navy p {
  color: var(--white);
}

.section--navy .section__title::after,
.final-cta .section__title::after {
  background: var(--green);
}

.section--brand {
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(115deg, var(--navy) 0%, var(--navy-mid) 55%, #163528 100%);
  color: var(--white);
  padding: clamp(2.75rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.section--brand::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  background: var(--green);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0.95;
  z-index: 2;
  pointer-events: none;
}

.section__eyebrow {
  margin: 0 0 0.85rem;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section__eyebrow--on-dark {
  color: #7dcea0;
}

.section__title {
  margin: 0 0 1rem;
  max-width: 18ch;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.55rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.section__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 1rem;
  background: var(--green);
}

.section__title--wide {
  max-width: 24ch;
}

.section__title--plain::after {
  display: none;
}

.section__lead {
  margin: 0 0 1.5rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.section__lead--strong {
  color: var(--ink);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 224, 230, 0.9);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  color: var(--navy);
  line-height: 1.15;
}

.brand-lockup:hover {
  color: var(--navy);
}

.brand-lockup__product {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-lockup__product em {
  font-style: normal;
  color: var(--green);
}

.brand-lockup__by {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.site-header .header-cta {
  display: none;
}

@media (min-width: 720px) {
  .site-header .header-cta {
    display: inline-flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--green);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
}

.btn--secondary:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--light {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn--light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.5rem 0 1rem;
}

.trust-line {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section--navy .trust-line,
.section--brand .trust-line,
.hero .trust-line {
  color: rgba(255, 255, 255, 0.78);
}

/* Hero — style bannière LinkedIn */
.hero {
  position: relative;
  min-height: clamp(520px, 72vh, 680px);
  display: grid;
  align-items: stretch;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 88% 22%;
  filter: saturate(0.95) contrast(1.05) brightness(0.92);
  transform: scale(1.02);
  animation: heroZoom 22s ease-out forwards;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11, 20, 32, 0.97) 0%, rgba(11, 20, 32, 0.9) 34%, rgba(11, 20, 32, 0.35) 52%, rgba(11, 20, 32, 0.08) 68%, transparent 82%),
    linear-gradient(180deg, rgba(11, 20, 32, 0.15) 0%, transparent 40%, rgba(11, 20, 32, 0.45) 100%);
}

.hero__accent {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero__accent--line {
  top: 0;
  right: 28%;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--green) 20%, var(--green) 80%, transparent);
  transform: skewX(-18deg);
  opacity: 0.85;
}

.hero__accent--corner {
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 clamp(90px, 14vw, 160px) clamp(90px, 14vw, 160px);
  border-color: transparent transparent var(--green) transparent;
}

.hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(100% - 2 * var(--pad), var(--max));
  margin-inline: auto;
  padding: clamp(5.5rem, 11vw, 6.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}

.hero__title,
.hero-dialogue,
.hero__cta {
  max-width: min(480px, 52vw);
}

.hero .btn-row {
  justify-content: flex-start;
  margin-inline: 0;
}

.hero__title {
  margin: 0 0 1.25rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.6vw, 2.55rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.hero__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 1rem;
  background: var(--green);
}

.hero__cta {
  margin-top: 1.75rem;
}

@keyframes heroZoom {
  from { transform: scale(1.1); }
  to { transform: scale(1.05); }
}

@media (max-width: 719px) {
  .hero {
    min-height: auto;
  }

  .hero__media img {
    object-position: 78% 18%;
  }

  .hero__content {
    padding-top: 4.5rem;
    padding-bottom: 2.75rem;
  }

  .hero__title,
  .hero-dialogue,
  .hero__cta {
    max-width: none;
  }

  .hero .btn-row {
    flex-direction: column;
  }

  .hero .btn {
    width: 100%;
  }

  .hero__accent--line {
    display: none;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(11, 20, 32, 0.5) 0%, rgba(11, 20, 32, 0.78) 38%, rgba(11, 20, 32, 0.94) 100%);
  }
}

/* Outcomes */
.outcomes {
  background: var(--navy);
  color: var(--white);
  padding: 1.75rem 0;
  border-top: 3px solid var(--green);
}

.outcomes__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .outcomes__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.outcome__label {
  margin: 0 0 0.35rem;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.outcome__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
}

/* Product block */
.product {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .product {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
  }
}

.product__panel {
  padding: 1.75rem 0 0;
  border-top: 3px solid var(--green);
}

@media (min-width: 860px) {
  .product__panel {
    padding: 0.25rem 0 0 1.75rem;
    border-top: none;
    border-left: 3px solid var(--green);
  }
}

.product__panel-title {
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

/* Guillaume featured */
.section--guillaume {
  background:
    radial-gradient(700px 360px at 0% 50%, rgba(72, 177, 102, 0.1), transparent 60%),
    var(--white);
}

.about--featured .about__photo-wrap {
  width: min(300px, 75vw);
}

.about__photo--corps {
  aspect-ratio: 3 / 4;
  object-position: center 12%;
}

.about__role--lead {
  margin: -0.35rem 0 1.25rem;
  max-width: 42ch;
  font-size: 1.05rem;
}

.about__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 0.5rem;
}

.about__badges span {
  padding: 0.4rem 0.75rem;
  background: var(--green-soft);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
}

/* CTA band */
.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 2.75rem;
  padding: 1.5rem 0 0;
  border-top: 3px solid var(--green);
}

.cta-band__title {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.cta-band__text {
  margin: 0;
  color: var(--muted);
}

.offer-aside__note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.final-cta--with-photo {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
}

@media (min-width: 720px) {
  .final-cta--with-photo {
    grid-template-columns: 168px 1fr;
    gap: 2rem;
    text-align: left;
    justify-items: start;
    align-items: center;
  }

  .final-cta--with-photo .section__title,
  .final-cta--with-photo .section__lead,
  .final-cta--with-photo .section__title::after {
    margin-left: 0;
  }

  .final-cta--with-photo .btn-row {
    justify-content: flex-start;
  }
}

.final-cta__photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: center 18%;
  border: 3px solid var(--green);
}

@media (min-width: 720px) {
  .final-cta__photo {
    width: 168px;
    height: 168px;
  }
}

.site-footer__brand {
  display: grid;
  gap: 0.2rem;
}

.site-footer__product {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
}

.site-footer__by {
  margin: 0;
  font-size: 0.85rem;
}

/* Lists */
.check-list,
.bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.bullet-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.7em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--navy);
}

.risk-box {
  margin-top: 2rem;
  padding: 1.25rem 0 0;
  border-top: 3px solid var(--coral);
  max-width: 62ch;
}

.risk-box p {
  margin: 0.4rem 0 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Deliverables */
.deliverables {
  display: grid;
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.deliverable {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.25s ease;
}

.deliverable:hover {
  padding-left: 0.35rem;
}

@media (min-width: 800px) {
  .deliverable {
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
  }
}

.deliverable h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.deliverable p {
  margin: 0;
  color: var(--muted);
}

.cta-inline {
  margin-top: 2.5rem;
}

/* Themes */
.themes {
  display: grid;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 900px) {
  .themes {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
  }
}

.theme h3 {
  margin: 0 0 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 3px solid var(--green);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

/* Process */
.process {
  display: grid;
  gap: 0;
  margin-top: 2.5rem;
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.process__item {
  display: grid;
  gap: 0.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 720px) {
  .process__item {
    grid-template-columns: 4rem 1fr;
    gap: 1.5rem;
    align-items: start;
  }
}

.process__num {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.process__item h3 {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.process__item p {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

/* Positioning */
.quote-line {
  margin: 2rem 0 0;
  max-width: 28ch;
  color: var(--green);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 500;
  line-height: 1.3;
}

/* About */
.about {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .about {
    grid-template-columns: 260px 1fr;
    gap: 3rem;
  }
}

.about__photo-wrap {
  position: relative;
  width: min(260px, 70vw);
  justify-self: center;
}

.about__photo-wrap::before {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  background: var(--green);
  z-index: 0;
}

.about__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border: 0;
  box-shadow: var(--shadow);
}

.about__name {
  margin: 1.5rem 0 0.25rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.about__role {
  margin: 0;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
}

.about__role--lead {
  color: var(--green);
  line-height: 1.4;
}

.about__tags {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Fit */
.fit-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .fit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.fit-col h3 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.fit-col--no h3 {
  color: var(--muted);
}

.fit-col--no .check-list li::before {
  background: #9aa8af;
}

/* Offer */
.offer {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .offer {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
  }
}

.price {
  margin: 0.5rem 0 1rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}

.price small {
  display: inline;
  margin-left: 0.25rem;
  color: var(--coral);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0;
  vertical-align: super;
}

.price-note {
  margin: -0.5rem 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.offer-aside {
  padding: 1.5rem 0 0;
  border-top: 3px solid var(--green);
}

@media (min-width: 860px) {
  .offer-aside {
    padding: 0 0 0 1.5rem;
    border-top: none;
    border-left: 3px solid var(--green);
  }
}

.offer-aside h3 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

/* Guarantee */
.guarantee-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  max-width: 60ch;
}

.guarantee-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.92);
}

.guarantee-list li::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.75rem;
  background: var(--green);
  vertical-align: 0.1em;
}

/* FAQ */
.faq {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}

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

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--green);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0 0 1.25rem;
  max-width: 70ch;
  color: var(--muted);
}

/* Final CTA */
.section--brand .final-cta {
  position: relative;
  z-index: 1;
  text-align: center;
}

.final-cta__photo-wrap {
  position: relative;
  order: 2;
  margin: 0;
  width: 100%;
  overflow: hidden;
}

.final-cta__photo-wrap img {
  width: 100%;
  display: block;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: 58% 22%;
}

.final-cta .section__title {
  max-width: none;
  margin-inline: auto;
  color: var(--white);
}

.final-cta .section__title::after {
  margin-inline: auto;
  background: var(--green);
}

.final-cta .section__lead {
  margin-inline: auto;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.88);
}

.final-cta .btn-row {
  justify-content: center;
}

.final-cta .btn {
  width: 100%;
  max-width: 420px;
}

@media (min-width: 860px) {
  .section--brand {
    display: block;
    padding: clamp(3.5rem, 7vw, 5rem) 0;
  }

  .section--brand .final-cta {
    min-height: clamp(320px, 36vw, 420px);
    text-align: left;
  }

  .final-cta__photo-wrap {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    order: unset;
    width: min(680px, 58vw);
    z-index: 0;
    pointer-events: none;
  }

  .final-cta__photo-wrap img {
    height: 100%;
    aspect-ratio: auto;
  }

  .final-cta__content {
    position: relative;
    z-index: 1;
    max-width: min(520px, 46vw);
  }

  .final-cta .section__title::after {
    margin-inline: 0;
  }

  .final-cta .section__lead {
    margin-inline: 0;
  }

  .final-cta .btn-row {
    justify-content: flex-start;
  }

  .final-cta .btn {
    width: auto;
    max-width: none;
  }
}

@media (max-width: 859px) {
  .section--brand {
    padding-bottom: 0;
  }

  .section--brand::after {
    display: none;
  }

  .section--brand .final-cta {
    padding-bottom: 0.5rem;
  }

  .final-cta__photo-wrap {
    width: 100%;
    margin-top: 0.25rem;
  }

  .final-cta__photo-wrap img {
    aspect-ratio: 16 / 10;
    max-height: 340px;
  }
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  background: #070e16;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
  color: var(--green);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.site-footer__logo {
  width: 110px;
  opacity: 0.9;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__media img { animation: none; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn:hover,
  .deliverable:hover {
    transform: none;
    padding-left: 0;
  }
}

/* === Narration éditoriale (inspirée mini-BD Mathilde) === */
.hero-dialogue {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.hero-dialogue__pain {
  margin: 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 1.8vw, 1.08rem);
  font-style: italic;
  line-height: 1.45;
}

.hero-dialogue__answer {
  margin: 0;
  max-width: 32ch;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.9vw, 1.12rem);
  font-weight: 500;
  line-height: 1.4;
}

.section--story {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.story-heading {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-split {
  display: grid;
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}

@media (min-width: 860px) {
  .section-split {
    grid-template-columns: minmax(220px, 0.75fr) 1.25fr;
    gap: 2.75rem;
    align-items: center;
  }

  .section-split--reverse {
    grid-template-columns: 1.15fr minmax(240px, 0.8fr);
  }

  .section-split--reverse .section-split__media {
    order: 2;
  }
}

.section-split__media {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.section-split__media::before {
  content: "";
  position: absolute;
  inset: 10px -10px -10px 10px;
  background: var(--green);
  z-index: 0;
}

.section-split__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 15%;
  box-shadow: var(--shadow);
}

.section-split .deliverables,
.section-split .process {
  margin-top: 0;
}

.section-split__media img[src*="guillaume-echange"] {
  aspect-ratio: 5 / 4;
  object-position: center 22%;
}

.story-acts {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.story-act {
  display: grid;
  gap: 1rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 760px) {
  .story-act {
    grid-template-columns: 4.5rem 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem 0;
  }
}

.story-act__num {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.story-act__label {
  margin: 0 0 0.45rem;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-act__quote {
  margin: 0 0 0.75rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.story-act__text {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
}

.story-act__list {
  margin: 0 0 0.65rem;
  padding: 0;
  max-width: 52ch;
  list-style: none;
}

.story-act__list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
}

.story-act__list li + li {
  margin-top: 0.35rem;
}

.story-act__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--green);
}

.story-act__link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
}

.story-act__link:hover {
  color: var(--navy);
}

.story-act--risk {
  background: linear-gradient(90deg, rgba(239, 82, 82, 0.06), transparent 55%);
}

.story-act--risk .story-act__label {
  color: var(--coral);
}

.story-act--risk .story-act__num {
  color: var(--coral);
}

.story-act--shift {
  background: linear-gradient(90deg, rgba(11, 20, 32, 0.04), transparent 60%);
}

.story-act--resolve {
  background:
    linear-gradient(90deg, rgba(72, 177, 102, 0.1), transparent 65%);
  border-bottom: none;
  padding-bottom: 0;
}

.story-act--resolve .story-act__quote {
  color: var(--green-dark);
}
