/* ===== BASE ===== */
:root {
  --blue: #0028bc;
  --blue-btn: #0d3bf3;
  --dark: #191c1e;
  --muted: #444656;
  --light-bg: #f8f9fb;
  --section-bg: #f2f4f6;
  --border: #c4c5d91a;
  --radius-pill: 9999px;
  --max-w: 1280px;
  --nav-h: 72px;
}

body { background: var(--light-bg); }

.body-final {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: var(--light-bg);
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.top-navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248,249,251,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #f1f5f9;
}

.nav-link {
  color: black;
  transition: color .25s ease-in-out;
}


.nav-link:hover {
  color: #0028bc;
  transition: color .25s ease-in-out;
}

/*Background logo that has 0% to 100% opacity fill*/
.white-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248,249,251,0) 30%, rgba(248,249,251,1) 85%);
  pointer-events: none;
  z-index: 2;
}

.logo-hero {
  position: absolute;
  scale: 200%;
  width: 200%;
  height: 200%;
  top: -20%;
  left: -20%;
  object-fit: contain;
  opacity: 0.09;
  z-index: 1;
}
/*Ends here*/

.container-25 {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 64px;
  width: 100%;
}

.container-26 { height: 28px; width: auto; }

.container-27 {
  display: flex;
  align-items: center;
  gap: 32px;
}

.text-wrapper-22 {
  font-family: "Satoshi", Helvetica;
  font-weight: 400;
  color: #475569;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  cursor: pointer;
}


.button-7 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--blue-btn);
  border-radius: var(--radius-pill);
  position: relative;
  cursor: pointer;
}
.button-shadow-2 {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 6px -4px #0d3bf333, 0 10px 15px -3px #0d3bf333;
}
.text-wrapper-23 {
  font-family: "Satoshi", Helvetica;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  position: relative;
}

/* ===== MAIN wrapper ===== */
.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: var(--nav-h);
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  width: 100%;
  max-width: var(--max-w);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 100px 64px 80px;
  align-items: center;
  overflow: visible;
}

/* Background logo watermark */
.logo-blue {
  position: absolute;
  top: 0;
  right: -10%;
  width: 75%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.logo-blue img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: contain;
}
/* Only show first image (the main SVG shape) */
.logo-blue .vector  { z-index: 8; }
.logo-blue .img     { z-index: 7; }
.logo-blue .vector-2 { z-index: 6; }
.logo-blue .vector-3 { z-index: 5; }
.logo-blue .vector-4 { z-index: 4; }
.logo-blue .vector-5 { z-index: 3; }
.logo-blue .vector-6 { z-index: 2; }
.logo-blue .vector-7 { z-index: 1; }

.container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.div-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.div-wrapper-cgu{
    display:flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 8px;
}

.le-pouvoir-est-dans {
  font-family: "Satoshi", Helvetica;
  font-weight: 700;
  color: transparent;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  margin: 0;
}
.text-wrapper  { color: var(--dark); letter-spacing: -1.3px; }
.span          { color: var(--blue); }

.ne-subissez-plus-l-wrapper { width: 100%; max-width: 480px; }
.ne-subissez-plus-l {
  font-family: "Satoshi", Helvetica;
  font-weight: 400;
  color: var(--muted);
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}

.div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.button {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--blue-btn);
  border-radius: var(--radius-pill);
  position: relative;
  cursor: pointer;
}
.button-shadow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 10px -6px #0d3bf340, 0 20px 25px -5px #0d3bf340;
}
.frame {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.ic-baseline-apple { width: 24px; height: 24px; position: relative; }
.vector-8 { width: 100%; height: 100%; object-fit: contain; }
.text-wrapper-2 {
  font-family: "Satoshi", Helvetica;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  line-height: 28px;
  white-space: nowrap;
}

.button-2 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: #e7e8ea;
  border-radius: var(--radius-pill);
  cursor: pointer;
}
.text-wrapper-3 {
  font-family: "Satoshi", Helvetica;
  font-weight: 700;
  color: var(--dark);
  font-size: 16px;
  line-height: 28px;
  white-space: nowrap;
}

/* Phone mockup */
.container-2 {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-mockup-design {
  display: flex;
  flex-direction: column;
  padding: 10px;
  background: var(--dark);
  border: 7px solid #2a2d2f;
  width: 280px;
  height: 560px;
  border-radius: 44px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}
.mobile-mockup-design-2 {
  position: absolute;
  inset: 0;
  border-radius: 44px;
  box-shadow: 0 25px 50px -12px #00000040;
  pointer-events: none;
}

.background-border {
  flex: 1;
  background: var(--light-bg);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
}

.app-UI-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  flex: 1;
}

.container-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.div-2 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}
.text {
  font-family: "Manrope", "Satoshi", Helvetica;
  font-weight: 700;
  color: var(--dark);
  font-size: 15px;
  line-height: 22px;
  white-space: nowrap;
}
.icon { width: 15px; height: 15px; }

/* Ranking cards */
.ranking-card, .another-voting-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 2px #0000000d;
  width: 100%;
}

.container-4 {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.background {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #dee0ff;
  overflow: hidden;
  flex-shrink: 0;
}
.div-3, .div-4 {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.div-3 {
  background-image: url(./img/ab6axuc4kspgkb283qnzrkhkvaz5gibd7iqntiafuufkcvv-k7i8eu3um4keu2wml3h5eyi8mabsvaawrjkg1oyso5dye5koco8k-fa0yls4-l6cacpfmnl6urp6ncdt0mfgcimgiaw5ilwhhxuqk0etzg2e6qxq16ixzrlgipqi-oloqea50yp3cfhnw-jaoggdmbtx4yj0b0e6md7fjp2y35ec5vrdwrhkvkbgyu5-fmnp1ni-ptabxslo5xhihlgv0b7qicrbe9b9tzgo.png);
}
.div-4 {
  background-image: url(./img/ab6axubvl4fkj9z3arj7wboxnz17h281j7d-nuxqxypcy-ophgyepb73uoewhhbumyfg1-ofswycdxlr-lg9t6ikedjlwimpovlkpbopbpux7how4pzdjgpu080tvzzm-imoldzljz0bystsafvocbedhdd6lm6jnl3abip9v9cvzf8-cwgbxmwrxuayadflpvcf67dgljxfew3sg1x95zy0i33tk3durpizpnwodcg1tayzw9isq-tgjra3kdkdpz7vgj9lj-h2j0-wzndv.png);
}

.container-5 {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.text-wrapper-4 {
  font-family: "Satoshi", Helvetica;
  font-weight: 600;
  color: var(--dark);
  font-size: 12px;
  line-height: 18px;
}
.ministre-de-l, .innovation-science {
  font-family: "Satoshi", Helvetica;
  font-weight: 400;
  color: var(--muted);
  font-size: 9px;
  line-height: 13px;
}
.text-2 {
  font-family: "Satoshi", Helvetica;
  font-weight: 600;
  color: var(--blue);
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
}

/* Progress bar */
.background-2 {
  height: 5px;
  background: #e1e2e4;
  border-radius: 99px;
  overflow: hidden;
  display: flex;
  width: 100%;
}
.background-3 { height: 100%; width: 65%; background: var(--blue); }
.background-4 { height: 100%; width: 35%; background: #870010; opacity: 0.4; }

.container-6 {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.div-wrapper-2 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}
.text-3 {
  font-family: "Satoshi", Helvetica;
  font-weight: 500;
  color: var(--blue);
  font-size: 9px;
  line-height: 13px;
  white-space: nowrap;
}
.text-4 {
  font-family: "Satoshi", Helvetica;
  font-weight: 500;
  color: #b2071b;
  font-size: 9px;
  line-height: 13px;
  white-space: nowrap;
}

/* Vote buttons */
.container-7 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: 100%;
}
.button-3 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 7px 12px;
  background: #98a5fd33;
  border-radius: 99px;
  cursor: pointer;
}
.button-4 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 7px 12px;
  background: #ffdad7;
  border-radius: 99px;
  cursor: pointer;
}
.container-8 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.icon-2 { width: 11px; height: 10px; }
.icon-3 { width: 10px; height: 10px; }
.text-5 {
  font-family: "Satoshi", Helvetica;
  font-weight: 600;
  color: #293788;
  font-size: 9px;
  line-height: 13px;
  white-space: nowrap;
}
.text-6 {
  font-family: "Satoshi", Helvetica;
  font-weight: 600;
  color: #410004;
  font-size: 9px;
  line-height: 13px;
  white-space: nowrap;
}

.app-navigation {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 44px;
  object-fit: cover;
}

.decorative-elements {
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: #0028bc0d;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.overlay-blur {
  position: absolute;
  left: -40px; bottom: -40px;
  width: 200px; height: 200px;
  background: #4a58a90d;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

/* ===== SECTION: C'EST QUOI ===== */
.section-c-est-quoi {
  width: 100%;
  background: var(--section-bg);
  padding: 100px 64px;
}

.container-9 {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.container-10 {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.container-11 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.text-wrapper-5 {
  font-family: "Satoshi", Helvetica;
  font-weight: 700;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 1.4px;
  line-height: 20px;
  text-transform: uppercase;
}

.p {
  font-family: "Satoshi", Helvetica;
  font-weight: 900;
  color: var(--dark);
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -1.2px;
  line-height: 1.05;
  margin: 0;
}

.les-sondages {
  font-family: "Satoshi", Helvetica;
  font-weight: 400;
  color: var(--muted);
  font-size: 18px;
  line-height: 28px;
  max-width: 480px;
}

.container-12 {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}

.div-5 {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.container-wrapper {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e1e2e4;
  border-radius: 50%;
  flex-shrink: 0;
}
.icon-4 { width: 18px; height: auto; }
.icon-5 { width: 16px; height: auto; }
.icon-6 { width: 18px; height: auto; }

.div-6 {
  font-family: "Satoshi", Helvetica;
  font-weight: 400;
  color: var(--dark);
  font-size: 17px;
  line-height: 24px;
  margin: 0;
}
.text-wrapper-6 { font-weight: 700; }
.text-wrapper-7 { font-weight: 400; }

/* Testimonial card */
.container-13 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: flex-end;
}

.background-texture {
  position: absolute;
  inset: -48px 0 0 48px;
  border-radius: 32px;
  border: 2px solid #0028bc1a;
  pointer-events: none;
}

.background-5 {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 44px;
  background: #fff;
  border-radius: 28px;
  width: 100%;
  position: relative;
}

.icon-7 { width: 32px; height: auto; }

.pas-d-algorithme {
  font-family: "Satoshi", Helvetica;
  font-weight: 700;
  color: var(--dark);
  font-size: 22px;
  line-height: 32px;
  margin: 0;
}

.horizontal-border {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid #c4c5d91a;
  width: 100%;
}

.background-6 {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-btn);
  border-radius: 50%;
  flex-shrink: 0;
}
.text-7 {
  font-family: "Satoshi", Helvetica;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
}

.l-quipe-rankocracy {
  font-family: "Satoshi", Helvetica;
  font-weight: 700;
  color: var(--dark);
  font-size: 15px;
  line-height: 22px;
  white-space: nowrap;
}
.text-wrapper-8 {
  font-family: "Satoshi", Helvetica;
  font-weight: 400;
  color: var(--muted);
  font-size: 13px;
  line-height: 18px;
  white-space: nowrap;
}

/* ===== SECTION: COMMENT ÇA MARCHE ===== */
.section-comment-a {
  width: 100%;
  background: var(--light-bg);
  padding: 100px 0;
}

.container-14 {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 0 64px;
  width: 100%;
}

.div-wrapper-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.text-wrapper-9 {
  font-family: "Satoshi", Helvetica;
  font-weight: 700;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 1.4px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.text-wrapper-10 {
  font-family: "Satoshi", Helvetica;
  font-weight: 900;
  color: var(--dark);
  font-size: clamp(24px, 3vw, 36px);
  text-align: center;
  line-height: 1.1;
  white-space: nowrap;
}

.container-15 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

/* Second mockup */
.container-16 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.frame-2 {
  position: relative;
  width: 100%;
  max-width: 340px;
  height: 520px;
  background: #fff;
  overflow: hidden;
  border-radius: 48px;
}

.second-mockup-focus {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px;
  background: var(--dark);
  border-radius: 44px;
  border: 7px solid #2a2d2f;
}
.second-mockup-focus-2 {
  position: absolute;
  inset: 0;
  border-radius: 44px;
  box-shadow: 0 25px 50px -12px #00000040;
  pointer-events: none;
}

.background-border-2 {
  flex: 1;
  background: var(--light-bg);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
}

.div-7 {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url(./img/ab6axucxjzb0xjktmuthvanlvpbta41oh51ixy7ihw43kartyb-4xqzp4hwxkzilr3eshmytgqyy3wcnat5iypxh8c75o6miqh9u24z-z2ihtt2kibtw8qqjfqajip8jlsyrkse7kamfgmmrrcj-wax2ccbje3fgah7cdsbuqlamqxvx-urc8bsogxtn8egkljhzcq-scnqz283beeyscxocxzq89ehdk6owgxgwmofav09yhwtvngaabqjqgqx3dzbe5e5adnt774by0fep.png);
  background-size: cover;
  background-position: center;
}

.container-17 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  position: relative;
  z-index: 1;
}
.text-8 {
  font-family: "Satoshi", Helvetica;
  font-weight: 700;
  color: var(--dark);
  font-size: 17px;
  line-height: 24px;
}
.background-shadow {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 2px #0000000d;
}
.r-forme-du-travail {
  font-family: "Satoshi", Helvetica;
  font-weight: 600;
  color: var(--dark);
  font-size: 13px;
  line-height: 18px;
}

.container-18 {
  display: flex;
  align-items: center;
  width: 100%;
}
.background-border-3,
.background-border-4,
.background-border-5 {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
}
.background-border-3 { background: #e2e8f0; z-index: 4; }
.background-border-4 { background: #cbd5e1; margin-left: -7px; z-index: 3; }
.background-border-5 { background: #94a3b8; margin-left: -7px; z-index: 2; }

.margin {
  width: 28px; height: 28px;
  margin-left: -7px;
  position: relative;
}
.background-border-6 {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue);
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -7px;
}
.text-9 {
  font-family: "Satoshi", Helvetica;
  font-weight: 400;
  color: #fff;
  font-size: 9px;
  line-height: 13px;
  white-space: nowrap;
}

.container-19 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.text-10 {
  font-family: "Satoshi", Helvetica;
  font-weight: 400;
  color: var(--muted);
  font-size: 9px;
  line-height: 13px;
  white-space: nowrap;
}
.background-7 {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: #98a5fd;
  border-radius: 99px;
}
.text-11 {
  font-family: "Satoshi", Helvetica;
  font-weight: 600;
  color: #293788;
  font-size: 9px;
  line-height: 13px;
  white-space: nowrap;
}

.rectangle {
  position: absolute;
  inset: 0;
  border-radius: 44px;
  background: linear-gradient(180deg, rgba(217,217,217,0) 40%, rgba(255,255,255,1) 100%);
  pointer-events: none;
  z-index: 2;
}

/* CTA under second mockup */
.frame-3 {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 340px;
}

.button-5 {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--blue-btn);
  border-radius: var(--radius-pill);
  width: 100%;
  cursor: pointer;
  position: relative;
}

.frame-4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.frame-5 { height: 20px; width: auto; }

.text-wrapper-11 {
  font-family: "Satoshi", Helvetica;
  font-weight: 500;
  color: var(--dark);
  font-size: 15px;
  line-height: 22px;
}

/* Steps grid */
.frame-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.frame-6 {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}
.frame-7 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.frame-8 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  flex: 1;
}

.div-8 {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: #fff;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px #0000000d;
}
.background-border-7 {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: #fff;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px #0000000d;
}

.text-wrapper-12 {
  font-family: "Satoshi", Helvetica;
  font-weight: 700;
  color: #0028bc33;
  font-size: 40px;
  line-height: 44px;
}
.text-wrapper-15 {
  font-family: "Satoshi", Helvetica;
  font-weight: 600;
  color: #0028bc33;
  font-size: 40px;
  line-height: 44px;
}

.heading {
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.text-wrapper-13 {
  font-family: "Satoshi", Helvetica;
  font-weight: 700;
  color: var(--dark);
  font-size: 18px;
  line-height: 26px;
}
.text-wrapper-14 {
  font-family: "Satoshi", Helvetica;
  font-weight: 400;
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
}

/* ===== SECTION: CONCLUSION ===== */
.section-conclusion {
  width: calc(100% - 128px);
  max-width: 1216px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 100px 64px 80px;
  background: var(--section-bg);
  border-radius: 48px;
  overflow: hidden;
  position: relative;
  align-items: center;
  margin: 0 auto;
}

.abstract-background {
  position: absolute;
  top: -96px; left: -96px;
  width: 256px; height: 256px;
  background: #0028bc1a;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}
.overlay-blur-2 {
  position: absolute;
  right: -96px; bottom: -96px;
  width: 256px; height: 256px;
  background: #4a58a91a;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}

.container-20 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.chaque-vote-compte {
  font-family: "Satoshi", Helvetica;
  font-weight: 900;
  color: transparent;
  font-size: clamp(36px, 4.5vw, 60px);
  text-align: center;
  line-height: 1.05;
  margin: 0;
}
.text-wrapper-16 { color: var(--dark); letter-spacing: -0.9px; }
.text-wrapper-17 { text-decoration: underline; color: var(--blue); }

.container-21 {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.text-wrapper-18 {
  font-family: "Satoshi", Helvetica;
  font-weight: 400;
  color: var(--muted);
  font-size: 18px;
  text-align: center;
  line-height: 28px;
}

.container-22 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.button-6 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  padding: 18px 36px;
  border: 2px solid #0028bc33;
  border-radius: var(--radius-pill);
  cursor: pointer;
}
.text-wrapper-19 {
  font-family: "Satoshi", Helvetica;
  font-weight: 700;
  color: var(--blue);
  font-size: 17px;
  line-height: 26px;
  white-space: nowrap;
}

/* ===== FOOTER ===== */
.footer {
  width: 100%;
  background: var(--light-bg);
  border-top: 1px solid #f1f5f9;
  padding: 40px 64px;
}

.container-23 {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
}

.paragraph {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.logo { height: 24px; width: auto; }
.text-wrapper-20 {
  font-family: "Satoshi", Helvetica;
  font-weight: 400;
  color: #64748b;
  font-size: 13px;
  line-height: 20px;
  white-space: nowrap;
}

.container-24 {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.text-wrapper-21 {
  font-family: "Satoshi", Helvetica;
  font-weight: 400;
  color: #64748b;
  font-size: 13px;
  line-height: 20px;
  white-space: nowrap;
  cursor: pointer;
}

/* Avatar stack */
.avatar-stack {
  display: flex;
  align-items: center;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  background-size: cover;
  background-position: center top;
  flex-shrink: 0;
}
.avatar:first-child { margin-left: 0; }
.av1, .icon-7 { background-color: #c9d0e8; background-image: url('https://randomuser.me/api/portraits/men/32.jpg'); }
.av2 { background-color: #b8c0d8; background-image: url('https://randomuser.me/api/portraits/men/45.jpg'); }
.av3 { background-color: #a8b2cc; background-image: url('https://randomuser.me/api/portraits/women/28.jpg'); }
.av4 { background-color: #98a4c0; background-image: url('https://randomuser.me/api/portraits/men/67.jpg'); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .container-25 { padding: 14px 24px; }
  .container-27 { display: none; }

  .hero-section {
    grid-template-columns: 1fr;
    padding: 80px 24px 60px;
    text-align: left;
    gap: 48px;
  }

  .container-2 { justify-content: center; }

  .section-c-est-quoi { padding: 72px 24px; }
  .container-9 { grid-template-columns: 1fr; gap: 56px; }
  .container-13 { align-items: stretch; }
  .background-texture { display: none; }
  .les-sondages { max-width: 100%; width: 100%; }

  .section-comment-a { padding: 72px 0; }
  .container-14 { padding: 0 24px; }
  .container-15 { grid-template-columns: 1fr; }
  .frame-2 { max-width: 100%; }

  .section-conclusion {
    width: calc(100% - 48px);
    padding: 72px 32px 60px;
  }

  .footer { padding: 36px 24px; }
  .container-23 { flex-direction: column; gap: 16px; }
}

@media (max-width: 600px) {
  .le-pouvoir-est-dans { font-size: 36px; }
  .p { font-size: 30px; }
  .frame-8 { grid-template-columns: 1fr; }
  .text-wrapper-10 { white-space: normal; }
  .text-wrapper-18 { white-space: normal; }
  .chaque-vote-compte { font-size: 32px; }
  .section-conclusion { width: calc(100% - 32px); border-radius: 32px; }
}