/* Base */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fdf4e9;
    color: #1f1f1f;
  }
  
  /* Header */
  .topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: white;
  }
  
  .brand {
    font-weight: bold;
    font-size: 20px;
  }
  
  .nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #1f1f1f;
  }
  
  .nav a.active {
    font-weight: bold;
  }
  
  .btn {
    padding: 10px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
  }
  
  .btn-primary {
    background-color: #f4a64e;
    color: white;
  }
  
  /* Contenu */
  .container {
    padding: 80px 40px;
    max-width: 900px;
  }
/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
  }
  
  .hero-title {
    font-size: 46px;
    line-height: 1.05;
    margin: 0 0 16px;
    color: #f4a64e;
  }
  
  .hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 22px;
    max-width: 520px;
  }
  
  .hero-actions {
    display: flex;
    gap: 14px;
  }
  
  .btn-secondary {
    border: 1px solid #1f1f1f;
    color: #1f1f1f;
    background: transparent;
  }
  
  /* Image card */
  .hero-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 14px;
  }
  
  .hero-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .topbar {
      padding: 16px 18px;
    }
  
    .container {
      padding: 50px 18px;
    }
  
    .hero {
      grid-template-columns: 1fr;
    }
  
    .hero-title {
      font-size: 34px;
    }
  
    .hero-card img {
      height: 260px;
    }
  }
  .topbar {
    border-bottom: 1px solid #eee;
  }
  
  .hero {
    margin-top: 40px;
  }

  /* Format page */
.format-header {
    margin-top: 40px;
    margin-bottom: 30px;
  }
  
  .page-title {
    margin: 0 0 10px;
    font-size: 44px;
    color: #f4a64e;
  }
  
  .page-subtitle {
    margin: 0;
    max-width: 700px;
    line-height: 1.6;
  }
  
  /* Timeline */
  .timeline {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 26px;
  }
  
  .step {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 18px;
    align-items: stretch;
  }
  
  .step-line {
    position: relative;
    display: flex;
    justify-content: center;
  }
  
  .step-line::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    border-left: 2px dashed #d9d9d9;
  }
  
  .dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #f4a64e;
    margin-top: 18px;
  }
  
  /* Cards */
  .step-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px;
    align-items: center;
  }
  
  .step-card.reverse {
    grid-template-columns: 1fr 220px;
  }
  
  .step-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
  }
  
  .step-content h2 {
    margin: 0 0 8px;
    font-size: 20px;
  }
  
  .step-content p {
    margin: 0;
    line-height: 1.6;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .page-title {
      font-size: 34px;
    }
  
    .step {
      grid-template-columns: 26px 1fr;
    }
  
    .step-card,
    .step-card.reverse {
      grid-template-columns: 1fr;
    }
  
    .step-img img {
      height: 220px;
    }
  }
  .step-card.reverse {
    direction: rtl;
  }
  
  .step-card.reverse > * {
    direction: ltr;
  }
  /* Contact page */
.contact-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
  }
  
  .contact-points {
    margin: 18px 0 0;
    padding-left: 18px;
    line-height: 1.8;
  }
  
  .form-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
  }
  
  .form-title {
    margin: 0 0 6px;
    font-size: 18px;
  }
  
  .form-hint {
    margin: 0;
    line-height: 1.6;
    color: #444;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .contact-grid {
      grid-template-columns: 1fr;
    }
  }
/* Form */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }
  
  .field {
    display: block;
    margin-bottom: 14px;
  }
  
  .field span {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
  }
  
  .field input,
  .field textarea,
  .field select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
    box-sizing: border-box;
  }
  
  .btn-full {
    width: 100%;
    border: none;
    cursor: pointer;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .form-grid {
      grid-template-columns: 1fr;
    }
  }
  .section {
    margin-top: 110px;
  }
/* ---------- Global layout polish ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ---------- HEADER (FINAL) ---------- */
.topbar{
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 40px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08); /* ombre légère */
}

.brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img{
  height: 30px;
  width: auto;
  display: block;
}

/* Les 3 éléments sont dans un même groupe à droite, écart identique */
.nav{
  display: flex;
  align-items: center;
  gap: 80px; /* <- écart identique entre concept / format / bouton */
}

.nav a{
  text-decoration: none;
  color: #1f1f1f;
  font-size: 20px;
  position: relative;
  padding: 8px 2px;
}
.nav a.btn-primary{
  color: #fff;
  padding: 8px 8px;
}

.nav a:not(.btn):hover{
  opacity: 0.75;
}

/* soulignement discret sur liens */
.nav a:not(.btn)::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-4px;
  height:2px;
  background:#f4a64e;
  transform: scaleX(0);
  transition: transform .2s ease;
}

.nav a:not(.btn):hover::after{
  transform: scaleX(1);
}

/* CTA */
.btn{
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  text-decoration: none;
  transition: opacity .12s ease, transform .06s ease;
}

.btn-primary{
  background: #f4a64e;
  color: #ffffff;
  border: none;
}

.btn:hover{
  opacity: 0.92;
}

.btn:active{
  transform: translateY(1px);
}

/* Mobile */
@media (max-width: 900px){
  .topbar{
    padding: 14px 18px;
  }
  .brand img{
    height: 20px;
  }
  .nav{
    gap: 14px;
  }
  .btn{
    padding: 9px 14px;
  }
}
/* ---------- FOOTER BAR ---------- */
.footer-bar{
  margin-top: 90px;               /* séparation subtile du contenu */
  background: #f4a64e;            /* orange marque */
  color: rgba(255,255,255,0.92);  /* blanc cassé */
}

.footer-bar__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 40px;             /* hauteur agréable */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;                /* plus discret */
  letter-spacing: 0.2px;
}

.footer-bar__right{
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-bar__right a{
  color: rgba(255,255,255,0.92);  /* blanc cassé */
  text-decoration: none;
}

.footer-bar__right a:hover{
  color: rgba(255,255,255,1);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Mobile */
@media (max-width: 900px){
  .footer-bar__inner{
    padding: 16px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-bar__right{
    gap: 14px;
  }
}
/* ---------- CONTACT (STYLE MAQUETTE) ---------- */

/* carte à droite */
.form-card{
  background: rgba(250, 248, 245, 0.7);      /* crème */
  border: 1px solid rgba(244,166,78,0.45); /* orange fin */
  border-radius: 14px;
  padding: 22px;
  box-shadow: none;
}

/* titre dans la carte */
.form-title{
  margin: 0 0 14px;
  font-size: 16px;
  color: rgba(244,166,78,0.95);
  font-weight: 600;
}

/* labels */
.field span{
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: rgba(244,166,78,0.95); /* orange comme maquette */
  font-weight: 500;
}

/* champs */
.field input,
.field textarea{
  width: 100%;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid rgba(244,166,78,0.35);
  background: rgba(244, 166, 78, 0.05);
  font-size: 14px;
  box-sizing: border-box;
}

/* focus discret orange */
.field input:focus,
.field textarea:focus{
  outline: none;
  border-color: rgba(230, 203, 172, 0.75);
  box-shadow: 0 0 0 3px rgba(244,166,78,0.12);
}

.field textarea{
  resize: none;
  min-height: 120px;
}

/* grille (2 colonnes comme la maquette) */
.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 10px;
}

/* bouton envoyer centré et plus petit */
.form-card .btn-full{
  width: auto;
  display: inline-block;
  margin-top: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
}

/* aligner bouton au centre */
.form-card form{
  display: flex;
  flex-direction: column;
}

.form-card form .btn-full{
  align-self: center;
}

/* Responsive */
@media (max-width: 900px){
  .form-grid{ grid-template-columns: 1fr; }
}
.form-section-title{
  margin: 6px 0 10px;
  font-size: 13px;
  color: rgba(244,166,78,0.95);
  font-weight: 600;
}
/* ---------- CONTACT LEFT (TEXT & ALIGNMENT) ---------- */
.contact-left{
  position: relative;
  padding-bottom: 200px;
  min-height: 520px;
  overflow: hidden;
}

.contact-left::after{
  content: "";
  position: absolute;
  left: -140px;
  bottom: -80px;

  width: 720px;     /* ← la taille de l’image */
  height: 720px;    /* ← la taille de l’image */

  background-image: url("../assets/ampoule-france.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;

  opacity: 0.18;
  pointer-events: none;
}



.contact-title{
  margin: 0 0 82px;
  font-size: 58px;
  line-height: 1.1;
  color: #f4a64e;
  font-weight: 600;
}

.contact-intro{
  margin: 0 0 86px;
  font-size: 18px;
  line-height: 1.6;
  color: #1f1f1f;
  max-width: 420px;
  font-weight: 550;
}

/* points */
.contact-points{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-point{
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.6;
  color: #1f1f1f;
}

/* petit marqueur discret (comme la maquette, pas une grosse icône) */
.contact-point::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #f4a64e;
  font-size: 18px;
  line-height: 1;
}

/* Mobile */
@media (max-width: 900px){
  .contact-title{
    font-size: 32px;
  }
}

.contact-grid{
  margin-top: 0;
}

/* ---------- LEGAL PAGES ---------- */
.legal{
  padding-top: 50px;
  padding-bottom: 60px;
}

.legal-title{
  margin: 0 0 24px;
  font-size: 40px;
  line-height: 1.1;
  color: #f4a64e;
  font-weight: 700;
}

.legal-section{
  margin-top: 18px;
}

.legal-section h2{
  margin: 18px 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #1f1f1f;
}

.legal-section p{
  margin: 0;
  line-height: 1.7;
  font-size: 14px;
  color: #1f1f1f;
  max-width: 850px;
}
/* ---------- FORMAT HOVER CARDS ---------- */

.format-hover{
  padding: 40px 0 60px;
}

.format-cards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* carte */
.format-card{
  perspective: 1200px;
}

.card-inner{
  position: relative;
  width: 100%;
  height: 280px;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}

.format-card:hover .card-inner{
  transform: rotateY(180deg);
}

/* faces */
.card-front,
.card-back{
  position: absolute;
  inset: 0;
  border-radius: 14px;
  backface-visibility: hidden;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

/* face image */
.card-front img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-front span{
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-size: 20px;
  font-weight: 700;
  color: #f4a64e;
  text-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

/* face texte */
.card-back{
  background: #fff;
  padding: 22px;
  font-size: 14px;
  line-height: 1.6;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
}

/* responsive */
@media (max-width: 1100px){
  .format-cards{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .format-cards{
    grid-template-columns: 1fr;
  }
}
/* ---------- FORMAT: zigzag + reveal scroll ---------- */

.format-top{
  padding: 40px 0 10px;
}

.format-title{
  margin: 0 0 18px;
  letter-spacing: -0.5px;

  line-height: 1.05;
  color: #f4a64e;
  font-weight: 700;
  text-align: center;
  font-size: 64px;          /* plus impactant */
  margin-bottom: 40px;
}

.zigzag{
  position: relative;
  height: 720px;
  max-width: 430px;
  margin: 0 auto;
}

.zigzag-path{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.z-step{
  position: absolute;
  width: 220px;
  height: 120px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}

.z-step img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 16px 26px rgba(0,0,0,0.14);
  transition: transform .18s ease, box-shadow .18s ease;
}

.z-label{
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #f4a64e;
  text-shadow: 0 4px 16px rgba(0,0,0,0.55);
  pointer-events: none;
}

.z-step:hover img{
  transform: translateY(-3px) rotate(-2deg);
  box-shadow: 0 20px 34px rgba(0,0,0,0.18);
}

/* positions (zigzag) */
.z1{ left: 10px;  top: 70px; }
.z2{ right: 10px; top: 230px; }
.z3{ left: 10px;  top: 390px; }
.z4{ right: 10px; top: 560px; }

/* détails */
.format-details{
  padding: 10px 0 60px;
  max-width: 900px;
  margin: 0 auto;
}

.format-subtitle{
  margin: 0 0 26px;
  color: #1f1f1f;
}

.detail-card{
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 18px;
  align-items: center;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  margin: 18px 0;
  scroll-margin-top: 110px; /* pour header sticky */
}

.detail-card img{
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 12px;
}

.detail-card h2{
  margin: 0 0 6px;
  font-size: 18px;
}

.detail-card p{
  margin: 0;
  line-height: 1.6;
  font-size: 14px;
}

/* highlight quand on arrive */
.detail-card.is-active{
  outline: 2px solid rgba(244,166,78,0.55);
  box-shadow: 0 16px 34px rgba(244,166,78,0.18);
}

/* responsive */
@media (max-width: 900px){
  .zigzag{ max-width: 360px; }
  .z-step{ width: 200px; height: 110px; }

  .detail-card{
    grid-template-columns: 1fr;
  }
  .detail-card img{
    height: 160px;
  }
}
/* ---------- FORMAT: 4 grandes images alternées + texte slide ---------- */

.format-hover2{
  padding: 40px 0 60px;
}

.format-stack{
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-top: 26px;
}

/* un bloc = aligné à gauche ou à droite */
.f-step{
  display: flex;
}

.f-step.left{ justify-content: flex-start; }
.f-step.right{ justify-content: flex-end; }

/* media */
.f-media{
  position: relative;
  width: min(780px, 92%);
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(0,0,0,0.14);
}

.f-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .25s ease;
}

/* overlay texte (caché au repos) */
.f-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;

  padding: 22px 26px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(6px);

  /* caché au repos : on le sort légèrement + transparent */
  transform: translateY(24px);
  opacity: 0;

  transition: transform .25s ease, opacity .25s ease;
}

/* titres */
.f-overlay h2{
  margin: 0;
  color: #f4a64e;
  font-size: 20px;
}

.f-overlay p{
  margin: 0;
  color: #1f1f1f;
  font-size: 14px;
  line-height: 1.6;
  max-width: 560px;
}

/* hover : image bouge + texte slide-in */
.f-media:hover img{
  transform: scale(1.06);
}

.f-media:hover .f-overlay{
  transform: translateY(0);
  opacity: 1;
}

/* mobile */
@media (max-width: 700px){
  .f-media{ height: 200px; width: 100%; }
}
/* ---------- FORMAT (t2) : images horizontales + bascule ±15° + texte slide ---------- */

.format-hero{ padding: 40px 0 10px; }

/* ---------- FORMAT (t2) : carte sous la photo + reveal au hover de la photo ---------- */

/* ---------- FORMAT (t2) : carte sous la photo + reveal au hover de la photo ---------- */

.t2{
  position: relative;
  padding: 25px 0 60px;
}

/* On retire la ligne pointillée et les points */
.t2::before{ display:none !important; }
.t2-item::after{ display:none !important; }

.t2-item{
  position: relative;           /* IMPORTANT pour position:absolute de la carte */
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 36px;
  margin: 80px 0;
}

/* image plus grande */
.t2-media{
  position: relative;
  width: 480px;
  max-width: 100%;
  height: 230px;
  border-radius: 16px;
  overflow: hidden;
  z-index: 2;                   /* image au-dessus de la carte */
  transform: rotate(0deg);
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}

/* l’image elle-même */
.t2-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 18px 34px rgba(0,0,0,0.14);
  background: #000;
}

/* filtre opaque (léger voile) */
.t2-media::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 16px;
  background: rgba(0,0,0,0.20); /* intensité du filtre */
  pointer-events:none;
}

/* texte centré sur l'image */
.t2-label{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  font-weight: 800;
  font-size: 26px;
  color: #f4a64e;
  text-shadow: 0 6px 18px rgba(0,0,0,0.55);
  pointer-events:none;
  white-space: nowrap;
}

/* carte blanche : cachée sous la photo (écrasée au repos) */
.t2-card{
  position: absolute;
  top: 0;
  height: 230px;                         /* même hauteur que l’image */
  width: 520px;                          /* largeur finale */
  max-width: calc(100% - 420px);

  background: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  line-height: 1.7;
  font-size: 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);

  display: flex;
  align-items: center;

  z-index: 1;
  pointer-events: none;

  /* AU REPOS : écrasée => invisible */
  transform: scaleX(0);
  transition: transform .65s cubic-bezier(.2,.8,.2,1);
  transition-delay: .08s;
}

/* texte propre */
.t2-card p{
  margin: 0;
  max-width: 520px;
}

/* Placement gauche/droite : on place l’image dans sa colonne,
   et la carte “part” sous l’image grâce à left/right */
.t2-item.left  .t2-media{ grid-column: 1; justify-self: start; }
.t2-item.right .t2-media{ grid-column: 2; justify-self: end; }

/* item LEFT : carte sort vers la droite */
.t2-item.left .t2-card{
  left: 260px;                 /* ajuste si besoin: 210-260 */
  transform-origin: left center;
  padding-left: 40px;   /* espace avant le texte */
  justify-content: flex-start;
}

/* item RIGHT : carte sort vers la gauche */
.t2-item.right .t2-card{
  right: 260px;                /* ajuste si besoin */
  transform-origin: right center;
  padding-right: 40px;
  justify-content: flex-start;

}

/* ✅ Hover UNIQUEMENT sur la photo */
.t2-item.left  .t2-media:hover{
  transform: rotate(-15deg);
}

.t2-item.right .t2-media:hover{
  transform: rotate(15deg);
}

/* la carte s’étire (coulisse) */
.t2-item.left  .t2-media:hover + .t2-card,
.t2-item.right .t2-media:hover + .t2-card{
  transform: scaleX(1);
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

/* Mobile : pas de hover => on affiche la carte */
@media (max-width: 900px){
  .t2-item{
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 34px 0;
    overflow: hidden;   /* empêche de voir la carte sous la photo */
  }

  .t2-item.left .t2-media,
  .t2-item.right .t2-media{
    grid-column: 1;
    justify-self: start;
    transform: rotate(0deg);
  }

  .t2-card{
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    transform: none;
    pointer-events: auto;
    transition: none;
    transition-delay: 0s;
  }

  .t2-label{
    font-size: 22px;
  }
}
/* =========================
   FORMAT — CARDS (ALTERNANCE)
   ========================= */

   .format-steps{
    margin: 40px 0 60px;
    display: flex;
    flex-direction: column;
    gap: 80px;
  }
  
  .step-card2{
    background: rgb(255, 251, 247);
    border: 1px solid rgba(244,166,78,0.25);
    border-radius: 22px;
    padding: 28px;
  
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 42px;
    align-items: center;
  
    box-shadow: 0 18px 40px rgba(244,166,78,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
  }
  
  
  /* ✅ alternance : on inverse l’ordre visuel */
  .step-card2.alt .step-img2{ order: 2; }
  .step-card2.alt .step-text2{ order: 1; }
  
  .step-img2 img{
    width: 480px;     /* ✅ même dimension qu’actuellement */
    height: 230px;    /* ✅ même dimension qu’actuellement */
    object-fit: cover;
    border-radius: 16px;
    display: block;
  }
  
  .step-text2 h2{
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 700;
    color: #1f1f1f;
  }
  
  .step-text2 p{
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #1f1f1f;
    max-width: 620px;
  }
  
  /* Responsive */
  @media (max-width: 900px){
    .step-card2{
      grid-template-columns: 1fr;
    }
  
    /* sur mobile on remet image au-dessus */
    .step-card2.alt .step-img2{ order: 1; }
    .step-card2.alt .step-text2{ order: 2; }
  
    .step-img2 img{
      width: 100%;
      max-width: 520px;
      height: 230px;
    }
  }
  
  /* =========================
   CONCEPT
   ========================= */

.concept-hero{
  padding: 40px 0 10px;
}

.concept-title{
  margin: 0 0 14px;
  font-size: 64px;
  line-height: 1.05;
  color: #f4a64e;
  font-weight: 700;
}

.concept-subtitle{
  margin: 0 0 18px;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.7;
}

.concept-bullets{
  margin: 0 0 22px;
  padding-left: 18px;
  line-height: 1.9;
}

.concept-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* titres de sections */
.concept-section{
  margin-top: 34px;
}

.concept-h2{
  margin: 0 0 16px;
  font-size: 26px;
  font-weight: 700;
}

/* cartes (même style que format : orange léger) */
.concept-card,
.concept-mini-card,
.concept-cta-card{
  background: linear-gradient(
    135deg,
    rgba(255, 250, 245, 0.774),
    rgba(255, 254, 252, 0.74)
  );
  border: 1px solid rgba(244,166,78,0.25);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(244,166,78,0.08);
}

.concept-card h2,
.concept-card h3,
.concept-mini-card h3,
.concept-cta-card h2{
  margin: 0 0 10px;
}

.concept-card p,
.concept-mini-card p,
.concept-cta-card p{
  margin: 0;
  line-height: 1.7;
}

.concept-grid3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.concept-grid2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.concept-cta{
  margin-top: 34px;
}

.concept-cta-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.concept-cta-card a{
  flex: 0 0 auto;
}

/* responsive */
@media (max-width: 900px){
  .concept-title{ font-size: 40px; }
  .concept-grid3{ grid-template-columns: 1fr; }
  .concept-grid2{ grid-template-columns: 1fr; }
  .concept-cta-card{ flex-direction: column; align-items: flex-start; }
}
/* =========================
   CONCEPT SPLIT VISUAL
   ========================= */

   /* =========================
   CONCEPT SPLIT VISUAL
   ========================= */

.concept-visual{
  margin-top: 40px;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}

.concept-split{
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 520px;
  border-radius: 8px;
  overflow: hidden;
}

/* Chaque moitié */
.concept-half{
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.concept-left{
  left: 0;
}

.concept-right{
  right: 0;
}

/* Images */
.concept-half img{
  position: absolute;
  top: 0;
  height: 100%;
  width: auto;
  min-width: 100%;
  object-fit: cover;
}

/* On décale les images pour ne garder qu’une moitié */
.concept-left img{
  right: 0;  /* montre moitié droite */
}

.concept-right img{
  left: 0;   /* montre moitié gauche */
}

/* Barre orange centrale */
.concept-divider{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 100%;
  background: #c97d22;
  z-index: 2;
}

  
  /* Responsive */
  @media (max-width: 900px){
    .concept-split{
      grid-template-columns: 1fr;
      height: auto;
    }
  
    .concept-divider{
      display: none;
    }
  
    .concept-split-left,
    .concept-split-right{
      height: 260px;
    }
  }
  .concept-visual{
    margin-top: 60px;
    display: flex;
    justify-content: center;
  }
  
  .concept-split-one{
    width: min(780px, 100%);
    border-radius: 10px;
    overflow: hidden;
  }
  
  .concept-split-one img{
    width: 100%;
    height: auto;
    display: block;
  }
/* ---------- CONCEPT : Flip avant / après ---------- */

.concept-flip{
  padding: 60px 0 80px;
  text-align: center;
}

.concept-title{
  margin: 0 0 34px;
  color: #f4a64e;
  font-weight: 700;
  font-size: 46px;
  line-height: 1.15;
  letter-spacing: -0.4px;
}

/* carte */
.flip-card{
  width: min(820px, 92%);
  height: 460px;
  margin: 0 auto;
  perspective: 1200px;
}

/* inner */
.flip-inner{
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.85s cubic-bezier(.2,.8,.2,1);
}

/* hover */
.flip-card:hover .flip-inner{
  transform: rotateY(180deg);
}

/* faces */
.flip-face{
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  backface-visibility: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* images */
.flip-face img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* back */
.flip-back{
  transform: rotateY(180deg);
}

.concept-hint{
  margin: 16px 0 0;
  font-size: 14px;
  opacity: 0.7;
}

/* responsive */
@media (max-width: 900px){
  .concept-title{ font-size: 34px; }
  .flip-card{ height: 320px; }
}
/* ---------- CONCEPT: 4 FLIP CARDS (texte recto / image verso) ---------- */

.concept-flips{
  padding: 30px 0 40px;
}

.concept-flips__title{
  margin: 0 0 28px;
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: rgba(244,166,78,0.10);
  letter-spacing: -0.3px;
}

.concept-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* Carte */
.flip-card{
  perspective: 1200px;
}

.flip-inner{
  position: relative;
  width: 100%;
  height: 280px;
  transform-style: preserve-3d;
  transition: transform 1.6s cubic-bezier(.2,.8,.2,1);
}

/* Hover: flip */
.flip-card:hover > .flip-inner{

  transform: rotateY(180deg);
}

.flip-face{
  position: absolute;
  inset: 0;
  border-radius: 18px;
  overflow: hidden;
  backface-visibility: hidden;
}


/* Recto (texte) */
.flip-front{
  background: rgba(244,166,78,0.10); /* orange léger */
  border: 1px solid rgba(244,166,78,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  text-align: center;
}

.flip-front h3{
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  color: #1f1f1f;
  font-weight: 800;
}

/* Verso (image) */
.flip-back{
  transform: rotateY(180deg);
}

.flip-back img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 1100px){
  .concept-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px){
  .concept-grid{
    grid-template-columns: 1fr;
  }
  .flip-inner{
    height: 260px;
  }
}
/* ----- CONCEPT: HERO FLIP (gros avant/après) ----- */
.concept-visual{
  margin: 18px 0 26px;
  display: flex;
  justify-content: center;
}

.flip-card--hero{
  width: min(820px, 100%);
}

.flip-card--hero .flip-inner{
  height: 460px;                 /* ajuste si tu veux plus/moins haut */
}

.flip-card--hero .flip-face{
  border-radius: 22px;
}

.flip-card--hero img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* responsive */
@media (max-width: 900px){
  .flip-card--hero .flip-inner{
    height: 360px;
  }
}

/* =========================
   CONCEPT — Ajustements demandés
   (à coller tout en bas)
   ========================= */

/* Espace sous le H1 + centrage plus clean */
.concept-title{
  text-align: center;
  margin-bottom: 26px;   /* espace sous la première phrase */
}

/* HERO flip : retirer "contour" (ombre) */
.flip-card--hero .flip-face{
  box-shadow: none !important;
  border: none !important;
}

/* Petit espace avant les 4 cards */
.concept-flips{
  padding-top: 12px;   /* petit espace */
  margin-top: 10px;
}

/* Grille un peu plus aérée */
.concept-grid{
  gap: 22px;  /* espace entre cards */
}

/* Réduire la hauteur des 4 cards */
.concept-flips .flip-inner{
  height: 220px;   /* avant: 280 */
}

/* Couleur recto plus élégante (orange léger plus doux) */
.concept-flips .flip-front{
  background: rgba(244,166,78,0.08);
  border: 1px solid rgba(244,166,78,0.18);
}

/* Texte recto un poil plus petit pour tenir en hauteur réduite */
.concept-flips .flip-front h3{
  font-size: 18px;
  line-height: 1.25;
}

/* Optionnel : arrondis un peu plus doux sur les petites cards */
.concept-flips .flip-face{
  border-radius: 16px;
}
/* Espace titre → image */
.concept-title{
  margin-bottom: 60px;
}
/* HERO flip sans ombre ni contour */
.flip-card--hero .flip-face{
  box-shadow: none !important;
  border: none !important;
}

.flip-card--hero .flip-inner{
  box-shadow: none !important;
}

.flip-card--hero{
  box-shadow: none !important;
}
.concept-flips{
  margin-top: 80px;   /* espace sous l'image hero */
}
.concept-flips .flip-card{
  width: 100%;
  max-width: 100%;
}
.concept-flips .flip-inner{
  height: 220px;   /* plus bas */
}
.flip-front{
  padding: 30px;
}

.flip-front h3{
  font-size: 18px;
  line-height: 1.4;
}
/* HERO : supprimer ombre et contour */
.flip-card--hero .flip-face{
  box-shadow: none;
}
.concept-flips .flip-card{
  display: inline-block;
}


/* =========================
   CONCEPT — OVERRIDE FINAL (à coller tout en bas)
   ========================= */

/* 1) Plus d'espace entre le titre et la carte hero */
main.container > .concept-title{
  text-align: center;
  margin: 0 0 64px !important;
}

/* 2) HERO : enlever tout contour/ombre + réduire un peu la taille */
.flip-card--hero{
  width: min(780px, 100%) !important;   /* plus petit */
  height: auto !important;
  margin: 0 auto !important;
  box-shadow: none !important;
}

.flip-card--hero .flip-inner{
  height: 420px !important;             /* plus petit */
  box-shadow: none !important;
}

.flip-card--hero .flip-face{
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

/* Important : enlever le “liseré” parfois causé par la 3D */
.flip-card--hero .flip-face img{
  display:block;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  transform: translateZ(0);
}

/* 3) Les 4 petites cards : descendre un peu + moins d'espace dessous */
.concept-flips{
  margin-top: 130px !important;   /* les rendre "plus basse" sous le hero */
  padding: 0 0 30px !important;  /* réduire espace en dessous */
}

/* 4) Empêcher le hover “dans le vide” :
      - on force la carte à prendre EXACTEMENT la taille de l’inner
      - et on désactive les events sur les faces */
.concept-flips .flip-card{
  display: block !important;
  width: 100% !important;
  height: 230px !important;      /* hauteur fixe = zone hover */
  perspective: 1200px;
}

.concept-flips .flip-inner{
  width: 100%;
  height: 100%;
}

/* Le hover ne se déclenche que si tu es sur la carte */
.concept-flips .flip-card:hover .flip-inner{
  transform: rotateY(180deg);
}

/* Les faces ne "capturent" pas le hover en dehors */
.concept-flips .flip-face{
  pointer-events: none;
}

/* 5) Cards : un peu plus compactes / moins hautes, et couleur244,166,78,0.18 plus jolie */
.concept-grid{
  gap: 22px !important; /* évite chevauchement */
}

.concept-flips .flip-front{
  background:linear-gradient(
    135deg,
    rgba(244, 167, 78, 0.53),
    rgba(244, 167, 78, 0.103)
  ); !important;
  
  border: 1px solid rgba(254, 254, 254, 0.847)!important;
  padding: 18px !important;
  box-shadow: none !important;
}
/*.concept-flips .flip-front{

  border: 1px solid rgba(245, 177, 59, 0.847)!important;
  
}*/
.concept-flips .flip-front h3{
  font-size: 18px !important;
  line-height: 1.35 !important;
}

/* Responsive hero */
@media (max-width: 900px){
  .flip-card--hero .flip-inner{
    height: 320px !important;
  }
}
/* Si le recto contient une image : pas de contour orange */
.flip-front:has(img){
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
}
/* base recto */
.flip-front{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  border-radius: 18px;
  overflow: hidden;
}

/* recto TEXTE => style carte orange */
.flip-front--text{
  background: rgba(244,166,78,0.10);
  border: 1px solid rgba(244,166,78,0.25);
  padding: 22px;
}

/* recto IMAGE => zéro contour */
.flip-front--img{
  background: transparent;
  border: none;
  padding: 0;
}

.flip-front--img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}
/* =========================
   HOME HERO (maquette)
   ========================= */

/* Container un peu plus large pour ce hero */
.container{
  max-width: 1200px;
}

/* Layout */
.home-hero{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 0px 0 0px;
}

/* Texte */
.home-hero__title{
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 800;
  color: #f4a64e;
  letter-spacing: -0.6px;
}

.home-hero__subtitle{
  margin: 0 0 26px;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  color: #1f1f1f;
}

/* Soulignement “clé” */
.u-underline{
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 3px;
}

/* Boutons (style maquette) */
.home-hero__actions{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-outline{
  background: transparent;
  border: 1.5px solid rgba(244,166,78,0.95);
  color: rgba(244,166,78,0.95);
  padding: 12px 22px;
  border-radius: 999px;
}

.btn-soft{
  background: rgba(244,166,78,0.45);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
}

/* Image à droite : gros arrondi côté gauche + fondu léger */
.home-hero__media{
  justify-self: stretch;
  align-self: stretch;

  height: 360px;
  width: 100%;
  overflow: hidden;
  border-radius: 130px 15px 15px 130px;

  background: transparent; /* important */
}

.home-hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; /* évite des cadrages bizarres */
  display: block;
}


/* Fondu à gauche (pour “manger” un peu l’image sur le fond) */


/* Responsive */
@media (max-width: 900px){
  .home-hero{
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 44px 0 18px;
  }

  .home-hero__title{
    font-size: 40px;
  }

  .home-hero__media{
    height: 280px;
    border-radius: 28px;
  }

  .home-hero__media::before{
    background: none;
  }
}
/* =========================
   HOME — respiration premium
   ========================= */

/* Plus d’espace avant/après les 4 cartes */
.concept-flips{
  margin-top: 140px;
  margin-bottom: 140px;
}

/* Grille des 4 cartes plus aérée */
.concept-grid{
  gap: 40px;
}

/* Titres plus grands (concept / format) */
.concept-title,
.format-title{
  font-size: 72px;
  font-weight: 700;
  margin: 0 0 50px;
  letter-spacing: -0.5px;
}

/* Séparateur premium */
.section-divider{
  width: 60px;
  height: 2px;
  background: rgba(244,166,78,0.55);
  margin: 120px auto;
}

/* Une section sur deux avec fond légèrement différent */
.section-alt{
  background: #f8f4ef;
  padding: 120px 0;
  border-radius: 18px;
}

/* Plus de vide avant la partie contact */
.contact-grid{
  margin-top: 0px;
}
.container--home .contact-grid{
  margin-top: 160px;
}
#format-on-home{
  margin-top: 120px !important;   /* au lieu de 110+ */
  padding-top: 0 !important;
}

