/* =====================================================
   PAGE NOTRE METHODE - ONE TILT
   Charge uniquement sur /notre-methode/
   Les variables globales viennent de style.css
   ===================================================== */

:root {
    /* Variables manquantes dans style.css - definies localement */
    --texte-principal: var(--anthracite);
    --texte-secondaire: var(--anthracite-muted);
    --gris-moyen: var(--anthracite-muted);
    --gris-clair: var(--bleu-petrole-pale);

    /* Complements */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(34, 87, 122, 0.06);
    --shadow-md: 0 8px 24px rgba(34, 87, 122, 0.1);
    --shadow-lg: 0 16px 48px rgba(34, 87, 122, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

/* =====================================================
   HERO METHODE (même style que hero-a page offres)
   ===================================================== */
.hero-method {
    min-height: auto;
    background: var(--bleu-petrole-dark, #1a4460);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
    font-family: var(--font-primary, 'Orkney', 'Nunito Sans', system-ui, sans-serif);
}

.hero-method * {
    font-family: var(--font-primary, 'Orkney', 'Nunito Sans', system-ui, sans-serif);
    box-sizing: border-box;
}

/* Masquer la décoration SVG (contenu WP database) */
.hero-method-decoration {
    display: none !important;
}

.hero-method::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(255, 214, 100, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(34, 87, 122, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* Cercle décoratif animé — contenu dans le hero uniquement */
.hero-method::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -60px;
    width: 220px;
    height: 220px;
    margin-top: -110px;
    border: 1px solid rgba(255, 214, 100, 0.08);
    border-radius: 50%;
    animation: pulse-ring 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

@keyframes underline-grow {
    to { transform: scaleX(1); }
}

.hero-method-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-method-header {
    margin-bottom: 0;
}

.hero-method-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.hero-method-eyebrow::before {
    content: '';
    width: 40px;
    height: 2px;
    background: #ffd664;
}

.hero-method-title {
    font-family: 'Orkney', 'Nunito Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--blanc, #ffffff);
    line-height: 1.05;
    margin: 0 0 20px 0;
    letter-spacing: -0.03em;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.3s;
}

.hero-method-title-accent {
    color: var(--jaune-cuivre, #ffd664);
    position: relative;
    display: inline-block;
}

.hero-method-title-accent::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    right: 0;
    height: 0.12em;
    background: rgba(255, 214, 100, 0.3);
    transform: scaleX(0);
    transform-origin: left;
    animation: underline-grow 0.8s ease forwards 0.8s;
}

.hero-method-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

/* Stats hero */
.hero-method-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.5s;
}

.hero-method-stat {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-method-stat-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(255, 214, 100, 0.12);
    border: 1px solid rgba(255, 214, 100, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jaune-cuivre, #ffd664);
}

.hero-method-stat-content {
    display: flex;
    flex-direction: column;
}

.hero-method-stat-value {
    font-family: 'Orkney', 'Nunito Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--jaune-cuivre, #ffd664);
    line-height: 1.1;
}

.hero-method-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.3;
    max-width: 160px;
}

/* Hero CTA (réutilisé dans process-cta) */
.hero-method-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.hero-method-btn svg {
    width: 18px;
    height: 18px;
}

.hero-method-btn--primary {
    background: var(--jaune-cuivre);
    color: var(--bleu-petrole-dark, #1a4460);
    box-shadow: 0 4px 20px rgba(255, 214, 100, 0.3);
}

.hero-method-btn--primary:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.hero-method-btn--secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.hero-method-btn--secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
}

/* =====================================================
   BREADCRUMB
   ===================================================== */
.breadcrumb {
    background: var(--ivoire);
    padding: 0.9rem 2rem;
    border-bottom: 1px solid rgba(34, 87, 122, 0.08);
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--gris-moyen);
}

.breadcrumb-link {
    color: var(--bleu-petrole);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-link:hover {
    color: var(--bleu-petrole-dark);
    text-decoration: underline;
}

.breadcrumb-separator {
    color: var(--gris-clair);
    margin: 0 0.15rem;
    display: flex;
    align-items: center;
}

.breadcrumb-separator svg {
    width: 14px;
    height: 14px;
}

.breadcrumb-current {
    color: var(--texte-principal);
    font-weight: 500;
}

/* =====================================================
   SECTION PROMESSE
   ===================================================== */
.method-promise-intro {
    background: var(--ivoire);
    padding: 50px 2rem;
}

.method-promise-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Eyebrow (shared class) — barre dorée à gauche, comme les autres pages */
.method-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--bleu-petrole, #22577a);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.method-eyebrow::before {
    content: '';
    width: 24px;
    height: 3px;
    background: var(--jaune-cuivre, #ffd664);
    border-radius: 2px;
}

.method-section-title {
    font-family: var(--font-primary, 'Orkney', 'Nunito Sans', sans-serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--anthracite, #2c2c2c);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 0.5rem;
}

.method-section-title strong {
    font-weight: 800;
    color: var(--bleu-petrole, #22577a);
}

.method-promise-intro-text {
    font-size: 1.05rem;
    color: var(--texte-secondaire);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.method-promise-intro-content p {
    font-size: 1.05rem;
    color: var(--texte-secondaire);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* Frustrations list */
.method-promise-frustrations {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.method-promise-frustration {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.97rem;
    color: var(--texte-principal);
    line-height: 1.5;
}

.method-promise-frustration-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
    color: #ef4444;
}

.method-promise-frustration-icon svg {
    width: 20px;
    height: 20px;
}

/* Visual column */
.method-promise-intro-visual {
    position: relative;
}

.method-promise-intro-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.method-promise-intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Card "100% Gratuit" */
.method-promise-card-free {
    position: absolute;
    bottom: -2rem;
    left: -1.5rem;
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 1.4rem 1.6rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 1rem;
    max-width: 340px;
    border: 1px solid rgba(34, 87, 122, 0.08);
}

.method-promise-card-free-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(34, 87, 122, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bleu-petrole);
}

.method-promise-card-free-icon svg {
    width: 28px;
    height: 28px;
}

.method-promise-card-free-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.method-promise-card-free-badge {
    display: inline-flex;
    background: rgba(255, 214, 100, 0.2);
    color: var(--jaune-cuivre-dark);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    align-self: flex-start;
}

.method-promise-card-free-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--texte-principal);
    margin: 0;
}

.method-promise-card-free-text {
    font-size: 0.82rem;
    color: var(--texte-secondaire);
    line-height: 1.5;
    margin: 0;
}

/* Full-width quote */
.method-promise-quote-full {
    max-width: 900px;
    margin: 4rem auto 0;
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--jaune-cuivre);
    display: block;
}

.method-promise-quote-full-container {
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.method-promise-quote-full-icon {
    color: var(--jaune-cuivre);
    opacity: 0.4;
}

.method-promise-quote-full-icon svg {
    width: 36px;
    height: 36px;
}

.method-promise-quote-full-text {
    font-size: 1.1rem;
    color: var(--texte-principal);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.method-promise-quote-full-author {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-style: normal;
}

.method-promise-quote-full-name {
    font-weight: 700;
    color: var(--bleu-petrole);
    font-size: 0.95rem;
}

.method-promise-quote-full-role {
    font-size: 0.82rem;
    color: var(--texte-secondaire);
}

/* =====================================================
   PROCESS - TIMELINE (gauche) + PANNEAU INTERACTIF (droite)
   ===================================================== */
.process-section {
    background: var(--blanc, #ffffff);
    padding: 50px 2rem;
}

.process-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-section-header {
    max-width: 680px;
    margin: 0 0 3rem;
}

.process-section-subtitle {
    font-size: 1.05rem;
    color: var(--texte-secondaire);
    line-height: 1.75;
    margin: 0;
}

/* Grille 2 colonnes */
.process-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 3rem;
    align-items: start;
}

/* ---- Timeline gauche ---- */
.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 0;
}

/* Ligne verticale de fond (grise) */
.process-timeline-line {
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--bleu-petrole-pale, #e8f0f4);
    z-index: 0;
}

/* Ligne de progression (jaune, animée par JS) */
.process-timeline-progress {
    position: absolute;
    left: 18px;
    top: 0;
    width: 2px;
    height: 0;
    background: var(--jaune-cuivre, #ffd664);
    z-index: 1;
    transition: height 0.5s ease;
}

/* Chaque étape (bouton) */
.process-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1rem 1rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    z-index: 2;
    transition: all 0.3s ease;
    font-family: var(--font-primary, 'Orkney', 'Nunito Sans', system-ui, sans-serif);
}

.process-step:hover .process-step-name {
    color: var(--bleu-petrole, #22577a);
}

/* Marqueur rond */
.process-step-marker {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: var(--blanc, #ffffff);
    border: 2px solid var(--bleu-petrole-pale, #e8f0f4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 2px 6px rgba(34, 87, 122, 0.06);
}

.process-step.active .process-step-marker {
    background: var(--jaune-cuivre, #ffd664);
    border-color: var(--jaune-cuivre, #ffd664);
    box-shadow: 0 4px 12px rgba(255, 214, 100, 0.35);
    transform: scale(1.1);
}

.process-step.reached .process-step-marker {
    background: var(--jaune-cuivre, #ffd664);
    border-color: var(--jaune-cuivre, #ffd664);
}

.process-step-number {
    font-family: 'Orkney', 'Nunito Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--bleu-petrole, #22577a);
    letter-spacing: 0.02em;
    transition: color 0.4s ease;
}

.process-step.active .process-step-number,
.process-step.reached .process-step-number {
    color: var(--bleu-petrole-dark, #1a4460);
}

/* Infos étape */
.process-step-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.process-step-delay {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--jaune-cuivre-dark, #e5be4d);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: opacity 0.3s ease;
}

.process-step-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--texte-secondaire);
    transition: color 0.3s ease;
    line-height: 1.3;
}

.process-step.active .process-step-name {
    color: var(--bleu-petrole-dark, #1a4460);
    font-weight: 700;
}

/* ---- Panneaux droite ---- */
.process-panels {
    position: relative;
}

.process-panel {
    display: none;
    background: var(--blanc, #ffffff);
    border: 2px solid var(--bleu-petrole-pale, #e8f0f4);
    border-radius: var(--radius-lg, 24px);
    padding: 2.5rem;
}

.process-panel.active {
    display: block;
    animation: panelFadeIn 0.4s ease;
    box-shadow: var(--shadow-md, 0 8px 24px rgba(34, 87, 122, 0.1));
    border-color: var(--bleu-petrole, #22577a);
}

@keyframes panelFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.process-panel-badge {
    display: inline-block;
    background: rgba(255, 214, 100, 0.15);
    color: var(--jaune-cuivre-dark, #e5be4d);
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.process-panel-title {
    font-family: 'Orkney', 'Nunito Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bleu-petrole-dark, #1a4460);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.process-panel-text {
    font-size: 0.97rem;
    color: var(--texte-secondaire);
    line-height: 1.75;
    margin: 0 0 1.2rem;
}

.process-panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.process-panel-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--texte-principal);
    line-height: 1.5;
}

.process-panel-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    min-width: 7px;
    border-radius: 50%;
    background: var(--jaune-cuivre, #ffd664);
    margin-top: 0.4rem;
}

/* =====================================================
   PROCESS INTERACTIVE — Classes rendues par WordPress
   (contenu stocké en BDD, classes différentes du template)
   ===================================================== */
.process-interactive {
    background: var(--blanc, #ffffff);
    padding: 50px 2rem;
}

.process-interactive-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-interactive-header {
    text-align: left;
    max-width: 680px;
    margin: 0 0 3rem;
}

.process-interactive-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--bleu-petrole, #22577a);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.process-interactive-eyebrow::before {
    content: '';
    width: 24px;
    height: 3px;
    background: var(--jaune-cuivre, #ffd664);
    border-radius: 2px;
}

.process-interactive-title {
    font-family: var(--font-primary, 'Orkney', 'Nunito Sans', sans-serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--anthracite, #2c2c2c);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 0.5rem;
}

.process-interactive-subtitle {
    font-size: 1.05rem;
    color: var(--texte-secondaire);
    line-height: 1.75;
    margin: 0;
}

/* ---- Desktop : grille 2 colonnes ---- */
.process-interactive-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Colonne gauche : étapes */
.process-interactive-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 0;
}

/* Ligne verticale derrière les étapes */
.process-interactive-steps::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--bleu-petrole-pale, #e8f0f4);
    z-index: 0;
}

/* Ligne de progression (gérée par JS) */
.process-interactive-steps::after {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    width: 2px;
    height: var(--progress-height, 0px);
    background: var(--jaune-cuivre, #ffd664);
    z-index: 1;
    transition: height 0.5s ease;
}

.process-step-trigger {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem 0.85rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    z-index: 2;
    transition: all 0.3s ease;
    font-family: var(--font-primary, 'Orkney', 'Nunito Sans', system-ui, sans-serif);
}

.process-step-trigger:hover .process-step-label {
    color: var(--bleu-petrole, #22577a);
}

.process-step-trigger .process-step-number {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: var(--blanc, #ffffff);
    border: 2px solid var(--bleu-petrole-pale, #e8f0f4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orkney', 'Nunito Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--bleu-petrole, #22577a);
    letter-spacing: 0.02em;
    transition: all 0.4s ease;
    box-shadow: 0 2px 6px rgba(34, 87, 122, 0.06);
}

.process-step-trigger.active .process-step-number {
    background: var(--jaune-cuivre, #ffd664);
    border-color: var(--jaune-cuivre, #ffd664);
    box-shadow: 0 4px 12px rgba(255, 214, 100, 0.35);
    transform: scale(1.1);
    color: var(--bleu-petrole-dark, #1a4460);
}

.process-step-trigger.reached .process-step-number {
    background: var(--jaune-cuivre, #ffd664);
    border-color: var(--jaune-cuivre, #ffd664);
    color: var(--bleu-petrole-dark, #1a4460);
}

.process-step-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--texte-secondaire);
    transition: color 0.3s ease;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.process-step-trigger.active .process-step-label {
    color: var(--bleu-petrole-dark, #1a4460);
    font-weight: 700;
}

.process-step-icon {
    display: inline-flex;
    align-items: center;
}

.process-step-icon .emoji {
    width: 18px;
    height: 18px;
}

/* Colonne droite : panneaux */
.process-interactive-content {
    position: relative;
}

.process-content-panel {
    display: none;
    background: var(--blanc, #ffffff);
    border: 2px solid var(--bleu-petrole-pale, #e8f0f4);
    border-radius: var(--radius-lg, 24px);
    overflow: hidden;
}

.process-content-panel.active {
    display: block;
    animation: panelFadeIn 0.4s ease;
    box-shadow: var(--shadow-md, 0 8px 24px rgba(34, 87, 122, 0.1));
    border-color: var(--bleu-petrole, #22577a);
}

.process-content-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.process-content-body {
    padding: 2rem 2.5rem 2.5rem;
}

.process-content-body .icon {
    display: inline-flex;
    align-items: center;
    margin-right: 0.3rem;
}

.process-content-body .icon .emoji,
.process-content-body .emoji {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.process-content-title {
    font-family: var(--font-primary, 'Orkney', 'Nunito Sans', sans-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--bleu-petrole-dark, #1a4460);
    margin: 0 0 0.75rem;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.process-content-body p {
    font-size: 0.95rem;
    color: var(--texte-secondaire);
    line-height: 1.75;
    margin: 0 0 0.8rem;
}

.process-content-body p:last-child {
    margin-bottom: 0;
}

.process-content-body a {
    color: var(--bleu-petrole, #22577a);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.process-content-body a:hover {
    color: var(--bleu-petrole-dark, #1a4460);
}

.process-content-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.process-content-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--texte-principal);
    line-height: 1.5;
}

.process-content-body ul li::before {
    content: '';
    width: 7px;
    height: 7px;
    min-width: 7px;
    border-radius: 50%;
    background: var(--jaune-cuivre, #ffd664);
    margin-top: 0.4rem;
}

.process-content-note {
    background: rgba(255, 214, 100, 0.1);
    border-left: 3px solid var(--jaune-cuivre, #ffd664);
    padding: 0.75rem 1rem;
    border-radius: 0 var(--radius-sm, 8px) var(--radius-sm, 8px) 0;
    font-size: 0.88rem !important;
    color: var(--texte-principal) !important;
}

.process-content-highlight {
    background: rgba(34, 87, 122, 0.05);
    border-left: 3px solid var(--bleu-petrole, #22577a);
    padding: 0.75rem 1rem;
    border-radius: 0 var(--radius-sm, 8px) var(--radius-sm, 8px) 0;
    font-size: 0.88rem !important;
    color: var(--texte-principal) !important;
}

.process-content-quote {
    background: rgba(34, 87, 122, 0.04);
    border-radius: var(--radius-sm, 8px);
    padding: 1.2rem 1.5rem;
    margin: 1rem 0 0;
    border-left: 3px solid var(--bleu-petrole, #22577a);
}

.process-content-quote p {
    font-style: italic;
    font-size: 0.92rem !important;
    color: var(--texte-principal) !important;
    margin-bottom: 0.4rem !important;
}

.process-content-quote cite {
    font-size: 0.82rem;
    color: var(--bleu-petrole, #22577a);
    font-weight: 600;
    font-style: normal;
}

/* ---- Mobile : accordéon ---- */
.process-accordion {
    display: none;
}

.process-accordion-item {
    border: 2px solid var(--bleu-petrole-pale, #e8f0f4);
    border-radius: var(--radius-md, 16px);
    overflow: hidden;
    margin-bottom: 0.6rem;
    transition: all 0.3s ease;
}

.process-accordion-item:has(.process-accordion-trigger.active) {
    border-color: var(--bleu-petrole, #22577a);
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(34, 87, 122, 0.06));
}

.process-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary, 'Orkney', 'Nunito Sans', system-ui, sans-serif);
}

.process-accordion-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: var(--bleu-petrole-pale, #e8f0f4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--bleu-petrole, #22577a);
    transition: all 0.3s ease;
}

.process-accordion-trigger.active .process-accordion-number {
    background: var(--jaune-cuivre, #ffd664);
    color: var(--bleu-petrole-dark, #1a4460);
}

.process-accordion-label {
    flex: 1;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--texte-principal);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.process-accordion-label .emoji {
    width: 16px;
    height: 16px;
}

.process-accordion-arrow {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: var(--bleu-petrole, #22577a);
    transition: transform 0.3s ease;
}

.process-accordion-trigger.active .process-accordion-arrow {
    transform: rotate(180deg);
}

.process-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.process-accordion-content.open {
    max-height: 2000px;
}

.process-accordion-inner {
    padding: 0 1.2rem 1.2rem;
}

.process-accordion-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-sm, 8px);
    margin-bottom: 0.8rem;
}

.process-accordion-inner p {
    font-size: 0.9rem;
    color: var(--texte-secondaire);
    line-height: 1.65;
    margin: 0 0 0.6rem;
}

.process-accordion-inner ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.process-accordion-inner ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--texte-principal);
    line-height: 1.5;
}

.process-accordion-inner ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: var(--jaune-cuivre, #ffd664);
    margin-top: 0.35rem;
}

.process-accordion-note {
    background: rgba(255, 214, 100, 0.1);
    border-left: 3px solid var(--jaune-cuivre, #ffd664);
    padding: 0.6rem 0.8rem;
    border-radius: 0 6px 6px 0;
    font-size: 0.85rem !important;
}

.process-accordion-highlight {
    background: rgba(34, 87, 122, 0.05);
    border-left: 3px solid var(--bleu-petrole, #22577a);
    padding: 0.6rem 0.8rem;
    border-radius: 0 6px 6px 0;
    font-size: 0.85rem !important;
}

.process-accordion-inner .emoji {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

/* =====================================================
   CTA FINAL — Classes rendues par WordPress
   ===================================================== */
.method-cta-final-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.method-cta-final-title {
    font-family: var(--font-primary, 'Orkney', 'Nunito Sans', sans-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 1.2rem;
    letter-spacing: -0.02em;
}

/* Accent doré sur le mot clé (strong ou em) dans le titre CTA */
.method-cta-final-title strong,
.method-cta-final-title em {
    color: var(--jaune-cuivre, #ffd664);
    font-style: normal;
    position: relative;
}

.method-cta-final-title strong::after,
.method-cta-final-title em::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: var(--jaune-cuivre, #ffd664);
    border-radius: 2px;
    opacity: 0.5;
}

.method-cta-final-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0 0 2.5rem;
}

.method-cta-final-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.method-cta-final-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 2.2rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.method-cta-final-btn svg {
    width: 18px;
    height: 18px;
}

.method-cta-final-btn--primary {
    background: var(--jaune-cuivre);
    color: var(--bleu-petrole-dark, #1a4460);
    box-shadow: 0 4px 20px rgba(255, 214, 100, 0.3);
}

.method-cta-final-btn--primary:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.method-cta-final-btn--secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.method-cta-final-btn--secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
}

/* =====================================================
   TEMOIGNAGES SLIDER
   ===================================================== */
.testimonials-slider {
    background: linear-gradient(160deg, var(--bleu-petrole-dark, #1a4460) 0%, var(--bleu-petrole-dark) 100%);
    padding: 50px 2rem;
    position: relative;
    overflow: hidden;
}

.testimonials-slider::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(255, 214, 100, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.testimonials-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-slider-header {
    max-width: 640px;
    margin: 0 0 3.5rem;
}

.testimonials-slider-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 214, 100, 0.12);
    border: 1px solid rgba(255, 214, 100, 0.3);
    color: var(--jaune-cuivre);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.testimonials-slider-title {
    font-family: 'Orkney', 'Nunito Sans', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 1.5rem;
}

.testimonials-slider-title strong {
    color: var(--jaune-cuivre);
}

/* Google rating bar */
.testimonials-slider-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.testimonials-slider-google {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-slider-score {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--jaune-cuivre);
}

.testimonials-slider-stars {
    display: flex;
    gap: 0.15rem;
}

.testimonials-slider-stars svg {
    width: 18px;
    height: 18px;
}

.testimonials-slider-count {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Slider wrapper */
.testimonials-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-track-container {
    overflow: hidden;
    border-radius: var(--radius-lg);
    flex: 1;
}

.testimonials-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Arrow buttons */
.testimonials-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.testimonials-arrow:hover {
    border-color: var(--jaune-cuivre);
    background: rgba(255, 214, 100, 0.15);
    color: var(--jaune-cuivre);
}

.testimonials-arrow svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Testi card */
.testi-card {
    min-width: 100%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem 3rem;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.testi-card-stars {
    display: flex;
    gap: 0.25rem;
}

.testi-card-stars svg {
    width: 18px;
    height: 18px;
}

.testi-card-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    font-style: italic;
    margin: 0;
}

.testi-card-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.testi-card-info {
    display: flex;
    flex-direction: column;
}

.testi-card-info strong {
    color: #ffffff;
    font-size: 1rem;
}

.testi-card-info span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.testi-card-location {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
    margin-top: 0.2rem;
}

.testi-card-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255, 214, 100, 0.3);
}

/* Slider CTA */
.testimonials-slider-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--jaune-cuivre);
    color: var(--bleu-petrole-dark, #1a4460);
    padding: 0.95rem 2.2rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(255, 214, 100, 0.3);
}

.btn-primary-cta:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-primary-cta svg {
    width: 18px;
    height: 18px;
}

/* =====================================================
   FAQ (2 colonnes)
   ===================================================== */
.faq {
    background: var(--ivoire);
    padding: 50px 2rem;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    gap: 5rem;
    align-items: start;
}

.method-faq-content {
    position: sticky;
    top: 120px;
}

.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--bleu-petrole, #22577a);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.faq-eyebrow::before {
    content: '';
    width: 24px;
    height: 3px;
    background: var(--jaune-cuivre, #ffd664);
    border-radius: 2px;
}

.faq-title {
    font-family: var(--font-primary, 'Orkney', 'Nunito Sans', sans-serif);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--anthracite, #2c2c2c);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0 0 0.5rem;
}

.method-faq-content > p {
    font-size: 1rem;
    color: var(--texte-secondaire);
    line-height: 1.75;
    margin: 0 0 1rem;
}

/* FAQ list (right column) */
.method-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.faq-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid rgba(34, 87, 122, 0.08);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--bleu-petrole);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--texte-principal);
    line-height: 1.4;
    user-select: none;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: var(--bleu-petrole);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 0.93rem;
    color: var(--texte-secondaire);
    line-height: 1.75;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* FAQ contact CTA */
.method-faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--bleu-petrole-dark, #1a4460);
    color: #ffffff;
    padding: 0.75rem 1.6rem;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 1.5rem;
}

.method-faq-contact:hover {
    background: var(--bleu-petrole);
    transform: translateY(-2px);
}

/* =====================================================
   CTA FINAL
   ===================================================== */
.method-cta-final {
    background: var(--bleu-petrole-dark, #1a4460);
    padding: 50px 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.method-cta-final::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 214, 100, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.method-cta-final-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.method-cta-final-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 214, 100, 0.12);
    border: 1px solid rgba(255, 214, 100, 0.3);
    color: var(--jaune-cuivre);
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.method-cta-final h2 {
    font-family: 'Orkney', 'Nunito Sans', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 1.2rem;
}

.method-cta-final h2 span {
    color: var(--jaune-cuivre);
}

.method-cta-final p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0 0 2.5rem;
}

.method-cta-final-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.method-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--jaune-cuivre);
    color: var(--bleu-petrole-dark, #1a4460);
    padding: 0.95rem 2.2rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(255, 214, 100, 0.3);
}

.method-cta-btn-primary:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.method-cta-btn-primary svg {
    width: 18px;
    height: 18px;
}

.method-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.95rem 2.2rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition);
}

.method-cta-btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .method-promise-intro-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .method-promise-card-free {
        position: static;
        margin-top: 1.5rem;
        max-width: 100%;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .method-faq-content {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero-method {
        padding: 100px 1.5rem 50px;
    }

    .hero-method-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .hero-method-stats {
        flex-direction: column;
        gap: 1.2rem;
    }

    .method-promise-intro {
        padding: 60px 1.5rem;
    }

    .method-promise-quote-full-container {
        padding: 1.5rem 2rem;
    }

    /* Process section (template) */
    .process-section {
        padding: 40px 1.5rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-panel {
        padding: 1.5rem;
    }

    /* Process interactive (WP database content) */
    .process-interactive {
        padding: 40px 1.5rem;
    }

    .process-interactive-grid {
        display: none;
    }

    .process-accordion {
        display: block;
    }

    .testimonials-slider {
        padding: 60px 1.5rem;
    }

    .testimonials-slider-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .testimonials-arrow {
        display: none;
    }

    .testimonials-track {
        flex-direction: column;
        transform: none !important;
        gap: 1rem;
    }

    .testi-card {
        min-width: 100%;
        padding: 2rem 1.5rem;
    }

    .testi-card-text {
        font-size: 0.95rem;
    }

    .faq {
        padding: 60px 1.5rem;
    }

    .method-cta-final {
        padding: 60px 1.5rem;
    }

    .method-cta-final-actions,
    .method-cta-final-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-method {
        padding: 100px 1rem 40px;
    }

    .testi-card-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
}