/* ===== Génération & Vente de Prospects — Styles dédiés ===== */

/* Reset de base cohérent */
:root {
  --primary:       #FF8C00;
  --primary-dark:  #E07B00;
  --text-dark:     #1A1A1A;
  --text-light:    #555555;
  --bg-light:      #FFFFFF;
  --bg-white:      #FFFFFF;

  --font-sans:     'Inter', sans-serif;
  --font-serif:    'Playfair Display', serif;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;

  --radius:    12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);

  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
  --speed: 0.3s;
}

/* ===== HERO SERVICE ===== */
.hero-service {
  background: linear-gradient(140deg, #ffb254 0%, #FF8C00 45%, #ffb254 100%);
  color: #fff;
  padding: 4.5rem 0 3.2rem;
}
.hero-service__inner { text-align: center; }
.hero-badges { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-bottom: .75rem; }
.badge {
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  padding: .25rem .6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .85rem;
}
.hero-service h1 { font-size: 2.2rem; margin: .3rem 0 .4rem; }
.hero-sub { opacity: .95; max-width: 780px; margin: 0 auto .9rem; }

/* Cartes KPI */
.hero-kpis {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.hero-kpis div {
  background: rgba(255,255,255,0.9);
  border-radius: 12px;
  padding: 1.1rem 1.6rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  min-width: 200px;
  transition: transform .2s ease;
}
.hero-kpis div:hover { transform: translateY(-4px); }
.hero-kpis .kpi-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #FF8C00;
  line-height: 1.1;
  margin-bottom: .35rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: .2px;
}
.hero-kpis .kpi-label {
  display: block;
  font-size: 1rem;
  color: #333;
  margin-top: .15rem;
}
.kpi-number .counter,
.kpi-number .suffix {
  display: inline-block;
  vertical-align: baseline;
}
.kpi-number .suffix { font-size: 1.2rem; }
@media (max-width: 640px){
  .hero-kpis .kpi-number{ font-size:2.2rem; }
  .hero-kpis div{ min-width: 170px; }
}

/* ===== Sections utilitaires ===== */
.section-pad { padding: 3rem 0; }

/* Canaux : icônes plus grandes */
.brand-icons.lg .ico { width: 30px; height: 30px; }
.channels-copy { text-align: center; max-width: 820px; margin: .7rem auto 0; color: var(--text-light); }

/* Process */
.steps { max-width: 900px; margin: 0 auto; list-style: none; padding: 0; color: var(--text-dark); }
.steps li { display: flex; align-items: flex-start; gap: .6rem; padding: .5rem 0; }
.step-n {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(255,140,0,.12); color: var(--primary);
  display: grid; place-items: center; font-weight: 800; flex: 0 0 28px;
}

/* Screens/Proofs */
.screens-grid { display: grid; gap: 1rem; grid-template-columns: repeat(3, minmax(220px,1fr)); }
.screen-card { background: #fff; border-radius: 12px; box-shadow: 0 8px 18px rgba(0,0,0,.06); overflow: hidden; }
.screen-card img { width: 100%; display: block; cursor: zoom-in; }
.screen-card figcaption { font-size: .85rem; color: var(--text-light); padding: .6rem .7rem; }
.proofs-note { text-align: center; color: var(--text-light); margin-top: .6rem; }
@media (max-width:960px){ .screens-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:640px){ .screens-grid { grid-template-columns: 1fr; } }

/* Blur doux */
.blur { filter: blur(2px); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.8);
  display: none; align-items: center; justify-content: center; z-index: 9999;
}
.lightbox.show { display: flex; }
.lightbox img { max-width: min(92vw,1200px); max-height: 85vh; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,.5); }
.lightbox__close {
  position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border: none; border-radius: 50%;
  background: #fff; color: #111; font-size: 26px; line-height: 1; cursor: pointer; box-shadow: 0 6px 18px rgba(0,0,0,.2);
}

/* CTA large */
.cta-wide { background: linear-gradient(90deg,#fff4e6,#fff); padding: 2.2rem 0; margin: 2rem 0 0; }
.cta-wide__inner { display: flex; gap: 1rem; align-items: center; justify-content: center; flex-wrap: wrap; }
.cta-wide h3 { margin: 0; color: #2B1C08; }

/* ===== OFFERS ===== */
.offers { padding-top: 1rem; }

.offer-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  max-width: 1140px;
  margin: 2rem auto 0;
  padding: 0 1rem;
}

.offer-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.06);
  padding: 1.25rem 1.5rem 1rem;
  flex: 1 1 520px;
  max-width: 560px;
  transition: transform .15s ease;
}
.offer-card:hover { transform: translateY(-3px); }

/* Barre d’accent */
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg,#FF8C00,#ffc072);
}

/* Header */
.offer-head { display: flex; align-items: flex-start; gap: .8rem; margin-bottom: .6rem; }
.offer-icon {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 10px;
  background: rgba(255,140,0,.12);
  color: #FF8C00;
  display: grid; place-items: center;
}
.offer-icon svg { width: 22px; height: 22px; }
.offer-icon.icon-green { background: rgba(16,185,129,.12); color:#10b981; }

.offer-head h3 { font-size: 1.15rem; margin: .15rem 0 .35rem; font-weight: 800; color: #1a1a1a; }
.offer-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-left: auto; }
.tag {
  padding: .15rem .5rem; border-radius: 999px;
  background: #f6f6f6; border: 1px solid #eee; 
  color: #555; font-size: .78rem; font-weight: 600;
}

/* Intro + checklist */
.offer-intro { color:#444; margin: .2rem 0 .6rem; }
.offer-list { list-style: none; padding: 0; margin: 0 0 .9rem 0; display: grid; gap: .45rem; }
.offer-list li {
  position: relative; padding-left: 1.5rem; color: #2f2f2f;
}
.offer-list li::before {
  content: "";
  position: absolute; left: 0; top: .2rem;
  width: 18px; height: 18px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 30%, #FF8C00 31%);
  box-shadow: 0 0 0 2px rgba(255,140,0,.15);
}

/* Footer */
.offer-foot { display: flex; align-items: center; justify-content: space-between; margin-top: .4rem; }
.offer-foot .foot-note { color:#777; font-size: .85rem; }
.btn-left { align-self: flex-start; }

/* Bouton secondaire */
.btn-secondary {
  display: inline-block; background: #fff; color: #FF8C00; 
  border: 2px solid #FF8C00;
  padding: .55rem 1rem; border-radius: 10px; 
  font-weight: 700; transition: .2s;
}
.btn-secondary:hover { background: #FF8C00; color: #fff; }

/* ===== Responsive ===== */
@media (min-width: 801px) {
  .offer-card {
    flex: 1 1 calc(50% - 2rem);
    max-width: 520px;
  }
}
@media (max-width: 800px) {
  .offer-card {
    flex: 1 1 100%;
    max-width: 680px;
  }
}
/* Uniformisation des CTA dans les cartes */
.offer-foot a {
  display: inline-block;
  background: #FF8C00;
  color: #fff;
  border: 2px solid #FF8C00;
  padding: .55rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  transition: .2s;
  text-align: center;
}

.offer-foot a:hover {
  background: #E07B00;
  border-color: #E07B00;
}
/* ===== PROCESS (cards style like your PDF) ===== */
.process { padding-top: 1rem; }

.process-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 1.25rem 1.25rem;
  max-width: 980px;
  margin: 1.2rem auto 0;
  padding: 0 1rem;
}

.process-card{
  background:#fff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.05);
  padding: 1.15rem 1.25rem 1rem;
  position: relative;
}

.process-card::after{
  /* petite ombre portée sous la carte (style PDF) */
  content:"";
  position:absolute; left:12px; right:12px; bottom:-10px; height:10px;
  filter: blur(8px);
  background: rgba(0,0,0,.06);
  border-radius: 12px;
  z-index:-1;
}

.p-icon{
  width: 58px; height: 58px; border-radius: 16px;
  display:grid; place-items:center;
  color: var(--primary);
  background: rgba(255,140,0,.12);
  box-shadow: 0 6px 16px rgba(255,140,0,.12);
  margin-bottom: .6rem;
}
.p-icon svg{ width: 30px; height: 30px; }

.p-icon.purple{ color:#7c3aed; background: rgba(124,58,237,.12); box-shadow: 0 6px 16px rgba(124,58,237,.12); }
.p-icon.green{  color:#10b981; background: rgba(16,185,129,.12);  box-shadow: 0 6px 16px rgba(16,185,129,.12); }
.p-icon.pink{   color:#ef5da8; background: rgba(239,93,168,.12);  box-shadow: 0 6px 16px rgba(239,93,168,.12); }

.process-card h3{
  font-size: 1.05rem;
  margin: .15rem 0 .25rem;
  color: var(--text-dark);
  font-weight: 800;
}

.process-card .p-sub{
  color: var(--text-light);
  line-height: 1.5;
}

/* tight + friendly bullets like the PDF headline line */
.process .section-title { margin-bottom: .75rem; }

/* Responsive */
@media (max-width: 820px){
  .process-grid{ grid-template-columns: 1fr; max-width: 620px; }
}
/* ===== CTA FINAL ===== */
.cta-final {
  background: #fff;                /* fond blanc pour cohérence */
  padding: 3rem 1rem;
  text-align: center;
  border-top: 1px solid #f0f0f0;   /* fine séparation */
}

.cta-final__inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-final h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.cta-final .btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: .8rem 1.6rem;
  border-radius: 10px;
  transition: background .2s ease;
}

.cta-final .btn-primary:hover {
  background: var(--primary-dark);
}
/* ===== Process cards — hover / focus lift ===== */
.process-card{
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  will-change: transform;
}
.process-card:hover,
.process-card:focus-within{
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(0,0,0,.10);
  border-color: rgba(20,16,10,.10);
}

/* petit lift de l’icône */
.process-card:hover .p-icon,
.process-card:focus-within .p-icon{
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 22px currentColor, 0 0 0 2px rgba(0,0,0,0); /* un peu plus de glow */
  transition: transform .22s ease, box-shadow .22s ease;
}

/* ombre portée du ::after un poil plus marquée en hover */
.process-card:hover::after,
.process-card:focus-within::after{
  background: rgba(0,0,0,.10);
  filter: blur(10px);
}

/* accessibilité / motion */
@media (prefers-reduced-motion: reduce){
  .process-card,
  .process-card .p-icon{
    transition: none;
  }
}
/* ===== Fix des boutons CTA : enlever le soulignement ===== */
.btn-primary,
.btn-cta,
.btn-secondary {
  text-decoration: none !important;
}

.btn-primary:hover,
.btn-cta:hover,
.btn-secondary:hover {
  text-decoration: none !important;
}
