/* =============================================
   APEX — LANDING PAGE STYLES (CRO OPTIMIZED)
   ============================================= */

/* Google Fonts loaded via <link> in HTML — no @import needed */

/* --- CSS Variables --- */
:root {
  --navy-deep:    #001F55;
  --navy-medium:  #0A2A6B;
  --navy-light:   #102E6A;
  --blue-accent:  #3B82F6;
  --blue-glow:    #60A5FA;
  --slate:        #8298BF;
  --white:        #FFFFFF;
  --off-white:    #F1F5F9;
  --gray-text:    #64748B;
  --red-accent:   #EF4444;
  --green-accent: #22C55E;
  --orange-accent:#F59E0B;
  --footer-bg:    #001040;

  --section-pad-mobile:  72px;
  --section-pad-desktop: 104px;
  --container-max:       1100px;
  --radius-card:         16px;
  --radius-btn:          12px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  background-color: var(--navy-deep);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Section Padding --- */
.section {
  padding: var(--section-pad-mobile) 0;
}

/* --- Background Variants --- */
.bg-dark  { background-color: var(--navy-deep); color: var(--white); }
.bg-light { background-color: var(--off-white); color: #0F172A; }

/* --- Typography --- */
h1 {
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(26px, 4.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 600;
  line-height: 1.3;
}

p {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.7;
}

.body-large {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
}

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

/* --- CTA Buttons --- */
.btn-cta {
  display: inline-block;
  background-color: var(--blue-accent);
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-cta:hover {
  background-color: var(--blue-glow);
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
}

.btn-cta.btn-large {
  padding: 20px 48px;
  font-size: 18px;
}

/* Dark variant for light backgrounds */
.btn-cta-dark {
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}
.btn-cta-dark:hover {
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.5);
}

.btn-micro {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--slate);
  font-style: italic;
  text-align: center;
}

/* --- Utility spacers --- */
.mt-sm  { margin-top: 16px; }
.mt-md  { margin-top: 24px; }
.mt-lg  { margin-top: 40px; }
.mt-xl  { margin-top: 56px; }
.mb-sm  { margin-bottom: 16px; }
.mb-md  { margin-bottom: 24px; }
.mb-lg  { margin-bottom: 40px; }
.mb-xl  { margin-bottom: 56px; }

/* --- Fade-in scroll animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero: CSS animation so above-fold loads instantly */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

#hero .fade-in {
  animation: heroFadeUp 0.7s ease-out forwards;
}
#hero .fade-in:nth-child(1) { animation-delay: 0.05s; }
#hero .fade-in:nth-child(2) { animation-delay: 0.18s; }
#hero .fade-in:nth-child(3) { animation-delay: 0.32s; }
#hero .fade-in:nth-child(4) { animation-delay: 0.46s; }
#hero .fade-in:nth-child(5) { animation-delay: 0.56s; }
#hero .fade-in:nth-child(6) { animation-delay: 0.66s; }
#hero .fade-in:nth-child(7) { animation-delay: 0.76s; }

/* ===========================================
   SECTION 1 — HERO
   =========================================== */
#hero {
  background-color: var(--navy-deep);
  background-image: radial-gradient(ellipse at 50% 40%, var(--navy-medium) 0%, var(--navy-deep) 70%);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.hero__logo {
  width: 200px;
  height: auto;
  margin-bottom: 44px;
  cursor: pointer;
}

.hero__headline {
  max-width: 800px;
  margin-bottom: 24px;
}

.hero__subtitle {
  max-width: 640px;
  margin-bottom: 44px;
  color: var(--slate);
}

/* ===========================================
   SECTION 2 — ACCROCHE
   =========================================== */
#accroche .section-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

#accroche h2 {
  margin-bottom: 32px;
  color: #0F172A;
}

#accroche p {
  margin-bottom: 18px;
  color: var(--gray-text);
}

#accroche p:last-of-type {
  margin-bottom: 0;
}

.accroche__finale {
  margin-top: 32px !important;
  font-size: clamp(20px, 2.4vw, 28px) !important;
  font-weight: 800 !important;
  color: #0F172A !important;
}

/* ===========================================
   SECTION 3 — LES 3 FUITES
   =========================================== */
#fuites .section-title {
  text-align: center;
  margin-bottom: 48px;
}

.fuites__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.fuite-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--red-accent);
  border-radius: var(--radius-card);
  padding: 28px 28px 24px;
  position: relative;
}

.fuite-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(239, 68, 68, 0.15);
  color: var(--red-accent);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 12px;
}

.fuite-badge.badge-danger {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.5);
}

.fuite-card h3 {
  margin-bottom: 12px;
  color: var(--white);
}

.fuite-card .fuite-body {
  color: var(--slate);
  margin-bottom: 14px;
  font-size: 15px;
}

.fuite-result {
  font-weight: 600;
  color: var(--red-accent);
  font-size: 15px;
  line-height: 1.6;
}

.fuites__transition {
  max-width: 780px;
  margin: 48px auto 0;
  text-align: center;
}

.fuites__transition p {
  margin-bottom: 24px;
}

.fuites__transition .key-statement {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}

.fuites__transition .apex-statement {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--blue-accent);
  display: block;
}

/* ===========================================
   SECTION 4 — L'OPPORTUNITÉ (now light bg)
   =========================================== */
#opportunite .section-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

#opportunite h2 {
  margin-bottom: 36px;
  color: #0F172A;
}

.opportunite__lines p {
  color: var(--gray-text);
  margin-bottom: 16px;
  font-size: clamp(16px, 1.5vw, 19px);
}

.opportunite__pivot {
  margin: 36px 0 32px;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--blue-accent);
}

/* Benefits grid */
.benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
  margin: 28px auto 0;
  text-align: left;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.benefit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.benefit__icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit__title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
}

.benefit__content p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===========================================
   SECTION 5 — SOLUTION (now dark bg)
   =========================================== */
#solution .section-title {
  text-align: center;
  color: var(--white);
  margin-bottom: 48px;
}

.solution__blocs {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.solution-bloc {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  padding: 28px;
}

.solution-bloc__num {
  font-size: 42px;
  font-weight: 800;
  color: var(--blue-accent);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}

.solution-bloc__content h3 {
  color: var(--white);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(17px, 2vw, 21px);
}

.solution-bloc__content h3 .check-icon {
  color: var(--green-accent);
  font-size: 18px;
}

.solution-bloc__content p {
  color: var(--slate);
  font-size: 15px;
}

/* COD signal pills */
.cod-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

.pill {
  display: inline-block;
  padding: 3px 11px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pill-blue   { background: rgba(59,130,246,0.12); color: var(--blue-accent); border: 1px solid rgba(59,130,246,0.3); }
.pill-green  { background: rgba(34,197,94,0.12);  color: var(--green-accent); border: 1px solid rgba(34,197,94,0.3); }
.pill-red    { background: rgba(239,68,68,0.12);  color: var(--red-accent);  border: 1px solid rgba(239,68,68,0.3); }

.solution__summary {
  text-align: center;
  margin-top: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.solution__summary .key {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  display: block;
}

.solution__summary .sub {
  color: var(--slate);
  font-size: 16px;
  margin-bottom: 20px;
}

.unicite-line {
  font-weight: 700;
  color: var(--blue-accent) !important;
  font-size: clamp(16px, 1.5vw, 18px) !important;
  margin-top: 8px;
  line-height: 1.5;
}

/* ===========================================
   SECTION 6 — RÉSULTATS / TRUST
   =========================================== */
#resultats .section-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

#resultats h2 {
  color: #0F172A;
  margin-bottom: 36px;
}

/* Trust badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 48px;
  padding: 10px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.trust-badge__icon {
  font-size: 20px;
  line-height: 1;
}

.trust-badge__text {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.resultats-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-card);
  padding: 36px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  text-align: center;
}

.resultats-card p {
  color: var(--gray-text);
  font-size: clamp(16px, 1.6vw, 19px);
  margin-bottom: 28px;
}

/* ===========================================
   SECTION 7 — PROCESS
   =========================================== */
#process .section-title {
  text-align: center;
  margin-bottom: 56px;
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-accent);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(59,130,246,0.2);
}

.step__content h3 {
  color: var(--white);
  margin-bottom: 4px;
  font-size: clamp(18px, 2vw, 22px);
}

.step__subtitle {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.step__content p {
  color: var(--slate);
  font-size: 15px;
}

/* Desktop: horizontal steps */
@media (min-width: 768px) {
  .process__steps {
    flex-direction: row;
    align-items: flex-start;
  }

  .process-step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
  }

  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 26px;
    left: calc(50% + 30px);
    right: calc(-50% + 30px);
    height: 2px;
    background: repeating-linear-gradient(
      90deg,
      var(--blue-accent) 0,
      var(--blue-accent) 6px,
      transparent 6px,
      transparent 14px
    );
    opacity: 0.5;
  }
}

/* ===========================================
   SECTION 8 — OFFRE UNIQUE
   =========================================== */
#offer .section-title {
  text-align: center;
  color: #0F172A;
  margin-bottom: 40px;
}

/* Main offer card */
.offer__card {
  background: linear-gradient(160deg, var(--navy-medium) 0%, var(--navy-deep) 100%);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  padding: 44px 28px;
  max-width: 580px;
  margin: 0 auto 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 15, 50, 0.4);
  position: relative;
  overflow: hidden;
}

.offer__card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 120%;
  background: radial-gradient(ellipse at 50% 0%, rgba(59,130,246,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.offer__name {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-accent);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 6px 20px;
  border-radius: 6px;
  margin-bottom: 28px;
  position: relative;
}

/* Events — compact inline pills */
.offer__events {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 0 auto 8px;
}

.offer__event {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
}

.offer__event--blue {
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.offer__event--green {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.offer__event--orange {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.offer__event--red {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.offer__events-sub {
  font-size: 14px;
  color: var(--slate);
  font-style: italic;
  margin-bottom: 32px;
}

/* Price */
.offer__price-block {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 2px;
}

.offer__price {
  font-size: clamp(44px, 8vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.offer__currency {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 600;
  color: var(--slate);
}

.offer__price-note {
  font-size: 14px;
  color: var(--green-accent);
  font-weight: 600;
  margin-bottom: 24px;
}

/* Risk Reversal */
.offer__risk-reversal {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(72, 187, 120, 0.08);
  border: 1px solid rgba(72, 187, 120, 0.25);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 28px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.offer__risk-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.offer__risk-reversal p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  text-align: left;
}

/* CTA */
.offer__cta {
  width: 100%;
  max-width: 400px;
  text-align: center;
  font-size: 17px !important;
  padding: 16px 28px !important;
}

/* Micro-copy under CTA */
.offer__micro {
  display: block;
  margin-top: 12px;
  margin-bottom: 28px;
  font-size: 13px;
  color: var(--slate);
  letter-spacing: 0.01em;
}

/* Trust footer */
.offer__trust {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.offer__guarantee {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--slate);
  line-height: 1.55;
  text-align: left;
}

/* Scarcity */
.offer__scarcity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-accent);
}

.offer__scarcity-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-accent);
  flex-shrink: 0;
  animation: pulse-scarcity 2s ease-in-out infinite;
}

@keyframes pulse-scarcity {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
  50%      { opacity: 0.7; box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
}

/* Qualification */
.offer__qual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 580px;
  margin: 0 auto;
}

.offer__qual-col {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 24px 24px;
}

.offer__qual-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.offer__qual-yes {
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.offer__qual-yes h4 {
  color: #16A34A;
}

.offer__qual-no {
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.offer__qual-no h4 {
  color: #DC2626;
}

.offer__qual-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offer__qual-yes li,
.offer__qual-no li {
  font-size: 14px;
  color: #374151;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.offer__qual-yes li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #16A34A;
  font-weight: 700;
}

.offer__qual-no li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: #DC2626;
  font-weight: 700;
}

@media (min-width: 768px) {
  .offer__card {
    padding: 52px 48px;
  }
}

/* ===========================================
   SECTION 9 — FAQ
   =========================================== */
#faq .section-title {
  text-align: center;
  margin-bottom: 44px;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: rgba(59,130,246,0.3);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 600;
  line-height: 1.4;
  gap: 16px;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(255,255,255,0.03);
}

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--blue-accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer__inner {
  padding: 0 24px 20px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.75;
}

/* ===========================================
   SECTION 10 — CTA FINAL
   =========================================== */
#cta-final {
  background: linear-gradient(160deg, var(--navy-medium) 0%, var(--navy-deep) 60%);
  text-align: center;
}

#cta-final .section-inner {
  max-width: 760px;
  margin: 0 auto;
}

#cta-final h2 {
  margin-bottom: 16px;
}

#cta-final .cta-subtitle {
  color: var(--slate);
  margin-bottom: 44px;
}

/* Calendly inline widget — responsive height */
.calendly-inline-widget {
  border-radius: 16px;
  overflow: hidden;
  height: 420px !important;  /* mobile: compact */
}

@media (min-width: 768px) {
  .calendly-inline-widget {
    height: 700px !important; /* desktop: full booking flow */
  }
}

/* ===========================================
   FOOTER
   =========================================== */
footer {
  background-color: var(--footer-bg);
  padding: 44px 20px;
}

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer__logo {
  width: 150px;
  height: auto;
}

.footer__tagline {
  color: var(--slate);
  font-size: 14px;
}

.footer__links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer__link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--slate);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--white);
}

.footer__link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer__copyright {
  color: #374770;
  font-size: 13px;
}

/* ===========================================
   FLOATING MOBILE CTA
   =========================================== */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 16, 64, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

.floating-cta.show {
  transform: translateY(0);
}

.floating-cta__btn {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 14px 24px !important;
  font-size: 15px !important;
}

/* Extra padding at bottom for floating CTA on mobile */
footer {
  padding-bottom: 80px;
}

/* ===========================================
   WHATSAPP BUTTON
   =========================================== */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: #1DA851;
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Hero Social Proof Badge */
.hero__social-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 20px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 48px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-accent);
  letter-spacing: 0.01em;
}

.social-proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-accent);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* Hero WhatsApp */
.hero__whatsapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.hero__or {
  font-size: 13px;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* Fuites CTA */
.fuites__cta {
  text-align: center;
  margin-top: 40px;
}

/* ===========================================
   BEFORE / AFTER COMPARISON
   =========================================== */
.before-after {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.before-after__card {
  border-radius: var(--radius-card);
  padding: 28px 24px;
  text-align: left;
}

.before-after__card--before {
  background: #FFFFFF;
  border: 2px solid #FCA5A5;
  box-shadow: 0 4px 16px rgba(239,68,68,0.06);
}

.before-after__card--after {
  background: #FFFFFF;
  border: 2px solid #86EFAC;
  box-shadow: 0 4px 16px rgba(34,197,94,0.06);
}

.before-after__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.before-after__card--before .before-after__label {
  background: rgba(239,68,68,0.08);
  color: #DC2626;
}

.before-after__card--after .before-after__label {
  background: rgba(34,197,94,0.08);
  color: #16A34A;
}

.before-after__metrics {
  display: flex;
  flex-direction: column;
}

.metric {
  padding: 12px 0;
  border-bottom: 1px solid #F1F5F9;
}

.metric:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.metric__name {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.metric__value {
  display: block;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.metric__value--bad {
  color: #DC2626;
}

.metric__value--good {
  color: #16A34A;
}

.before-after__note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-text);
  font-style: italic;
  margin-top: 20px;
  margin-bottom: 32px;
}

/* ===========================================
   GUARANTEE
   =========================================== */
.guarantee {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 700px;
  margin: 36px auto 0;
  padding: 24px 28px;
  background: rgba(34,197,94,0.05);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-card);
}

.guarantee__icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.guarantee__title {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #16A34A !important;
  margin-bottom: 6px !important;
}

.guarantee__text {
  font-size: 14px !important;
  color: var(--gray-text) !important;
  line-height: 1.65 !important;
  margin-bottom: 0 !important;
}

/* Floating CTA: WhatsApp icon */
.floating-cta__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25D366;
  flex-shrink: 0;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.floating-cta__wa:hover {
  background: #1DA851;
  transform: scale(1.05);
}

.floating-cta__wa svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* ===========================================
   TEAM SECTION (inside Solution)
   =========================================== */
.team {
  text-align: center;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}


.team__photos {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.team__member {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(59, 130, 246, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.team__photo:hover {
  transform: scale(1.05);
  border-color: var(--blue-accent);
}

.team__sub {
  font-size: 15px;
  color: var(--slate);
  font-weight: 500;
}

/* Pricing card inline guarantee */
.pricing-card__guarantee {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #16A34A;
  text-align: center;
  padding-top: 14px;
  border-top: 1px solid #E2E8F0;
  line-height: 1.4;
}

/* CTA Final guarantee reminder */
.cta-final__guarantee {
  margin-top: 28px;
  padding: 14px 24px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-accent);
  display: inline-block;
}

/* ===========================================
   CALCULATEUR DE RENTABILITÉ
   =========================================== */
#calculateur h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.calc-subtitle {
  color: var(--slate);
  font-size: clamp(15px, 1.5vw, 17px);
  max-width: 560px;
  margin: 0 auto 40px;
}

.calc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

/* Sliders panel */
.calc-sliders {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 28px 24px;
}

.slider-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.slider-value {
  font-weight: 700;
  color: var(--blue-accent);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

/* Custom range slider */
.calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-accent);
  border: 3px solid var(--navy-deep);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.calc-range::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.4);
}

.calc-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-accent);
  border: 3px solid var(--navy-deep);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
  cursor: pointer;
}

/* Results panel */
.calc-results {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-result-card {
  border-radius: var(--radius-card);
  padding: 24px;
}

.calc-result-card--bad {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.calc-result-card--good {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.calc-result-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.calc-result-card--bad .calc-result-label {
  color: var(--red-accent);
}

.calc-result-card--good .calc-result-label {
  color: var(--green-accent);
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.calc-result-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.calc-result-name {
  font-size: 14px;
  color: var(--slate);
  font-weight: 500;
}

.calc-result-number {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.calc-result-number--bad {
  color: var(--red-accent);
}

.calc-result-number--good {
  color: var(--green-accent);
}

/* Context line */
.calc-context {
  text-align: center;
  font-size: 15px;
  color: var(--slate);
  margin-bottom: 12px;
  font-weight: 500;
}

.calc-context span {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}

/* Consequence tag */
.calc-consequence {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 6px;
  margin-top: 12px;
  letter-spacing: 0.01em;
}

.calc-consequence--bad {
  background: rgba(239, 68, 68, 0.1);
  color: var(--red-accent);
}

.calc-consequence--good {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green-accent);
}

/* Impact line */
.calc-impact {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
  line-height: 1.4;
}

.calc-impact span {
  font-size: 18px;
  font-weight: 800;
}

.calc-impact--bad {
  color: var(--red-accent);
}

.calc-impact--good {
  color: var(--green-accent);
}

/* Verdict banner */
.calc-verdict {
  text-align: center;
  padding: 14px 20px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-glow);
  line-height: 1.5;
}

/* Desktop: side by side */
@media (min-width: 768px) {
  .calc-layout {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

/* Compact before/after metrics under calculator */
.calc-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 700px;
  margin: 40px auto 0;
}

.calc-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.calc-metric__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
}

.calc-metric__values {
  display: flex;
  align-items: center;
  gap: 8px;
}

.calc-metric__bad {
  font-size: 15px;
  font-weight: 700;
  color: var(--red-accent);
}

.calc-metric__arrow {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.25);
}

.calc-metric__good {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-accent);
}

.calc-metrics__note {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
}

@media (min-width: 768px) {
  .calc-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .calc-metric {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* CTA Final: WhatsApp alternative */
.cta-final__whatsapp {
  text-align: center;
}

/* Before/After responsive grid */
@media (min-width: 600px) {
  .before-after {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* ===========================================
   DESKTOP ENHANCEMENTS
   =========================================== */
@media (min-width: 768px) {
  .section {
    padding: var(--section-pad-desktop) 0;
  }

  .container {
    padding: 0 40px;
  }

  .btn-cta {
    padding: 18px 40px;
  }

  .pricing__cards {
    flex-direction: row;
    align-items: stretch;
  }

  .pricing-card {
    flex: 1;
  }

  .solution-bloc {
    gap: 28px;
  }

  /* Team photos larger on desktop */
  .team__photo {
    width: 120px;
    height: 120px;
  }

  .team__photos {
    gap: 36px;
  }

  /* Hide floating CTA on desktop — they can see enough CTAs */
  .floating-cta {
    display: none;
  }

  footer {
    padding-bottom: 44px;
  }
}

@media (min-width: 1024px) {
  .hero__logo {
    margin-bottom: 52px;
  }
}
