/* LokiKit — page Contenu (aligné maquette Downloads/contenu.html) */

.lk-contenu-main {
  padding-bottom: 0;
  background: var(--cream);
}

/* ——— Bandeau stats ——— */
.lk-contenu-overview-band {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.lk-kit-overview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
  padding-block: 32px;
}

.lk-kit-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.lk-kit-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 2rem;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.lk-kit-stats .lk-kit-stat:last-child {
  border-right: none;
  padding-right: 0;
}

.lk-kit-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.lk-kit-stat-label {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
  max-width: 80px;
}

.lk-kit-modules-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
  margin-left: auto;
}

.lk-kit-dot-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-mid);
}

.lk-kit-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lk-kit-dot--soigner {
  background: var(--red);
}
.lk-kit-dot--voir {
  background: var(--amber);
}
.lk-kit-dot--boire {
  background: var(--blue);
}
.lk-kit-dot--agir {
  background: var(--green);
}
.lk-kit-dot--proteger {
  background: var(--lilac);
}

/* ——— Onglets ancres (sticky, fond blanc) ——— */
.lk-contenu-main .lk-module-tabs {
  position: sticky;
  top: var(--nav-height);
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin: 0;
  padding: 0;
}

.lk-module-tabs .lk-container {
  padding-inline: var(--page-gutter);
}

.lk-module-tabs-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.lk-module-tabs-inner::-webkit-scrollbar {
  display: none;
}

.lk-contenu-main .lk-tab-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.lk-contenu-main .lk-tab-link:hover {
  color: var(--text-dark);
}

.lk-contenu-main .lk-tab-link[aria-current="true"] {
  color: var(--text-dark);
}

.lk-tab-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lk-tab-soigner .lk-tab-dot {
  background: var(--red);
}
.lk-tab-voir .lk-tab-dot {
  background: var(--amber);
}
.lk-tab-boire .lk-tab-dot {
  background: var(--blue);
}
.lk-tab-agir .lk-tab-dot {
  background: var(--green);
}
.lk-tab-proteger .lk-tab-dot {
  background: var(--lilac);
}
.lk-tab-sac .lk-tab-dot {
  background: var(--sage);
}

.lk-tab-soigner[aria-current="true"] {
  color: var(--red);
  border-bottom-color: var(--red);
}
.lk-tab-voir[aria-current="true"] {
  color: var(--amber);
  border-bottom-color: var(--amber);
}
.lk-tab-boire[aria-current="true"] {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.lk-tab-agir[aria-current="true"] {
  color: var(--green);
  border-bottom-color: var(--green);
}
.lk-tab-proteger[aria-current="true"] {
  color: var(--lilac);
  border-bottom-color: var(--lilac);
}
.lk-tab-sac[aria-current="true"] {
  color: var(--sage);
  border-bottom-color: var(--sage);
}

/* ——— Sections modules (alternance cream / blanc) ——— */
.lk-container.lk-contenu-modules {
  max-width: none;
  width: 100%;
  padding: 0;
}

.lk-contenu-modules .lk-module-section {
  padding: 64px var(--page-gutter);
  scroll-margin-top: 130px;
  border-top: none;
}

.lk-contenu-modules .lk-module-section:nth-child(even) {
  background: var(--white);
}

.lk-mod-head {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.lk-mod-bar {
  width: 4px;
  min-height: 80px;
  border-radius: 4px;
  flex-shrink: 0;
  align-self: stretch;
}

.lk-mod-head-inner {
  flex: 1;
  min-width: 0;
}

.lk-mod-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.lk-mod-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 8px;
}

.lk-mod-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1rem;
}

.lk-mod-trigger::before,
.lk-mod-trigger::after {
  font-size: 20px;
  opacity: 0.4;
}

.lk-mod-trigger::before {
  content: '"';
}
.lk-mod-trigger::after {
  content: '"';
}

.lk-mod-desc {
  margin: 0;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 560px;
}

/* Couleurs par module */
.lk-mod-soigner .lk-mod-bar {
  background: var(--red);
}
.lk-mod-soigner .lk-mod-eyebrow,
.lk-mod-soigner .lk-mod-title {
  color: var(--red);
}

.lk-mod-voir .lk-mod-bar {
  background: var(--amber);
}
.lk-mod-voir .lk-mod-eyebrow,
.lk-mod-voir .lk-mod-title {
  color: var(--amber);
}

.lk-mod-boire .lk-mod-bar {
  background: var(--blue);
}
.lk-mod-boire .lk-mod-eyebrow,
.lk-mod-boire .lk-mod-title {
  color: var(--blue);
}

.lk-mod-agir .lk-mod-bar {
  background: var(--green);
}
.lk-mod-agir .lk-mod-eyebrow,
.lk-mod-agir .lk-mod-title {
  color: var(--green);
}

.lk-mod-proteger .lk-mod-bar {
  background: var(--lilac);
}
.lk-mod-proteger .lk-mod-eyebrow,
.lk-mod-proteger .lk-mod-title {
  color: var(--lilac);
}

/* Grille articles */
.lk-kit-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.lk-kit-article-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.lk-kit-article-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  transform: translateY(-1px);
}

.lk-contenu-modules .lk-module-section:nth-child(even) .lk-kit-article-card {
  background: var(--cream);
}

.lk-kit-article-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.lk-kit-article-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 3px;
  line-height: 1.3;
}

.lk-kit-article-detail {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

.lk-kit-article-qty {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
  display: inline-block;
  margin-top: 5px;
}

.lk-mod-soigner .lk-kit-article-icon {
  background: var(--red-pale);
}
.lk-mod-soigner .lk-kit-article-qty {
  background: var(--red-pale);
  color: var(--red);
}

.lk-mod-voir .lk-kit-article-icon {
  background: var(--amber-pale);
}
.lk-mod-voir .lk-kit-article-qty {
  background: var(--amber-pale);
  color: var(--amber);
}

.lk-mod-boire .lk-kit-article-icon {
  background: var(--blue-pale);
}
.lk-mod-boire .lk-kit-article-qty {
  background: var(--blue-pale);
  color: var(--blue);
}

.lk-mod-agir .lk-kit-article-icon {
  background: var(--green-pale);
}
.lk-mod-agir .lk-kit-article-qty {
  background: var(--green-pale);
  color: var(--green);
}

.lk-mod-proteger .lk-kit-article-icon {
  background: var(--lilac-pale);
}
.lk-mod-proteger .lk-kit-article-qty {
  background: var(--lilac-pale);
  color: var(--lilac);
}

/* ——— Sac 25L (pleine largeur navy) ——— */
.lk-contenu-modules .lk-sac-section {
  margin-top: 0;
  padding: 64px var(--page-gutter);
  border-radius: 0;
  background: var(--navy);
  scroll-margin-top: 130px;
  border: none;
}

.lk-sac-head {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.lk-sac-head .lk-mod-bar {
  background: var(--sage);
}

.lk-sac-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--sage-light);
}

.lk-sac-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--white);
}

.lk-sac-desc {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 560px;
}

.lk-sac-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.lk-sac-spec {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
}

.lk-sac-spec-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.lk-sac-spec-val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.lk-sac-spec-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
}

/* ——— Bandeau CTA ——— */
.lk-contenu-main .lk-cta-band {
  margin-top: 0;
  padding: 60px var(--page-gutter);
  text-align: center;
  background: var(--sage);
  color: var(--white);
  border-radius: 0;
}

.lk-contenu-main .lk-cta-band h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}

.lk-contenu-main .lk-cta-band > .lk-container > p {
  margin: 0 auto 2rem;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  line-height: 1.6;
}

.lk-cta-price-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.lk-cta-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.lk-cta-price-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.lk-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

body.lk-body a.lk-contenu-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.2s ease, transform 0.2s ease;
}

body.lk-body a.lk-contenu-cta-primary:hover {
  background: var(--cream);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.lk-contenu-cta-primary svg {
  flex-shrink: 0;
}

body.lk-body a.lk-contenu-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 15px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.2s ease, background 0.2s ease;
}

body.lk-body a.lk-contenu-cta-ghost:hover {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

/* 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;
}

@media (prefers-reduced-motion: reduce) {
  .lk-reveal-d1,
  .lk-reveal-d2,
  .lk-reveal-d3,
  .lk-reveal-d4 {
    transition-delay: 0s;
  }
}

@media (max-width: 768px) {
  .lk-kit-stats .lk-kit-stat {
    border-right: none;
    padding-right: 0;
  }

  .lk-kit-overview {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .lk-kit-modules-row {
    margin-left: 0;
  }

  .lk-kit-articles-grid {
    grid-template-columns: 1fr;
  }

  .lk-mod-head,
  .lk-sac-head {
    flex-direction: column;
    gap: 1rem;
  }

  .lk-mod-bar,
  .lk-sac-head .lk-mod-bar {
    width: 100%;
    min-height: 4px;
    height: 4px;
  }

  .lk-contenu-modules .lk-module-section,
  .lk-contenu-modules .lk-sac-section {
    padding-block: 48px;
  }
}
