/* ==========================================================================
   SAVENGER — Design System (v2, aligned with brand logo)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #FFFFFF;
  --bg-soft: #F5F5FB;
  --surface: #FFFFFF;
  --surface-raised: #F7F7FC;
  --border: #E6E6F1;
  --navy: #0B0E3D;
  --navy-dim: #53567A;
  --text: #14163F;
  --text-dim: #5B5E82;
  --text-faint: #9698B3;
  --indigo: #3E2FF0;
  --indigo-deep: #2C1FC7;
  --indigo-soft: rgba(62, 47, 240, 0.08);
  --amber: #E8973D;
  --amber-soft: rgba(232, 151, 61, 0.14);
  --coral: #F64001;
  --coral-soft: rgba(246, 64, 1, 0.12);

  --font-display: 'Montserrat', -apple-system, sans-serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;
  --font-mono: 'Montserrat', -apple-system, sans-serif;

  --radius: 14px;
  --container: 1360px;
  --dot-pattern: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.16) 1.5px, transparent 0);
  --corner-glow:
    radial-gradient(circle at 100% 0%, rgba(246,64,1,0.35) 0%, transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(246,64,1,0.10) 0%, transparent 38%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
}
h1 strong, h2 strong, h3 strong, h4 strong { font-weight: 800; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--indigo);
  box-shadow: 0 0 0 4px var(--indigo-soft);
}

/* ---- Badge shape (signature element): notched shield corner ---- */
.badge-shape {
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--indigo);
  color: #FFFFFF;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(62, 47, 240, 0.4);
  background: var(--indigo-deep);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--indigo);
  background: var(--indigo-soft);
}

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  backdrop-filter: blur(10px);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 4px 24px rgba(11, 14, 61, 0.07);
  margin-bottom: 14px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  padding-right: 20px;
  margin-right: 4px;
  border-right: 1px solid var(--border);
}
.logo-icon {
  height: 32px;
  width: auto;
  display: block;
}
.logo-sav { color: var(--navy); }
.logo-enger { color: var(--navy); }
.logo-full {
  height: 40px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 34px;
  font-size: 15px;
  color: var(--text-dim);
  letter-spacing: -0.005em;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 700; position: relative; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -10px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; background: none; border: none; color: var(--navy); font-size: 24px; cursor: pointer; }

@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
    box-shadow: 0 12px 24px rgba(11,14,61,0.08);
    border-radius: 0 0 16px 16px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a.active::after { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn-ghost { display: none; }
  .nav-cta { gap: 14px; }
  .nav-toggle { margin-left: 4px; padding: 4px; }
  .logo { padding-right: 12px; margin-right: 0; }
  .logo-full { height: 32px; }
}

/* ---- Hero (full-bleed saturated indigo, dark context) ---- */
.hero-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroSlideshow 20s infinite;
}
.hero-slideshow img:nth-child(1) { animation-delay: 0s; }
.hero-slideshow img:nth-child(2) { animation-delay: 5s; }
.hero-slideshow img:nth-child(3) { animation-delay: 10s; }
.hero-slideshow img:nth-child(4) { animation-delay: 15s; }
@keyframes heroSlideshow {
  0% { opacity: 0; }
  4% { opacity: 1; }
  21% { opacity: 1; }
  25% { opacity: 0; }
  100% { opacity: 0; }
}
.hero-slideshow-tint {
  position: absolute;
  inset: 0;
  background:
    var(--corner-glow),
    linear-gradient(135deg, rgba(76, 59, 255, 0.88) 0%, rgba(46, 32, 130, 0.9) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .hero-slideshow img { animation: none; opacity: 0; }
  .hero-slideshow img:first-child { opacity: 1; }
}
.hero-grid { position: relative; z-index: 1; }

.hero {
  padding: 150px 0 0;
  position: relative;
  background:
    var(--corner-glow),
    linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  color: #fff;
}
.hero .eyebrow { color: var(--yellow); }
.hero .eyebrow::before { background: var(--yellow); box-shadow: 0 0 0 4px rgba(255,255,255,0.2); }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1600px;
  gap: 60px;
  align-items: center;
  padding-bottom: 70px;
}
.hero-content {
  max-width: clamp(900px, 70vw, 1040px);
}
.hero h1 {
  font-size: 52px;
  margin-bottom: 24px;
  color: #fff;
  width: 100%;
  max-width: none;
  text-wrap: normal;
}
.hero h1 em {
  font-style: italic;
  color: var(--yellow);
  display: inline;
}
.hero p.lead {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero .highlight { background: transparent; color: #fff; font-weight: 700; box-shadow: inset 0 -3px 0 var(--yellow); padding: 0 2px; }
.hero-actions { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.hero .btn-primary { background: var(--yellow); color: var(--navy); }
.hero .btn-primary:hover { background: #FFDB63; box-shadow: 0 10px 24px -8px rgba(0,0,0,0.35); }
.hero .btn-ghost { border-color: rgba(255,255,255,0.35); color: #fff; }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.hero-trust {
  display: flex; flex-wrap: wrap;
  gap: 40px 56px;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 34px 0;
}
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-item .num { font-family: var(--font-display); font-size: 28px; color: #fff; font-weight: 700; }
.hero-trust-item .label { font-size: 12.5px; color: rgba(255,255,255,0.6); margin-top: 4px; }

.hero-trust.on-light { border-top-color: var(--border); padding: 48px 0; gap: 20px; }
.hero-trust.on-light .hero-trust-item {
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--coral);
  min-width: 180px;
}
.hero-trust.on-light .hero-trust-item .num { color: var(--navy); font-size: 46px; letter-spacing: -0.01em; }
.hero-trust.on-light .hero-trust-item .num.stat-green { color: var(--green); }
.hero-trust.on-light .hero-trust-item .label { color: var(--text-dim); font-size: 14px; margin-top: 6px; }

@media (max-width: 560px) {
  .hero-trust { gap: 28px 40px; }
}

/* ---- Hero visual: presence signal ---- */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  opacity: 0;
  animation: pulse 3.6s ease-out infinite;
}
.pulse-ring:nth-child(2) { animation-delay: 1.2s; }
.pulse-ring:nth-child(3) { animation-delay: 2.4s; }
@keyframes pulse {
  0% { width: 90px; height: 90px; opacity: 0.5; }
  100% { width: 420px; height: 420px; opacity: 0; }
}
.hero-visual-core {
  position: relative;
  z-index: 2;
  width: 200px;
  height: 200px;
  background: #fff;
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 32px 100%, 0 calc(100% - 32px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  box-shadow: 0 24px 50px -18px rgba(0,0,0,0.4);
}
.hero-visual-core .status-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--coral);
  box-shadow: 0 0 0 5px rgba(246, 64, 1, 0.2);
}
.hero-visual-core .status-text { font-family: var(--font-mono); font-size: 12px; color: var(--text-dim); margin-top: 6px; }
.hero-visual-core .status-big { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy); white-space: nowrap; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .hero-visual { max-width: 280px; margin: 0 auto; }
}

/* ---- Section shared ---- */
section { padding: 76px 0; }
.section-head { max-width: 620px; margin-bottom: 40px; }
.section-head h2 { font-size: 36px; }
.section-head p { color: var(--text-dim); font-size: 17px; margin-top: 16px; }
.section-head p strong { color: var(--navy); font-weight: 700; }
.section-alt { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ---- Cards / services ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 2px 10px -4px rgba(11, 14, 61, 0.06);
}
.card .num { font-family: var(--font-mono); color: var(--indigo); font-size: 14px; margin-bottom: 16px; }
.card h3 { font-size: 20px; margin-bottom: 12px; font-family: var(--font-body); font-weight: 600; color: var(--navy); }
.card p { color: var(--text-dim); font-size: 15px; }

@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
}

/* ---- Process timeline ---- */
.process { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.process-step .day {
  font-family: var(--font-mono);
  color: var(--indigo);
  font-size: 15px;
}
.process-step h4 { font-size: 19px; margin-bottom: 8px; font-family: var(--font-body); font-weight: 600; color: var(--navy); }
.process-step p { color: var(--text-dim); font-size: 15px; max-width: 560px; }

@media (max-width: 640px) {
  .process-step { grid-template-columns: 1fr; gap: 8px; }
}

/* ---- Pricing preview ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px -4px rgba(11, 14, 61, 0.06);
  border-top: 4px solid var(--border);
}
.price-card.tier-starter { border-top-color: var(--coral); }
.price-card.featured { border-top-color: var(--indigo); }
.price-card.tier-scale { border-top-color: var(--green); }
.price-card.featured {
  border-color: var(--indigo);
  border-top-color: var(--indigo);
  background: linear-gradient(180deg, var(--indigo-soft), var(--surface) 45%);
}
.price-card .tier-name { font-family: var(--font-display); font-size: 22px; margin-bottom: 6px; color: var(--navy); }
.price-card .tier-tag { font-size: 13px; color: var(--text-faint); margin-bottom: 20px; }
.price-card .tier-price { font-family: var(--font-mono); font-size: 32px; margin-bottom: 4px; color: var(--navy); }
.price-card .tier-price span { font-size: 14px; color: var(--text-faint); font-family: var(--font-body); }
.price-card .tier-from { display: block; font-size: 13px; color: var(--text-faint); font-family: var(--font-body); margin-bottom: 4px; }
.price-card ul { margin: 24px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.overage-note { font-size: 13px; color: var(--text-faint); margin: -8px 0 20px; }
.anchor-note { font-size: 14px; color: var(--indigo); font-weight: 600; margin-top: 10px; }

.custom-quote-banner {
  margin-top: 32px;
  background: var(--bg-soft);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.custom-quote-text h3 { font-size: 18px; margin-bottom: 6px; }
.custom-quote-text p { font-size: 14px; color: var(--text-dim); max-width: 480px; }
@media (max-width: 700px) { .custom-quote-banner { flex-direction: column; text-align: center; } }
.price-card li { font-size: 14px; color: var(--text-dim); display: flex; gap: 10px; }
.price-card li::before { content: '✓'; color: var(--indigo); flex-shrink: 0; }
.price-card .btn { margin-top: auto; text-align: center; justify-content: center; }

@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ---- Testimonial ---- */
.testimonial {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 720px;
}
.testimonial p.quote {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 24px;
  color: var(--navy);
}
.testimonial .who { display: flex; align-items: center; gap: 14px; }
.testimonial .avatar {
  width: 42px; height: 42px; border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  background: var(--indigo-soft); color: var(--indigo);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 14px;
}
.testimonial .who-name { font-weight: 600; font-size: 15px; color: var(--navy); }
.testimonial .who-role { font-size: 13px; color: var(--text-faint); }

/* ---- Testimonial grid (real reviews, multiple) ---- */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial-grid.cols-1 { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
.testimonial-grid .testimonial { max-width: none; height: 100%; display: flex; flex-direction: column; }
.stars { color: var(--yellow); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.trustpilot-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11.5px; color: var(--text-faint);
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
}
.trustpilot-tag .tp-mark { color: #00b67a; font-weight: 700; }
@media (max-width: 960px) { .testimonial-grid { grid-template-columns: 1fr; } }
.lead-magnet {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 48px;
}
.lead-magnet-text { max-width: 560px; }
.lead-magnet-text h2 { font-size: 26px; margin: 8px 0 10px; }
.lead-magnet-text p { color: var(--text-dim); font-size: 15px; }
.lead-magnet-form { display: flex; gap: 12px; flex-shrink: 0; }
.lead-magnet-form input[type="email"] {
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  width: 240px;
}
.lead-magnet-form .btn { white-space: nowrap; }
@media (max-width: 860px) {
  .lead-magnet { flex-direction: column; align-items: stretch; text-align: center; }
  .lead-magnet-form { flex-direction: column; }
  .lead-magnet-form input[type="email"] { width: auto; }
}

.cta-block {
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  background:
    var(--corner-glow),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='2'%3E%3Ccircle cx='150' cy='150' r='40'/%3E%3Ccircle cx='150' cy='150' r='75'/%3E%3Ccircle cx='150' cy='150' r='110'/%3E%3Ccircle cx='150' cy='150' r='145'/%3E%3C/g%3E%3C/svg%3E") center/450px 450px,
    linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  color: #fff;
}
.cta-block h2 { font-size: 34px; margin-bottom: 16px; color: #fff; }
.cta-block p { color: rgba(255,255,255,0.78); font-size: 17px; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-block .btn-primary { background: var(--yellow); color: var(--navy); }
.cta-block .btn-primary:hover { background: #FFDB63; box-shadow: 0 10px 24px -8px rgba(0,0,0,0.35); }
.cta-block .btn-ghost { border-color: rgba(255,255,255,0.35); color: #fff; }
.cta-block .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ---- Footer (dark, accent bar) ---- */
footer {
  position: relative;
  background: var(--navy);
  padding: 60px 0 32px;
  border-top: none;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--indigo), var(--amber), var(--green));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col h5 { font-size: 13px; color: var(--amber); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; font-family: var(--font-mono); font-weight: 500; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.72); font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-brand .logo-full { filter: none; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; max-width: 280px; margin-top: 14px; }
.footer-email { display: inline-block; margin-top: 14px; color: var(--coral); font-size: 14px; font-weight: 600; text-decoration: none; }
.footer-email:hover { text-decoration: underline; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  max-width: 480px;
  text-align: right;
}
@media (max-width: 640px) {
  .footer-disclaimer { text-align: left; max-width: none; }
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Pain points (enjeux) ---- */
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pain-grid.cols-3 { grid-template-columns: repeat(3, 1fr); gap: 0; }
.pain-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.pain-panel .pain-card {
  background: transparent;
  border: none;
  border-radius: 0;
  text-align: left;
  padding: 32px;
  border-top: 1px solid var(--border);
}
.pain-panel .pain-card:nth-child(-n+3) { border-top: none; }
@media (min-width: 961px) {
  .pain-panel .pain-card:nth-child(3n+2),
  .pain-panel .pain-card:nth-child(3n) { border-left: 1px solid var(--border); }
}
.pain-panel .pain-card h4 { color: var(--coral); }
.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  text-align: center;
}
.pain-card h4 { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-bottom: 12px; color: var(--navy); line-height: 1.3; }
.pain-card p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }
@media (max-width: 960px) { .pain-grid, .pain-grid.cols-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pain-grid, .pain-grid.cols-3 { grid-template-columns: 1fr; } }

/* ---- Value props (protéger / fidéliser / valoriser) ---- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: left;
}
.value-card .value-icon {
  width: 44px; height: 44px;
  background: var(--indigo-soft);
  color: var(--indigo);
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 15px;
  margin-bottom: 20px;
}
.value-card h3 { font-size: 19px; margin-bottom: 10px; font-family: var(--font-body); font-weight: 700; color: var(--navy); }
.value-card p { font-size: 14px; color: var(--text-dim); }

.commitments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.commitment-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.commitment-card h3 { font-family: var(--font-body); font-size: 18px; font-weight: 700; color: var(--coral); margin-bottom: 18px; }
.commitment-card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.commitment-card li { position: relative; padding-left: 18px; font-size: 14.5px; color: var(--navy); line-height: 1.5; }
.commitment-card li::before { content: ""; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
@media (max-width: 860px) { .commitments-grid { grid-template-columns: 1fr; } }
@media (max-width: 860px) { .value-grid { grid-template-columns: 1fr; } }

/* ---- KPI table ---- */
.kpi-table { width: 100%; border-collapse: collapse; }
.compare-table-wrap { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; background: #fff; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { text-align: left; padding: 16px 20px; font-size: 14px; color: var(--text-faint); border-bottom: 1px solid var(--border); }
.compare-table th:first-child { text-align: left; }
.compare-table th:last-child { color: var(--coral); font-weight: 700; }
.compare-table td { padding: 18px 20px; border-bottom: 1px solid var(--border); font-size: 14.5px; vertical-align: top; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { font-weight: 700; color: var(--navy); white-space: nowrap; }
.compare-table td:nth-child(2) { color: var(--text-dim); }
.compare-table td:nth-child(3) { color: var(--green); font-weight: 600; }
.compare-source { text-align: center; font-size: 14px; color: var(--text-faint); margin-top: 20px; }
.compare-source a { color: var(--indigo); }
@media (max-width: 700px) {
  .compare-table th:nth-child(2), .compare-table td:nth-child(2) { display: none; }
}
.kpi-table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-faint);
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.kpi-table td {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  font-size: 14px;
}
.kpi-table td.kpi-name { font-weight: 600; color: var(--navy); font-family: var(--font-body); }
.kpi-table td.kpi-def { color: var(--text-dim); }
.kpi-table td.kpi-target { font-family: var(--font-mono); font-weight: 700; color: var(--green); white-space: nowrap; }
.kpi-wrap { overflow-x: auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.kpi-wrap table { min-width: 640px; }

/* ---- Tools ecosystem ---- */
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.tools-col { min-width: 0; }
.tools-col h5 {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--indigo);
  margin-bottom: 18px;
  text-align: center;
}
.tools-col ul { display: flex; flex-direction: column; gap: 12px; }
.tools-col li {
  font-size: 15px;
  color: var(--text-dim);
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}
@media (max-width: 860px) { .tools-grid { grid-template-columns: 1fr; } }

/* ---- Method steps (numbered, real sequence) — dark full-bleed, outlined numbers ---- */
.method-section {
  background:
    var(--corner-glow),
    linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
}
.method-section .eyebrow { color: var(--yellow); justify-content: center; }
.method-section .eyebrow::before { background: var(--yellow); box-shadow: 0 0 0 4px rgba(255,255,255,0.2); }
.method-section .section-head h2 { color: #fff; }
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.method-card {
  padding: 8px 32px;
  border-left: 1px solid rgba(255,255,255,0.18);
}
.method-card:first-child { border-left: none; padding-left: 0; }
.method-card .method-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.7);
  opacity: 1;
  margin-bottom: 16px;
}
.method-card .method-num::before { content: '#'; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.7); }
.method-card h4 { font-size: 18px; margin-bottom: 10px; font-family: var(--font-body); font-weight: 700; color: #fff; }
.method-card p { font-size: 14px; color: rgba(255,255,255,0.7); }
@media (max-width: 860px) { .method-grid { grid-template-columns: 1fr 1fr; } .method-card { border-left: none; border-top: 1px solid rgba(255,255,255,0.18); padding: 24px 0 0; } .method-card:first-child { border-top: none; } }
@media (max-width: 600px) { .method-grid { grid-template-columns: 1fr; } }

/* ---- Guides / blog ---- */
.guide-card { display: block; }
.guide-card .card { height: 100%; transition: transform .15s ease, box-shadow .15s ease; }
.guide-card:hover .card { transform: translateY(-3px); box-shadow: 0 10px 24px -8px rgba(11, 14, 61, 0.14); }
.guide-tag { font-family: var(--font-mono); color: var(--indigo); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px; display: block; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .guide-grid { grid-template-columns: 1fr; } }
.article-meta { color: var(--text-faint); font-size: 14px; margin-bottom: 8px; }
.article-body { max-width: 720px; margin: 0 auto; padding: 20px 0 80px; }
.article-body h2 { font-size: 26px; margin: 44px 0 16px; }
.article-body h3 { font-size: 20px; margin: 32px 0 12px; color: var(--navy); }
.article-body p { color: var(--text-dim); font-size: 16.5px; margin-bottom: 16px; line-height: 1.7; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 16px; }
.article-body li { color: var(--text-dim); font-size: 16.5px; margin-bottom: 8px; line-height: 1.6; }
.article-body strong { color: var(--text); }
.article-cta { background: var(--indigo-soft); border-radius: var(--radius); padding: 28px 32px; margin: 40px 0; }
.article-cta p { color: var(--text); margin-bottom: 14px; }
.article-header { padding: 150px 0 40px; }
.article-header .container { max-width: 760px; }
.article-header h1 { font-size: 38px; margin-bottom: 14px; }
@media (max-width: 640px) { .article-header h1 { font-size: 28px; } }

/* ---- Legal content pages ---- */
.legal-content { max-width: 760px; padding: 20px 0 80px; }
.legal-content .legal-updated { color: var(--text-faint); font-size: 14px; margin-bottom: 32px; }
.legal-content h2 { font-size: 22px; margin: 40px 0 14px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { color: var(--text-dim); font-size: 15.5px; margin-bottom: 14px; }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.legal-content li { color: var(--text-dim); font-size: 15.5px; margin-bottom: 8px; }
.legal-content strong { color: var(--text); }
.legal-note { background: var(--amber-soft); border: 1px solid var(--amber); border-radius: var(--radius); padding: 16px 20px; margin: 20px 0; }
.legal-note p { color: var(--text); font-size: 14.5px; margin: 0; }

/* ---- FAQ accordion (native details/summary) ---- */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 780px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 28px;
}
.faq-item summary {
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-mono);
  color: var(--indigo);
  font-size: 20px;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '-'; }
.faq-item p { color: var(--text-dim); font-size: 15px; padding-bottom: 22px; max-width: 640px; }

/* ---- Form ---- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid.full { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; color: var(--text-dim); font-family: var(--font-mono); }
.required-mark { color: var(--coral); font-weight: 700; }
.optional-mark { color: var(--text-faint); font-weight: 400; font-size: 12px; }
.form-legend { font-size: 13px; color: var(--text-faint); margin-bottom: 20px; }
.form-legend .required-mark { margin-right: 2px; }
.consent-check { display: flex; align-items: flex-start; gap: 10px; margin-top: 24px; font-size: 13px; color: var(--text-dim); line-height: 1.5; cursor: pointer; }
.consent-check input { margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--indigo); }
.consent-check a { color: var(--indigo); text-decoration: underline; }
.field input, .field select, .field textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--indigo);
  outline-offset: 1px;
  border-color: var(--indigo);
}
.field textarea { resize: vertical; min-height: 120px; }
.contact-grid { display: grid; grid-template-columns: 1fr 0.8fr; gap: 60px; }
.contact-info-card {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  height: fit-content;
}
.contact-info-card h4 { font-size: 15px; margin-bottom: 6px; font-family: var(--font-body); font-weight: 700; color: var(--navy); }
.contact-info-card p { font-size: 14px; color: var(--text-dim); margin-bottom: 22px; }
.contact-info-card .row { display: flex; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--border); font-size: 14px; gap: 16px; }
.contact-info-card .row span:first-child { color: var(--text-faint); flex-shrink: 0; }
@media (max-width: 480px) {
  .contact-info-card .row { flex-direction: column; gap: 4px; }
  .contact-info-card .row span:last-child { text-align: left; }
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } .form-grid { grid-template-columns: 1fr; } }

/* ---- Trust banner (reconnaissance externe) ---- */
.trust-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 36px;
}
.trust-banner .trust-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--indigo-soft);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}
.trust-banner p { font-size: 15px; color: var(--text-dim); }
.trust-banner p strong { color: var(--navy); font-weight: 700; }
@media (max-width: 640px) {
  .trust-banner { flex-direction: column; text-align: center; }
}
.page-header {
  padding: 150px 0 60px;
  background:
    var(--corner-glow),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.08' stroke-width='2'%3E%3Ccircle cx='150' cy='150' r='40'/%3E%3Ccircle cx='150' cy='150' r='75'/%3E%3Ccircle cx='150' cy='150' r='110'/%3E%3Ccircle cx='150' cy='150' r='145'/%3E%3C/g%3E%3C/svg%3E") right center/450px 450px no-repeat,
    linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-header .container { position: relative; z-index: 1; }
.page-header .eyebrow { color: var(--yellow); }
.page-header .eyebrow::before { background: var(--yellow); box-shadow: 0 0 0 4px rgba(255,255,255,0.2); }
.page-header h1 { font-size: 44px; margin-bottom: 16px; color: #fff; }
.page-header h1 .highlight { background: transparent; color: #fff; box-shadow: inset 0 -3px 0 var(--yellow); padding: 0 2px; }
.page-header p { color: rgba(255,255,255,0.78); font-size: 18px; max-width: 600px; }
.page-header p + p { margin-top: 16px; }
@media (max-width: 640px) { .page-header h1 { font-size: 32px; } }

.article-header {
  padding: 150px 0 40px;
  background:
    var(--corner-glow),
    linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  color: #fff;
}
.article-header .eyebrow { color: var(--yellow); }
.article-header .eyebrow::before { background: var(--yellow); box-shadow: 0 0 0 4px rgba(255,255,255,0.2); }
.article-header h1 { color: #fff; }
.article-header .article-meta { color: rgba(255,255,255,0.65); }

/* ---- Team photo ---- */
.founder-block {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}
.founder-block--no-photo { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }
.founder-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 20px;
  background: var(--surface);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: 14px;
}
.founder-text p { color: var(--text-dim); margin-top: 16px; line-height: 1.7; }
.founder-text p strong { color: var(--navy); }
@media (max-width: 760px) {
  .founder-block { grid-template-columns: 1fr; }
  .founder-photo-placeholder { max-width: 260px; margin: 0 auto; }
}

.team-photo-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px -20px rgba(11, 14, 61, 0.2);
  aspect-ratio: 16 / 9;
  position: relative;
}
.team-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

.team-caption { margin-top: 18px; font-size: 14px; color: var(--text-faint); text-align: center; }

/* ---- Team gallery (vie d'équipe) ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid figure {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 3 / 4;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 960px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.portrait-feature {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 48px;
  align-items: center;
}
.portrait-feature .portrait-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px -20px rgba(11, 14, 61, 0.2);
}
.portrait-feature .portrait-photo img { width: 100%; display: block; }
@media (max-width: 860px) {
  .portrait-feature { grid-template-columns: 1fr; }
}

/* ---- Accent highlights (yellow/green) ---- */
:root {
  --yellow: #F4C430;
  --yellow-soft: rgba(244, 196, 48, 0.18);
  --green: #2FBE7A;
  --green-soft: rgba(47, 190, 122, 0.12);
}

.highlight {
  background: var(--yellow);
  color: var(--navy);
  padding: 2px 10px;
  border-radius: 6px;
  font-weight: 700;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.tier-tag-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.trust-icon-green {
  background: var(--green-soft) !important;
  color: var(--green) !important;
}

.stat-green { color: var(--green) !important; }

/* ---- Logo strip (real tool/platform logos) ---- */
.logo-marquee {
  overflow: hidden;
  margin: 4px 0 6px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: marquee 58s linear infinite;
}
.logo-marquee-track img { height: 30px; width: 80px; object-fit: contain; object-position: left center; flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track { animation: none; }
}

/* ---- Platform badges (brand-colored, text-only — no logo reproduction) ---- */
.platform-badges { display: flex; gap: 10px; flex-wrap: wrap; margin: 4px 0 6px; }
.platform-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-weight: 700; font-size: 13.5px;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid transparent;
}
.platform-badge .dot { width: 8px; height: 8px; border-radius: 50%; }
.platform-badge.shopify { background: rgba(149, 191, 71, 0.12); color: #5E7A2C; }
.platform-badge.shopify .dot { background: #95BF47; }
.platform-badge.woocommerce { background: rgba(127, 84, 178, 0.12); color: #6B3FA0; }
.platform-badge.woocommerce .dot { background: #7F54B2; }
.platform-badge.prestashop { background: rgba(223, 0, 103, 0.10); color: #DF0067; }
.platform-badge.prestashop .dot { background: #DF0067; }

/* ---- Icon feature grid (services overview) — signature notched badges, brand-owned ---- */
.icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px 32px; }
.icon-card {
  text-align: center;
  padding: 0 6px;
}
.icon-card .icon-chip {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  margin: 0 auto 18px;
}
.icon-card .icon-chip svg { width: 24px; height: 24px; stroke: #fff; }
.icon-card .icon-chip.indigo,
.icon-card .icon-chip.amber,
.icon-card .icon-chip.green { background: linear-gradient(135deg, #C23200, var(--coral)); }
.icon-card h3 { font-size: 15.5px; margin-bottom: 8px; font-family: var(--font-body); font-weight: 700; color: var(--navy); line-height: 1.3; }
.icon-card p { font-size: 13px; color: var(--text-dim); line-height: 1.55; }
@media (max-width: 960px) { .icon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .icon-grid { grid-template-columns: 1fr; } }

/* ---- Bold panel (Konecta-style colored block with floating cards) ---- */
.bold-panel {
  background:
    var(--corner-glow),
    linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  border-radius: 24px;
  padding: 64px 48px;
}
.bold-panel .btn-primary { background: var(--yellow); color: var(--navy); }
.bold-panel .btn-ghost { border-color: rgba(255,255,255,0.35); color: #fff; }
.bold-panel .section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.bold-panel .section-head .eyebrow { justify-content: center; color: rgba(255,255,255,0.85); }
.bold-panel .section-head .eyebrow::before { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,0.25); }
.bold-panel .section-head h2 { color: #fff; }
.bold-panel .section-head p { color: rgba(255,255,255,0.75); }

.float-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.float-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 20px 40px -12px rgba(11, 14, 61, 0.35);
}
.float-card .float-num {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--indigo-soft);
  color: var(--indigo);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 14px; font-weight: 600;
  margin-bottom: 20px;
}
.float-card h3 { font-size: 19px; margin-bottom: 10px; font-family: var(--font-body); font-weight: 700; color: var(--navy); }
.float-card p { font-size: 14.5px; color: var(--text-dim); line-height: 1.6; }
.float-card .arrow-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--indigo);
}
.float-card .arrow-link svg { width: 16px; height: 16px; transition: transform 0.15s ease; }
.float-card:hover .arrow-link svg { transform: translateX(3px); }

@media (max-width: 860px) {
  .bold-panel { padding: 48px 24px; border-radius: 18px; }
  .float-grid { grid-template-columns: 1fr; }
}

/* ---- Centered section head variant ---- */
.section-head.centered { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head.centered .eyebrow { justify-content: center; }

/* ---- Brand watermark: oversized S-mark echoing the logo, faint, in the corner of violet sections ---- */
.hero, .cta-block, .method-section, .article-header, .bold-panel {
  position: relative;
  overflow: hidden;
}
.hero::before, .cta-block::before, .method-section::before, .article-header::before, .bold-panel::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 420px;
  height: 420px;
  background: url('assets/logo-icon-white.png') no-repeat center / contain;
  opacity: 0.055;
  transform: rotate(-12deg);
  pointer-events: none;
}
.article-header::before { width: 320px; height: 320px; right: -50px; bottom: -70px; }
.cta-block::before, .bold-panel::before { width: 320px; height: 320px; right: -40px; bottom: -60px; }

/* ---- Scroll reveal for content images ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Staggered reveal for gallery grid */
.gallery-grid figure:nth-child(1) .reveal, .gallery-grid figure:nth-child(1).reveal { transition-delay: 0s; }
.gallery-grid figure:nth-child(2) .reveal, .gallery-grid figure:nth-child(2).reveal { transition-delay: 0.08s; }
.gallery-grid figure:nth-child(3) .reveal, .gallery-grid figure:nth-child(3).reveal { transition-delay: 0.16s; }
.gallery-grid figure:nth-child(4) .reveal, .gallery-grid figure:nth-child(4).reveal { transition-delay: 0.24s; }
.gallery-grid figure:nth-child(5) .reveal, .gallery-grid figure:nth-child(5).reveal { transition-delay: 0.32s; }
.gallery-grid figure:nth-child(6) .reveal, .gallery-grid figure:nth-child(6).reveal { transition-delay: 0.4s; }

/* ---- Avant / Après (transformation narrative) ---- */
.revolution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 8px; }
.revolution-card { padding: 32px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.revolution-card.before { border-left: 4px solid var(--coral); }
.revolution-card.after { border-left: 4px solid var(--green); }
.revolution-card .revolution-tag { font-family: var(--font-mono); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; }
.revolution-card.before .revolution-tag { color: var(--coral); }
.revolution-card.after .revolution-tag { color: var(--green); }
.revolution-card ul { display: flex; flex-direction: column; gap: 14px; }
.revolution-card li { font-size: 15px; color: var(--text-dim); line-height: 1.5; padding-left: 18px; position: relative; }
.revolution-card li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.revolution-card.before li::before { color: var(--coral); }
.revolution-card.after li::before { color: var(--green); }
@media (max-width: 720px) { .revolution-grid { grid-template-columns: 1fr; } }

/* ---- Trust badges (garantie / protection) ---- */
.trust-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 32px; margin: 40px 0; }
.trust-badge { display: flex; align-items: center; gap: 12px; }
.trust-badge .trust-badge-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--indigo);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  display: flex; align-items: center; justify-content: center;
}
.trust-badge .trust-badge-icon svg { width: 20px; height: 20px; stroke: #fff; }
.trust-badge span { font-size: 14px; font-weight: 700; color: var(--navy); }
@media (max-width: 600px) { .trust-badges { gap: 20px; } }

/* ---- Founder signature ---- */
.founder-signature { margin-top: 24px; font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--navy); }
.founder-signature span { display: block; font-family: var(--font-body); font-size: 13px; font-weight: 400; color: var(--text-faint); margin-top: 2px; }

/* ---- Small icon chips inside "Ce que vous gagnez" cards ---- */
.pain-card .icon-chip.small {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  background: linear-gradient(135deg, #C23200, var(--coral));
  margin-bottom: 16px;
}
.pain-card .icon-chip.small svg { width: 20px; height: 20px; stroke: #fff; }

/* ---- Subtle hover lift for "Ce que vous gagnez" cards ---- */
.pain-panel .pain-card { transition: background 0.15s ease; }
.pain-panel .pain-card:hover { background: var(--bg-soft); }
.pain-panel .pain-card:hover .icon-chip.small { transform: scale(1.06); }
.pain-card .icon-chip.small { transition: transform 0.15s ease; }
