/* ============================================
   MINDRIVE.CO - STYLESHEET PRINCIPAL
   Version: 2.0 - Optimisé et centralisé
   ============================================ */

/* === VARIABLES CSS === */
:root {
    --noir-profond: #0A0A0A;
    --or-premium: #C8A64D;
    --or-luxe: #D4AF37;
    --cuivre-ambre: #E78A00;
    --cuivre-profond: #C97400;
    --blanc-pur: #FFF;
    --gris-anthracite: #1C1C1C;
    --gris-anthracite-clair: #2A2A2A;
    --gris-clair: #F5F5F5;
    --gris-texte: #222;
    --rouge: #EF4444;
    --vert-succes: #10B981;
}

/* === RESET & BASE === */
html {
    color-scheme: light;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--blanc-pur);
    color: var(--gris-texte);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === TYPOGRAPHIE === */
h1, h2, h3 {
    font-family: Montserrat, -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

/* === LAYOUT === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--noir-profond);
    box-shadow: 0 2px 10px rgba(10, 10, 10, 0.3);
    transition: transform 0.3s ease;
}

.site-header nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-link {
    text-decoration: none;
}

.logo {
    height: 80px;
    width: auto;
    transition: transform 0.2s ease;
    display: block;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.site-header nav a {
    color: var(--blanc-pur);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.site-header nav a:hover {
    color: var(--or-premium);
}

.site-header .cta {
    background: var(--cuivre-ambre);
    color: var(--blanc-pur) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 2px 10px rgba(231, 138, 0, 0.35);
}

.site-header .cta:hover {
    background: var(--cuivre-profond);
    color: var(--blanc-pur) !important;
    box-shadow: 0 4px 15px rgba(231, 138, 0, 0.5);
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, var(--noir-profond) 0%, var(--gris-anthracite) 100%);
    color: var(--blanc-pur);
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* === AJOUTS VIDEO BACKGROUND === */

/* Couche 0 : La vidéo tout au fond */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Couche 1 : Le voile sombre */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.75); /* Ajuste l'opacité ici si besoin */
    z-index: 1;
}

/* Couche 1 (bis) : Ton animation de pulsation dorée */
/* Je l'ai mise à z-index: 1 pour qu'elle soit au même niveau que le voile */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
    z-index: 1; /* AJOUT IMPORTANT pour qu'on la voie par-dessus la vidéo */
    pointer-events: none; /* Pour être sûr qu'elle ne bloque pas les clics */
}

/* Couche 2 : Le contenu (Texte + Boutons) */
/* C'est ICI qu'on fusionne tout. Il doit être au-dessus de tout le reste (z-index: 2) */
.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2; /* IMPORTANT : Doit être supérieur à l'overlay (1) */
}

/* === Le reste de tes styles ne change pas === */

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(231, 138, 0, 0.15);
    color: var(--cuivre-ambre);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(231, 138, 0, 0.3);
}

.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 20px;
    color: var(--blanc-pur);
    text-transform: none;
}

.hero h1 .highlight {
    color: var(--or-luxe);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-weight: 400;
}

.hero-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.hero-trust-line {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 15px;
}

.hero-trust-line strong {
    color: var(--or-luxe);
    font-weight: 600;
}

/* === LEGAL HERO === */
.legal-hero {
    background: var(--noir-profond);
    color: var(--blanc-pur);
    padding: 80px 0 60px;
    text-align: center;
}

.legal-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--blanc-pur);
}

.legal-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* === MERCI HERO === */
.merci-hero {
    background: var(--noir-profond);
    color: var(--blanc-pur);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.merci-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background: linear-gradient(45deg, var(--or-premium) 0%, transparent 50%);
}

.merci-hero-content {
    position: relative;
    z-index: 1;
}

.merci-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--or-premium);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(200, 166, 77, 0.3);
}

.merci-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--noir-profond);
    stroke-width: 2;
}

/* === BUTTONS === */
.btn-cta-primary, .cta-button {
    background: var(--cuivre-ambre);
    color: var(--blanc-pur);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(231, 138, 0, 0.3);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta-primary:hover, .cta-button:hover {
    background: var(--cuivre-profond);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(231, 138, 0, 0.4);
}

/* === SECTIONS === */
section {
    padding: 80px 20px;
    scroll-margin-top: 80px;
}

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

.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
    color: var(--gris-texte);
    text-transform: none;
}

.section-header p {
    font-size: 18px;
    color: rgba(34, 34, 34, 0.7);
}

/* === COST SECTION === */
.cost-section {
    background: var(--gris-clair);
    padding: 80px 20px;
    border-top: 3px solid var(--cuivre-ambre);
}

.cost-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.calculator {
    background: var(--blanc-pur);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 30px 0;
}

.calculator-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.calculator-row label {
    font-weight: 600;
    font-size: 16px;
    color: var(--gris-texte);
    flex: 1;
}

.calculator-row > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.calculator-row input {
    width: 120px;
    padding: 10px 15px;
    border: 2px solid var(--gris-anthracite-clair);
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    transition: border-color 0.3s;
}

.calculator-row input:focus {
    outline: none;
    border-color: var(--cuivre-ambre);
}

.calculator-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gris-anthracite-clair), transparent);
    margin: 25px 0;
}

.calculator-result {
    background: linear-gradient(135deg, var(--rouge) 0%, #DC2626 100%);
    color: var(--blanc-pur);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.calculator-result h3 {
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.9;
    font-weight: 600;
}

.calculator-result .big-number {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    margin: 10px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.calculator-result p {
    font-size: 16px;
    opacity: 0.85;
    margin-top: 15px;
}

/* === PROCESS STEPS === */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cuivre-ambre), var(--cuivre-profond));
    color: var(--blanc-pur);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(231, 138, 0, 0.3);
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--gris-texte);
    text-transform: none;
}

.process-step p {
    color: rgba(34, 34, 34, 0.7);
    line-height: 1.7;
}

.process-step-badge {
    display: inline-block;
    background: var(--gris-clair);
    color: var(--cuivre-ambre);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
    text-transform: uppercase;
}

/* === TESTIMONIALS === */
.testimonials-section {
    background: var(--gris-clair);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--blanc-pur);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    border-left: 4px solid var(--cuivre-ambre);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cuivre-ambre), var(--or-luxe));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc-pur);
    font-weight: 700;
    font-size: 20px;
}

.testimonial-info h4 {
    font-weight: 600;
    color: var(--gris-texte);
    margin-bottom: 3px;
}

.testimonial-info p {
    font-size: 14px;
    color: rgba(34, 34, 34, 0.6);
}

.testimonial-transformation {
    margin: 20px 0;
}

.transformation-item {
    margin-bottom: 15px;
}

.transformation-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.transformation-label.before {
    color: var(--rouge);
}

.transformation-label.after {
    color: var(--vert-succes);
}

.transformation-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gris-texte);
}

.testimonial-quote {
    font-style: italic;
    color: rgba(34, 34, 34, 0.8);
    line-height: 1.7;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gris-clair);
}

/* === COMPARISON TABLE === */
.comparatif-section {
    background: var(--blanc-pur);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: var(--blanc-pur);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--gris-clair);
}

.comparison-row:first-child {
    background: var(--noir-profond);
    color: var(--blanc-pur);
    font-weight: 700;
}

.comparison-row:nth-child(even) {
    background: var(--gris-clair);
}

.comparison-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-cell:first-child {
    justify-content: flex-start;
    font-weight: 600;
}

.check {
    color: var(--vert-succes);
    font-size: 24px;
}

.cross {
    color: var(--rouge);
    font-size: 24px;
}

/* === À PROPOS === */
.apropos-section {
    background: var(--gris-clair);
}

.apropos-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.apropos-photo {
    width: 100%;
    max-width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 4px solid var(--or-premium);
}

.apropos-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--gris-texte);
    text-transform: none;
}

.apropos-text p {
    color: rgba(34, 34, 34, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.apropos-text p strong {
    color: var(--cuivre-ambre);
    font-weight: 600;
}

/* === APPEL SECTION === */
.appel-section {
    background: var(--or-premium);
    text-align: center;
    color: var(--noir-profond);
}

.appel-content {
    max-width: 720px;
    margin: 0 auto;
}

.appel-section h2 {
    margin-bottom: 1rem;
    color: var(--noir-profond);
    font-size: clamp(28px, 4vw, 42px);
    text-transform: none;
}

.appel-section p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* === FORMS === */
.contact-form {
    max-width: 620px;
    margin: 1.2rem auto;
    background: var(--blanc-pur);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(10, 10, 10, 0.15);
    text-align: left;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: var(--noir-profond);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--gris-clair);
    border-radius: 4px;
    font-size: 1rem;
    background: var(--blanc-pur);
    color: var(--gris-texte);
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    font-family: Inter, sans-serif;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 0;
    border-color: var(--cuivre-ambre);
    box-shadow: 0 0 0 3px rgba(231, 138, 0, 0.15);
}

.form-group select {
    background-image: linear-gradient(45deg, transparent 50%, var(--noir-profond) 50%), linear-gradient(135deg, var(--noir-profond) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    cursor: pointer;
}

/* Radio buttons */
input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px !important;
    height: 20px;
    border: 2px solid var(--gris-anthracite-clair);
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    background: var(--blanc-pur);
    flex-shrink: 0;
    margin: 0;
    padding: 0 !important;
}

input[type="radio"]:hover {
    border-color: var(--cuivre-ambre);
}

input[type="radio"]:checked {
    border-color: var(--cuivre-ambre);
    border-width: 3px;
    background: var(--blanc-pur);
}

input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cuivre-ambre);
    display: block !important;
}

input[type="radio"]:focus {
    border-color: var(--cuivre-ambre);
    box-shadow: 0 0 0 3px rgba(231, 138, 0, 0.15);
}

.form-hint {
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 0.5rem 0 1rem;
    color: var(--gris-texte);
}

.form-consent {
    font-size: 0.9rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.form-consent label {
    cursor: pointer;
}

.form-submit {
    background: var(--cuivre-ambre);
    color: var(--blanc-pur);
    padding: 14px 18px;
    border: 2px solid var(--cuivre-ambre);
    border-radius: 4px;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(231, 138, 0, 0.35);
}

.form-submit:hover:not(:disabled) {
    background: var(--cuivre-profond);
    color: var(--blanc-pur);
    box-shadow: 0 4px 15px rgba(231, 138, 0, 0.5);
    transform: translateY(-2px);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.error {
    border-color: var(--rouge) !important;
}

.error-message {
    color: var(--rouge);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* === LEGAL CONTENT === */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--noir-profond);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--or-premium);
}

.legal-section h3 {
    font-size: 1.3rem;
    color: var(--noir-profond);
    margin: 30px 0 15px;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-section ul {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.legal-section li {
    margin-bottom: 10px;
}

.legal-section strong {
    color: var(--noir-profond);
    font-weight: 600;
}

.legal-highlight {
    background: var(--gris-clair);
    padding: 25px;
    border-left: 4px solid var(--or-premium);
    border-radius: 4px;
    margin: 25px 0;
}

.legal-highlight p {
    margin-bottom: 10px;
}

.legal-highlight p:last-child {
    margin-bottom: 0;
}

.update-date {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    font-style: italic;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--gris-clair);
}

/* === CHECKLIST === */
.checklist {
    background: var(--gris-clair);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 600px;
}

.checklist h2 {
    font-size: 1.6rem;
    color: var(--noir-profond);
    margin-bottom: 1.5rem;
    text-align: center;
}

.checklist-items {
    list-style: none;
    padding: 0;
}

.checklist-items li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--blanc-pur);
    border-radius: 6px;
    border-left: 4px solid var(--or-premium);
}

.checklist-items li:before {
    content: "✓";
    color: var(--or-premium);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.checklist-items strong {
    display: block;
    color: var(--noir-profond);
    margin-bottom: 0.3rem;
}

/* === CALENDLY === */
.calendly-section {
    padding: 40px 0;
    background: var(--blanc-pur);
}

.calendly-embed-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--blanc-pur);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 10, 10, 0.08);
}

/* === FOOTER === */
footer {
    background: var(--gris-anthracite);
    color: var(--blanc-pur);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--or-premium);
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-col nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s;
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--or-premium);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-cta {
    display: inline-block;
    background: var(--cuivre-ambre);
    color: var(--blanc-pur) !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 8px;
    transition: all 0.2s;
    box-shadow: 0 2px 10px rgba(231, 138, 0, 0.35);
}

.footer-cta:hover {
    background: var(--cuivre-profond);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 138, 0, 0.5);
}

.footer-note {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 8px;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s;
    font-size: 14px;
}

.social-links a:hover {
    background: var(--or-premium);
    color: var(--noir-profond) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 14px;
    margin: 0;
}

.footer-bottom nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-bottom nav a:hover {
    color: var(--or-premium);
}

/* === UTILITIES === */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.visually-hidden:focus {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    padding: 1rem;
    background: var(--cuivre-ambre);
    color: var(--blanc-pur);
    z-index: 9999;
    clip: auto;
    overflow: visible;
}

/* === ANIMATIONS === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: none;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .site-header nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        order: 2;
        justify-content: center;
        gap: 1.2rem;
        width: 100%;
        flex-wrap: wrap;
        margin-top: 0.5rem;
    }

    .logo {
        height: 60px;
    }

    .hero {
        padding: 80px 20px 60px;
    }

    .legal-hero {
        padding: 60px 0 40px;
    }

    .legal-hero h1 {
        font-size: 2rem;
    }

    .legal-content {
        padding: 40px 15px;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .merci-hero {
        padding: 60px 0 40px;
    }

    section {
        padding: 40px 0;
    }

    .calculator {
        padding: 25px;
    }

    .calculator-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .calculator-row label {
        text-align: left;
    }

    .calculator-row > div {
        justify-content: flex-end;
    }

    .calculator-row input {
        width: 100%;
        max-width: 200px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .apropos-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .apropos-photo {
        margin: 0 auto;
    }

    footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .footer-bottom nav {
        justify-content: center;
    }

    .checklist {
        padding: 1.5rem;
    }

    .calendly-inline-widget {
        height: 600px !important;
    }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero::before {
        animation: none;
    }
}