/* ═══════════════════════════════════════════════════════════════
   ELYRIA CREDIBILITY — Preuves sociales, tarifs, SEO, mobile
   ═══════════════════════════════════════════════════════════════ */

/* ── TRUST BAR ───────────────────────────────────────────────── */
.v3-trust-bar {
  padding: 40px 24px 44px;
  text-align: center;
}
.v3-trust-bar-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted, #8a8f9e);
  margin-bottom: 20px;
}
.v3-trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.v3-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 100px;
  background: var(--c-surface, #f5f6fa);
  border: 1px solid rgba(0,0,0,0.07);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text, #0d1117);
  transition: box-shadow 0.22s, transform 0.22s;
  cursor: default;
}
.v3-trust-chip:hover {
  box-shadow: 0 4px 18px rgba(0,102,204,0.14);
  transform: translateY(-2px);
}
.v3-trust-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0af;
  flex-shrink: 0;
}
.v3-trust-chip--anatolia .v3-trust-chip-dot { background: #e25c2a; }
.v3-trust-chip--hayal    .v3-trust-chip-dot { background: #27c97b; }
.v3-trust-chip--izgara   .v3-trust-chip-dot { background: #0066cc; }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.v3-testi {
  padding: 72px 24px 80px;
  background: var(--c-bg, #fff);
}
.v3-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto 0;
}
@media (max-width: 900px) {
  .v3-testi-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}
.v3-testi-card {
  position: relative;
  background: var(--c-surface, #f5f6fa);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.28s, transform 0.28s;
  overflow: hidden;
}
.v3-testi-card:hover {
  box-shadow: 0 12px 40px rgba(0,102,204,0.12);
  transform: translateY(-4px);
}
.v3-testi-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0066cc, #0af);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.28s;
}
.v3-testi-card:hover::before { opacity: 1; }
.v3-testi-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 14px;
}
.v3-testi-metric {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(0,102,204,0.1);
  color: #0066cc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.v3-testi-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text-muted, #3d4250);
  flex: 1;
}
.v3-testi-text strong {
  color: var(--c-text, #0d1117);
}
.v3-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.v3-testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066cc, #0af);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px #fff, 0 2px 10px rgba(0,0,0,0.13);
  user-select: none;
}
.v3-testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text, #0d1117);
  line-height: 1.3;
}
.v3-testi-role {
  font-size: 12px;
  color: var(--c-muted, #8a8f9e);
  line-height: 1.3;
}

/* ── PRICING ─────────────────────────────────────────────────── */
.v3-pricing {
  padding: 80px 24px 96px;
  background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
}
.v3-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1060px;
  margin: 44px auto 0;
  align-items: start;
}
@media (max-width: 900px) {
  .v3-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}
.v3-pricing-card {
  border-radius: 24px;
  padding: 32px 28px 28px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.09);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: box-shadow 0.28s, transform 0.28s;
}
.v3-pricing-card:hover {
  box-shadow: 0 16px 48px rgba(0,102,204,0.13);
  transform: translateY(-4px);
}
.v3-pricing-card--highlight {
  background: #0d1117;
  border-color: #0d1117;
  color: #fff;
  transform: translateY(-8px);
}
.v3-pricing-card--highlight:hover {
  transform: translateY(-14px);
  box-shadow: 0 24px 64px rgba(0,102,204,0.32);
}
.v3-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #0066cc, #0af);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.v3-pricing-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0066cc;
  margin-bottom: 8px;
}
.v3-pricing-card--highlight .v3-pricing-name {
  color: #60b4ff;
}
.v3-pricing-price {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  color: var(--c-text, #0d1117);
  margin-bottom: 4px;
}
.v3-pricing-card--highlight .v3-pricing-price { color: #fff; }
.v3-pricing-price sup {
  font-size: 22px;
  font-weight: 700;
  vertical-align: top;
  margin-top: 6px;
}
.v3-pricing-desc {
  font-size: 13px;
  color: #8a8f9e;
  margin-bottom: 24px;
  line-height: 1.5;
}
.v3-pricing-card--highlight .v3-pricing-desc { color: #7a8091; }
.v3-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v3-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--c-text, #0d1117);
  line-height: 1.4;
}
.v3-pricing-card--highlight .v3-pricing-features li { color: rgba(255,255,255,0.85); }
.v3-pricing-features li::before {
  content: "✓";
  color: #0066cc;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.v3-pricing-card--highlight .v3-pricing-features li::before { color: #0af; }
.v3-pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: auto;
}
.v3-pricing-cta:hover { transform: translateY(-2px); opacity: 0.88; }
.v3-pricing-cta--outline {
  border: 1.5px solid rgba(0,0,0,0.15);
  color: var(--c-text, #0d1117);
  background: transparent;
}
.v3-pricing-cta--primary {
  background: linear-gradient(90deg, #0066cc, #0af);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(0,102,204,0.3);
}
.v3-pricing-cta--dark {
  border: 1.5px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.07);
}
.v3-pricing-audit {
  max-width: 1060px;
  margin: 28px auto 0;
  background: linear-gradient(135deg, #0066cc 0%, #0af 100%);
  border-radius: 20px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.v3-pricing-audit-txt strong {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}
.v3-pricing-audit-txt span {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.v3-pricing-audit-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  background: #fff;
  color: #0066cc;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.v3-pricing-audit-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
/* Prix mensuel (sous le prix d'installation) */
.v3-pricing-monthly {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #0066cc;
  margin-top: -2px;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.v3-pricing-card--highlight .v3-pricing-monthly {
  color: #60b4ff;
}
/* Comparaison "séparément X€" */
.v3-pricing-economy {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  color: #8a8f9e;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 3px 10px;
  margin-bottom: 14px;
  text-decoration: line-through;
  text-decoration-color: rgba(138,143,158,0.5);
}
.v3-pricing-card:not(.v3-pricing-card--highlight) .v3-pricing-economy {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.08);
}
/* ── Option add-on (roulette, etc.) ──────────────────────── */
.v3-pricing-option {
  max-width: 1060px;
  margin: 16px auto 0;
  padding: 20px 28px;
  border-radius: 16px;
  border: 1.5px dashed rgba(0,102,204,0.28);
  background: rgba(0,102,204,0.03);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.v3-pricing-option-label {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0066cc;
  background: rgba(0,102,204,0.1);
  border-radius: 100px;
  padding: 4px 11px;
  white-space: nowrap;
  flex-shrink: 0;
}
.v3-pricing-option-content {
  flex: 1;
  min-width: 180px;
}
.v3-pricing-option-name {
  font-size: 15px;
  font-weight: 700;
  color: #0d1117;
  margin: 0 0 3px;
}
.v3-pricing-option-desc {
  font-size: 12.5px;
  color: #8a8f9e;
  margin: 0;
  line-height: 1.45;
}
.v3-pricing-option-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}
.v3-pricing-option-price strong {
  font-size: 15px;
  font-weight: 800;
  color: #0d1117;
  letter-spacing: -0.02em;
}
.v3-pricing-option-price span {
  font-size: 12px;
  font-weight: 500;
  color: #8a8f9e;
}
.v3-pricing-option-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid rgba(0,102,204,0.3);
  color: #0066cc;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.v3-pricing-option-cta:hover {
  background: rgba(0,102,204,0.07);
  border-color: rgba(0,102,204,0.5);
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .v3-pricing-option {
    padding: 16px 18px;
    gap: 12px;
  }
  .v3-pricing-option-price {
    align-items: flex-start;
    flex-direction: row;
    gap: 10px;
    align-items: baseline;
  }
}
/* ── Option inline dans une card pricing ────────────────── */
.v3-pack-option-inline {
  margin: 0 0 20px;
  padding: 13px 15px;
  border-radius: 11px;
  border: 1px dashed rgba(0,102,204,0.22);
  background: rgba(0,102,204,0.035);
}
.v3-pack-option-inline-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px;
  flex-wrap: wrap;
}
.v3-pack-option-inline-badge {
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0066cc;
  background: rgba(0,102,204,0.12);
  border-radius: 100px;
  padding: 2px 8px;
  flex-shrink: 0;
}
.v3-pack-option-inline-name {
  font-size: 13px;
  font-weight: 700;
  color: #0d1117;
  flex: 1;
}
.v3-pack-option-inline-price {
  font-size: 12px;
  font-weight: 700;
  color: #0066cc;
  white-space: nowrap;
}
.v3-pack-option-inline-desc {
  font-size: 12px;
  color: #8a8f9e;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 900px) {
  /* Sur mobile, l'en-tête du bloc option passe sur deux lignes */
  .v3-pack-option-inline-header {
    flex-wrap: wrap;
    row-gap: 4px;
  }
  .v3-pack-option-inline-price {
    width: 100%;
    order: 3;
    font-size: 11.5px;
    color: #0066cc;
  }
}
/* ── Micro preuve sociale sous les packs ─────────────────── */
.v3-pricing-proof {
  max-width: 1060px;
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
  color: #8a8f9e;
}
.v3-pricing-proof svg {
  flex-shrink: 0;
  opacity: 0.6;
}

/* ── FOOTER UPGRADE ──────────────────────────────────────────── */
.v3-fn-footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  padding: 12px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 16px;
  line-height: 1.6;
}
.v3-fn-footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  align-items: center;
  margin-top: 4px;
}
.v3-fn-footer-contact a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.18s;
}
.v3-fn-footer-contact a:hover { color: #fff; }

/* ── LOGO DANS BLOC HUMAIN ───────────────────────────────────── */
.v3-human-logo {
  width          : 64px;
  height         : 64px;
  object-fit     : contain;
  border-radius  : 14px;
  background     : #fff;
  padding        : 4px;
  flex-shrink    : 0;
  border         : 1px solid rgba(0,0,0,0.07);
}

/* ── LOGO DANS FOOTER SOMBRE ─────────────────────────────────── */
.v3-fn-footer-logo-img {
  width          : 56px;
  height         : 56px;
  object-fit     : contain;
  border-radius  : 12px;
  background     : #fff;
  padding        : 5px;
  flex-shrink    : 0;
}

/* ── BLOC HUMAIN ─────────────────────────────────────────────── */
.v3-human-block {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 780px;
  margin: 0 auto 52px;
  padding: 24px 28px;
  background: var(--c-surface, #f5f6fa);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  flex-wrap: wrap;
}
/* .v3-human-avatar supprimé — remplacé par .v3-human-logo (vraie image) */
.v3-human-txt {
  flex: 1;
  min-width: 200px;
}
.v3-human-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text, #0d1117);
  margin-bottom: 4px;
}
.v3-human-desc {
  font-size: 13px;
  color: var(--c-text-muted, #5a6070);
  line-height: 1.6;
}
.v3-human-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--c-text, #0d1117);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}
.v3-human-cta:hover { opacity: 0.82; transform: translateY(-1px); }

/* ── CONTACT FORM PREMIUM ────────────────────────────────────── */
.v3-contact-shell {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}
.v3-contact-hero {
  text-align: center;
  margin-bottom: 52px;
}
.v3-contact-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #0d1117;
  margin-bottom: 12px;
  line-height: 1.1;
}
.v3-contact-hero p {
  font-size: 17px;
  color: #5a6070;
  line-height: 1.6;
}
.v3-contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}
@media (max-width: 580px) { .v3-contact-channels { grid-template-columns: 1fr; } }
.v3-contact-channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #f5f6fa;
  border: 1px solid rgba(0,0,0,0.07);
  text-decoration: none;
  color: #0d1117;
  transition: box-shadow 0.22s, transform 0.22s;
}
.v3-contact-channel:hover { box-shadow: 0 6px 24px rgba(0,102,204,0.14); transform: translateY(-2px); }
.v3-contact-channel-ico {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.v3-contact-channel-ico--wa  { background: #25d366; color: #fff; }
.v3-contact-channel-ico--tel { background: #0066cc; color: #fff; }
.v3-contact-channel-ico--ig  { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.v3-contact-channel strong { display: block; font-size: 13px; font-weight: 700; }
.v3-contact-channel span { font-size: 12px; color: #8a8f9e; }

.v3-form-divider {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.v3-form-divider::before, .v3-form-divider::after {
  content: ""; flex: 1; height: 1px; background: rgba(0,0,0,0.1);
}
.v3-form-divider span { font-size: 12px; color: #8a8f9e; white-space: nowrap; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

.v3-form { display: flex; flex-direction: column; gap: 16px; }
.v3-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .v3-form-row { grid-template-columns: 1fr; } }
.v3-field { display: flex; flex-direction: column; gap: 6px; }
.v3-field label { font-size: 13px; font-weight: 600; color: #3d4250; }
.v3-field input, .v3-field select, .v3-field textarea {
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: #fff;
  font-size: 15px;
  color: #0d1117;
  font-family: inherit;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  width: 100%;
  box-sizing: border-box;
}
.v3-field input:focus, .v3-field select:focus, .v3-field textarea:focus {
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0,102,204,0.12);
}
.v3-field textarea { resize: vertical; min-height: 100px; }
.v3-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  background: linear-gradient(90deg, #0066cc, #0af);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(0,102,204,0.3);
  margin-top: 8px;
  font-family: inherit;
}
.v3-form-submit:hover { opacity: 0.88; transform: translateY(-2px); }
.v3-form-note { font-size: 12px; color: #8a8f9e; text-align: center; margin-top: 8px; }

/* ── MOBILE POLISH ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .v3-trust-bar { padding: 28px 16px 32px; }
  .v3-trust-chip { font-size: 12px; padding: 8px 14px; }
  .v3-testi { padding: 48px 16px 56px; }
  .v3-testi-card { padding: 22px 20px 18px; }
  .v3-pricing { padding: 56px 16px 64px; }
  .v3-pricing-card { padding: 28px 22px 24px; }
  .v3-pricing-card--highlight { transform: none; }
  .v3-pricing-audit { padding: 22px 20px; flex-direction: column; align-items: flex-start; }
  .v3-pricing-audit-cta { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   TRUST LOGOS — slots prêts pour vrais PNG, fallback chips auto
   Dépose les logos dans assets/logos/ → affichage automatique
   ═══════════════════════════════════════════════════════════════ */
.v3-trust-logo-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  min-width: 80px;
}
.v3-trust-logo-img {
  display: block;
  height: 34px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: filter 0.22s ease;
}
.v3-trust-logo-slot:hover .v3-trust-logo-img {
  filter: grayscale(0.1) opacity(0.85);
}
/* Fallback : logo absent → affiche chip texte */
.v3-trust-logo-name { display: none; }
.v3-trust-logo-slot.v3-logo-fallback .v3-trust-logo-img { display: none; }
.v3-trust-logo-slot.v3-logo-fallback .v3-trust-logo-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 100px;
  background: var(--c-surface, #f5f6fa);
  border: 1px solid rgba(0,0,0,0.07);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text, #0d1117);
  cursor: default;
  transition: box-shadow 0.22s, transform 0.22s;
}
.v3-trust-logo-slot.v3-logo-fallback:hover .v3-trust-logo-name {
  box-shadow: 0 4px 18px rgba(0,102,204,0.12);
  transform: translateY(-2px);
}
.v3-trust-logo--izgara.v3-logo-fallback   .v3-trust-chip-dot { background: #0066cc; }
.v3-trust-logo--anatolia.v3-logo-fallback .v3-trust-chip-dot { background: #e25c2a; }
.v3-trust-logo--hayal.v3-logo-fallback    .v3-trust-chip-dot { background: #27c97b; }

/* ═══════════════════════════════════════════════════════════════
   PHOTO SLOTS — overlay photo sur initiales avatar
   Dépose les photos dans assets/photos/ → affichage automatique
   ═══════════════════════════════════════════════════════════════ */
.v3-testi-avatar {
  position: relative;
  overflow: hidden;
}
.v3-testi-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 1;
}

/* ════════════════════════════════════════════════════════════
   SECTION "COMMENT ÇA SE PASSE" — v3-process
   ════════════════════════════════════════════════════════════ */
.v3-process {
  padding: 80px 24px;
  background: #f8f9fc;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.v3-process-inner {
  max-width: 1060px;
  margin: 0 auto;
}
.v3-process-head {
  text-align: center;
  margin-bottom: 56px;
}
.v3-process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: nowrap;
}
.v3-step {
  flex: 1;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}
.v3-step-num {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #0066cc;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 16px rgba(0,102,204,0.28);
}
.v3-step-body h3 {
  font-size: 16px;
  font-weight: 760;
  color: #0d1117;
  margin: 0 0 8px;
  line-height: 1.25;
}
.v3-step-body p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}
.v3-step-arrow {
  display: flex;
  align-items: center;
  padding-top: 14px;
  color: #c5ccd8;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 26px; /* aligne avec le centre du num */
}
.v3-process-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.v3-process-note {
  font-size: 13px;
  color: #9ca3af;
  letter-spacing: 0.01em;
}
/* Mobile — steps empilés */
@media (max-width: 680px) {
  .v3-process {
    padding: 56px 20px;
  }
  .v3-process-head {
    margin-bottom: 40px;
    text-align: left;
  }
  .v3-process-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .v3-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
    padding: 0;
    gap: 16px;
  }
  .v3-step-num {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    font-size: 15px;
    border-radius: 13px;
  }
  .v3-step-arrow {
    transform: rotate(90deg);
    margin: 8px 0 8px 14px; /* indent to align with text */
    padding-top: 0;
    align-self: auto;
  }
  .v3-process-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 40px;
  }
  .v3-process-note {
    font-size: 12px;
  }
}

/* ════════════════════════════════════════════════════════════
   PRICING — ORDRE MOBILE
   Desktop : Google Local | Menu Digital ★ | Identité
   Mobile  : Identité (100€) | Google Local (120€) | Menu Digital (500€)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  .v3-pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  /* enfant 1 = Pack Google Local → position 2 */
  .v3-pricing-grid > .v3-pricing-card:nth-child(1) {
    order: 2;
  }
  /* enfant 2 = Pack Menu Digital (highlight) → position 3 */
  .v3-pricing-grid > .v3-pricing-card:nth-child(2) {
    order: 3;
    transform: none; /* désactive le scale desktop sur mobile */
  }
  /* enfant 3 = Pack Identité → position 1 */
  .v3-pricing-grid > .v3-pricing-card:nth-child(3) {
    order: 1;
  }
}

/* ════════════════════════════════════════════════════════════
   ROULETTE INLINE — FIX 320px / 375px
   ════════════════════════════════════════════════════════════ */
@media (max-width: 400px) {
  .v3-pack-option-inline {
    padding: 11px 12px;
  }
  .v3-pack-option-inline-name {
    font-size: 12px;
  }
  .v3-pack-option-inline-price {
    font-size: 11px;
  }
  .v3-pack-option-inline-desc {
    font-size: 11px;
    line-height: 1.45;
  }
}

/* ════════════════════════════════════════════════════════════
   HERO PHOTO TERRAIN — slot CSS
   Activer en ajoutant la classe v3-hero-img--terrain sur <img>
   ════════════════════════════════════════════════════════════ */
.v3-hero-img--terrain {
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
  height: clamp(280px, 42vh, 460px);
  filter: none; /* supprimer le drop-shadow pour une vraie photo */
}

/* ════════════════════════════════════════════════════════════
   SECTION FINALE — ALLÈGEMENT ANIMATIONS COÛTEUSES
   Sur mobile et prefers-reduced-motion : désactivation des
   couches les plus lourdes (mesh + beams + spotlight)
   ════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .v3-fn-mesh,
  .v3-fn-beam,
  .v3-fn-spotlight,
  .v3-fn-glow {
    display: none;
  }
}
@media (max-width: 600px) {
  /* Garde la grain et la vignette (légères) — retire le mesh lourd et les beams */
  .v3-fn-mesh {
    display: none;
  }
  .v3-fn-beam {
    display: none;
  }
  .v3-fn-spotlight {
    display: none;
  }
  /* Glows réduits à 1 seule instance sur mobile */
  .v3-fn-glow.v3-fn-g2,
  .v3-fn-glow.v3-fn-g3 {
    display: none;
  }
}
