/**
 * @file pages/index.css
 * @project Nails-Manucure-v1
 * @description Styles spécifiques à la page index.html.
 * @version 1.0.0
 * @standards CSS Living Standard, WCAG 2.2
 * @updated 2026-04-26
 */

/* ═══════════════════════════════════════
   E-E-A-T : PRATICIENNE
═══════════════════════════════════════ */

.eeat-section {
  background: var(--plum);
  position: relative;
  overflow: hidden;
}

.eeat-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 134, 154, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.eeat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 1024px) {
  .eeat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
}

.eeat-visual {
  position: relative;
}

.eeat-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--plum-mid) 0%, var(--rose-deep) 50%, var(--champagne) 100%);
  border-radius: var(--r-xl) var(--r-xl) 60% 60% / var(--r-xl) var(--r-xl) 50% 50%;
  position: relative;
  overflow: hidden;
}

.eeat-portrait__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.96;
  mix-blend-mode: screen;
}

.eeat-stats {
  display: none;
}

@media (min-width: 1200px) {
  .eeat-stats {
    position: absolute;
    right: -32px;
    top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}

.estat {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 16px 20px;
  box-shadow: var(--sh-md);
  text-align: center;
  min-width: 100px;
}

.estat-val {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--plum);
  line-height: 1;
}

.estat-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 4px;
}

.eeat-content {
  padding-top: 20px;
}

.eeat-content .label {
  color: var(--rose-light);
}

.eeat-content .label::before {
  background: var(--rose-light);
}

.eeat-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(250, 247, 244, 0.7);
  margin-top: 20px;
  font-weight: 300;
}

.eeat-intro strong {
  color: var(--ivory);
  font-weight: 600;
}

.creds {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}

@media (min-width: 480px) {
  .creds {
    grid-template-columns: 1fr 1fr;
    margin-top: 32px;
  }
}

.cred {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: background 0.3s, border-color 0.3s;
}

.cred:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(196, 134, 154, 0.3);
}

.cred-icon {
  width: 32px;
  height: 32px;
  background: rgba(196, 134, 154, 0.15);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.cred-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 3px;
}

.cred-detail {
  font-size: 0.68rem;
  color: rgba(250, 247, 244, 0.45);
  line-height: 1.5;
}

.eeat-brands {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.brand-pill {
  padding: 7px 16px;
  border: 1px solid rgba(196, 134, 154, 0.25);
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(250, 247, 244, 0.6);
  transition: border-color 0.3s, color 0.3s;
}

.brand-pill:hover {
  border-color: var(--rose);
  color: var(--rose-light);
}

.trust-legal {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.tl {
  font-size: 0.68rem;
  color: rgba(250, 247, 244, 0.35);
  display: flex;
  align-items: center;
  gap: 5px;
}

.tl span {
  color: rgba(250, 247, 244, 0.55);
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */

.services-section {
  background: var(--ivory);
}

.services-header {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 56px;
  }
}

.services-intro {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mute);
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.svc {
  background: var(--white);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform 0.4s var(--ease-q), box-shadow 0.4s;
  position: relative;
}

.svc:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}

.svc-accent {
  width: 6px;
  background: var(--rose);
  flex-shrink: 0;
  transition: background 0.35s;
}

.svc:hover .svc-accent {
  background: var(--berry);
}

.svc-body {
  padding: 32px 28px;
}

.svc-num {
  font-family: var(--f-display);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-xmute);
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.svc-name {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 8px;
}

.svc-desc {
  font-size: 0.85rem;
  color: var(--text-mute);
  line-height: 1.75;
  margin-bottom: 16px;
}

.svc-tech {
  font-size: 0.75rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 18px;
  padding: 12px 14px;
  background: var(--ivory-mid);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--rose);
}

.svc-tech strong {
  color: var(--plum);
}

.svc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.svc-duration {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

.svc-price {
  font-family: var(--f-display);
  font-size: 1.25rem;
  color: var(--plum);
  font-weight: 500;
}

.svc-price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-mute);
  font-family: var(--f-body);
}

.svc-wide {
  grid-column: 1 / -1;
}

.svc-wide .svc-accent {
  height: 6px;
  width: 100%;
}

.svc-wide {
  display: block;
}

.svc-wide .svc-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .svc-wide .svc-body {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

/* ═══════════════════════════════════════
   OFFRES
═══════════════════════════════════════ */

.offers-section {
  background: var(--ivory-mid);
}

.offers-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.offers-sub {
  font-size: 0.95rem;
  color: var(--text-mute);
  line-height: 1.8;
  margin-top: 16px;
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .offers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.offer-card {
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-q), box-shadow 0.4s;
}

.offer-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: var(--sh-lg);
}

.oc-ivory { background: var(--white); }
.oc-plum { background: var(--plum); }
.oc-rose { background: linear-gradient(135deg, var(--rose-pale) 0%, var(--champagne-p) 100%); }
.oc-berry { background: var(--berry); }

.offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 18px;
}

.tag-new { background: var(--berry-glow); color: var(--berry); }
.tag-pop { background: rgba(196, 134, 154, 0.2); color: var(--rose-deep); }
.tag-excl { background: rgba(212, 165, 116, 0.2); color: #8B6040; }
.tag-plum { background: rgba(255, 255, 255, 0.1); color: rgba(250, 247, 244, 0.8); }

.offer-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.offer-name {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.oc-plum .offer-name,
.oc-berry .offer-name {
  color: var(--ivory);
}

.offer-desc {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text-mute);
}

.oc-plum .offer-desc,
.oc-berry .offer-desc {
  color: rgba(250, 247, 244, 0.6);
}

.offer-price {
  margin-top: 20px;
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--plum);
  font-weight: 500;
}

.oc-plum .offer-price,
.oc-berry .offer-price {
  color: var(--champagne-l);
}

.offer-price small {
  font-size: 0.75rem;
  font-family: var(--f-body);
  color: var(--text-mute);
}

.oc-plum .offer-price small,
.oc-berry .offer-price small {
  color: rgba(250, 247, 244, 0.45);
}

.offer-perks {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 18px;
}

.operk {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.oc-plum .operk,
.oc-berry .operk {
  color: rgba(250, 247, 244, 0.65);
}

.operk::before {
  content: '✓';
  color: var(--berry);
  font-weight: 700;
  flex-shrink: 0;
}

.oc-plum .operk::before,
.oc-berry .operk::before {
  color: var(--rose-light);
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: gap 0.3s;
}

.offer-cta:hover {
  gap: 12px;
}

/* CLUB NAILS   carte large */
.club-card {
  grid-column: 1 / -1;
  background: linear-gradient(110deg, var(--plum) 0%, #4A2840 50%, var(--berry-dark) 100%);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .club-card {
    padding: 36px 32px;
  }
}

@media (min-width: 1024px) {
  .club-card {
    padding: 48px 48px;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
  }
}

.club-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 134, 154, 0.2), transparent 65%);
  pointer-events: none;
}

.club-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 10px;
}

.club-title {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.15;
}

.club-title em {
  font-style: italic;
  color: var(--rose-light);
}

.club-desc {
  font-size: 0.9rem;
  color: rgba(250, 247, 244, 0.6);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 520px;
}

.club-features {
  display: flex;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cf {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(250, 247, 244, 0.75);
}

.cf::before {
  content: '◆';
  color: var(--champagne);
  font-size: 8px;
}

.club-plans {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.cplan {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  padding: 16px 20px;
  transition: background 0.3s, border-color 0.3s;
}

.cplan:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(196, 134, 154, 0.4);
}

.cplan.best {
  background: rgba(212, 165, 116, 0.15);
  border-color: rgba(212, 165, 116, 0.3);
}

.cplan-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 247, 244, 0.6);
}

.cplan.best .cplan-name {
  color: var(--champagne);
}

.cplan-price {
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--ivory);
}

.cplan-price .cplan-unit {
  font-size: 0.8rem;
  color: rgba(250, 247, 244, 0.4);
}

.cplan-detail {
  font-size: 0.68rem;
  color: rgba(250, 247, 244, 0.4);
  margin-top: 2px;
}

/* ═══════════════════════════════════════
   PROCESSUS
═══════════════════════════════════════ */

.process-section { background: var(--ivory); }
.process-grid { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 40px; 
  margin-top: 40px; 
}

@media (min-width: 1024px) {
  .process-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 80px; 
    align-items: start; 
    margin-top: 60px; 
  }
}
.process-step { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--ivory-dark); position: relative; }
.process-step:last-child { border-bottom: none; }
.ps-num { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--ivory-dark); display: flex; align-items: center; justify-content: center; font-family: var(--f-display); font-size: 1.1rem; color: var(--rose); font-weight: 500; transition: all 0.35s var(--ease-q); }
.process-step:hover .ps-num { background: var(--berry); border-color: var(--berry); color: var(--white); transform: scale(1.1); }
.ps-name { font-family: var(--f-display); font-size: 1.15rem; font-weight: 500; color: var(--plum); margin-bottom: 6px; }
.ps-desc { font-size: 0.83rem; color: var(--text-mute); line-height: 1.75; }
.process-aside { display: flex; flex-direction: column; gap: 20px; }
.pa-card { background: var(--white); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--sh-sm); border: 1px solid var(--ivory-mid); }
.pa-card .pa-icon { font-size: 28px; margin-bottom: 12px; }
.pa-card .pa-title { font-family: var(--f-display); font-size: 1.1rem; font-weight: 500; color: var(--plum); margin-bottom: 8px; }
.pa-card .pa-text { font-size: 0.82rem; color: var(--text-mute); line-height: 1.75; }
.pa-card .pa-highlight { font-size: 0.78rem; font-weight: 600; color: var(--berry); margin-top: 10px; display: flex; align-items: center; gap: 6px; }

/* ═══════════════════════════════════════
   COMPARATIF
═══════════════════════════════════════ */

.compare-section { background: var(--plum); }
.compare-section { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table { 
  width: 100%; 
  min-width: 700px;
  border-collapse: collapse; 
  margin-top: 40px; 
  border-radius: var(--r-lg); 
  overflow: hidden; 
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .compare-table {
    margin-top: 56px;
    font-size: 0.83rem;
  }
}
.compare-table th, .compare-table td { padding: 18px 24px; text-align: left; font-size: 0.83rem; }
.compare-table thead tr { background: rgba(255, 255, 255, 0.06); }
.compare-table thead th { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250, 247, 244, 0.5); font-weight: 600; }
.compare-table thead th:first-child { color: rgba(250, 247, 244, 0.3); }
.compare-table thead th.highlight { color: var(--champagne); }
.compare-table tbody tr { border-top: 1px solid rgba(255, 255, 255, 0.06); transition: background 0.2s; }
.compare-table tbody tr:hover { background: rgba(255, 255, 255, 0.03); }
.compare-table td { color: rgba(250, 247, 244, 0.65); }
.compare-table td:first-child { color: rgba(250, 247, 244, 0.4); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; }
.check-y { color: #7BC67A; font-size: 1rem; }
.check-n { color: rgba(250, 247, 244, 0.2); font-size: 1rem; }
.check-p { color: var(--champagne); font-size: 0.78rem; font-weight: 600; }
.col-highlight { background: rgba(139, 58, 82, 0.2); }
.col-h-head { background: rgba(139, 58, 82, 0.35) !important; color: var(--champagne) !important; }

/* ═══════════════════════════════════════
   ZONES
═══════════════════════════════════════ */

.zones-section { background: var(--ivory-mid); }
.zones-layout { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 40px; 
}

@media (min-width: 1024px) {
  .zones-layout { 
    grid-template-columns: 1fr 1fr; 
    gap: 80px; 
    align-items: center; 
  }
}
.zones-desc { font-size: 0.9rem; line-height: 1.85; color: var(--text-mute); margin-top: 20px; }
.zones-desc strong { color: var(--plum); }


/* Salon infos (remplace zone-grid pour salon) */
.salon-infos { display: grid; gap: 16px; margin-top: 28px; }
@media (min-width: 640px) { .salon-infos { grid-template-columns: 1fr 1fr; } }
.salon-info-item { display: flex; align-items: center; gap: 12px; background: var(--white); border-radius: var(--r-md); padding: 14px 18px; border: 1px solid var(--ivory-dark); }
.salon-info-item .si-icon { width: 36px; height: 36px; background: var(--rose-pale); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.salon-info-item .si-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute); }
.salon-info-item .si-value { font-size: 0.82rem; font-weight: 500; color: var(--plum); }

.zones-map-wrap { background: var(--white); border-radius: var(--r-xl); aspect-ratio: 1; overflow: hidden; box-shadow: var(--sh-md); display: flex; align-items: center; justify-content: center; }

/* ═══════════════════════════════════════
   TARIFS
═══════════════════════════════════════ */

.pricing-section { background: var(--ivory); }
.pricing-header { text-align: center; max-width: 560px; margin: 0 auto 60px; }
.pricing-note { font-size: 0.82rem; color: var(--text-mute); margin-top: 12px; line-height: 1.7; }
.pricing-grid { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 20px; 
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }
}

.pcard.featured {
  transform: none;
}

@media (min-width: 1024px) {
  .pcard.featured {
    transform: scale(1.025);
  }
  .pcard.featured:hover {
    transform: scale(1.025) translateY(-6px);
  }
}
.pcard { background: var(--white); border-radius: var(--r-lg); padding: 36px 28px; position: relative; box-shadow: var(--sh-sm); border: 1px solid var(--ivory-mid); transition: transform 0.4s var(--ease-q), box-shadow 0.4s; display: flex; flex-direction: column; }
.pcard:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.pcard.featured { background: var(--plum); border-color: transparent; transform: scale(1.025); }
.pcard.featured:hover { transform: scale(1.025) translateY(-6px); }
.pcb { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); }
.pcbadge { background: var(--berry); color: var(--white); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 14px; border-radius: var(--r-full); white-space: nowrap; }
.ptier { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: 10px; }
.pcard.featured .ptier { color: var(--rose-light); }
.pname { font-family: var(--f-display); font-size: 1.5rem; font-weight: 500; color: var(--plum); margin-bottom: 6px; }
.pcard.featured .pname { color: var(--ivory); }
.pdesc { font-size: 0.78rem; color: var(--text-mute); line-height: 1.65; margin-bottom: 24px; flex-grow: 0; }
.pcard.featured .pdesc { color: rgba(250, 247, 244, 0.5); }
.pprice { display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px; }
.pprice .from { font-size: 0.72rem; color: var(--text-mute); }
.pcard.featured .pprice .from { color: rgba(250, 247, 244, 0.45); }
.pprice .val { font-family: var(--f-display); font-size: 2.8rem; color: var(--plum); line-height: 1; }
.pcard.featured .pprice .val { color: var(--champagne); }
.pprice .unit { font-size: 0.78rem; color: var(--text-mute); }
.pcard.featured .pprice .unit { color: rgba(250, 247, 244, 0.4); }
.pfeatures { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex-grow: 1; }
.pf { display: flex; align-items: flex-start; gap: 10px; font-size: 0.8rem; color: var(--text-soft); line-height: 1.5; }
.pcard.featured .pf { color: rgba(250, 247, 244, 0.65); }
.pf-check { width: 18px; height: 18px; border-radius: 50%; background: var(--rose-pale); color: var(--berry); display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; margin-top: 1px; }
.pcard.featured .pf-check { background: rgba(196, 134, 154, 0.2); color: var(--rose-light); }
.pbtn { width: 100%; padding: 14px; border-radius: var(--r-full); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-align: center; transition: all 0.3s var(--ease-e); }
.pbtn-outline { border: 1.5px solid var(--ivory-dark); color: var(--plum); }
.pbtn-outline:hover { border-color: var(--berry); color: var(--berry); }
.pbtn-berry { background: var(--berry); color: var(--white); }
.pbtn-berry:hover { background: var(--berry-dark); transform: scale(1.02); box-shadow: var(--sh-berry); }
.pbtn : sm { padding: 12px 28px; font-size: 0.78rem; }
.pricing-addons { margin-top: 36px; background: var(--ivory-mid); border-radius: var(--r-lg); padding: 28px 32px; }
.pa-title2 { font-family: var(--f-display); font-size: 1.15rem; font-weight: 500; margin-bottom: 18px; }
.addons-row { display: flex; gap: 12px; flex-wrap: wrap; }
.addon { background: var(--white); border: 1px solid var(--ivory-dark); border-radius: var(--r-md); padding: 12px 18px; font-size: 0.78rem; font-weight: 500; display: flex; align-items: center; gap: 8px; transition: all 0.25s; }
.addon:hover { border-color: var(--rose); color: var(--berry); }
.addon-price { color: var(--rose-deep); font-weight: 700; }

/* ═══════════════════════════════════════
   TÉMOIGNAGES
═══════════════════════════════════════ */

.testi-section { background: var(--ivory-mid); overflow: hidden; }
.testi-header { 
  display: flex; 
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px; 
}

@media (min-width: 640px) {
  .testi-header {
    flex-direction: row;
    justify-content: space-between; 
    align-items: flex-end; 
    margin-bottom: 48px;
  }
}
.testi-rating-summary { text-align: right; }
.trs-stars { font-size: 20px; color: var(--champagne); letter-spacing: 2px; }
.trs-score { font-family: var(--f-display); font-size: 2.5rem; color: var(--plum); line-height: 1; }
.trs-count { font-size: 0.75rem; color: var(--text-mute); margin-top: 4px; }
.testi-track-wrap { overflow: hidden; }
.testi-track { display: flex; gap: 20px; transition: transform 0.65s var(--ease-q); }
.tc { 
  background: var(--white); 
  border-radius: var(--r-lg); 
  padding: 24px; 
  width: 100%;
  max-width: 100%;
  min-width: 260px; 
  flex: 0 0 85%;
  box-shadow: var(--sh-sm); 
  border: 1px solid var(--ivory-mid); 
  position: relative; 
}

@media (min-width: 480px) {
  .tc {
    flex: 0 0 80%;
    min-width: 280px;
  }
}

@media (min-width: 640px) {
  .tc {
    padding: 32px;
    flex: 0 0 360px;
    min-width: 360px;
  }
}
.tc::before { content: '\201C'; position: absolute; top: 18px; right: 24px; font-family: var(--f-display); font-size: 5rem; color: var(--ivory-dark); line-height: 1; }
.tc-stars { display: flex; gap: 2px; color: var(--champagne); margin-bottom: 14px; }
.tc-text { font-family: var(--f-display); font-size: 1.05rem; font-weight: 400; font-style: italic; line-height: 1.65; color: var(--plum); margin-bottom: 20px; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--rose-pale); color: var(--berry); font-family: var(--f-display); font-size: 1.1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tc-name { font-size: 0.82rem; font-weight: 600; color: var(--plum); }
.tc-meta { font-size: 0.7rem; color: var(--text-mute); }
.tc-service { display: inline-flex; align-items: center; gap: 5px; margin-top: 8px; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--berry); background: var(--rose-pale); padding: 3px 10px; border-radius: var(--r-full); }
.testi-nav { display: flex; gap: 10px; }
.tnav { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--ivory-dark); display: flex; align-items: center; justify-content: center; color: var(--plum); font-size: 15px; transition: all 0.3s var(--ease-e); }
.tnav:hover { background: var(--berry); border-color: var(--berry); color: var(--white); transform: scale(1.1); }

/* ═══════════════════════════════════════
   BLOG TEASER
═══════════════════════════════════════ */

.blog-section { background: var(--ivory); }
.blog-grid { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 20px; 
  margin-top: 40px; 
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 52px;
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); transition: transform 0.4s var(--ease-q), box-shadow 0.4s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.blog-card__img { height: 180px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.blog-card__img : 1 { background: linear-gradient(135deg, var(--rose-pale), var(--champagne-p)); }
.blog-card__img : 2 { background: linear-gradient(135deg, var(--champagne-p), var(--ivory-dark)); }
.blog-card__img : 3 { background: linear-gradient(135deg, var(--plum-mid), var(--berry-dark)); }
.blog-card__img-icon { font-size: 56px; opacity: 0.7; }
.blog-card__category { position: absolute; top: 14px; left: 14px; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--r-full); background: var(--white); color: var(--berry); }
.blog-card__body { padding: 24px 22px; }
.blog-card__title { font-family: var(--f-display); font-size: 1.05rem; font-weight: 500; color: var(--plum); margin-bottom: 8px; line-height: 1.35; }
.blog-card__excerpt { font-size: 0.78rem; color: var(--text-mute); line-height: 1.7; margin-bottom: 16px; }
.blog-card__meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.68rem; color: var(--text-xmute); }
.blog-card__link { font-size: 0.72rem; font-weight: 600; color: var(--berry); display: flex; align-items: center; gap: 5px; transition: gap 0.25s; }
.blog-card__link:hover { gap: 10px; }

.blog-all-link { font-size: 0.8rem; font-weight: 600; color: var(--berry); display: flex; align-items: center; gap: 6px; transition: gap 0.25s; }
.blog-all-link:hover { gap: 10px; }

/* ═══════════════════════════════════════
   STATS
═══════════════════════════════════════ */

.stats-band { 
  background: var(--white); 
  padding: 40px 16px; 
  border-top: 1px solid var(--ivory-mid); 
  border-bottom: 1px solid var(--ivory-mid); 
}

@media (min-width: 768px) {
  .stats-band {
    padding: 50px 28px;
  }
}

@media (min-width: 1024px) {
  .stats-band {
    padding: 60px 64px;
  }
}

.stats-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 16px; 
  text-align: center; 
  max-width: 1320px; 
  margin: 0 auto; 
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.sg:nth-child(2n)::after { display: none; }

@media (min-width: 640px) {
  .sg:nth-child(2n)::after { display: block; }
  .sg:nth-child(3n)::after { display: none; }
}

@media (min-width: 1024px) {
  .sg:nth-child(3n)::after { display: block; }
  .sg:last-child::after { display: none; }
}
.sg { padding: 20px 0; position: relative; }
.sg::after { content: ''; position: absolute; right: 0; top: 25%; height: 50%; width: 1px; background: var(--ivory-dark); }
.sg:last-child::after { display: none; }
.sg-val { font-family: var(--f-display); font-size: 3.2rem; color: var(--plum); font-weight: 400; line-height: 1; display: block; }
.sg-s { color: var(--berry); }
.sg-label { font-size: 0.72rem; color: var(--text-mute); margin-top: 8px; letter-spacing: 0.05em; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */

.faq-section { background: var(--ivory-mid); }
.faq-layout { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 40px; 
}

@media (min-width: 1024px) {
  .faq-layout { 
    grid-template-columns: 2fr 3fr; 
    gap: 80px; 
  }
}

.faq-side { 
  position: static; 
}

@media (min-width: 1024px) {
  .faq-side {
    position: sticky;
    top: 100px;
  }
}
.faq-side .heading { font-size: 2.8rem; }
.faq-side p { font-size: 0.88rem; color: var(--text-mute); line-height: 1.8; margin-top: 16px; }
.faq-seo-note { font-size: 0.78rem; color: var(--text-xmute); line-height: 1.7; margin-top: 24px; font-style: italic; border-left: 3px solid var(--ivory-dark); padding-left: 14px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--ivory-dark); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-family: var(--f-display); font-size: 1.05rem; font-weight: 500; color: var(--plum); text-align: left; gap: 16px; transition: color 0.25s; }
.faq-q:hover { color: var(--berry); }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--ivory-dark); display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--text-mute); transition: transform 0.35s var(--ease-q), background 0.3s, color 0.3s, border-color 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--berry); color: var(--white); border-color: var(--berry); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.55s var(--ease-q), padding 0.35s; font-size: 0.83rem; color: var(--text-mute); line-height: 1.85; padding-bottom: 0; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 22px; }
.faq-a strong { color: var(--plum); font-weight: 600; }

/* ═══════════════════════════════════════
   FORMULAIRE
═══════════════════════════════════════ */

.contact-section { background: var(--ivory); }
.contact-layout { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 40px; 
}

@media (min-width: 1024px) {
  .contact-layout { 
    grid-template-columns: 5fr 7fr; 
    gap: 80px; 
    align-items: start; 
  }
}
.contact-left { padding-top: 8px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.cd { display: flex; gap: 14px; align-items: flex-start; }
.cd-icon { width: 44px; height: 44px; background: var(--rose-pale); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.cd-l { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute); font-weight: 600; margin-bottom: 3px; }
.cd-v { font-family: var(--f-display); font-size: 1rem; color: var(--plum); }
.cd-v a { transition: color 0.25s; }
.cd-v a:hover { color: var(--berry); }
.contact-form-wrap { 
  background: var(--white); 
  border-radius: var(--r-xl); 
  padding: 24px 20px; 
  box-shadow: var(--sh-md); 
}

@media (min-width: 640px) {
  .contact-form-wrap {
    padding: 32px;
  }
}

@media (min-width: 1024px) {
  .contact-form-wrap {
    padding: 44px;
  }
}
.cf-title { font-family: var(--f-display); font-size: 1.5rem; font-weight: 500; color: var(--plum); margin-bottom: 28px; }
.cf-title em { color: var(--berry); font-style: italic; }
.step-tabs { display: flex; gap: 0; margin-bottom: 32px; border-radius: var(--r-full); overflow: hidden; border: 1.5px solid var(--ivory-dark); }
.step-tab { flex: 1; padding: 10px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-align: center; color: var(--text-mute); transition: background 0.3s, color 0.3s; position: relative; }
.step-tab.active { background: var(--plum); color: var(--ivory); }
.form-step { display: none; }
.form-step.active { display: block; }
.frow { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 16px; 
  margin-bottom: 16px; 
}

@media (min-width: 480px) {
  .frow {
    grid-template-columns: 1fr 1fr;
  }
}
.fgroup { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.fgroup label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute); }
.fgroup input, .fgroup select, .fgroup textarea { width: 100%; padding: 13px 16px; background: var(--ivory); border: 1.5px solid var(--ivory-dark); border-radius: var(--r-md); font-family: var(--f-body); font-size: 0.85rem; color: var(--plum); outline: none; transition: border-color 0.25s, box-shadow 0.25s, background 0.25s; }
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus { border-color: var(--berry); background: var(--white); box-shadow: 0 0 0 3px rgba(139, 58, 82, 0.1); }
.fgroup textarea { resize: vertical; min-height: 100px; }
.fgroup select { 
  -webkit-appearance: none; 
  appearance: none;
  cursor: pointer; 
}
.service-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.spill { 
  padding: 8px 16px; 
  border-radius: var(--r-full); 
  border: 1.5px solid var(--ivory-dark); 
  font-size: 0.75rem; 
  font-weight: 500; 
  color: var(--text-soft); 
  transition: all 0.25s; 
  cursor: pointer; 
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.spill.selected { background: var(--berry); border-color: var(--berry); color: var(--white); }
.spill:hover:not(.selected) { border-color: var(--rose); color: var(--berry); }
.consent { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 22px; }
.consent input { accent-color: var(--berry); margin-top: 2px; flex-shrink: 0; }
.consent label { font-size: 0.72rem; color: var(--text-mute); line-height: 1.6; }
.consent label a { color: var(--berry); text-decoration: underline; }
.btn-submit { width: 100%; padding: 16px; background: var(--berry); color: var(--white); border-radius: var(--r-full); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; transition: background 0.3s, transform 0.35s var(--ease-e), box-shadow 0.3s; }
.btn-submit:hover { background: var(--berry-dark); transform: scale(1.02); box-shadow: var(--sh-berry); }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success .fs-icon { font-size: 52px; margin-bottom: 16px; }
.form-success .fs-title { font-family: var(--f-display); font-size: 1.8rem; color: var(--plum); }
.form-success .fs-sub { font-size: 0.85rem; color: var(--text-mute); margin-top: 10px; line-height: 1.7; }

.field-error {
  border-color: var(--berry-dark) !important;
}

/* ═══════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════ */

.cta-final { 
  background: linear-gradient(120deg, var(--plum) 0%, #4A2040 40%, var(--berry-dark) 100%); 
  padding: var(--sp-24) 16px; 
  text-align: center; 
  position: relative; 
  overflow: hidden; 
}

@media (min-width: 768px) {
  .cta-final {
    padding: var(--sp-32) 64px;
  }
}
.cta-final::before { content: ''; position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(196, 134, 154, 0.12) 0%, transparent 65%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.cta-nail { position: absolute; border-radius: var(--r-nail); background: rgba(255, 255, 255, 0.04); pointer-events: none; }
.cn1 { width: 120px; height: 160px; top: -40px; left: 8%; transform: rotate(15deg); }
.cn2 { width: 80px; height: 110px; bottom: -20px; right: 10%; transform: rotate(-20deg); }
.cn3 { width: 60px; height: 85px; top: 30%; right: 5%; transform: rotate(8deg); }
.cta-label-text { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--champagne); margin-bottom: 20px; }
.cta-title { font-family: var(--f-display); font-size: clamp(2.2rem, 4.5vw, 4.5rem); font-weight: 400; color: var(--ivory); line-height: 1.1; margin-bottom: 16px; }
.cta-title em { font-style: italic; color: var(--rose-light); }
.cta-sub { font-size: 1rem; color: rgba(250, 247, 244, 0.5); max-width: 460px; margin: 0 auto 44px; line-height: 1.75; }
.cta-acts { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-main { display: inline-flex; align-items: center; gap: 10px; padding: 18px 44px; background: var(--rose); color: var(--white); border-radius: var(--r-full); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.06em; transition: all 0.35s var(--ease-e); }
.btn-cta-main:hover { background: var(--rose-deep); transform: scale(1.05); box-shadow: var(--sh-rose); }
.btn-cta-sec { display: inline-flex; align-items: center; gap: 10px; padding: 18px 36px; border: 1.5px solid rgba(250, 247, 244, 0.2); color: var(--ivory); border-radius: var(--r-full); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; transition: all 0.3s; }
.btn-cta-sec:hover { border-color: var(--rose); background: rgba(196, 134, 154, 0.1); }

/* ═══════════════════════════════════════
   ACCESSIBILITÉ & UTILITAIRES
═══════════════════════════════════════ */

/* Respecte les préférences de réduction de mouvement */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Amélioration tactile sur mobile */
@media (hover: none) {
  .spill:hover:not(.selected),
  .offer-card:hover,
  .pcard:hover,
  .svc:hover,
  .blog-card:hover {
    transform: none;
  }
}


.cf-demo-note{font-size:var(--fs-small);color:#8B7A84;text-align:center;margin-bottom:16px;font-style:italic;padding:8px 16px;background:#FDF5F0;border-radius:8px;border:1px solid #F5E8ED;}
