/* * L'Experte de votre Voisin 58 - Full Production CSS 
 * Cette version remplace tout le contenu précédent pour assurer la cohérence globale.
 */

:root {
  --brand-dark: #0f172a;
  --brand-primary: #0d9488;
  --brand-accent: #fbbf24;
  --brand-bg: #f8fafc;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
}

/* --- Reset & Base --- */
*, ::before, ::after { box-sizing: border-box; border-width: 0; border-style: solid; border-color: var(--slate-200); }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; font-family: ui-sans-serif, system-ui, -apple-system, sans-serif; }
body { margin: 0; background-color: var(--brand-bg); color: var(--brand-dark); -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
iframe { border: none; }

/* --- Layout --- */
.container { width: 100%; margin-right: auto; margin-left: auto; padding-right: 1.5rem; padding-left: 1.5rem; }
@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; } .left-0 { left: 0; } .right-0 { right: 0; } .bottom-0 { bottom: 0; }
.z-0 { z-index: 0; } .z-10 { z-index: 10; } .z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }
.pointer-events-none { pointer-events: none; }

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:w-1\/3 { width: 33.333333%; }
  .md\:w-2\/3 { width: 66.666667%; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* --- Spacing --- */
.h-10 { height: 2.5rem; } .w-10 { width: 2.5rem; }
.h-12 { height: 3rem; } .w-12 { width: 3rem; }
.h-14 { height: 3.5rem; } .w-14 { width: 3.5rem; }
.h-16 { height: 4rem; } .w-16 { width: 4rem; }
.h-28 { height: 7rem; }
.h-48 { height: 12rem; }
.h-full { height: 100%; } .w-full { width: 100%; }
.min-h-\[600px\] { min-height: 600px; }
.min-h-\[700px\] { min-height: 700px; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-20 { padding-top: 5rem; }
.pt-28 { padding-top: 7rem; }
.pt-32 { padding-top: 8rem; }
.pb-8 { padding-bottom: 2rem; }

.m-2 { margin: 0.5rem; } .mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 0.5rem; } .mb-3 { margin-bottom: 0.75rem; } .mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; } .mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; } .mb-16 { margin-bottom: 4rem; }
.mr-2 { margin-right: 0.5rem; } .mr-3 { margin-right: 0.75rem; } .mr-4 { margin-right: 1rem; }
.mt-1 { margin-top: 0.25rem; } .mt-2 { margin-top: 0.5rem; } .mt-4 { margin-top: 1rem; }
.mt-12 { margin-top: 3rem; } .mt-20 { margin-top: 5rem; }

.gap-4 { gap: 1rem; } .gap-6 { gap: 1.5rem; } .gap-8 { gap: 2rem; } .gap-12 { gap: 3rem; }

/* Space-x/y helpers */
.space-x-3 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.75rem; }
.space-x-7 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.75rem; }
.space-x-8 > :not([hidden]) ~ :not([hidden]) { margin-left: 2rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }

/* --- Typography --- */
.text-xs { font-size: 0.75rem; } .text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; } .text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; } .text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; } .text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; } .text-7xl { font-size: 4.5rem; }

.font-medium { font-weight: 500; } .font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; } .font-extrabold { font-weight: 800; } .font-black { font-weight: 900; }
.uppercase { text-transform: uppercase; } .italic { font-style: italic; } .text-center { text-align: center; }
.leading-relaxed { line-height: 1.625; } .tracking-tight { letter-spacing: -0.025em; }
.tracking-tighter { letter-spacing: -0.05em; } .tracking-widest { letter-spacing: 0.1em; }
.underline { text-decoration-line: underline; } .underline-offset-8 { text-underline-offset: 8px; }

/* --- Colors --- */
.text-white { color: #fff; }
.text-brand-dark { color: var(--brand-dark); }
.text-brand-primary { color: var(--brand-primary); }
.text-brand-accent { color: var(--brand-accent); }
.text-slate-400 { color: var(--slate-400); }
.text-slate-500 { color: var(--slate-500); }
.text-slate-600 { color: var(--slate-600); }
.text-slate-700 { color: var(--slate-700); }
.text-slate-900 { color: var(--slate-900); }

.bg-white { background-color: #fff; }
.bg-brand-dark { background-color: var(--brand-dark); }
.bg-brand-primary { background-color: var(--brand-primary); }
.bg-brand-accent { background-color: var(--brand-accent); }
.bg-brand-bg { background-color: var(--brand-bg); }
.bg-slate-50 { background-color: var(--slate-50); }
.bg-brand-primary\/5 { background-color: rgba(13, 148, 136, 0.05); }
.bg-brand-primary\/10 { background-color: rgba(13, 148, 136, 0.1); }
.bg-brand-accent\/10 { background-color: rgba(251, 191, 36, 0.1); }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }

/* --- Decor & Components --- */
.rounded-xl { border-radius: 0.75rem; } .rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; } .rounded-full { border-radius: 9999px; }
.rounded-\[2\.5rem\] { border-radius: 2.5rem; } .rounded-\[3rem\] { border-radius: 3rem; }

.border { border-width: 1px; } .border-none { border-style: none; }
.border-t { border-top-width: 1px; } .border-b { border-bottom-width: 1px; }
.border-t-4 { border-top-width: 4px; } .border-t-8 { border-top-width: 8px; }
.border-l-4 { border-left-width: 4px; } .border-l-8 { border-left-width: 8px; }
.border-slate-100 { border-color: var(--slate-100); } .border-slate-200 { border-color: var(--slate-200); }
.border-slate-800 { border-color: var(--slate-800); } .border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }

.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }

.opacity-10 { opacity: 0.1; } .opacity-75 { opacity: 0.75; }
.blur-3xl { filter: blur(64px); }

/* --- Interaction & Animation --- */
.transition { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 300ms; }
.duration-300 { transition-duration: 300ms; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }
.hover\:text-brand-dark:hover { color: var(--brand-dark); }
.hover\:text-brand-primary:hover { color: var(--brand-primary); }
.hover\:text-brand-accent:hover { color: var(--brand-accent); }
.hover\:text-white:hover { color: #fff; }

@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }
.animate-ping { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.animate-spin { animation: spin 1s linear infinite; }

/* Correction Spécifique Logo */
@media (min-width: 768px) { .md\:h-24 { height: 6rem; } }