:root { --header-color: var(--light); }
html { background: var(--dark); }
body { background: var(--dark); min-height: 100vh; }

/* Logo fixe masqué sur cette page (chevauche le titre au scroll) */
.header-logo { display: none; }

/* ============================================================
   PAGE
   ============================================================ */
.consult-page {
  min-height: 100vh;
  padding: 100px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  align-items: start;
  box-sizing: border-box;
}

/* ============================================================
   COL GAUCHE
   ============================================================ */
.col-left {
  display: flex; flex-direction: column; gap: 32px;
}

/* En-tête */
.col-left-head { }
.col-left-label {
  font-family: var(--font); font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0;
  color: var(--teal); margin-bottom: 12px;
}
.col-left-title {
  font-family: var(--font-logo);
  font-size: clamp(36px, 3.2vw, 54px);
  font-weight: 900; letter-spacing: -2.5px; line-height: .9;
  -webkit-text-stroke: 0.4px currentColor;
  color: var(--light); margin-bottom: 16px;
  text-transform: none;
}
.col-left-title em { color: var(--orange); font-style: normal; }
.col-left-desc {
  font-family: var(--font); font-size: 15px; font-weight: 400;
  line-height: 1.7; color: rgba(245,242,239,.6);
  max-width: 480px;
}
.col-left-price {
  margin-top: 18px;
}
.col-left-price-val {
  font-family: var(--font-logo);
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 900; letter-spacing: -1px; line-height: 1;
  color: var(--light);
}
.col-left-price-sub {
  font-family: var(--font); font-size: 12px; font-weight: 400;
  color: rgba(245,242,239,.4); margin-top: 4px;
}

/* Stats */
.stat-row {
  display: flex; flex-direction: row; gap: 10px;
}
.stat-card {
  flex: 1;
  background: rgba(245,242,239,.05);
  border: 1.5px solid rgba(245,242,239,.1);
  border-radius: 16px;
  padding: 18px 16px;
  display: flex; flex-direction: column; gap: 6px;
  transition: background .25s, border-color .25s;
}
.stat-card:hover { background: rgba(245,242,239,.08); border-color: rgba(245,242,239,.2); }
.stat-val {
  font-family: var(--font-logo);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 900; letter-spacing: -2px; line-height: 1;
  color: var(--orange);
}
.stat-lbl {
  font-family: var(--font); font-size: 12px; font-weight: 600;
  line-height: 1.4; color: rgba(245,242,239,.65);
}

/* Comment ça marche */
.how-section { }
.how-title {
  font-family: var(--font); font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0;
  color: rgba(245,242,239,.35); margin-bottom: 20px;
}
.how-steps {
  display: flex; flex-direction: column; gap: 0;
  border: 1.5px solid rgba(245,242,239,.08);
  border-radius: 16px; overflow: hidden;
}
.how-step {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 22px;
  border-bottom: 1.5px solid rgba(245,242,239,.06);
  transition: background .2s;
}
.how-step:last-child { border-bottom: none; }
.how-step:hover { background: rgba(245,242,239,.04); }
.how-num {
  font-family: var(--font-logo);
  font-size: 22px; font-weight: 900; letter-spacing: -1px;
  color: var(--orange); flex-shrink: 0; line-height: 1;
  min-width: 24px; padding-top: 1px;
}
.how-text {
  font-family: var(--font); font-size: 14px; font-weight: 400;
  line-height: 1.6; color: rgba(245,242,239,.6);
}

/* ============================================================
   COL CENTRE — PHOTO
   ============================================================ */
.col-photo {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  position: sticky;
  top: 100px;
  height: calc(100vh - 160px);
}
.col-photo-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
  display: block;
  transform: scale(1.06);
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.col-photo:hover .col-photo-img { transform: scale(1); }
.col-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(29,29,29,.96) 0%,
    rgba(29,29,29,.6) 40%,
    rgba(29,29,29,.1) 65%,
    transparent 78%
  );
}
.col-photo-testi {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px; z-index: 2;
}
.col-photo-testi-mark {
  font-family: var(--font-logo);
  font-size: 48px; font-weight: 900; line-height: .6;
  color: var(--orange); display: block; margin-bottom: 14px;
}
.col-photo-testi-quote {
  font-family: var(--font); font-size: 15px; font-weight: 400;
  line-height: 1.7; font-style: italic;
  color: rgba(245,242,239,.88); margin-bottom: 20px;
}
.col-photo-testi-author {
  display: flex; align-items: center; gap: 12px;
}
.col-photo-testi-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; object-position: center top; flex-shrink: 0;
  border: 2px solid rgba(245,242,239,.35);
}
.col-photo-testi-name {
  font-family: var(--font); font-size: 14px; font-weight: 800;
  color: var(--light); margin-bottom: 3px;
}
.col-photo-testi-stars { color: var(--orange); font-size: 11px; letter-spacing: 2px; }

/* ============================================================
   COL DROITE — CALENDLY
   ============================================================ */
.col-right {
  position: sticky;
  top: 100px;
  height: calc(100vh - 160px);
  display: flex; flex-direction: column;
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
}
.col-right-head {
  padding: 22px 26px 0; flex-shrink: 0;
}
.col-right-label {
  font-family: var(--font); font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0;
  color: rgba(29,29,29,.3);
}
.calendly-wrap {
  flex: 1; min-height: 0; padding: 10px;
}
.calendly-inline-widget {
  width: 100% !important; height: 100% !important; min-width: 0 !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .consult-page {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    gap: 20px;
  }

  .col-left { gap: 24px; }

  /* Stats : retour en colonne, valeur + label côte à côte */
  .stat-row { flex-direction: column; }
  .stat-card { flex-direction: row; align-items: center; gap: 16px; padding: 16px 20px; }
  .stat-val { font-size: 32px; min-width: 80px; }

  /* Photo : position relative pour garder le contexte d'abs positioning */
  .col-photo {
    position: relative;
    height: 72vw;
    max-height: 440px;
    top: auto;
  }

  /* Calendly */
  .col-right {
    position: relative;
    top: auto;
    height: 680px;
  }
}

/* ---- Animations d'entrée ---- */
@media (prefers-reduced-motion: no-preference) {
  .col-left  { animation: fadeUp .65s cubic-bezier(.22,1,.36,1) both; }
  .col-photo { animation: fadeUp .65s .10s cubic-bezier(.22,1,.36,1) both; }
  .col-right { animation: fadeUp .65s .20s cubic-bezier(.22,1,.36,1) both; }
}
