/* ====== Base ====== */
:root{
  --bg: #fbfaf7;
  --card: #f6f2ea;
  --line: rgba(20,20,20,.10);
  --text: #141414;
  --muted: rgba(20,20,20,.65);

  --orange: #ff6a2a;
  --brown: #7b5a47;

  --radius-xl: 28px;
  --radius-lg: 22px;
  --shadow: 0 24px 70px rgba(0,0,0,.06);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

.container{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:12px;
  background:#fff;
  border:1px solid var(--line);
  padding:10px 12px;
  border-radius:10px;
}
.skip-link:focus{ left:12px; z-index:999; }

/* ====== Header / Nav ====== */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(251,250,247,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 260px;
}
.brand-logo{
  height: 32px; /* IMPORTANT: logo long */
  width:auto;
  object-fit:contain;
}
.brand-name{
  font-weight:800;
  letter-spacing:-0.02em;
  white-space:nowrap;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:22px;
  font-weight:650;
  color: rgba(20,20,20,.78);
}
.nav-links a{
  padding:10px 8px;
  border-radius:12px;
}
.nav-links a:hover{
  background: rgba(0,0,0,.04);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:800;
  line-height:1;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}
.btn-primary{
  background: var(--orange);
  border-color: transparent;
  color:#fff;
}
.btn-brown{
  background: var(--brown);
  border-color: transparent;
  color:#fff;
  padding: 14px 22px;
}

/* Icon button + burger */
.icon-btn{
  width:46px;
  height:46px;
  border-radius: 14px;
  border:1px solid var(--line);
  background:#fff;
  display:grid;
  place-items:center;
}
.burger-lines{
  width:18px;
  height:12px;
  position:relative;
}
.burger-lines::before,
.burger-lines::after,
.burger-lines span{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background:#1a1a1a;
  border-radius:2px;
}
.burger-lines::before{ top:0; }
.burger-lines::after{ bottom:0; }
.burger-lines span{ top:5px; }
.burger .burger-lines span{ content:""; } /* (compat) */

.burger-lines{
  display:block;
}
.burger-lines::before,
.burger-lines::after{
  display:block;
}
.burger-lines::after{}

/* Mobile menu */
.mobile-menu{
  border-top:1px solid var(--line);
  background: rgba(251,250,247,.98);
}
.mobile-menu-inner{
  padding: 12px 0 16px;
  display:grid;
  gap:10px;
}
.mobile-menu a{
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:700;
}
.mobile-cta{
  width:100%;
  justify-content:center;
}

/* ====== Hero ====== */
.hero{
  padding: 18px 0 28px;
}

.hero-card{
  position:relative;
  border-radius: var(--radius-xl);
  overflow:hidden;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

/* background image layer */
.hero-bg{
  position:absolute;
  inset:0;
  background-image: url("assets/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: .55;
  transform: scale(1.02);
}

/* inner layout */
.hero-inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  padding: 34px;
  min-height: 560px;
}

.hero-left{
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.pill{
  display:inline-flex;
  width: fit-content;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  font-weight:700;
  color: rgba(20,20,20,.8);
}

.hero-title{
  margin:0;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight:700;
  letter-spacing:-0.02em;
  line-height: 1.02;
  font-size: clamp(40px, 4.2vw, 68px);
}

.accent{
  color: var(--orange);
  font-style: italic;
}

.hero-subtitle{
  margin:0;
  font-size: 18px;
   font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(20,20,20,.86);
}

.hero-text{
  margin:0;
  max-width: 52ch;
  color: var(--muted);
  line-height:1.6;
  font-size: 16px;
}

.hero-cta{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top: 6px;.stars {
  margin-left: 8px;
}
}
.hero-note{
  color: rgba(20,20,20,.55);
  font-weight:650;
}

.review-card{
  margin-top: 6px;
  width: min(560px, 100%);
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 18px;
  box-shadow: 0 26px 70px rgba(0,0,0,.06);
}

.review-top{
  display:flex;
  align-items:center;
  gap:14px;
}
.stars {
  margin-left: 8px;
}

.avatars{
  display:flex;
  align-items:center;
}
.avatar{
  width:40px;
  height:40px;
  border-radius:999px;
  overflow:hidden;
  border: 3px solid rgba(255,255,255,.9);
  margin-right:-10px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}
.avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.stars{
  color: var(--orange);
  font-size: 18px;
  letter-spacing:2px;
  font-weight:900;
}

.review-text{
  color: rgba(20,20,20,.72);
  line-height:1.45;
}
.review-text strong{
  color: rgba(20,20,20,.82);
}

.hero-bottom{
  margin-top: 4px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.reassurance{
  font-weight:800;
  color: rgba(20,20,20,.72);
}
.legal{
  font-size: 13px;
  line-height:1.45;
  color: rgba(20,20,20,.45);
  max-width: 70ch;
}





/* ====== Sections (placeholder) ====== */
.section{
  padding: 70px 0;
}
.section-alt{
  background: rgba(0,0,0,.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section h2{
  margin:0 0 10px;
  font-size: 34px;
  letter-spacing:-0.02em;
}
.section p{
  margin:0;
  color: var(--muted);
  line-height:1.7;
}

/* ====== Responsive ====== */
@media (max-width: 980px){
  .nav-links{ display:none; }
  .brand{ min-width: unset; max-width: 56%; }
  .brand-name{
    display:none; /* mobile : logo seulement */
  }

  .hero-inner{
    grid-template-columns: 1fr;
    padding: 22px;
    min-height: unset;
    gap: 18px;
  }

  

 

  .review-card{
    width: 100%;
  }
}

@media (max-width: 520px){
  .nav{ padding: 12px 0; }
  .btn-primary{ padding: 10px 14px; font-size: 10px; }
  .icon-btn{ width: 44px; height: 44px; }

  .hero-title{
    font-size: 46px;
  }
  .review-card{
    padding: 14px;
    border-radius: 18px;
  }
  .review-text{
    font-size: 14px;
  }
}
/* ===== HERO IMAGE – VERSION FINALE CLEAN ===== */

.hero-right {
  display: flex;
  align-items: stretch;          /* prend toute la hauteur du hero */
  justify-content: flex-end;
}

.hero-media {
  display: flex;
  align-items: flex-end;         /* collée en bas */
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  position: relative;
}

/* DESKTOP */
.hero-person {
  height: 100%;
  max-height: 720px;             /* GRAND MAIS PRO */
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: -36px; margin-right: -34px;         /* supprime l’effet “découpé” */
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.18));
  pointer-events: none;
}

/* TABLET */
@media (max-width: 980px) {
  .hero-right {
    justify-content: center;
  }

  .hero-media {
    justify-content: center;
  }

  .hero-person {
    height: 460px;
    margin-bottom: -8px;
  }
}

/* MOBILE */
@media (max-width: 520px) {
  .hero-person {
    height: 380px;
    margin-bottom: -6px;
  }
}

@media (min-width: 981px) {
  .review-card {
    margin-top: 24px;
  }
}
@media (max-width: 980px) {
  .review-card {
    margin-top: 0;
    margin-bottom: 12px;
  }
}

/* ===========================
   HERO - IMAGE VERSION MOBILE
   Objectif : comme ton 2e screen (image en bas, centrée, qui remonte)
=========================== */
@media (max-width: 980px) {

  /* Le hero devient "une pile" : contenu en haut, image ancrée en bas */
  .hero-card{
    position: relative;
    overflow: hidden;
  }

  .hero-inner{
    position: relative;
    display: block;
    padding: 22px;
    padding-bottom: 420px; /* réserve la place pour l’image en bas */
    min-height: unset;
  }

  /* On sort l'image du flow et on la colle en bas */
  .hero-right{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0;
    pointer-events: none;
  }

  .hero-media{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  /* IMPORTANT : on annule tes margins desktop sur mobile */
  .hero-person{
    height: auto;              /* <- on enlève le height:100% en mobile */
    max-height: 520px;         /* ajuste si tu veux + grand */
    width: auto;
    margin: 0;                 /* <- annule margin-bottom/right */
    transform: translateY(28px); /* fait "remonter" l'image comme le modèle */
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .18));
    object-fit: contain;
    object-position: bottom center;
  }
}

/* Ultra mobile (petits écrans) : un peu moins haut */
@media (max-width: 520px){
  .hero-inner{ padding-bottom: 360px; }

  .hero-person{ max-height: 460px; transform: translateY(26px);        margin-left: 29%; }
}
/* ===========================
   TABLET (iPad) : 2 colonnes propre
   (évite le mode mobile "image en absolute")
=========================== */
@media (max-width: 980px) and (min-width: 701px){

  .hero-inner{
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 24px;
    padding: 26px;
    min-height: 560px;
  }

  .hero-right{
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 0;
  }

  .hero-media{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }

  /* image + grande et collée à droite/bas (mais sans casser) */
  .hero-person{
    height: auto;
    max-height: 520px;
    width: auto;
    margin-right: -22px;
    margin-bottom: -26px;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.18));
    pointer-events: none;
  }

  /* Avis un peu plus bas, plus d’air */
  .review-card{
    margin-top: 14px;
  }
}


/* ===========================
   MOBILE : comme ton modèle (image en bas, centrée, remonte)
=========================== */
@media (max-width: 700px){

  .hero-card{
    position: relative;
    overflow: hidden;
  }

  .hero-inner{
    position: relative;
    display: block;
    padding: 22px;
    padding-bottom: 380px; /* réserve la place pour l’image */
    min-height: unset;
  }

  .hero-right{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0;
    pointer-events: none;
  }

  .hero-media{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .hero-person{
    height: auto;
    max-height: 460px;
    margin-left: 332px;

    width: auto;
    margin-right: 0;  
        margin-top: 0;  
        margin-bottom: 0;             /* on annule les margins desktop */
    transform: translateY(26px);
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.18));
    pointer-events: none;
  }

  .review-card{
    width: 100%;
  }
}

@media (max-width: 520px){
  .hero-inner{ padding-bottom: 340px; }
  .hero-person{ max-height: 420px; transform: translateY(24px);         margin-left: 179px;
}
}







/* =========================
   SOLUTIONS – PREMIUM MARRON
========================= */

.solutions {
  padding: 20px 0;
  
}

.solutions-container {
  width: min(1320px, 92%);
  margin: auto;
}

.solutions-title {
  text-align: center;
  font-size: clamp(34px, 3.5vw, 52px);
  margin-bottom: 60px;
  color: #1a1a1a;
}

.solutions-title span {
  color: #ff6b29;
  font-style: italic;
}

/* GRID */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* CARD */
.solution-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

/* HEADER */
.solution-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.solution-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: #f3eee8;
}

.solution-card h3 {
  font-size: 22px;
  margin: 0;
}

/* TEXT */
.solution-card p {
  font-size: 16px;
  line-height: 1.65;
  color: #555;
  margin-bottom: 32px;
}

/* BUTTON */
.solution-btn {
  margin-top: auto;
  align-self: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8e6a5a, #9b6a46);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(122, 78, 45, 0.45);
  transition: transform .2s ease, box-shadow .2s ease;
}

.solution-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(122, 78, 45, 0.55);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}
.solution-icon i {
  font-size: 22px;
  color: rgb(255 107 41);
}

.solution-more {
  display: none;
  margin-top: 14px;
}

.solution-more ul {
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.solution-toggle {
  background: none;
  border: none;
  color: ##ff6b29;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 12px;
  align-self: flex-start;
}

.solution-toggle:hover {
  text-decoration: underline;
}



/* =========================
   MÉTHODE (4 étapes) — IMAGE À DROITE / MARRON / ÉPURÉ
========================= */

.apf-method3{
  padding: 70px 0;
  
}

.apf-method3-inner{
  width: min(1200px, 92%);
  margin: 0 auto;
}

.apf-method3-kicker{
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: .02em;
  color: #151515;
  font-size: 18px;
  text-transform: uppercase;
}
.apf-method3-kicker span{
  color: #8e6a5a;
  font-style: italic;
}

.apf-method3-title{
  margin: 0 0 18px;
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #151515;
}
.apf-method3-title span{
  color: #ff6b29;
  font-style: italic;
  font-weight: 900;
}

.apf-method3-one{
  margin: 0 0 34px;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(20,20,20,.78);
  font-weight: 650;
}
.apf-method3-one strong em{
  color: #8e6a5a;
  font-style: italic;
  font-weight: 900;
}

/* grid */
.apf-method3-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: stretch;
}

/* left steps */
.apf-method3-steps{
  display: grid;
  gap: 14px;
}

/* step card */
.apf-mstep{
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 44px rgba(0,0,0,.06);
}

.apf-mstep-num{
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: #fff;
  background: linear-gradient(135deg, #8e6a5a, #9b6a46);
  box-shadow: 0 14px 30px rgba(122,78,45,.35);
  margin-top: 2px;
}

.apf-mstep-line{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.apf-mstep-body h3{
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.2;
  color: #151515;
  font-weight: 950;
}

.apf-mstep-arrow{
  color: #ff6b29;
  font-weight: 900;
  opacity: .9;
  transition: transform .18s ease, opacity .18s ease;
}

.apf-mstep-body p{
  margin: 0;
  color: rgba(20,20,20,.70);
  font-weight: 600;
  line-height: 1.55;
  font-size: 15px;
}

/* hover micro dynamique */
.apf-mstep:hover .apf-mstep-arrow{
  transform: translateX(3px);
  opacity: 1;
}

/* right image */
.apf-method3-visual{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 22px 55px rgba(0,0,0,.08);
  background: rgba(255,255,255,.55);
  min-height: 420px;
}

.apf-method3-img{
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      340px 260px at 40% 25%,
      rgba(255,255,255,.55),
      transparent 70%
    ),
    url("assets/patrimoine.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(.95) contrast(1.02);
}


/* responsive */
@media (max-width: 980px){
  .apf-method3-grid{
    grid-template-columns: 1fr;
  }
  .apf-method3-visual{
    order: -1; /* image en haut sur mobile */
    min-height: 320px;
  }
}

@media (max-width: 520px){
  .apf-mstep{
    grid-template-columns: 52px 1fr;
    padding: 16px;
  }
  .apf-mstep-num{
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
  .apf-method3-one{ font-size: 17px; }
}



/* =========================
   SECTION CABINET — STYLE “COMME CAPTURE”
========================= */

.apf-cabinet{
  padding: 80px 0;
 
}

.apf-cabinet-inner{
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* top layout */
.apf-cabinet-top{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: start;
}

/* title */
.apf-cabinet-title{
  margin: 0 0 18px;
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #151515;
}

.apf-cabinet-title span{
  color: #ff6b29;
  font-style: italic;
  font-weight: 900;
}

/* paragraphs */
.apf-cabinet-desc,
.apf-cabinet-desc2{
  margin: 0 0 14px;
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(20,20,20,.72);
  font-weight: 650;
  max-width: 52ch;
}

/* image card */
.apf-cabinet-imageWrap{
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 24px 60px rgba(0,0,0,.10);
  background: rgba(255,255,255,.55);
  min-height: 360px;
}

.apf-cabinet-image{
  width: 100%;
  height: 100%;
  background:
    radial-gradient(340px 260px at 40% 25%, rgba(255,255,255,.55), transparent 70%),
    url("assets/pourquoi.png");
  background-size: cover;
  background-position: center;
  filter: saturate(.95) contrast(1.02);
}

/* bottom features */
.apf-cabinet-bottom{
  margin-top: 26px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 46px rgba(0,0,0,.06);

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.apf-cabinet-feature{
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.06);
}

/* icons */
.apf-cabinet-ico{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(122,78,45,.10);
  border: 1px solid rgba(122,78,45,.14);
}

.apf-cabinet-ico i{
  font-size: 18px;
  color: #ff6b29;
}

.apf-cabinet-feature h3{
  margin: 2px 0 6px;
  font-size: 17px;
  line-height: 1.2;
  color: #151515;
  font-weight: 950;
}

.apf-cabinet-feature p{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(20,20,20,.70);
  font-weight: 600;
}

/* responsive */
@media (max-width: 980px){
  .apf-cabinet-top{
    grid-template-columns: 1fr;
  }
  .apf-cabinet-imageWrap{
    min-height: 280px;
    order: -1; /* image au-dessus sur mobile/tablette */
  }
  .apf-cabinet-desc,
  .apf-cabinet-desc2{
    max-width: 100%;
  }
  .apf-cabinet-bottom{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px){
  .apf-cabinet-bottom{
    padding: 16px;
  }
  .apf-cabinet-feature{
    grid-template-columns: 44px 1fr;
    padding: 14px;
  }
  .apf-cabinet-ico{
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }
}

/* =========================
   KPI BAND — KAKI PREMIUM (épuré, sérieux)
========================= */

.apf-kpi2{
  width: min(1200px, 92%);
  margin: 34px auto;
}

.apf-kpi2-wrap{
  border-radius: 28px;
  padding: 34px 30px;
  background: #ff6b29; /* kaki premium */
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.18);

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.apf-kpi2-item{
  text-align: left;
  padding: 10px 12px;
}

/* icône propre (en haut, alignée) */
.apf-kpi2-top{
  height: 44px;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.apf-kpi2-ico{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;

  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
}

.apf-kpi2-ico i{
  color: rgba(255,255,255,.92);
  font-size: 16px;
}

.apf-kpi2-num{
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: rgba(255,255,255,.96);
  margin-bottom: 10px;
}

.apf-kpi2-text{
  font-size: 15.5px;
  line-height: 1.5;
  font-weight: 650;
  color: rgba(255,255,255,.92);
  max-width: 28ch;
}

/* tablette */
@media (max-width: 980px){
  .apf-kpi2-wrap{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 28px 22px;
  }
  .apf-kpi2-text{ max-width: 100%; }
}

/* mobile */
@media (max-width: 520px){
  .apf-kpi2-wrap{
    grid-template-columns: 1fr;
    padding: 22px 18px;
    gap: 12px;
  }
  .apf-kpi2-item{
    padding: 10px 8px;
  }
}




.avis-section {
  padding: 0px 0;
  background: #faf8f5;
}

.avis-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* TEXTE */
.avis-text {
  max-width: 520px;
  margin-bottom: 50px;
}



.avis-text h2 span {
  color: #ff7a2f;
  font-style: italic;
}

.avis-text p {
  font-size: 16px;
  color: #555;
}

/* CONTENU IMAGE + AVIS */
.avis-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE */
.avis-image img {
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
}

/* AVIS */
.avis-card {
  background: #f1ece4;
  border-radius: 26px;
  padding: 55px;
  max-width: 1000px;
}

.stars {
  color: #ffb400;
  font-size: 18px;
  margin-bottom: 14px;
}

.avis-quote {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.avis-author {
  margin-top: 22px;
}

.avis-author span {
  display: block;
  font-size: 14px;
  color: #777;
}

/* NAV */
.avis-nav {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.avis-nav button {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 18px;
  cursor: pointer;
}

.avis-nav button:hover {
  background: #ff7a2f;
  color: #fff;
  border-color: #ff7a2f;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .avis-content {
    grid-template-columns: 1fr;
  }

  .avis-card {
    max-width: 100%;
  }
}

.contact-final {
  background: #f9f7f4;
  padding: 80px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-left,
.contact-right {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-left h2,
.contact-right h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-left p,
.contact-right p {
  color: #666;
  margin-bottom: 20px;
}

/* Calendly */
.calendly-wrapper iframe {
  width: 100%;
  height: 650px;
  border-radius: 12px;
}

/* Formulaire */
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.contact-form label {
  font-size: 14px;
  margin-bottom: 5px;
  color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #c07a4a;
}

.btn-submit {
  margin-top: 15px;
  padding: 14px;
  border-radius: 50px;
  border: none;
  background: #ff6b29;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.btn-submit:hover {
  background: #a8643d;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .calendly-wrapper iframe {
    height: 600px;
  }
}

.site-footer {
  background: #f4f1ed;
  padding: 60px 20px 30px;
  color: #333;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-col a {
  color: #555;
  text-decoration: none;
}

.footer-col a:hover {
  color: #c07a4a;
}

/* CTA */
.footer-cta {
  display: flex;
  flex-direction: column;   /* ⬅️ clé du problème */
  align-items: center;
  gap: 12px;                /* espace bouton / ORIAS */
}

.footer-btn {
  background: #c6864a;
  color: #1f1f1f;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.orias-logo {
  max-width: 206px;
  height: auto;
}
@media (max-width: 768px) {
  .footer-cta {
    text-align: center;
  }
}


.footer-btn:hover {
  background: #a8643d;
}

/* BOTTOM */
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-cta {
    justify-content: center;
  }
}
.footer {
  background: #e3dcce;
  padding: 60px 40px 30px;
  font-size: 15px;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.footer-logo img {
  max-width: 260px;
}

.footer h4 {
  font-size: 16px;
  margin-bottom: 15px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer a {
  text-decoration: none;
  color: #333;
}

.footer-btn {
  display: inline-block;
  background: #ff6b29;
  color: #fff;
  padding: 14px 22px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

.orias-logo {
  max-width: 206px;
  display: block;
  margin-top: 8px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #777;
}

/* 🔥 MOBILE */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo img {
    margin: auto;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
.apf-kpi2-num{
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: #ffffff; /* doré chic */
  letter-spacing: .04em;
}

/* === TYPO TITRES : style "éditorial" comme ta capture === */
h1, h2, h3, h4, h5,
.hero-title,
.solutions-title,
.apf-method3-title,
.apf-cabinet-title,
.avis-text h2,
.contact-left h2,
.contact-right h2{
  font-family: "Fraunces", serif !important;
  font-style: normal;
  letter-spacing: -0.03em;
  color: #151515;
}

/* Accent en italique orange (propre et uniforme) */
h1 span, h2 span, h3 span,
.accent,
.solutions-title span,
.apf-method3-title span,
.apf-cabinet-title span,
.avis-text h2 span{
  font-family: "Fraunces", serif !important;
  font-style: italic !important;
  font-weight: inherit;
  color: var(--orange);
}

/* ===== AJOUTS CONTACT (Hero + Form + Footer) — cohérent avec ton thème ===== */

/* Hero phone */
.hero-phone{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  font-weight: 850;
  color: rgba(20,20,20,.82);
  box-shadow: 0 18px 46px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.hero-phone i{
  color: var(--orange);
}
.hero-phone:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(0,0,0,.10);
}

/* Bloc sous formulaire */
.contact-direct{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.08);
  display: grid;
  gap: 10px;
}
.contact-direct-title{
  font-weight: 850;
  color: rgba(20,20,20,.78);
}
.contact-direct-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  font-weight: 750;
  color: rgba(20,20,20,.78);
}
.contact-direct-item i{
  color: var(--orange);
}
.contact-direct-item:hover{
  border-color: rgba(255,106,42,.35);
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}

/* Responsive */
@media (max-width: 900px){
  .hero-phone{
    width: 100%;
    justify-content: center;
  }
  .contact-direct{
    text-align: center;
  }
  .contact-direct-item{
    justify-content: center;
  }
}

/* ===== DESKTOP ONLY : descendre avis + téléphone dans le hero ===== */
@media (min-width: 1024px) {
  .hero-left .review-card {
    margin-top: 96px; /* descend le bloc avis */
  }

  .hero-left .hero-bottom {
    margin-top: 24px; /* descend le numéro */
  }
}
