/* =========================================================
   REMOTE INFLUENCING — PAGE 18859
========================================================= */

/* Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #111F37;
  color: #d7e8fb;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

:root {
  --navy: #111F37;
  --navy-dark: #0d1829;
  --card: #1a2d4d;
  --blue: #30b4f7;
  --purple: #7e72eb;
  --cyan: #0bd4fc;
  --text: #d7e8fb;
  --r: 16px;
  --rs: 12px;
}

/* Typography / utilities */
.fp { font-family: 'Playfair Display', Georgia, serif; }

.tw { 
   color: #fff; 
   text-transform: none !important; 
}
.tb { color: var(--blue); }
.tp { color: var(--purple); }
.tc { color: var(--cyan); }
.td { color: rgba(215,232,251,.6); }
.tdd { color: rgba(215,232,251,.4); }
.tr { color: #fca5a5; }

.tc-center { text-align: center; }
.tc-left { text-align: left; }

.fw7 { font-weight: 700; }
.fw6 { font-weight: 600; }
.fw5 { font-weight: 500; }

.csm {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cmd {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1rem;
}

.sec { padding: 5rem 0; }

.bg-n { background: var(--navy); }
.bg-d { background: var(--navy-dark); }

.flex { display: flex; }
.fw { flex-wrap: wrap; }
.fc { flex-direction: column; }

.aic { align-items: center; }
.ais { align-items: flex-start; }
.jcc { justify-content: center; }
.jcb { justify-content: space-between; }

.g1 { gap: .25rem; }
.g2 { gap: .5rem; }
.g3 { gap: .75rem; }
.g4 { gap: 1rem; }
.g6 { gap: 1.5rem; }

.grid { display: grid; }

.g2c { grid-template-columns: repeat(2,1fr); }
.g3c { grid-template-columns: repeat(3,1fr); }
.g4c { grid-template-columns: repeat(4,1fr); }
.g6c { grid-template-columns: repeat(6,1fr); }

.mb1 { margin-bottom: .25rem; }
.mb2 { margin-bottom: .5rem; }
.mb3 { margin-bottom: .75rem; }
.mb4 { margin-bottom: 1rem; }
.mb6 { margin-bottom: 1.5rem; }
.mb8 { margin-bottom: 2rem; }
.mb10 { margin-bottom: 2.5rem; }
.mb12 { margin-bottom: 3rem; }
.mb16 { margin-bottom: 4rem; }
.mb20 { margin-bottom: 5rem; }

.mt2 { margin-top: .5rem; }
.mt4 { margin-top: 1rem; }
.mt6 { margin-top: 1.5rem; }
.mt8 { margin-top: 2rem; }
.mt20 { margin-top: 5rem; }

.p4 { padding: 1rem; }
.p5 { padding: 1.25rem; }
.p6 { padding: 1.5rem; }
.p8 { padding: 2rem; }

.r2 { border-radius: var(--r); }
.r1 { border-radius: var(--rs); }
.rf { border-radius: 9999px; }

.oh { overflow: hidden; }
.rel { position: relative; }

.card {
  background: rgba(26,45,77,.6);
  border: 1px solid rgba(48,180,247,.15);
  border-radius: var(--r);
  backdrop-filter: blur(8px);
  transition: border-color .3s;
}

.card:hover { border-color: rgba(48,180,247,.4); }

.card-p {
  border-color: rgba(126,114,235,.15);
}

.card-p:hover {
  border-color: rgba(126,114,235,.4);
}

.card-c {
  border-color: rgba(11,212,252,.15);
}

.card-c:hover {
  border-color: rgba(11,212,252,.4);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(48,180,247,.15);
  color: var(--blue);
  border: 1px solid rgba(48,180,247,.3);
  padding: .5rem 1rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
  backdrop-filter: blur(8px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: linear-gradient(135deg,var(--blue),var(--purple));
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem 3rem;
  border-radius: var(--rs);
  border: none;
  cursor: pointer;
  box-shadow: 0 0 40px rgba(48,180,247,.3);
  transition: all .3s;
}

.btn:hover {
  background: linear-gradient(135deg,#4cc0f9,#9589f0);
  box-shadow: 0 0 60px rgba(48,180,247,.5);
  transform: scale(1.05);
}

.gt {
  background: linear-gradient(135deg,var(--blue),var(--purple),var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pill {
  display: inline-block;
  padding: .5rem 1rem;
  border-radius: 9999px;
  background: rgba(48,180,247,.1);
  border: 1px solid rgba(48,180,247,.2);
  color: var(--blue);
  font-size: .875rem;
}

.ic {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ic-b { background: rgba(48,180,247,.1); }
.ic-p { background: rgba(126,114,235,.1); }
.ic-c { background: rgba(11,212,252,.1); }

.sl {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.st {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  font-size: clamp(1.875rem,4vw,3rem);
  line-height: 1.2;
  text-transform: none !important;
}

.ss {
  color: rgba(215,232,251,.6);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Header */
.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(17,31,55,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,45,77,.5);
}

.hdr .in {
  max-width: 1280px;
  margin: 0 auto;
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hdr .la {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.hdr .la img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.hdr .la span {
  color: #fff;
  font-weight: 600;
  font-size: .875rem;
}

.hdr-cta {
  background: linear-gradient(135deg,var(--blue),var(--purple));
  color: #fff;
  font-weight: 700;
  font-size: .875rem;
  padding: .625rem 1.5rem;
  border-radius: 8px;
  transition: all .3s;
  box-shadow: 0 0 20px rgba(48,180,247,.2);
}

.hdr-cta:hover {
  box-shadow: 0 0 30px rgba(48,180,247,.4);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg .ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,rgba(17,31,55,.9),rgba(17,31,55,.85),#111F37);
}

.hero-c {
  position: relative;
  z-index: 10;
  max-width: 1024px;
  margin: 0 auto;
  padding: 7rem 1rem 4rem;
  text-align: center;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem,6vw,4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero h1 .g {
  display: block;
  background: linear-gradient(135deg,var(--blue),var(--purple),var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.qb {
  max-width: 640px;
  margin: 0 auto 2rem;
  padding: 1.25rem;
  border-radius: var(--r);
  background: rgba(26,45,77,.5);
  border: 1px solid rgba(48,180,247,.2);
  backdrop-filter: blur(8px);
}

.qb p {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: #fff;
  font-size: clamp(.875rem,2vw,1.125rem);
  line-height: 1.75;
}

.bi {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .625rem;
}

.bi .ck {
  color: var(--cyan);
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: .125rem;
}

.bi span {
  color: var(--text);
  font-size: .875rem;
  line-height: 1.75;
}

.tr-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: .875rem;
  color: rgba(215,232,251,.6);
  margin-top: 2rem;
}

.tr-i {
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* Accordion */
.acc {
  border: 1px solid var(--card);
  border-radius: var(--rs);
  background: rgba(26,45,77,.4);
  overflow: hidden;
  margin-bottom: .75rem;
  transition: border-color .3s;
}

.acc.open {
  border-color: rgba(48,180,247,.4);
}

.acc-t {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.acc-t:hover .at {
  color: var(--blue);
}

.acc-t .al {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lb {
  width: 3rem;
  height: 3rem;
  border-radius: var(--rs);
  background: linear-gradient(135deg,var(--blue),var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lb span {
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.at {
  font-weight: 600;
  font-size: 1rem;
  transition: color .3s;
}

.chv {
  transition: transform .3s;
  color: rgba(215,232,251,.6);
}

.acc.open .chv {
  transform: rotate(180deg);
}

.acc-c {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}

.acc.open .acc-c {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

.acc-c p {
  padding-left: 4rem;
  color: rgba(215,232,251,.8);
  line-height: 1.75;
  font-size: .875rem;
}

.acc-c.faq p {
  padding-left: 0;
}

/* Testimonials */
.tp-ph {
  border-radius: var(--rs);
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color .3s;
  position: relative;
}

.tp-ph:hover {
  border-color: rgba(48,180,247,.5);
}

.tp-ph img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  object-position: top;
  transition: transform .5s;
}

.tp-ph:hover img {
  transform: scale(1.05);
}

.tp-ph .no {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .75rem;
  background: linear-gradient(to top,rgba(13,24,41,.9),transparent);
  transform: translateY(100%);
  transition: transform .3s;
}

.tp-ph:hover .no {
  transform: translateY(0);
}

.tp-ph .no p {
  color: #fff;
  font-size: .75rem;
  font-weight: 500;
  text-align: center;
}

.vp {
  aspect-ratio: 9/16;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(48,180,247,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .75rem;
}

/* Products */
.prc {
  border-radius: var(--rs);
  overflow: hidden;
  background: rgba(26,45,77,.4);
  border: 1px solid var(--card);
  transition: border-color .3s;
  position: relative;
}

.prc:hover {
  border-color: rgba(48,180,247,.4);
}

.prc img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  transition: transform .5s;
}

.prc:hover img {
  transform: scale(1.05);
}

.prc .inf {
  padding: 1rem;
}

.hot {
  position: absolute;
  top: .5rem;
  right: .5rem;
  background: var(--purple);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .5rem;
  border-radius: 4px;
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: .25rem;
}

.star {
  color: var(--blue);
  font-size: .75rem;
}

/* Final CTA */
.fcta {
  position: relative;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  overflow: hidden;
}

.fcta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,var(--card),var(--navy-dark),var(--card));
  border: 1px solid rgba(48,180,247,.3);
  border-radius: 1.5rem;
}

.fcta-bgi {
  position: absolute;
  inset: 0;
  background-image: url('https://mgx-backend-cdn.metadl.com/generate/images/1105138/2026-04-11/cc8b9fb9-d36f-4809-a9b1-9bcef4fa8a05.png');
  background-size: cover;
  background-position: center;
  opacity: .05;
  border-radius: 1.5rem;
}

.fcta-c {
  position: relative;
  z-index: 10;
  text-align: center;
}

.ig {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  text-align: left;
}

.ii {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.ii .ci {
  color: var(--cyan);
  flex-shrink: 0;
}

.ii span {
  color: rgba(215,232,251,.8);
  font-size: .875rem;
}

/* Footer */
.ftr {
  background: var(--navy-dark);
  border-top: 1px solid rgba(26,45,77,.5);
  padding: 3rem 0;
}

.fg {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.ftr h4 {
  color: #fff;
  font-weight: 600;
  font-size: .875rem;
  margin-bottom: .75rem;
}

.ftr a {
  color: rgba(215,232,251,.4);
  font-size: .75rem;
  transition: color .3s;
  display: block;
  margin-bottom: .5rem;
}

.ftr a:hover {
  color: var(--blue);
}

.ftr p {
  color: rgba(215,232,251,.4);
  font-size: .75rem;
  line-height: 1.75;
}

.sl-l {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
}

.sl-a {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(215,232,251,.5);
  font-size: .75rem;
  font-weight: 700;
  transition: background .3s;
}

.sl-a:hover {
  background: rgba(48,180,247,.2);
}

/* Animations */
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 40px rgba(48,180,247,.3); }
  50% { box-shadow: 0 0 60px rgba(48,180,247,.5); }
}

.anim-b { animation: bounce 2s infinite; }
.anim-pg { animation: pulseGlow 3s ease-in-out infinite; }

/* BA boxes */
.ba {
  padding: 1.5rem 2rem;
  border-radius: var(--r);
}

.ba-b {
  background: rgba(26,45,77,.4);
  border: 1px solid rgba(248,113,113,.2);
}

.ba-a {
  background: rgba(26,45,77,.4);
  border: 1px solid rgba(11,212,252,.2);
}

.bah {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.bai {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .75rem;
}

.dot {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: rgba(248,113,113,.4);
  flex-shrink: 0;
  margin-top: .5rem;
}

/* Transform steps */
.ts {
  padding: 1rem;
  border-radius: var(--rs);
}

.ts-b {
  background: rgba(248,113,113,.05);
  border: 1px solid rgba(248,113,113,.1);
}

.ts-m {
  background: rgba(48,180,247,.05);
  border: 1px solid rgba(48,180,247,.15);
}

.ts-a {
  background: rgba(11,212,252,.05);
  border: 1px solid rgba(11,212,252,.15);
}

.ad {
  display: flex;
  justify-content: center;
  padding: .5rem 0;
}

/* Why cards */
.wc {
  padding: 1.5rem;
  border-radius: var(--r);
  background: rgba(26,45,77,.4);
}

.wc h4 {
  font-weight: 600;
  font-size: .875rem;
  margin-bottom: 1rem;
}

.wi {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .5rem;
}

/* Cert */
.cb {
  display: inline-block;
  padding: .75rem 1.5rem;
  border-radius: var(--rs);
  background: rgba(48,180,247,.1);
  border: 1px solid rgba(48,180,247,.3);
}

/* Divider circle */
.dc {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.dc-bp {
  background: linear-gradient(135deg,var(--blue),var(--purple));
  box-shadow: 0 0 30px rgba(48,180,247,.3);
}

.dc-pc {
  background: linear-gradient(135deg,var(--purple),var(--cyan));
  box-shadow: 0 0 30px rgba(126,114,235,.3);
}

/* =========================================================
   FULL WIDTH — CORRECTIF FINAL
========================================================= */

body.page-id-18859 .hdr,
body.page-id-18859 .hero,
body.page-id-18859 .sec,
body.page-id-18859 .ftr,
body.page-id-18859 section {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

body.page-id-18859 .hero-bg,
body.page-id-18859 .fcta-bg,
body.page-id-18859 .fcta-bgi {
  width: 100% !important;
  max-width: 100% !important;
}

body.page-id-18859 .hero-c,
body.page-id-18859 .qb,
body.page-id-18859 .ss,
body.page-id-18859 .hdr .in,
body.page-id-18859 .csm,
body.page-id-18859 .cmd {
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  box-sizing: border-box !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .g4c { grid-template-columns: repeat(2,1fr); }
  .g6c { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  .g2c,
  .g3c { grid-template-columns: 1fr; }

  .g4c { grid-template-columns: repeat(2,1fr); }
  .g6c { grid-template-columns: repeat(2,1fr); }
  .fg { grid-template-columns: 1fr; }
  .ig { grid-template-columns: 1fr; }

  .hdr .la span { display: none; }
  .sec { padding: 3rem 0; }
  .hero-c { padding-top: 5rem; }
  .btn {
    padding: .875rem 2rem;
    font-size: 1rem;
  }

  body.page-id-18859 .hero-c,
  body.page-id-18859 .qb,
  body.page-id-18859 .ss,
  body.page-id-18859 .hdr .in,
  body.page-id-18859 .csm,
  body.page-id-18859 .cmd {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

@media (max-width: 480px) {
  .g4c { grid-template-columns: 1fr; }
  .g6c { grid-template-columns: repeat(2,1fr); }
  .tp-ph img { height: 10rem; }
}
