.elementor-28664 .elementor-element.elementor-element-4044fd3{--display:flex;}/* Start custom CSS for container, class: .elementor-element-4044fd3 */:root {
  --blue-electric:   #265EE3;
  --blue-dark:       #1544C8;
  --lime:            #C2FA50;
  --bg-dark:         #121826;
  --text-black:      #111318;
  --text-grey:       #6C727F;
  --success:         #4C9F54;
  --success-light:   #E2FBE8;
  --bg-grey-blue:    #F0F3F8;
  --blue-soft:       #DEEAFC;
  --border:          #E5E7EA;
  --white:           #FFFFFF;
  --font-main: 'DM Sans', Arial, sans-serif;
  --font-mono: 'Space Mono', monospace;
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px;
  --s6: 24px; --s8: 32px; --s10: 40px; --s12: 48px;
  --s16: 64px; --s20: 80px;
  --r-btn: 8px; --r-card: 12px; --r-full: 9999px;
  --shadow-card:  0 4px 20px rgba(38,94,227,0.10);
  --shadow-hover: 0 8px 32px rgba(38,94,227,0.18);
  --shadow-drop:  0 8px 32px rgba(17,19,24,0.12);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  color: var(--text-black);
  background: var(--white);
  font-size: 16px;
  line-height: 24px;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s6);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex; align-items: center;
  padding: 0 var(--s8);
  justify-content: space-between;
  backdrop-filter: blur(8px);
  transition: box-shadow 200ms;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.06); }

.header-left { display: flex; align-items: center; gap: var(--s8); }

.logo {
  display: flex; align-items: center; gap: var(--s2);
  font-size: 20px; font-weight: 700; color: var(--text-black);
  letter-spacing: -0.5px;
}
.logo-icon {
  width: 28px; height: 28px;
  background: var(--lime); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--text-black);
  letter-spacing: -1px;
}

.main-nav { display: flex; height: 64px; align-items: stretch; }
.nav-item {
  position: relative; display: flex; align-items: center;
  padding: 0 var(--s4);
  font-size: 13.5px; font-weight: 600; color: var(--text-black);
  cursor: pointer; white-space: nowrap;
  transition: background 200ms; gap: var(--s1);
}
.nav-item:hover { background: var(--bg-grey-blue); }
.nav-item.active { border-bottom: 2px solid var(--lime); color: var(--blue-electric); }
.nav-chevron { font-size: 10px; opacity: 0.4; }

.dropdown {
  display: none; position: absolute; top: 64px; left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 0 0 var(--r-card) var(--r-card);
  box-shadow: var(--shadow-drop); min-width: 300px; padding: var(--s2) 0;
  z-index: 200;
}
.nav-item:hover .dropdown { display: block; }
.dd-item { display: flex; align-items: center; padding: 10px 20px; gap: var(--s3); transition: background 150ms; cursor: pointer; }
.dd-item:hover { background: var(--bg-grey-blue); }
.dd-icon { width: 32px; height: 32px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.dd-label { font-size: 13px; font-weight: 600; color: var(--text-black); display: block; }
.dd-url { font-size: 10.5px; font-family: var(--font-mono); color: var(--text-grey); display: block; }
.dd-badge { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: var(--r-full); }
.badge-gratuit { background: #E8F5E9; color: #2E7D32; }
.badge-saas { background: #E3F2FD; color: #1565C0; }
.badge-accompagne { background: #F3E5F5; color: #7B1FA2; }

.header-right { display: flex; align-items: center; gap: 20px; }
.header-tarifs { font-size: 13px; font-weight: 600; color: var(--blue-electric); cursor: pointer; }
.header-tarifs:hover { text-decoration: underline; }
.btn-connexion {
  background: var(--text-black); color: var(--white);
  padding: var(--s2) var(--s4); border-radius: var(--r-btn);
  font-size: 13px; font-weight: 600; cursor: pointer; border: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-family: var(--font-main); font-size: 15px; font-weight: 600;
  border: none; cursor: pointer; border-radius: var(--r-btn);
  transition: all 200ms ease; text-decoration: none; white-space: nowrap;
}
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-md { padding: 12px 24px; font-size: 15px; }
.btn-sm { padding: var(--s2) var(--s4); font-size: 13px; }
.btn-primary { background: var(--blue-electric); color: var(--white); }
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-dark { background: var(--blue-dark); color: var(--white); }
.btn-dark:hover { filter: brightness(1.12); transform: translateY(-2px); }
.btn-outline-lime { background: transparent; color: var(--lime); border: 1px solid var(--lime); }
.btn-outline-lime:hover { background: rgba(194,250,80,0.08); }
.btn-ghost { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.15); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

/* ============================================================
   SECTION — UTILITAIRES
   ============================================================ */
.section-tag {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--blue-electric); background: var(--blue-soft);
  padding: 4px 12px; border-radius: var(--r-full); margin-bottom: var(--s4);
}
.section-tag-dark {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--lime); background: rgba(194,250,80,0.1);
  padding: 4px 12px; border-radius: var(--r-full); margin-bottom: var(--s4);
}
.section-h2 {
  font-size: 36px; font-weight: 700; color: var(--text-black);
  letter-spacing: -0.5px; line-height: 1.2; margin-bottom: var(--s4);
}
.section-h2-white {
  font-size: 36px; font-weight: 700; color: var(--white);
  letter-spacing: -0.5px; line-height: 1.2; margin-bottom: var(--s4);
}
.section-desc {
  font-size: 17px; line-height: 28px; color: var(--text-grey); max-width: 680px;
}
.section-accent-line { width: 40px; height: 3px; background: var(--lime); border-radius: 2px; margin: var(--s4) 0 var(--s6); }

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.hero {
  background: var(--bg-dark);
  padding: var(--s20) 0 var(--s16);
  position: relative; overflow: hidden;
  min-height: 100vh;
  display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(38,94,227,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,94,227,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(194,250,80,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: center;
}
.hero-content { max-width: 600px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--lime); margin-bottom: var(--s6);
}
.hero-eyebrow-dot { width: 6px; height: 6px; background: var(--lime); border-radius: 50%; }
.hero h1 {
  font-size: 48px; font-weight: 700; color: var(--white);
  line-height: 1.1; letter-spacing: -1px; margin-bottom: var(--s6);
}
.hero h1 span { color: var(--lime); }
.hero-subtitle {
  font-size: 17px; line-height: 28px; color: var(--text-grey);
  max-width: 540px; margin-bottom: var(--s8);
}
.hero-cta-group {
  display: flex; align-items: center; gap: var(--s4); margin-bottom: var(--s10); flex-wrap: wrap;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: var(--s3); }
.hero-pill {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: var(--s2) var(--s4);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-full); font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500;
}
.hero-pill-check { color: var(--lime); font-size: 13px; font-weight: 700; }

/* Hero Mockup SaaS */
.hero-mockup {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transition: transform 400ms ease;
}
.hero-mockup:hover { transform: perspective(1200px) rotateY(0deg) rotateX(0deg); }
.mockup-bar {
  background: var(--bg-grey-blue);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.r { background: #FF5F57; }
.mockup-dot.y { background: #FFBD2E; }
.mockup-dot.g { background: #27C93F; }
.mockup-url {
  flex: 1; margin-left: 8px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; padding: 4px 12px;
  font-size: 11px; font-family: var(--font-mono); color: var(--text-grey);
}
.mockup-body { padding: var(--s6); }
.mockup-section { margin-bottom: var(--s6); }
.mockup-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--blue-electric); margin-bottom: var(--s2);
}
.mockup-h3 {
  font-size: 16px; font-weight: 700; color: var(--text-black); margin-bottom: var(--s3);
}
.mockup-result-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--success-light); color: var(--success);
  font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: var(--r-full);
  margin-bottom: var(--s3);
}
.mockup-cost-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.mockup-cost-item {
  background: var(--bg-grey-blue);
  border-radius: 8px; padding: 10px 12px;
}
.mockup-cost-label { font-size: 10px; color: var(--text-grey); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.mockup-cost-value { font-size: 18px; font-weight: 700; color: var(--text-black); margin-top: 2px; }
.mockup-cost-value.blue { color: var(--blue-electric); }
.mockup-total-bar {
  background: var(--bg-dark);
  border-radius: 8px; padding: 12px 16px;
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px;
}
.mockup-total-label { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 600; }
.mockup-total-value { font-size: 22px; font-weight: 700; color: var(--lime); }

/* ============================================================
   SECTION 2 — CE QUE FAIT LANCIA (4 fonctions)
   ============================================================ */
.section-functions {
  background: var(--white);
  padding: var(--s20) 0;
}
.functions-header { text-align: center; margin-bottom: var(--s12); }
.functions-header .section-desc { margin: 0 auto; }
.functions-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
}
.function-card {
  background: var(--bg-grey-blue);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: var(--s6);
  transition: all 200ms ease;
  position: relative;
}
.function-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--blue-electric);
}
.function-num {
  position: absolute; top: 16px; right: 16px;
  font-size: 48px; font-weight: 700; color: rgba(38,94,227,0.06);
  line-height: 1; font-family: var(--font-mono);
}
.function-icon {
  width: 48px; height: 48px;
  background: var(--blue-soft);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: var(--s4);
}
.function-card h3 {
  font-size: 17px; font-weight: 700; color: var(--text-black);
  margin-bottom: var(--s2); line-height: 1.3;
}
.function-card p {
  font-size: 14px; line-height: 22px; color: var(--text-grey);
}

/* ============================================================
   SECTION 3 — TABLEAU FRAIS OFFICIELS
   ============================================================ */
.section-frais {
  background: var(--bg-grey-blue);
  padding: var(--s20) 0;
}
.frais-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: var(--s12); align-items: start;
}
.frais-text h2 { margin-bottom: var(--s4); }
.frais-text p {
  font-size: 16px; line-height: 28px; color: var(--text-grey);
  margin-bottom: var(--s4);
}
.frais-text p strong { color: var(--text-black); }
.frais-callout {
  background: var(--blue-soft);
  border-left: 4px solid var(--blue-electric);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  padding: var(--s4) var(--s6);
  font-size: 14px; line-height: 22px; color: var(--text-black);
  margin-top: var(--s6);
}

.frais-table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--white);
}
.frais-table { width: 100%; border-collapse: collapse; }
.frais-table thead tr { background: var(--blue-dark); }
.frais-table thead th {
  padding: var(--s4) var(--s6);
  font-size: 13px; font-weight: 700; color: var(--white);
  text-align: left;
}
.frais-table tbody tr:nth-child(odd) { background: var(--blue-soft); }
.frais-table tbody tr:nth-child(even) { background: var(--white); }
.frais-table td {
  padding: var(--s3) var(--s6);
  font-size: 14px; color: var(--text-black);
  border-bottom: 1px solid var(--border);
  line-height: 22px;
}
.frais-table td:first-child { font-weight: 600; }
.frais-table td:nth-child(2) { font-weight: 700; color: var(--blue-electric); white-space: nowrap; }
.frais-table .row-actav { background: var(--bg-dark) !important; }
.frais-table .row-actav td { color: var(--white); border-bottom-color: rgba(255,255,255,0.1); }
.frais-table .row-actav td:nth-child(2) { color: var(--lime); font-size: 16px; }
.frais-table .row-total { background: var(--bg-grey-blue) !important; }
.frais-table .row-total td { font-weight: 700; font-size: 15px; border-bottom: none; }
.frais-table .row-total td:nth-child(2) { color: var(--blue-electric); font-size: 18px; }
.frais-table .td-note {
  font-size: 12px; color: var(--text-grey); font-weight: 400; margin-top: 2px;
}

/* ============================================================
   SECTION 4 — 3 ÉTAPES
   ============================================================ */
.section-steps {
  background: var(--white);
  padding: var(--s20) 0;
}
.steps-header { text-align: center; margin-bottom: var(--s12); }
.steps-header .section-desc { margin: 0 auto; }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px; left: 16.6%; right: 16.6%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-electric) 0%, var(--lime) 100%);
  z-index: 0;
}
.step-card {
  position: relative; z-index: 1;
  text-align: center;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--blue-electric);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; color: var(--white);
  margin: 0 auto var(--s6);
  box-shadow: 0 4px 16px rgba(38,94,227,0.25);
}
.step-num.final {
  background: var(--lime);
  color: var(--bg-dark);
}
.step-card h3 {
  font-size: 17px; font-weight: 700; color: var(--text-black);
  margin-bottom: var(--s2);
}
.step-card p {
  font-size: 14px; line-height: 22px; color: var(--text-grey);
  max-width: 300px; margin: 0 auto;
}

/* ============================================================
   SECTION 5 — COMPARATIF ACTAV vs CONCURRENTS
   ============================================================ */
.section-comparatif {
  background: var(--bg-grey-blue);
  padding: var(--s20) 0;
}
.comparatif-header { text-align: center; margin-bottom: var(--s12); }
.comparatif-header .section-desc { margin: 0 auto; }
.comparatif-table-wrap {
  border: 1px solid var(--border); border-radius: var(--r-card);
  overflow: hidden; box-shadow: var(--shadow-card);
  overflow-x: auto; background: var(--white);
}
.comp-table { width: 100%; border-collapse: collapse; min-width: 700px; }
.comp-table thead tr { background: var(--bg-dark); }
.comp-table thead th {
  padding: var(--s4) var(--s6); text-align: left;
  font-size: 13px; font-weight: 700; color: var(--white); white-space: nowrap;
}
.comp-table thead th:first-child { color: var(--text-grey); }
.comp-table thead th.highlight { color: var(--lime); }
.comp-table tbody tr:nth-child(even) { background: var(--blue-soft); }
.comp-table tbody tr:nth-child(odd) { background: var(--white); }
.comp-table td {
  padding: var(--s3) var(--s6); font-size: 14px; color: var(--text-black);
  border-bottom: 1px solid var(--border); vertical-align: top; line-height: 22px;
}
.comp-table td:first-child { font-weight: 600; }
.comp-table .col-actav { background: rgba(38,94,227,0.04); }
.td-check { color: var(--success); font-weight: 700; }
.td-cross { color: #D32F2F; font-weight: 600; }
.td-partial { color: #E65100; }

/* ============================================================
   SECTION 6 — TÉMOIGNAGES
   ============================================================ */
.section-temoignages {
  background: var(--white);
  padding: var(--s20) 0;
}
.temoignages-header { text-align: center; margin-bottom: var(--s12); }
.temoignages-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--s6);
}
.temoignage-card {
  background: var(--bg-grey-blue);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: var(--s6);
  position: relative;
  border-left: 4px solid var(--lime);
}
.temoignage-quote {
  font-size: 15px; line-height: 26px; color: var(--text-black);
  font-style: italic; margin-bottom: var(--s4);
}
.temoignage-author {
  font-size: 13px; font-weight: 600; color: var(--text-grey);
}
.temoignage-author strong { color: var(--text-black); }
.temoignage-stars {
  color: #F59E0B; font-size: 14px; margin-bottom: var(--s3);
  letter-spacing: 2px;
}

/* ============================================================
   SECTION 7 — FAQ ACCORDÉON
   ============================================================ */
.section-faq {
  background: var(--bg-grey-blue);
  padding: var(--s20) 0;
}
.faq-header { text-align: center; margin-bottom: var(--s12); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-card); margin-bottom: var(--s3); overflow: hidden;
  transition: box-shadow 200ms;
}
.faq-item:hover { box-shadow: var(--shadow-card); }
.faq-item.open { box-shadow: var(--shadow-card); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--s6); cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--text-black);
  line-height: 24px; gap: var(--s4);
}
.faq-question:hover { background: var(--bg-grey-blue); }
.faq-chevron {
  flex-shrink: 0; width: 24px; height: 24px;
  background: var(--blue-soft); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--blue-electric);
  transition: transform 300ms;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 400ms ease, padding 300ms ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 var(--s6) var(--s6);
  font-size: 14.5px; line-height: 24px; color: var(--text-grey);
}

/* ============================================================
   SECTION 8 — CTA FINAL
   ============================================================ */
.section-cta-final {
  background: var(--bg-dark);
  padding: var(--s20) 0;
  position: relative; overflow: hidden;
}
.section-cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(38,94,227,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,94,227,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.section-cta-final::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(194,250,80,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 700px; margin: 0 auto;
}
.cta-final-inner h2 {
  font-size: 40px; font-weight: 700; color: var(--white);
  letter-spacing: -0.5px; line-height: 1.15; margin-bottom: var(--s4);
}
.cta-final-inner h2 span { color: var(--lime); }
.cta-final-inner p {
  font-size: 17px; line-height: 28px; color: var(--text-grey);
  margin-bottom: var(--s8);
}
.cta-final-buttons {
  display: flex; gap: var(--s4); justify-content: center; flex-wrap: wrap;
  margin-bottom: var(--s8);
}
.cta-final-divider {
  font-size: 13px; color: rgba(255,255,255,0.3); font-weight: 500;
}
.cta-final-trust {
  display: flex; gap: var(--s6); justify-content: center; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 500;
}

/* ============================================================
   BADGES CONFIANCE
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--s4) 0;
}
.trust-bar-inner {
  display: flex; justify-content: center; gap: var(--s10); flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: var(--s2);
  font-size: 13px; font-weight: 600; color: var(--text-grey);
}
.trust-icon { font-size: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  padding: var(--s16) 0 var(--s8);
  color: rgba(255,255,255,0.5);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s10);
  margin-bottom: var(--s10);
}
.footer-brand .logo { color: var(--white); margin-bottom: var(--s4); }
.footer-tagline { font-size: 14px; line-height: 22px; color: rgba(255,255,255,0.4); max-width: 280px; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.6); margin-bottom: var(--s4); }
.footer-links { display: flex; flex-direction: column; gap: var(--s2); }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 200ms; }
.footer-links a:hover { color: var(--white); }
.ft-badge { font-size: 10px; font-weight: 700; padding: 1px 6px; border-radius: var(--r-full); margin-left: 4px; }
.ft-badge.b { background: rgba(38,94,227,0.3); color: var(--blue-electric); }
.ft-badge.g { background: rgba(76,159,84,0.2); color: var(--success); }
.footer-bottom {
  padding-top: var(--s6); border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 200ms; }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ============================================================
   STICKY CTA MOBILE
   ============================================================ */
.sticky-cta-mobile {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  background: var(--blue-electric);
  padding: 12px var(--s6);
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 300ms ease;
}
.sticky-cta-mobile.visible { transform: translateY(0); }
.sticky-cta-mobile a {
  color: var(--white); font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: var(--s2);
}
.sticky-close {
  position: absolute; top: 4px; right: 12px;
  background: none; border: none; color: rgba(255,255,255,0.6);
  font-size: 18px; cursor: pointer; padding: 4px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s8); }
  .hero-mockup { max-width: 560px; transform: none; }
  .hero-mockup:hover { transform: none; }
  .hero { min-height: auto; padding: var(--s16) 0; }
  .functions-grid { grid-template-columns: repeat(2, 1fr); }
  .frais-layout { grid-template-columns: 1fr; gap: var(--s8); }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 34px; }
  .section-h2, .section-h2-white { font-size: 28px; }
  .functions-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: var(--s8); }
  .steps-grid::before { display: none; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s6); }
  .cta-final-buttons { flex-direction: column; align-items: center; }
  .cta-final-inner h2 { font-size: 30px; }
  .sticky-cta-mobile { display: block; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .trust-bar-inner { gap: var(--s4); }
  .mockup-cost-grid { grid-template-columns: 1fr; }
}/* End custom CSS */