/* =====================================================================
   ETIBI LANDING — Styles
   ===================================================================== */

:root {
  --etibi-primary: #2BB5B5;
  --etibi-primary-dark: #1F8F8F;
  --etibi-primary-light: #E6F7F7;
  --etibi-text: #1A2A2A;
  --etibi-text-muted: #6B7E7E;
  --etibi-bg: #F5F8F8;
  --etibi-border: #E1E8E8;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--etibi-text);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

a { color: var(--etibi-primary); text-decoration: none; }
a:hover { color: var(--etibi-primary-dark); }

.btn-primary {
  background: var(--etibi-primary);
  border-color: var(--etibi-primary);
  font-weight: 600;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--etibi-primary-dark);
  border-color: var(--etibi-primary-dark);
}
.btn-outline-primary {
  color: var(--etibi-primary);
  border-color: var(--etibi-primary);
  font-weight: 600;
}
.btn-outline-primary:hover {
  background: var(--etibi-primary);
  border-color: var(--etibi-primary);
}
.text-primary { color: var(--etibi-primary) !important; }

.form-control:focus, .form-select:focus {
  border-color: var(--etibi-primary);
  box-shadow: 0 0 0 0.2rem rgba(43, 181, 181, 0.15);
}

/* =====================================================================
   NAV
   ===================================================================== */

.navbar {
  background: rgba(255,255,255,.86) !important;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(15,110,86,.06), 0 8px 24px rgba(0,0,0,.04);
  padding: 16px 0;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--etibi-text) !important;
}
.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--etibi-primary);
  color: white;
  font-weight: 800;
  font-size: 18px;
}
.brand-name { line-height: 1; }
.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--etibi-text) !important;
  padding: 8px 16px !important;
}
.navbar-nav .nav-link:hover {
  color: var(--etibi-primary) !important;
}

/* =====================================================================
   HERO
   ===================================================================== */

.hero {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, var(--etibi-primary-light) 0%, #ffffff 60%);
  overflow: hidden;
}
.badge-pill {
  display: inline-block;
  background: white;
  color: var(--etibi-primary-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid var(--etibi-primary-light);
}
.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 20px;
}
.hero-text {
  font-size: 18px;
  color: var(--etibi-text-muted);
  margin-bottom: 32px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--etibi-text-muted);
  flex-wrap: wrap;
}

/* Phone mockup */
.phone-mockup {
  background: #1A2A2A;
  border-radius: 36px;
  padding: 14px;
  max-width: 320px;
  margin: 0 auto;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
  transform: rotate(-2deg);
}
.phone-screen {
  background: white;
  border-radius: 24px;
  padding: 20px 16px;
  min-height: 480px;
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
}
.logo-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--etibi-primary);
  color: white;
  font-weight: 800;
  font-size: 14px;
}
.phone-card {
  position: relative;
  background: var(--etibi-primary);
  color: white;
  border-radius: 16px;
  padding: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}
.phone-card-bg {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.phone-card-content { position: relative; }
.phone-card-label {
  font-size: 11px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.phone-card-points {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin: 8px 0;
}
.phone-card-points span {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.8;
}
.phone-card-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.phone-card-bar div {
  height: 100%;
  background: white;
  border-radius: 999px;
}
.phone-card-next {
  font-size: 12px;
  opacity: 0.9;
}
.phone-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--etibi-border);
  font-size: 13px;
}
.phone-list-item:last-child { border-bottom: none; }
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-green { background: #22C55E; }

/* =====================================================================
   SECTIONS
   ===================================================================== */

.section {
  padding: 80px 0;
}
.section-alt {
  background: var(--etibi-bg);
}
.section-header {
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 12px;
}
.section-header p {
  font-size: 17px;
  color: var(--etibi-text-muted);
  margin: 0;
}

/* =====================================================================
   FEATURES (Comment ça marche)
   ===================================================================== */

.feature-card {
  background: white;
  border-radius: 14px;
  padding: 32px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  height: 100%;
  border: 1px solid rgba(15,110,86,.06);
}
.feature-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--etibi-primary-light);
  color: var(--etibi-primary-dark);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 8px;
}
.feature-card p {
  color: var(--etibi-text-muted);
  margin: 0;
  font-size: 14px;
}

/* =====================================================================
   USAGE
   ===================================================================== */

.usage-card {
  background: white;
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  text-align: center;
  border: 1px solid var(--etibi-border);
  transition: all 0.2s;
}
.usage-card:hover {
  border-color: var(--etibi-primary);
  box-shadow: 0 4px 16px rgba(43, 181, 181, 0.1);
  transform: translateY(-2px);
}
.usage-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.usage-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}
.usage-card p {
  color: var(--etibi-text-muted);
  margin: 0;
}

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */

.testimonial {
  background: white;
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  border-left: 3px solid var(--etibi-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.testimonial p {
  font-style: italic;
  font-size: 15px;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--etibi-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* =====================================================================
   PRICING
   ===================================================================== */

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  border: 2px solid var(--etibi-border);
  position: relative;
  transition: transform 0.2s;
}
.pricing-card.featured {
  border-color: var(--etibi-primary);
  box-shadow: 0 12px 32px rgba(43, 181, 181, 0.15);
  transform: scale(1.02);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--etibi-primary);
  color: white;
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.pricing-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--etibi-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-amount {
  font-size: 36px;
  font-weight: 800;
  margin: 8px 0;
}
.pricing-amount span {
  font-size: 16px;
  font-weight: 500;
  color: var(--etibi-text-muted);
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.pricing-features li {
  padding: 8px 0;
  padding-left: 26px;
  position: relative;
  font-size: 14px;
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--etibi-primary);
  font-weight: 700;
}

/* =====================================================================
   CONTACT
   ===================================================================== */

.contact-info {
  list-style: none;
  padding: 0;
}
.contact-info li {
  padding: 8px 0;
  font-size: 15px;
}

.card-block {
  background: white;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.card-block-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
}

/* =====================================================================
   FOOTER
   ===================================================================== */

.footer {
  background: var(--etibi-text);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
}
.footer h6 {
  color: white;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li {
  padding: 4px 0;
  font-size: 14px;
}
.footer ul li a {
  color: rgba(255, 255, 255, 0.7);
}
.footer ul li a:hover {
  color: white;
}
.footer .navbar-brand {
  color: white !important;
}
.footer hr {
  border: 0; height: 1px; background: rgba(255,255,255,.08);
  margin: 40px 0 24px;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */

@media (max-width: 768px) {
  .hero { padding: 60px 0 40px; }
  .hero-title { font-size: 34px; }
  .hero-text { font-size: 16px; }
  .section { padding: 50px 0; }
  .section-header h2 { font-size: 28px; }
  .pricing-card.featured { transform: none; }
}

/* =====================================================================
   AJOUTS SITE v6 — Rev slider, tarifs dynamiques, société, commercial
   ===================================================================== */

h1, h2, h3, h4,
.rev-title, .section-header h2, .pricing-label, .navbar-brand,
.team-card .name, .mv-card h3 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* ---------- REV SLIDER (premium) ---------- */
.rev-slider {
  position: relative;
  overflow: hidden;
  min-height: clamp(540px, 86vh, 820px);
  display: flex;
  background: #06201f;
  isolation: isolate;
}
.rev-track { position: absolute; inset: 0; }
.rev-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .9s ease;
  overflow: hidden;
}
.rev-slide.is-active { opacity: 1; visibility: visible; z-index: 2; }

/* Fond dégradé mesh par thème */
.rev-theme-teal {
  background:
    radial-gradient(900px 600px at 12% 18%, #2BB5B5 0%, transparent 60%),
    radial-gradient(800px 700px at 88% 80%, #16726e 0%, transparent 55%),
    linear-gradient(135deg, #0c3b39 0%, #0a2a2a 55%, #06201f 100%);
}
.rev-theme-dark {
  background:
    radial-gradient(820px 560px at 18% 22%, #1f8f8f 0%, transparent 58%),
    radial-gradient(760px 680px at 86% 84%, #123a3a 0%, transparent 55%),
    linear-gradient(135deg, #0a1a1a 0%, #06100f 100%);
}
.rev-theme-light {
  background:
    radial-gradient(820px 560px at 16% 20%, #bdeee6 0%, transparent 60%),
    radial-gradient(760px 620px at 88% 86%, #e6f7f7 0%, transparent 55%),
    linear-gradient(135deg, #f3fbfb 0%, #e3f4f4 100%);
}

/* Image de fond optionnelle (admin) — Ken Burns */
.rev-slide.has-img::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: var(--rev-img); background-size: cover; background-position: center;
  transform: scale(1.12); opacity: .9;
}
.rev-slide.has-img.is-active::before { animation: revKen 12s ease-out forwards; }
@keyframes revKen { from { transform: scale(1.12);} to { transform: scale(1);} }
.rev-slide.has-img .rev-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(8,30,29,.86) 0%, rgba(8,30,29,.45) 55%, rgba(8,30,29,.15) 100%);
}
.rev-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* Blobs flottants */
.rev-blob {
  position: absolute; z-index: 0; border-radius: 50%;
  filter: blur(46px); opacity: .55; pointer-events: none;
}
.rev-blob-1 { width: 420px; height: 420px; top: -120px; left: -80px; background: #2BB5B5; animation: revFloat 14s ease-in-out infinite; }
.rev-blob-2 { width: 360px; height: 360px; bottom: -120px; right: 8%; background: #0fb39a; animation: revFloat 18s ease-in-out infinite reverse; }
.rev-blob-3 { width: 280px; height: 280px; top: 30%; right: 32%; background: #1f8f8f; opacity: .4; animation: revFloat 22s ease-in-out infinite; }
.rev-theme-light .rev-blob { opacity: .35; }
@keyframes revFloat { 0%,100% { transform: translate(0,0);} 50% { transform: translate(26px,-30px);} }

/* Grille de points subtile */
.rev-grid-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 80%);
          mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 80%);
}
.rev-theme-light .rev-grid-overlay { background-image: radial-gradient(rgba(15,110,86,.14) 1px, transparent 1px); }

/* Contenu */
.rev-content { position: relative; z-index: 3; max-width: 620px; padding: 40px 0; color: #fff; }
.rev-theme-light .rev-content { color: var(--etibi-text); }
.rev-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; letter-spacing: .3px; font-size: 13px; margin-bottom: 22px;
  padding: 8px 16px; border-radius: 999px; color: #eafdfb;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.rev-theme-light .rev-eyebrow { background: #fff; color: var(--etibi-primary-dark); border-color: var(--etibi-border); }
.rev-dotpulse { width: 8px; height: 8px; border-radius: 50%; background: #46e3c2; box-shadow: 0 0 0 0 rgba(70,227,194,.7); animation: revPulse 2s infinite; }
@keyframes revPulse { 0% { box-shadow: 0 0 0 0 rgba(70,227,194,.6);} 70% { box-shadow: 0 0 0 10px rgba(70,227,194,0);} 100% { box-shadow: 0 0 0 0 rgba(70,227,194,0);} }

.rev-title {
  font-family: 'Plus Jakarta Sans','Inter',sans-serif;
  font-size: clamp(36px, 5.2vw, 66px); font-weight: 800; line-height: 1.05;
  letter-spacing: -1px; margin: 0 0 20px;
  text-shadow: 0 2px 30px rgba(0,0,0,.18);
}
.rev-theme-light .rev-title { text-shadow: none; }
.rev-sub { font-size: clamp(16px, 1.7vw, 20px); line-height: 1.6; margin: 0 0 32px; max-width: 540px; opacity: .94; }

.rev-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-rev {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--etibi-primary-dark);
  font-weight: 700; font-size: 16px; border: 0; border-radius: 999px;
  padding: 15px 30px; text-decoration: none;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn-rev span { transition: transform .18s ease; }
.btn-rev:hover { transform: translateY(-2px); color: var(--etibi-primary-dark); box-shadow: 0 20px 44px rgba(0,0,0,.28); }
.btn-rev:hover span { transform: translateX(4px); }
.rev-theme-light .btn-rev { background: var(--etibi-primary); color: #fff; box-shadow: 0 14px 30px rgba(43,181,181,.4); }
.rev-theme-light .btn-rev:hover { color: #fff; }
.btn-rev-ghost {
  display: inline-flex; align-items: center;
  color: #fff; font-weight: 600; font-size: 15px; text-decoration: none;
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid rgba(255,255,255,.35);
  transition: background .18s ease, border-color .18s ease;
}
.btn-rev-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.6); color: #fff; }
.rev-theme-light .btn-rev-ghost { color: var(--etibi-primary-dark); border-color: var(--etibi-border); }
.rev-theme-light .btn-rev-ghost:hover { background: #fff; color: var(--etibi-primary-dark); }

.rev-trust { display: flex; align-items: center; gap: 10px; margin-top: 30px; font-size: 13.5px; opacity: .9; max-width: 460px; }
.rev-stars { color: #ffc857; letter-spacing: 2px; font-size: 15px; }

/* Décor : téléphone + chips flottants */
.rev-scene { position: absolute; z-index: 2; right: 6%; top: 50%; transform: translateY(-50%); width: 300px; height: 440px; pointer-events: none; }
.rev-phone {
  position: absolute; right: 0; top: 0; width: 240px; height: 420px; border-radius: 38px;
  background: linear-gradient(160deg, rgba(255,255,255,.18), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.28); padding: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,.4); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  animation: revFloat 9s ease-in-out infinite;
}
.rev-phone-notch { width: 90px; height: 7px; border-radius: 999px; background: rgba(255,255,255,.4); margin: 4px auto 16px; }
.rev-phone-card {
  background: linear-gradient(150deg, #2BB5B5, #117c79); border-radius: 22px; padding: 20px; color: #fff;
  box-shadow: 0 16px 30px rgba(0,0,0,.25); height: calc(100% - 28px);
}
.rev-pc-top { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.rev-pc-logo { width: 34px; height: 34px; border-radius: 10px; background: #fff; color: var(--etibi-primary-dark); font-weight: 800; display: flex; align-items: center; justify-content: center; }
.rev-pc-name { font-size: 13px; font-weight: 600; opacity: .95; }
.rev-pc-points { font-size: 40px; font-weight: 800; line-height: 1; }
.rev-pc-points small { font-size: 15px; font-weight: 600; opacity: .8; }
.rev-pc-bar { height: 8px; border-radius: 999px; background: rgba(255,255,255,.25); margin: 16px 0 24px; overflow: hidden; }
.rev-pc-bar span { display: block; height: 100%; background: #fff; border-radius: 999px; }
.rev-pc-qr { display: grid; grid-template-columns: repeat(6, 1fr); gap: 5px; background: #fff; padding: 12px; border-radius: 14px; }
.rev-pc-qr i { aspect-ratio: 1; border-radius: 3px; background: #d6efee; }
.rev-pc-qr i.on { background: var(--etibi-primary-dark); }
.rev-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: var(--etibi-text); font-weight: 600; font-size: 13px;
  padding: 11px 16px; border-radius: 14px; box-shadow: 0 18px 36px rgba(0,0,0,.22);
}
.rev-chip-ico { width: 22px; height: 22px; border-radius: 50%; background: #d8f3ec; color: #0f6e56; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.rev-chip-ico-amber { background: #fff0d4; color: #b9740c; }
.rev-chip-1 { left: -18px; top: 64px; animation: revFloat 7s ease-in-out infinite; }
.rev-chip-2 { left: 8px; bottom: 70px; animation: revFloat 8.5s ease-in-out infinite reverse; }

/* Flèches & dots */
.rev-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.12); color: #fff; font-size: 26px; line-height: 1;
  cursor: pointer; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); transition: background .15s; }
.rev-arrow:hover { background: rgba(255,255,255,.28); }
.rev-prev { left: 24px; } .rev-next { right: 24px; }
.rev-dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 6; display: flex; gap: 10px; }
.rev-dot { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,.45); cursor: pointer; padding: 0; transition: width .25s, background .25s; }
.rev-dot.is-active { background: #fff; width: 30px; border-radius: 999px; }

@media (max-width: 991px) {
  .rev-scene { display: none; }
  .rev-content { max-width: 100%; text-align: left; }
  .rev-arrow { display: none; }
}
/* ---------- BILLING TOGGLE ---------- */
.billing-toggle {
  display: inline-flex; gap: 4px; padding: 5px; border-radius: 999px;
  background: var(--etibi-bg); border: 1px solid var(--etibi-border);
}
.bt-opt {
  border: 0; background: transparent; border-radius: 999px;
  padding: 9px 22px; font-weight: 600; font-size: 14px; cursor: pointer;
  color: var(--etibi-text-muted); transition: background .15s, color .15s;
}
.bt-opt.is-active { background: var(--etibi-primary); color: #fff; box-shadow: 0 4px 12px rgba(43,181,181,.3); }
.bt-badge { font-size: 11px; background: rgba(255,255,255,.25); padding: 2px 7px; border-radius: 999px; margin-left: 4px; }
.bt-opt:not(.is-active) .bt-badge { background: var(--etibi-primary-light); color: var(--etibi-primary-dark); }

/* ---------- PRICING (compléments) ---------- */
.pricing-grid { align-items: stretch; }
.pricing-amount { font-size: 34px; font-weight: 800; margin: 10px 0 2px; line-height: 1.1; }
.pricing-amount .amt { font-size: 38px; }
.pricing-amount .cur { display: block; font-size: 14px; font-weight: 500; color: var(--etibi-text-muted); margin-top: 2px; }
.pricing-yearly-note { font-size: 12.5px; color: var(--etibi-primary-dark); font-weight: 600; min-height: 18px; margin-bottom: 6px; }
.pricing-target { font-size: 13px; color: var(--etibi-text-muted); margin: 0 0 4px; font-style: italic; }
.pricing-foot { max-width: 720px; margin-left: auto; margin-right: auto; }

/* ---------- PAGE SOCIÉTÉ ---------- */
.company-hero {
  position: relative; padding: 96px 0; color: #fff;
  background: linear-gradient(120deg, var(--etibi-primary-dark), var(--etibi-primary));
  background-size: cover; background-position: center; overflow: hidden;
}
.company-hero[style*="--co-img"]::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--co-img); background-size: cover; background-position: center;
}
.company-hero .rev-overlay { background: linear-gradient(120deg, rgba(31,143,143,.85), rgba(43,181,181,.5)); }
.company-hero-inner { position: relative; z-index: 2; max-width: 820px; }
.company-hero h1 { font-size: clamp(32px, 4.5vw, 52px); font-weight: 800; margin: 0 0 16px; }
.company-hero .lead { font-size: 18px; opacity: .95; }

.mv-card {
  background: #fff; border-radius: 16px; padding: 32px; height: 100%;
  box-shadow: 0 4px 16px rgba(0,0,0,.05); border: 1px solid rgba(15,110,86,.06);
}
.mv-icon {
  width: 52px; height: 52px; border-radius: 14px; display: inline-flex;
  align-items: center; justify-content: center; font-size: 26px; margin-bottom: 16px;
  background: var(--etibi-primary-light);
}
.mv-card h3 { font-size: 20px; font-weight: 700; margin: 0 0 10px; }
.mv-card p { color: var(--etibi-text-muted); margin: 0; }

/* ---------- ÉQUIPE ---------- */
.team-card {
  background: #fff; border-radius: 16px; padding: 28px 24px; height: 100%;
  text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,.05);
  border: 1px solid var(--etibi-border); transition: transform .18s, box-shadow .18s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,.1); }
.team-photo {
  width: 104px; height: 104px; border-radius: 50%; margin: 0 auto 18px;
  background-size: cover; background-position: center;
  border: 4px solid var(--etibi-primary-light);
}
.team-initials {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--etibi-primary), var(--etibi-primary-dark));
  color: #fff; font-size: 36px; font-weight: 800;
}
.team-card h4 { font-size: 19px; font-weight: 700; margin: 0 0 4px; font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; }
.team-role { color: var(--etibi-primary-dark); font-weight: 600; font-size: 14px; }
.team-org { color: var(--etibi-text-muted); font-size: 13px; margin-top: 2px; }
.team-bio { color: var(--etibi-text-muted); font-size: 13.5px; margin-top: 12px; }

/* ---------- ESPACE COMMERCIAL ---------- */
.commercial-login {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(120deg, var(--etibi-primary-dark), var(--etibi-primary));
  padding: 40px 0;
}
.commercial-pitch h1 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; }
.commercial-rates { list-style: none; padding: 0; margin: 24px 0 0; }
.commercial-rates li {
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.18);
  display: flex; justify-content: space-between; font-size: 15px;
}
.commercial-rates li strong { font-size: 17px; }
.commercial-card { max-width: 420px; margin-left: auto; }

.commercial-app { background: var(--etibi-bg); }
.commercial-dash { max-width: 980px; }
.dash-head {
  background: #fff; border-radius: 18px; padding: 26px 30px; margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,.05); display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
}
.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 999px; font-weight: 700; font-size: 15px;
  background: var(--etibi-primary-light); color: var(--etibi-primary-dark);
}
.status-client_parrain { background: #e0f2fe; color: #0369a1; }
.status-ambassadeur    { background: #fef9c3; color: #a16207; }
.status-affilie        { background: #ede9fe; color: #6d28d9; }
.status-agent          { background: #dcfce7; color: #15803d; }
.status-partenaire     { background: #fae8ff; color: #a21caf; }
.level-pill {
  display: inline-block; margin-left: 10px; padding: 4px 12px; border-radius: 999px;
  background: var(--etibi-text); color: #fff; font-size: 12px; font-weight: 600;
}
.kpi {
  background: #fff; border-radius: 14px; padding: 22px 18px; text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.04); height: 100%;
}
.kpi-val { font-size: 28px; font-weight: 800; line-height: 1; }
.kpi-lbl { font-size: 13px; color: var(--etibi-text-muted); margin-top: 6px; }
.ref-link {
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
  background: var(--etibi-bg); border: 1px dashed var(--etibi-primary);
  border-radius: 12px; padding: 14px 16px;
}
.ref-link code { font-size: 14px; color: var(--etibi-primary-dark); word-break: break-all; }

@media (max-width: 768px) {
  .rev-title { font-size: 32px; }
  .rev-arrow { display: none; }
  .commercial-card { margin: 24px auto 0; }
  .dash-head { flex-direction: column; align-items: flex-start; }
}

/* ---------- FINITIONS v6 (élévation & douceur) ---------- */
.section { padding: 84px 0; }
.feature-card, .usage-card, .mv-card {
  box-shadow: 0 10px 30px rgba(13,60,57,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover, .usage-card:hover, .mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(13,60,57,.12);
}
.feature-num {
  background: linear-gradient(135deg, var(--etibi-primary), var(--etibi-primary-dark));
  color: #fff;
}
.usage-card {
  border: 1px solid rgba(15,110,86,.06);
  border-radius: 16px;
}
.section-header h2 { letter-spacing: -.5px; }

/* Carte tarifaire mise en avant : accent doux, pas de trait dur */
.pricing-card { box-shadow: 0 10px 30px rgba(13,60,57,.05); border-radius: 18px; }
.pricing-card.featured {
  border-color: transparent;
  background: linear-gradient(#fff,#fff) padding-box,
              linear-gradient(135deg, var(--etibi-primary), var(--etibi-primary-dark)) border-box;
  border: 2px solid transparent;
}
.btn-primary, .btn-outline-primary { border-radius: 999px; padding-top: 10px; padding-bottom: 10px; }

/* Boutons nav plus doux */
.navbar .btn-sm { border-radius: 999px; }

/* ---------- Logo uploadé (remplace la pastille « E ») ---------- */
.logo-img { height: 38px; width: auto; max-width: 160px; border-radius: 8px; object-fit: contain; display: inline-block; vertical-align: middle; }
.footer .logo-img { background: rgba(255,255,255,.06); padding: 4px 6px; }
.navbar .logo-img { height: 40px; }
