:root {
    --a-bg:       #0b0b0f;
    --a-accent:   #3e8ffee0;
    --a-accent-r: 62, 143, 254;
    --a-text:     #f0ede8;
    --a-muted:    rgba(240, 237, 232, 0.45);
    --a-border:   rgba(255, 255, 255, 0.07);
    --a-radius:   16px;
    --q-ar:      62, 143, 254;
}
/*qui suisje*/
.page-id-1006 .inside-article {
  padding: 1rem !important;
}
.qsj-section {
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
 
.qsj-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 1px;
  height: 60%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(var(--q-ar), 0.3) 25%,
    rgba(var(--q-ar), 0.3) 75%,
    transparent
  );
}
.qsj-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem 6rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
#qsj-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--a-accent);
}
#qsj-title {
  margin-bottom: 1rem !important;
}
#qsj-title::after {
  display: none;
}
.qsj-left {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  position: sticky;
  top: 6rem;
} 
.qsj-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.2rem;
}
 
.qsj-para {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--a-muted);
}
 
.qsj-para strong {
  color: rgba(240, 237, 232, 0.78);
  font-weight: 600;
}
 
.qsj-para:first-child {
  font-size: 1.08rem;
  color: rgba(240, 237, 232, 0.65);
}
 
.qsj-quote {
  position: relative;
  padding: 1.4rem 1.6rem 1.4rem 2rem;
  border-left: 2px solid rgba(var(--q-ar), 0.35);
  background: rgba(var(--q-ar), 0.04);
  border-radius: 0 12px 12px 0;
}
 
.qsj-quote::before {
  content: '\201C';
  position: absolute;
  top: -0.8rem;
  left: 1.2rem;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--a-accent);
  opacity: 0.18;
  font-family: Georgia, serif;
  pointer-events: none;
}
 
.qsj-quote p {
  font-size: 0.93rem;
  line-height: 1.75;
  color: rgba(240, 237, 232, 0.62);
  font-style: italic;
}
/*a propos*/
.a-proposhead {
    margin-top: 2rem;
}
.accomp-section {
  padding: 4rem 2rem;
  overflow: hidden;
  position: relative;

}
 
.accomp-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr 0.85fr;
  grid-template-rows: auto auto;
  gap: 0 3.5rem;
  max-width: 1400px;
  margin: 0 auto;
  
}
 
.accomp-visuel {
  grid-column: 1;
  grid-row: 1 / 3;
  position: relative;
  min-height: 600px;
}
 
.accomp-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 88%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--a-radius);
  transform: rotate(-1.5deg);
  filter: brightness(0.85) saturate(0.9);
  transition: filter 0.5s ease, transform 0.5s ease;
  will-change: transform;
  z-index: 1;
}
 
.accomp-img-main:hover {
  filter: brightness(0.95) saturate(1);
  transform: rotate(-0.5deg) scale(1.01);
}
 
.accomp-img-sub {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  width: 58%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--a-radius);
  border: 1px solid var(--a-bg);
  transform: rotate(2deg);
  filter: brightness(0.8);
  transition: filter 0.5s ease, transform 0.5s ease;
  z-index: 2;
}
 
.accomp-img-sub:hover {
  filter: brightness(0.95);
  transform: rotate(0.8deg) scale(1.02);
}
 
.accomp-badge {
  position: absolute;
  top: 2rem;
  right: 0;
  z-index: 3;
  background: rgba(var(--a-accent-r), 0.1);
  border: 1px solid rgba(var(--a-accent-r), 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
 
.accomp-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--a-accent);
  animation: pulse-dot 2s ease infinite;
}
 
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}
 
.accomp-badge span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--a-accent);
}
 
.accomp-content {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1rem;
}
 
.accomp-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--a-accent);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
 
.accomp-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--a-accent);
  opacity: 0.6;
}
 
.accomp-title {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--a-text);
  letter-spacing: -0.025em;
}
 
.accomp-title mark {
  background: none;
  color: var(--a-accent);
  font-style: italic;
  font-weight: 400;
}
 
.accomp-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--a-accent), transparent);
  flex-shrink: 0;
}
 
.accomp-body p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--a-muted);
  margin-bottom: 1rem;
}
 
.accomp-body p:last-child { margin-bottom: 0; }
 
.accomp-body p:first-child {
  color: rgba(240, 237, 232, 0.65);
  font-size: 1rem;
}
 
.accomp-aside {
  grid-column: 3;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1rem;
}
 
.accomp-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--a-border);
  border-radius: var(--a-radius);
  padding: 1.4rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}
 
.accomp-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--a-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
 
.accomp-stat:hover {
  border-color: rgba(var(--a-accent-r), 0.2);
  background: rgba(var(--a-accent-r), 0.03);
}
 
.accomp-stat:hover::before { opacity: 0.7; }
 
.accomp-stat-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--a-text);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.3rem;
}
 
.accomp-stat-number sup {
  font-size: 1rem;
  color: var(--a-accent);
  vertical-align: super;
}
 
.accomp-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--a-muted);
}
 
.accomp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
 
.accomp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--a-muted);
  line-height: 1.5;
  transition: color 0.25s ease;
}
 
.accomp-list li:hover { color: var(--a-text); }
 
.accomp-list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--a-accent);
  margin-top: 0.45rem;
  flex-shrink: 0;
  opacity: 0.8;
}
 
.accomp-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--a-bg);
  background: var(--a-accent);
  text-decoration: none;
  padding: 0.9rem 1.6rem;
  border-radius: 100px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  margin-top: auto;
}
 
.accomp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(var(--a-accent-r), 0.3);
  opacity: 0.92;
}
 
.accomp-cta::after {
  content: '→';
  transition: transform 0.3s ease;
}
 
.accomp-cta:hover::after { transform: translateX(4px); }

.accomp-reveal {
  opacity: 0;
  translate: 0 30px;
  transition: opacity 0.7s ease, translate 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
 
.accomp-reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}
@media (max-width: 1024px) {
  .accomp-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 3rem;
  }
 
  .accomp-visuel  { grid-column: 1; grid-row: 1; min-height: 400px; }
  .accomp-content { grid-column: 2; grid-row: 1; }
  .accomp-aside   { grid-column: 1 / 3; grid-row: 2;
                    flex-direction: row; flex-wrap: wrap; }
 
  .accomp-stat    { flex: 1; min-width: 140px; }
  .accomp-list    { flex: 2; min-width: 260px; }
  .accomp-cta     { align-self: center; }
}
@media (max-width: 768px) {
  .qsj-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .qsj-section {
    padding: 4rem 0rem 0 0 !important;
  }
  .qsj-left {
    position: static;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .qsj-section::before { display: none; }
 
  .accomp-section { padding: 5rem 0rem; }
  .accomp-section h2 {
    margin-bottom: 2rem !important;
  }
  .accomp-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .accomp-visuel  { grid-column: 1; grid-row: 1; min-height: 300px;}
  .accomp-content { grid-column: 1; grid-row: 2; }
  .accomp-aside   { grid-column: 1; grid-row: 3;
    flex-direction: column; }
  .accomp-img-main { width: 80%;  max-height: 350px; }
  .accomp-img-sub  { width: 55%; right: 0; bottom: -1rem; }
}
.accomp-cta {
    margin-top: 4rem;
}
.accomp-list {
    margin-top: 4rem;
}
@media (prefers-reduced-motion: reduce) {
  .accomp-reveal,
  .accomp-img-main,
  .accomp-img-sub,
  .accomp-badge-dot { animation: none; transition: none; }
  .accomp-reveal { opacity: 1; translate: 0; }
  * { transition: none !important; }
}