/* LokiKit — page d'accueil (design index_2) */

body.lk-body.lk-page-home main.lk-main {
  padding-top: 0;
}

.lk-home-section {
  padding: 80px var(--page-gutter);
}

.lk-section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lk-section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sage);
}

.lk-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin: 0 0 1rem;
}

.lk-section-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0;
}

/* ——— Hero ——— */
.lk-hero {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: calc(var(--nav-height) + 12px) var(--page-gutter) 36px;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

.lk-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 143, 113, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.lk-hero-left {
  position: relative;
  z-index: 2;
}

.lk-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.lk-hero-eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--sage);
}

.lk-hero-eyebrow span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

.lk-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-dark);
  margin: 0 0 1.5rem;
}

.lk-hero h1 em {
  font-style: normal;
  color: var(--sage);
}

.lk-hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 420px;
  margin: 0 0 2.5rem;
}

.lk-hero-price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2rem;
}

.lk-price-main {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
}

.lk-price-suffix {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 300;
}

.lk-price-badge {
  background: rgba(107, 143, 113, 0.12);
  border: 1px solid rgba(107, 143, 113, 0.3);
  color: var(--sage);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}

.lk-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

body.lk-body .lk-hero a.lk-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  transition: background 0.2s, transform 0.15s;
}

body.lk-body .lk-hero a.lk-btn-primary:hover {
  background: var(--sage-light);
  transform: translateY(-1px);
  color: var(--white);
}

body.lk-body .lk-hero a.lk-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage-pale);
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1.5px solid color-mix(in srgb, var(--sage) 36%, transparent);
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.15s ease;
}

body.lk-body .lk-hero a.lk-btn-ghost:hover {
  background: color-mix(in srgb, var(--sage-pale) 55%, var(--white));
  border-color: color-mix(in srgb, var(--sage) 65%, transparent);
  color: var(--navy-dark);
  transform: translateY(-1px);
}

body.lk-body .lk-hero a.lk-btn-ghost:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

.lk-hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.lk-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-light);
  font-weight: 400;
}

.lk-trust-item svg {
  opacity: 0.5;
  flex-shrink: 0;
}

.lk-hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.lk-kit-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.lk-kit-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(107, 143, 113, 0.25);
  overflow: hidden;
  background: var(--sage-pale);
}

.lk-kit-photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lk-kit-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 480px;
}

.lk-kit-stat {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 12px;
  text-align: center;
}

.lk-kit-stat .lk-s-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
}

.lk-kit-stat .lk-s-lbl {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

/* ——— Modules ——— */
.lk-modules-section {
  background: var(--navy);
}

.lk-modules-section .lk-section-title {
  color: var(--white);
}

.lk-modules-section .lk-section-sub {
  color: rgba(255, 255, 255, 0.55);
}

.lk-modules-section .lk-section-label {
  color: var(--sage-light);
}

.lk-modules-section .lk-section-label::before {
  background: var(--sage-light);
}

.lk-modules-header {
  margin-bottom: 3rem;
}

.lk-modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.lk-module-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}

.lk-module-card:hover {
  transform: translateY(-3px);
}

.lk-module-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.lk-mod-rouge {
  background: rgba(192, 57, 43, 0.13);
}
.lk-mod-rouge::before {
  background: var(--red);
}
.lk-mod-ambre {
  background: rgba(212, 129, 58, 0.13);
}
.lk-mod-ambre::before {
  background: var(--amber);
}
.lk-mod-bleue {
  background: rgba(58, 122, 184, 0.13);
}
.lk-mod-bleue::before {
  background: var(--blue);
}
.lk-mod-verte {
  background: rgba(74, 140, 92, 0.13);
}
.lk-mod-verte::before {
  background: var(--green);
}
.lk-mod-lilas {
  background: rgba(123, 111, 173, 0.13);
}
.lk-mod-lilas::before {
  background: var(--lilac);
}

.lk-mod-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 20px;
}

.lk-mod-rouge .lk-mod-icon {
  background: rgba(192, 57, 43, 0.12);
}
.lk-mod-ambre .lk-mod-icon {
  background: rgba(212, 129, 58, 0.12);
}
.lk-mod-bleue .lk-mod-icon {
  background: rgba(58, 122, 184, 0.12);
}
.lk-mod-verte .lk-mod-icon {
  background: rgba(74, 140, 92, 0.12);
}
.lk-mod-lilas .lk-mod-icon {
  background: rgba(123, 111, 173, 0.12);
}

.lk-mod-situation {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.lk-mod-rouge .lk-mod-situation {
  color: var(--red);
}
.lk-mod-ambre .lk-mod-situation {
  color: var(--amber);
}
.lk-mod-bleue .lk-mod-situation {
  color: var(--blue);
}
.lk-mod-verte .lk-mod-situation {
  color: var(--green);
}
.lk-mod-lilas .lk-mod-situation {
  color: var(--lilac);
}

.lk-mod-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 8px;
  line-height: 1.35;
}

.lk-mod-rouge .lk-mod-name {
  color: var(--red);
}
.lk-mod-ambre .lk-mod-name {
  color: var(--amber);
}
.lk-mod-bleue .lk-mod-name {
  color: var(--blue);
}
.lk-mod-verte .lk-mod-name {
  color: var(--green);
}
.lk-mod-lilas .lk-mod-name {
  color: var(--lilac);
}

.lk-mod-trigger {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  margin: 0 0 1rem;
  line-height: 1.4;
}

.lk-mod-items {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
}

.lk-mod-items li::before {
  content: "— ";
  opacity: 0.4;
}

/* ——— Avant / Après (how) ——— */
.lk-how {
  padding: 80px var(--page-gutter);
  background: var(--cream);
}

.lk-how .lk-container {
  max-width: none;
  margin-inline: auto;
  padding-inline: 0;
}

.lk-how-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.6fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.lk-how-intro .lk-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 8px;
}

.lk-how-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.lk-how-subtitle {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0;
  max-width: 38ch;
}

.lk-how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 14px;
  overflow: hidden;
  min-width: 0;
}

.lk-how-col--before {
  padding: 2rem;
  background: rgba(0, 0, 0, 0.04);
}

.lk-how-col--after {
  padding: 2rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.lk-how-col--after::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 143, 113, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.lk-how-col-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lk-how-col--before .lk-how-col-label {
  color: var(--text-light);
}

.lk-how-col--after .lk-how-col-label {
  color: var(--sage-light);
}

.lk-how-col-line {
  flex: 1;
  height: 1px;
}

.lk-how-col--before .lk-how-col-line {
  background: rgba(0, 0, 0, 0.08);
}

.lk-how-col--after .lk-how-col-line {
  background: rgba(255, 255, 255, 0.08);
}

.lk-how-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.lk-how-item:last-child {
  margin-bottom: 0;
}

.lk-how-text {
  font-size: 13px;
  line-height: 1.5;
  padding-top: 10px;
  margin: 0;
}

.lk-how-col--before .lk-how-text {
  color: var(--text-mid);
}

.lk-how-col--after .lk-how-text {
  color: rgba(255, 255, 255, 0.55);
}

.lk-how-col--after .lk-how-text strong {
  color: white;
  font-weight: 600;
  display: block;
  font-size: 14px;
  margin-bottom: 1px;
}

.lk-how-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.lk-how-icon--b1 {
  background: linear-gradient(135deg, #7a2020, #b84040);
}

.lk-how-icon--b2 {
  background: linear-gradient(135deg, #6b3a10, #a05c20);
}

.lk-how-icon--b3 {
  background: linear-gradient(135deg, #5a3a10, #8a5c20);
}

.lk-how-icon--b4 {
  background: linear-gradient(135deg, #3a2060, #6040a0);
}

.lk-how-icon--c1 {
  background: linear-gradient(135deg, #1a6b4a, #2d9e6e);
}

.lk-how-icon--c2 {
  background: linear-gradient(135deg, #6b5a0f, #c8a83a);
}

.lk-how-icon--c3 {
  background: linear-gradient(135deg, #1a4a6b, #2d7ab8);
}

.lk-how-icon--c4 {
  background: linear-gradient(135deg, #3a6b1a, #6b8f71);
}

@media (max-width: 900px) {
  .lk-how-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lk-how-subtitle {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .lk-how-grid {
    grid-template-columns: 1fr;
  }

  .lk-how-col--before {
    border-radius: 12px 12px 0 0;
  }

  .lk-how-col--after {
    border-radius: 0 0 12px 12px;
  }
}

/* ── SECTION PRESSE / POURQUOI ────────────────── */
/* Blocs autorités (page d'accueil) — pleine largeur */
.lk-home-autorites {
  padding: 0;
  scroll-margin-top: calc(var(--nav-height) + 8px);
}

/* Index : couleurs inversées entre b1-right (sage-pale) et b2-right (navy) */
.lk-home-autorites .b1-right {
  background: var(--sage-pale);
  background-color: var(--sage-pale);
}

.lk-home-autorites .b2-right {
  background: var(--navy);
  background-color: var(--navy);
}

.lk-home-autorites .b1-right .oq-tag {
  color: var(--sage);
}

.lk-home-autorites .b1-right .oq-icon svg {
  stroke: var(--sage);
}

.lk-home-autorites .b1-right blockquote.oq {
  color: var(--text-dark);
}

.lk-home-autorites .b1-right blockquote.oq strong {
  color: var(--sage);
}

.lk-home-autorites .b1-right .oq-meta {
  color: var(--text-mid);
}

.lk-home-autorites .b1-right .oq-meta a {
  color: var(--sage);
}

.lk-home-autorites .b2-right .big-number {
  color: var(--white);
}

.lk-home-autorites .b2-right .big-number em {
  color: var(--sage-light);
}

.lk-home-autorites .b2-right .big-number-label {
  color: rgba(255, 255, 255, 0.55);
}

.lk-home-autorites .b1-right.lk-reveal {
  opacity: 1;
  transform: translateY(16px);
  transition: transform 0.55s ease;
}

.lk-home-autorites .b1-right.lk-reveal.is-visible {
  transform: none;
}

.lk-home-autorites .b1-right.lk-reveal .official-quote-block {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease 0.1s, transform 0.55s ease 0.1s;
}

.lk-home-autorites .b1-right.lk-reveal.is-visible .official-quote-block {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .lk-home-autorites .b1-right.lk-reveal,
  .lk-home-autorites .b1-right.lk-reveal .official-quote-block {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.lk-why {
  padding: 80px 0;
  background: var(--cream);
  scroll-margin-top: calc(var(--nav-height) + 8px);
}

.lk-why .lk-container {
  margin-inline: auto;
}

.lk-why-header {
  margin-bottom: 2.5rem;
}

.lk-why-header .lk-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 8px;
}

.lk-why-header h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.lk-why-subtitle {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 520px;
  margin: 0;
}

.lk-press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.lk-press-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}

.lk-press-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.lk-press-img-wrap {
  width: 100%;
  overflow: hidden;
}

.lk-press-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.3s;
}

.lk-press-card:hover .lk-press-img {
  transform: scale(1.03);
}

.lk-press-img-placeholder {
  width: 100%;
  height: 160px;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--sage);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.lk-press-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lk-press-source {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lk-press-source-logo {
  background: var(--navy);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 3px;
}

.lk-press-date {
  font-size: 11px;
  color: var(--text-light);
}

.lk-press-text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-mid);
  flex: 1;
  margin: 0;
}

.lk-press-text strong {
  color: var(--text-dark);
  font-weight: 600;
}

.lk-press-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--sage);
  text-decoration: none;
  transition: color 0.2s;
}

.lk-press-link:hover {
  color: var(--sage-light);
}

.lk-press-official {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.lk-press-official-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(107, 143, 113, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lk-press-official-icon svg {
  stroke: var(--sage-light);
}

.lk-press-official-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin: 0 0 8px;
}

.lk-press-official-quote {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.55;
  margin: 0 0 8px;
  font-style: normal;
  border: none;
  padding: 0;
}

.lk-press-official-source {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.lk-press-official-source a {
  color: var(--sage-light);
  text-decoration: none;
}

.lk-press-official-source a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .lk-press-grid {
    grid-template-columns: 1fr;
  }

  .lk-press-official {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ——— Commander ——— */
.lk-order-section {
  background: var(--white);
  scroll-margin-top: calc(var(--nav-height) + 8px);
}

.lk-order-section .lk-pricing-grid.lk-pricing-grid--spotlight {
  max-width: min(1120px, 100%);
  margin-top: 3rem;
  margin-inline: auto;
}

/* ——— FAQ ——— */
.lk-faq-section {
  background: var(--cream);
}

.lk-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
}

.lk-faq-item {
  background: var(--white);
  padding: 1.5rem;
  cursor: pointer;
  transition: background 0.15s;
}

.lk-faq-item:hover {
  background: #fafafa;
}

.lk-faq-q {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  user-select: none;
  margin: 0;
}

.lk-faq-toggle {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--sage);
  transition: transform 0.2s, background 0.2s;
  margin-top: 1px;
}

.lk-faq-item.is-open .lk-faq-toggle {
  transform: rotate(45deg);
  background: var(--sage);
  color: var(--white);
}

.lk-faq-a {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 0.75rem;
  display: none;
}

.lk-faq-item.is-open .lk-faq-a {
  display: block;
}

/* ——— CTA fondateur ——— */
.lk-founder-section {
  background: var(--navy);
}

.lk-founder-cta {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.lk-founder-quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--sage);
  text-align: left;
}

.lk-founder-cta .lk-btn-ghost {
  display: inline-flex;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.lk-founder-cta .lk-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--sage-light);
  color: var(--white);
}

/* ——— Ressources / risques ——— */
.lk-risques-section {
  background: var(--cream);
}

.lk-risques-section .lk-section-title {
  text-align: center;
}

.lk-risques-section .articles-risques-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
}

.landing-risque-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

.landing-risque-card:focus {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

.landing-risque-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-light);
}

.landing-risque-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--navy-dark) 92%, transparent) 0%,
    color-mix(in srgb, var(--navy) 35%, transparent) 55%,
    color-mix(in srgb, var(--sage) 15%, transparent) 100%
  );
}

.landing-risque-card-title {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.landing-risque-card-link {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  z-index: 1;
}

.landing-risque-card:hover .landing-risque-card-link {
  text-decoration: underline;
}

.lk-risques-section .muted {
  text-align: center;
  color: var(--text-mid);
}

/* ——— Délais reveal ——— */
.lk-reveal-d1 {
  transition-delay: 0.1s;
}
.lk-reveal-d2 {
  transition-delay: 0.2s;
}
.lk-reveal-d3 {
  transition-delay: 0.3s;
}
.lk-reveal-d4 {
  transition-delay: 0.4s;
}

/* ——— Mobile ——— */
@media (max-width: 768px) {
  .lk-home-section {
    padding: 60px var(--page-gutter);
  }

  .lk-hero {
    grid-template-columns: 1fr;
    padding: calc(var(--nav-height) + 12px) var(--page-gutter) 32px;
    gap: 2rem;
  }

  .lk-hero-right {
    order: -1;
  }

  .lk-kit-photo,
  .lk-kit-stats {
    max-width: 280px;
  }

  .lk-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .lk-risques-section .articles-risques-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .lk-risques-section .articles-risques-grid {
    grid-template-columns: 1fr;
  }
}
