/* ============================================================
   Sections (CTA, trust strip, process, etc.)
   ============================================================ */

/* CTA banner ----------------------------------------------- */
.tkm-cta-banner {
  position: relative;
  isolation: isolate;
  padding-block: clamp(3rem, 8vw, 5rem);
  background: var(--gradient-brand);
  color: #fff;
  overflow: hidden;
  border-radius: var(--r-2xl);
  text-align: center;
}
.tkm-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(84,195,233,0.25) 0%, transparent 40%);
}
.tkm-cta-banner h2 {
  color: #fff;
  font-size: clamp(var(--fs-3xl), 4vw, var(--fs-5xl));
  max-width: 720px;
  margin: 0 auto var(--s-4);
}
.tkm-cta-banner p {
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin: 0 auto var(--s-6);
  font-size: var(--fs-lg);
}
.tkm-cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  justify-content: center;
}

/* Trust strip ----------------------------------------------- */
.tkm-trust-strip {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: repeat(2, 1fr);
  padding: var(--s-6);
  background: var(--c-background);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}
@media (min-width: 768px) {
  .tkm-trust-strip { grid-template-columns: repeat(4, 1fr); }
}
.tkm-trust-strip__item { text-align: center; }
.tkm-trust-strip__num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(var(--fs-3xl), 3vw, var(--fs-5xl));
  font-weight: var(--fw-bold);
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--s-2);
}
.tkm-trust-strip__label {
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  font-weight: var(--fw-medium);
}

/* Split section (image + content) -------------------------- */
.tkm-split {
  display: grid;
  gap: var(--s-7);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 992px) {
  .tkm-split { grid-template-columns: 1fr 1fr; gap: var(--s-9); }
  .tkm-split--reverse > :first-child { order: 2; }
}
.tkm-split__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--sh-xl);
}
.tkm-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tkm-split__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,115,186,0) 60%, rgba(10,115,186,0.15) 100%);
  pointer-events: none;
}

.tkm-split__content h2 { margin-bottom: var(--s-5); }
.tkm-split__list {
  list-style: none;
  padding: 0;
  margin: var(--s-5) 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.tkm-split__list li {
  position: relative;
  padding-left: var(--s-6);
  line-height: var(--lh-relaxed);
}
.tkm-split__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: var(--r-full);
  background: var(--gradient-brand) center/14px no-repeat,
              var(--c-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath d='M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Decorative blobs ---------------------------------------- */
.tkm-blob {
  position: absolute;
  filter: blur(60px);
  border-radius: 50%;
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}
.tkm-blob--primary { background: var(--c-primary-light); }
.tkm-blob--dark    { background: var(--c-primary-dark); }

/* Long-form prose (mentions/confidentialité) -------------- */
.tkm-prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--c-foreground-2);
}
.tkm-prose h2 { margin-top: var(--s-7); }
.tkm-prose h3 { margin-top: var(--s-5); font-family: var(--font-body); font-weight: var(--fw-semibold); }
.tkm-prose p, .tkm-prose li { max-width: 65ch; }
.tkm-prose ul, .tkm-prose ol { padding-left: var(--s-5); margin-bottom: var(--s-4); }
.tkm-prose li { margin-bottom: var(--s-2); }
.tkm-prose a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 3px; }

/* TOC sticky (long-form) ---------------------------------- */
.tkm-toc {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
  margin-bottom: var(--s-6);
}
.tkm-toc__title {
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: var(--fw-semibold);
  color: var(--c-muted);
  margin: 0 0 var(--s-3);
}
.tkm-toc ol {
  margin: 0;
  padding-left: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}
.tkm-toc a {
  color: var(--c-foreground-2);
  text-decoration: none;
}
.tkm-toc a:hover { color: var(--c-primary); }
