/* --- Variables & Reset --- */
:root {
    --gold: #F0A61F;
    --blue: #005074;
    --dark-blue: #003a55;
    --light-bg: #f9f9f9;
    --cream-bg: #fffbf2;
    --white: #ffffff;
    --font-head: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
	--nav-height: 250px; /* Ajout pour le calcul pour afficher la hero section sur la taille de l'écran*/
}

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

body { font-family: var(--font-body); line-height: 1.6; color: #333; background-color: var(--white); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--blue); }
h5 { font-family: var(--font-head); color: var(--blue); }
a { text-decoration: none; color: inherit; transition: 0.3s; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Helpers */
.justified-text { text-align: justify; }
.section-white { background-color: var(--white); padding: 40px 0; }
.section-light { background-color: var(--light-bg); padding: 40px 0; }
.section-cream { background-color: var(--cream-bg); padding: 40px 0; }

/* Navigation */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 19px 5%; background-color: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.navbar-blog { display: flex; justify-content: space-between; align-items: center; padding: 19px 5%; background-color: var(--gold); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
	/* Le conteneur du logo */
.logo {display: flex; align-items: center; text-decoration: none; /* Enlève le soulignement si c'est un lien */}
	/* L'image du logo */
.logo img {
    /* 1. La taille "fictive" (celle que la barre de navigation voit) */
    height: 32px; 
    width: auto;
    /* 2. L'effet de zoom (1.5 = 150% de la taille) ; ne fonctionne pas donc supprimé : translateY(3px) : Pousse l'image de 3 pixels vers le bas pour équilibrer*/
    /* C'est cette ligne qui agrandit l'image visuellement sans pousser les bords */
    transform: scale(2.4);
    /* 3. L'ancrage (pour que le logo reste bien aligné à gauche) */
	transform-origin: left center;
    /* Sécurité pour le rendu propre des pixels */
    object-fit: contain;
	/* Optionnel : ajoute un petit espace de sécurité en haut si besoin */
    margin-top: 5px;
}
.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li { margin-left: 25px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--blue); }
.nav-links a:hover { color: var(--gold); }
.btn-nav { border: 2px solid var(--gold); padding: 8px 20px; border-radius: 25px; background-color: var(--gold); color: var(--white) !important; }
.btn-nav:hover { background-color: var(--white); color: var(--gold) !important; }
.btn-nav-blog { border: 2px solid var(--blue); padding: 8px 20px; border-radius: 25px; color: var(--blue) !important; }
.btn-nav-blog:hover { background-color: var(--blue); color: var(--white) !important; }
.burger { display: none; }

/* C-artChimie logo - mise à niveau */
.image-lettre {
    /* Ajuste la hauteur de l'image pour qu'elle corresponde à la taille du texte (1em) ou comme on souhaite en ajustant */
    height: 1.5em; 
    
    /* Aligne la base de l'image sur la base des lettres */
    vertical-align: text-top; 
    
    /* Optionnel : ajoute un tout petit espace si l'image colle trop aux lettres voisines */
    margin: 0 1px;
}

/* --- NAVIGATION & DROPDOWN --- */
.nav-links li.dropdown-container {
    position: relative;
}
.nav-links li.dropdown-container:hover .dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    min-width: 220px;
    padding: 10px 0;
    border-radius: 8px;
    z-index: 1000;
    list-style: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.dropdown li {
    padding: 0;
}
.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--blue);
    font-size: 0.95em;
    font-weight: 500;
}
.dropdown li a:hover {
    background-color: var(--light-bg);
    color: var(--gold);
}

/* --- SECTION HERO --- */
.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 70vh;
	min-height: calc(100vh - var(--nav-height));
}

.hero-text {
    flex: 1;
    max-width: 600px;
	color: var(--white);
}
.surtitre {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85em;
    display: block;
    margin-bottom: 15px;
}
.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
	color: var(--white);
}
.highlight-gold { color: var(--gold); }
.highlight-blue { color: var(--blue); }
.hero-text p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #555;
	color: var(--white);
}
.hero-actions {
    display: flex;
    gap: 15px;
}
.btn-primary {
    background-color: var(--gold);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
}
.btn-primary:hover { background-color: #d99215; }
.btn-secondary {
    background-color: transparent;
    color: var(--blue);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--blue);
}
.btn-secondary:hover { background-color: var(--blue); color: var(--white); }
.hero-image {
    flex: 1;
    text-align: right;
	flex-shrink: 0;
}
.hero-image img {
    max-width: 100%;
    max-height: 80vh; /* Limite la hauteur pour ne pas dépasser de l'écran */
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 10px 10px 0px var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-layout { flex-direction: column; text-align: center; min-height: auto; /* Laisse le contenu dicter la hauteur sur mobile */ padding-top: 40px; /* On redonne un peu d'air sur mobile */}
    .hero-text { max-width: 100%; }
    .hero-actions { flex-direction: column; }
    .hero-image { text-align: center; margin-top: 30px; /* CRUCIAL : empêche l'image de rétrécir jusqu'à disparaître */ flex-shrink: 0;}
    .hero-image img { box-shadow: 0px 10px 0px var(--gold); }
    .nav-links li.dropdown-container:hover .dropdown { position: relative; box-shadow: none; }
}

/* Hero Section */
.hero { overflow: hidden; min-height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; background-color: var(--blue); color: var(--white); position: relative; overflow: hidden; padding: 30px 20px; }
.splash-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: var(--gold); opacity: 0.15; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; z-index: 0; animation: float 6s ease-in-out infinite; }
.hero-content { z-index: 1; max-width: 800px; position: relative; }
.hero-btns { display: flex; gap: 15px; justify-content: center; margin-bottom: 30px; flex-wrap: wrap; position: relative; z-index: 10; }

.btn-main { background-color: var(--gold); color: var(--white); padding: 15px 35px; border-radius: 30px; font-weight: 600; border: none; cursor: pointer; box-shadow: 0 4px 15px rgba(240, 166, 31, 0.4); display: inline-block;}
.btn-main:hover { background-color: #d48f15; transform: translateY(-3px); }
.btn-outline { border: 2px solid var(--white); color: var(--white); padding: 13px 35px; border-radius: 30px; font-weight: 600; }
.btn-outline:hover { background-color: var(--white); color: var(--blue); }
.social-hero { display: flex; justify-content: center; gap: 20px; margin-top: 20px; position: relative; z-index: 10; }
.social-hero a { color: rgba(255,255,255,0.7); width: 24px; height: 24px; }
.social-hero a:hover { color: var(--gold); }

/* Miroir - Douleur client*/
.miroir ul li::before { content: '•'; color: var(--gold); position: absolute; left: 0; font-weight: bold; font-size: 1.2rem; }
/* Pont */
.pont ul li::before { content: '•'; color: var(--gold); position: absolute; left: 0; font-weight: bold; font-size: 1.2rem; }
/* Solution */
.solution ul li::before { content: '•'; color: var(--gold); position: absolute; left: 0; font-weight: bold; font-size: 1.2rem; }
/* Differenciation*/
.differenciation ul li::before { content: '•'; color: var(--gold); position: absolute; left: 0; font-weight: bold; font-size: 1.2rem; }

/* About Section */
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; position: relative; display: block; }
.section-title::after { content: ''; display: block; width: 60px; height: 4px; background-color: var(--gold); margin: 15px auto 0; border-radius: 2px; }

.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: stretch; }
.lead-text { font-size: 1.1rem; color: var(--blue); font-weight: 500; margin-bottom: 20px; }
.intro-anais { display: block; font-family: var(--font-head); font-size: 1.8rem; color: var(--gold); font-weight: 700; margin-bottom: 15px; }
.story-block { border-left: 3px solid var(--gold); padding-left: 20px; margin: 20px 0; font-style: italic; background: rgba(240, 166, 31, 0.05); padding: 15px; border-radius: 0 10px 10px 0; }

/* Phrase "c'est cette alchimie..." (sans cadre, police body) */
.emphasis-text {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--blue);
    text-align: center;
    margin-top: 40px;
    line-height: 1.4;
	border-left: 3px solid var(--gold)
}

.about-right-col { display: flex; flex-direction: column; justify-content: space-between; gap: 30px; }
.photo-placeholder { width: 100%; flex-grow: 1; min-height: 300px; background-color: #eee; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #aaa; background-image: url("Anais_Olory_Coach_professionnelle_presentation.jpg"); background-size: cover; background-repeat: no-repeat; background-position: high;}
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.value-card { background: var(--light-bg); padding: 15px; border-left: 3px solid var(--gold); border-radius: 0 8px 8px 0; font-size: 0.9rem; }
.value-card h5 { font-size: 1rem; margin-bottom: 5px; }

/* References Ingénieur et Coach + Logos ICI */
/* --- Styles de base (Écrans larges) --- */
.credentials {
    text-align: center;
    margin-top: 60px;
    display: flex;
    flex-direction: column; /* Aligne le bloc texte et le bloc image de haut en bas */
    align-items: center;    /* Centre les blocs horizontalement */
    gap: 0px;              /* Espace vertical entre le texte et les images */
    font-weight: 600;
    color: var(--gold);
}

.credentials-text {
    display: flex;
    justify-content: center;
    gap: 30px;              /* Espace entre vos deux phrases */
	margin-bottom: 0;
}

.credentials-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;              /* Espace entre les deux logos */
	margin-top: 0;
}

/* --- Ajustement indépendant des logos --- */
/* Vous pouvez modifier ces valeurs (ex: 80px, 120px, etc.) selon le rendu visuel */
.logo-RNCP {
    height: 14em; /* Un peu plus petit si le logo est naturellement plus massif */
    width: auto;
}
.logo-mastercoach {
    height: 3.7em; 
    width: auto;
}

/* TEXTE ECRITURE MANUSCRITE */
	/* --- Style du Conteneur --- */
	.conteneur-texte-anime {
		font-family: 'Architects Daughter', cursive; /* La police manuscrite lisible */
		font-size: 28px; /* Ajustez selon vos besoins */
		line-height: 1.6;
		color: #333; /* Gris foncé pour la lisibilité */
		margin: 40px auto; /* Centre le bloc */
		padding: 20px;
	}
	/* --- Style du Curseur --- */
	.curseur {
		font-weight: bold;
		color: #005074; /* Utilisez votre couleur dominante pour le curseur ! */
		animation: clignotement 0.8s infinite; /* Animation infinie */
	}
	/* --- Animation du Clignotement --- */
	@keyframes clignotement {
		0%, 100% { opacity: 1; }
		50% { opacity: 0; }
	}
	.mot-singularite { color: var(--blue); font-weight: bold; /* Optionnel : un petit effet de transition pour que la couleur apparaisse en douceur */ transition: color 0.5s ease; background: linear-gradient(180deg, transparent 60%, rgba(240, 166, 31, 0.3) 0%); padding: 0 4px; }
	

/* Definitions & Engagements */
.definitions-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
.def-box { padding: 20px; }
.def-box h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--blue); border-bottom: 2px solid var(--gold); display: inline-block; padding-bottom: 5px; }
.link-simple { color: var(--blue); text-decoration: underline; font-weight: 600; margin-top: 15px; display: inline-block; }

/* Services */
.subtitle { text-align: center; max-width: 1100px; margin: 0 auto 60px; }
.value-prop-box { max-width: 800px; margin: 0 auto 40px; text-align: justified; color: var(--dark-blue); background: white; padding: 20px; border-radius: 10px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; max-width: 900px; margin: 0 auto; }
.offer-card { background: var(--white); padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); position: relative; overflow: hidden; display: flex; flex-direction: column; text-align: center; }
.main-offer { border: 2px solid var(--gold); transform: scale(1.02); z-index: 2; }
.card-badge { position: absolute; top: 0; right: 0; background: var(--gold); color: white; padding: 5px 15px; font-size: 0.8rem; font-weight: bold; border-radius: 0 0 0 10px; }
.offer-meta { font-size: 0.9rem; text-transform: uppercase; color: #888; letter-spacing: 1px; margin-bottom: 10px; }
.offer-card h3 { font-size: 1.8rem; margin-bottom: 10px; color: var(--blue); }
.intro-offer { margin-bottom: 20px; font-style: italic; color: #555; }
.price-tag { font-size: 2.5rem; font-weight: 700; color: var(--blue); font-family: var(--font-head); margin-top: 10px; }
.price-detail { font-size: 0.9rem; color: #777; margin-bottom: 20px; font-style: italic; }
.features-list { margin-bottom: 30px; flex-grow: 1; text-align: left; }
.features-list ul { list-style: none; }
.features-list ul li { margin-bottom: 10px; padding-left: 20px; position: relative; font-size: 0.95rem; }
.features-list ul li::before { content: '•'; color: var(--gold); position: absolute; left: 0; font-weight: bold; font-size: 1.2rem; }
.btn-secondary { text-align: center; display: block; background: var(--blue);color: var(--white); font-weight: 600; border: 2px solid var(--blue); padding: 12px; border-radius: 25px; }
.btn-secondary:hover { background: var(--white); color: var(--blue); }

.tabs { text-align: center; margin-bottom: 40px; }
.tab-btn { background: transparent; border: none; font-family: var(--font-body); font-size: 1.1rem; padding: 10px 30px; cursor: pointer; border-bottom: 3px solid transparent; color: #888; margin: 0 5px; }
.tab-btn.active { color: var(--blue); border-bottom: 3px solid var(--blue); font-weight: 600; }
.tab-content { display: none; animation: fadeIn 0.5s; }
.active-content { display: block; }

.ideal-client-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 900px; margin: 50px auto 0; }
.client-card { padding: 25px; border-radius: 10px; text-align: left; }
.client-card h4 { margin-bottom: 15px; font-size: 1.1rem; }
.client-card.yes { background-color: rgba(0, 80, 116, 0.1); border: 1px solid var(--blue); }
.client-card.no { background-color: #fff0f0; border: 1px solid #e0e0e0; }
.client-card ul { list-style: none; padding-left: 5px; }
.client-card.yes ul li::before { content: '✓ '; color: #008000; font-weight: bold; margin-right: 5px; }
.client-card.no ul li::before { content: '× '; color: #FF0000; font-weight: bold; margin-right: 5px; }
.mt-50 { margin-top: 50px; }

/* Enterprise Card */
.enterprise-card { max-width: 900px; margin: 0 auto; border: 2px solid var(--gold); }
.card-badge-ent { position: absolute; top: 0; left: 50%; transform: translateX(-50%); background: var(--gold); color: white; padding: 5px 20px; font-size: 0.9rem; font-weight: bold; border-radius: 0 0 10px 10px; width: auto; }
.enterprise-content { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 20px 0; text-align: left; }
.ent-col h4 { font-size: 1.1rem; color: var(--dark-blue); margin-bottom: 10px; border-bottom: 1px solid #eee; padding-bottom: 5px; }
.ent-col ul { list-style: none; }
.ent-col ul li { margin-bottom: 8px; font-size: 0.95rem; position: relative; padding-left: 15px; }
.ent-col ul li::before { content: '›'; color: var(--gold); position: absolute; left: 0; font-weight: bold; }
.pricing-enterprise { text-align: center; font-size: 1.2rem; margin: 20px 0; color: var(--blue); }

/* Process Section */
.process { padding: 60px 0; }
.process-intro { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.timeline.compact .timeline-item { padding: 10px 40px; min-height: auto; }
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::after { content: ''; position: absolute; width: 2px; background-color: var(--blue); top: 0; bottom: 0; left: 50%; margin-left: -1px; }
.timeline-item { position: relative; width: 50%; box-sizing: border-box; }
.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; text-align: left; }
.timeline-item .circle { position: absolute; width: 30px; height: 30px; background-color: var(--gold); color: var(--white); border-radius: 50%; z-index: 10; text-align: center; line-height: 30px; font-weight: bold; top: 15px; }
.timeline-item.left .circle { right: -15px; }
.timeline-item.right .circle { left: -15px; }
.timeline-item .content { padding: 15px 20px; background-color: var(--white); border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.timeline-item h3 { font-size: 1.1rem; margin-bottom: 5px; }

/* --- Process Client (Avec trait esthétique) --- */
.process-steps-container {
    position: relative;
    margin-top: 60px;
    padding: 20px 0;
}
.process-line-svg {
    position: absolute;
    top: 25px; /* Ajuster pour aligner avec le milieu des bulles */
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 0;
    overflow: visible;
}
/* Le trait SVG sera défini dans le HTML */
.path-line {
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
    stroke-dasharray: 10, 5; /* Pointillés */
    opacity: 0.6;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.step-item {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    min-width: 120px;
}
.step-number {
    width: 40px; height: 40px;
    background: var(--blue); color: var(--white);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold; font-family: var(--font-head);
    box-shadow: 0 0 0 5px var(--white); /* Contour blanc pour couper le trait derrière */
}
.step-item h4 { font-size: 1rem; margin-bottom: 10px; color: var(--blue); }
.step-item p { font-size: 0.85rem; color: #666; }

/* CTA Block */
.cta-block { text-align: center; margin-top: 60px; padding: 40px; background-color: rgba(240, 166, 31, 0.1); border-radius: 20px; max-width: 900px; margin-left: auto; margin-right: auto; }
.cta-subtext { display: block; margin-top: 15px; font-size: 0.9rem; max-width: 700px; margin-left: auto; margin-right: auto; color: #555; }

/* Newsletter Box */
.newsletter-box { background-color: var(--blue); color: var(--white); padding: 40px; border-radius: 15px; margin: 10px 0; text-align: center; }
.newsletter-box h3 { color: var(--gold); margin-bottom: 10px; font-size: 1.5rem; }
.newsletter-form { max-width: 500px; margin: 20px auto 0; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.newsletter-form input[type="email"] { padding: 12px; border-radius: 25px; border: none; flex-grow: 1; min-width: 200px; }
.newsletter-form button { background: var(--gold); color: white; padding: 12px 25px; border-radius: 25px; border: none; font-weight: bold; cursor: pointer; }
.newsletter-form button:hover { background: #d48f15; }
.rgpd-check { margin-top: 10px; font-size: 0.8rem; opacity: 0.8; text-align: left; max-width: 500px; margin-left: auto; margin-right: auto; display: flex; gap: 10px; align-items: start; }

/* Contact */
.contact { background-color: var(--blue); color: var(--white); text-align: center; padding: 80px 0; }
.section-title-white { font-size: 2.5rem; color: var(--white); margin-bottom: 20px; font-family: var(--font-head); }
.contact-form { max-width: 600px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 15px; }
.form-group { display: flex; gap: 15px; }
.contact-form input, .contact-form select, .contact-form textarea { padding: 15px; border-radius: 5px; border: none; font-family: var(--font-body); width: 100%; }
.btn-full { width: 100%; }

/* FAQ Styles Specifiques */
.faq-container { max-width: 800px; margin: 0 auto; text-align: left; }
.faq-item { margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 30px; }
.faq-item h4 { font-size: 1.15rem; margin-bottom: 15px; color: var(--dark-blue); font-weight: 600; }
.faq-item ul { margin: 15px 0 25px 20px; list-style-type: disc; }
.faq-item ul li { margin-bottom: 8px; }
.faq-section-title { color: var(--gold); margin-top: 40px; margin-bottom: 20px; font-family: var(--font-head); font-size: 1.5rem; border-bottom: 2px solid var(--gold); display: inline-block; }

/* Footer */
.footer { background-color: var(--dark-blue); color: #ccc; padding: 60px 0 20px; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.logo-footer { font-family: var(--font-head); font-size: 1.8rem; color: var(--white); margin-bottom: 15px; }
.footer h4 { color: var(--white); margin-bottom: 20px; font-size: 1.1rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.footer-socials-bottom { margin-top: 20px; display: flex; justify-content: center; gap: 20px; }
.footer-socials-bottom a svg { width: 24px; height: 24px; color: #ccc; transition: 0.3s; }
.footer-socials-bottom a:hover svg { color: var(--gold); }

/* --- Mise en valeur "Alchimie" (Trait jaune) --- */
.text-highlight-container {
    text-align: center;
    max-width: 800px;
    margin: 20px auto 40px; /* Marges réduites */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.text-highlight-line {
    flex-grow: 1;
    height: 2px;
    background-color: var(--gold);
    max-width: 100px; /* Longueur du trait */
}
.text-highlight {
    font-family: var(--font-head);
    font-size: 1.2rem; /* Taille diminuée */
    font-style: italic;
    color: var(--blue);
}

/* --- Ajustements Espacements --- */
/* Réduire l'espace avant "Initier l'Alchimie" (qui est souvent un h2 ou une section) */
#accompagnement {
    padding-top: 80px; /* Réduit de 80/100px à 40px */
}
.cta-section {
    margin-top: 20px; /* Réduit l'espace après le bloc précédent */
    margin-bottom: 20px;
}

/* Témoignages */
.testimonials { padding: 40px 0; overflow: hidden; }
.testimonials-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; margin-top: 40px; }
.paint-spot { width: 300px; padding: 40px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; position: relative; color: var(--white); min-height: 280px; transition: transform 0.3s; }
.paint-spot:hover { transform: scale(1.05); }
.paint-spot .quote { font-style: italic; font-size: 1rem; margin-bottom: 15px; font-family: var(--font-head); }
.paint-spot .author { font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }
.blue-spot { background-color: var(--blue); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
.gold-spot { background-color: var(--gold); border-radius: 68% 32% 45% 55% / 52% 28% 72% 48%; color: #fff; }
.sky-spot { background-color: #5c9ead; border-radius: 46% 54% 36% 64% / 60% 71% 29% 40%; }

/* Propriété intellectuelle (r) */
.symbole-legal {
    font-size: 0.65em;    /* Réduit la taille à 75% du texte parent */
    vertical-align: top;  /* Aligne vers le haut si vous n'utilisez pas <sup> */
    color: #666;          /* Optionnel : rend le symbole un peu plus gris/discret */
    margin-left: 2px;     /* Ajoute un léger espace avec le mot précédent */
}

/* Propriété intellectuelle (c) */
.symbole-copyright {
    font-size: 0.45em;    /* Réduit la taille à 75% du texte parent */
    vertical-align: top;  /* Aligne vers le haut si vous n'utilisez pas <sup> */
    color: #666;          /* Optionnel : rend le symbole un peu plus gris/discret */
    margin-left: 2px;     /* Ajoute un léger espace avec le mot précédent */
	position: relative; /* On définit le mode de positionnement */
    top: -1em;        /* On déplace de 0.5 vers le haut */
	vertical-align: baseline;
}

/* Entete BLOG */
.entete-blog {
    width: 100%;          /* Prend 100% de la largeur disponible */
    background-color: var(--gold); /* Votre couleur (ex: bleu) */
    padding: 100px;      /* Espace intérieur en haut et en bas */
    text-align: center;   /* Centrer le texte à l'intérieur */ 
	border-radius: 10px;
}

/* Fond de page mentions legales, cgv, confidentialite */
.fond-mentions {
	max-width: 100%; 
	margin: 0 auto; 
	padding: 0 20px;
	background-color: var(--cream-bg);
}
/* Position texte mentions legales, cgv, confidentialite */
.position-mentions {
	max-width: 1100px;
	margin: 45px auto;
}

/* BLOG */
	/* --- Variables de couleurs --- */
	:root {
		--gold: #F0A61F; /* Jaune orangé */
		--blue: #005074; /* Bleu foncé */
		--grey: #5c9ead; /* Bleu clair */
		--texte-courant: #333333; /* Gris très foncé (meilleur que le noir pur) */
	}

	/* --- Le conteneur global --- */
	.article-container {
		max-width: 900px; /* Largeur maximale de la zone globale */
		margin: 60px auto; /* Centre l'article au milieu de la page */
		padding: 0 20px;
		font-family: 'Helvetica Neue', Arial, sans-serif;
	}

	/* --- L'En-tête --- */
	.article-header {
		text-align: center;
		margin-bottom: 50px;
	}

	.article-categorie {
		color: var(--blue); /* Touche de dynamisme */
		font-weight: bold;
		text-transform: uppercase;
		letter-spacing: 2px;
		font-size: 0.85em;
	}

	.article-titre {
		color: var(--gold);
		font-size: 2.8em;
		line-height: 1.2;
		margin: 15px 0;
	}

	.article-meta {
		color: var(--grey); /* Bleu clair très doux pour les infos secondaires */
		font-size: 0.95em;
		margin-bottom: 40px;
	}

	.article-hero-image {
		width: 100%;
		height: auto;
		border-radius: 12px;
		/* Ombre subtile teintée avec votre bleu foncé */
		box-shadow: 0 10px 30px rgba(0, 80, 116, 0.15); 
	}

	/* --- Le Contenu de lecture --- */
	.article-contenu {
		max-width: 700px; /* Plus étroit que l'en-tête pour la lisibilité ! */
		margin: 0 auto;
		font-size: 1.15em; /* Texte assez grand */
		line-height: 1.8; /* L'ESPACEMENT CLÉ : Aère les lignes de texte */
		color: var(--texte-courant);
	}

	.article-intro {
		font-size: 1.3em;
		color: var(--blue);
		font-weight: 500;
		line-height: 1.6;
		margin-bottom: 40px;
	}

	.article-contenu h2 {
		color: var(--blue);
		font-size: 1.8em;
		margin-top: 60px; /* Grand espace avant un nouveau titre */
		margin-bottom: 25px;
	}

	/* --- Les images dans le texte --- */
	.article-contenu figure {
		margin: 50px 0; /* Aère l'image par rapport au texte */
	}

	.article-contenu figure img {
		width: 100%;
		border-radius: 8px;
	}

	.article-contenu figcaption {
		text-align: center;
		font-size: 0.85em;
		color: var(--grey);
		margin-top: 12px;
		font-style: italic;
	}

	/* --- Les Citations --- */
	.article-contenu blockquote {
		font-size: 1.4em;
		font-style: italic;
		color: var(--blue);
		margin: 50px 0;
		padding: 25px 35px;
		/* Bordure épaisse jaune orangé */
		border-left: 6px solid var(--gold); 
		/* Fond bleu clair avec 10% d'opacité (très subtil) */
		background-color: rgba(92, 158, 173, 0.1); 
		border-radius: 0 8px 8px 0;
	}
	
/* --- PAGE ressources --- */
	:root {
		--complementaire: #5c9ead; /* Bleu clair */
		--texte: #333333;
		--fond-clair: #f4f7f8;
	}

	/* --- Structure Globale de la page --- */
	.page-ressources {
		font-family: 'Helvetica Neue', Arial, sans-serif;
		color: var(--texte);
		line-height: 1.6;
		background-color: #fffbf2;
	}

	/* --- En-tête --- */
	.header-ressources {
		text-align: center;
		padding: 60px 20px 40px;
		max-width: 800px;
		margin: 0 auto;
	}

	.header-ressources h1 {
		color: var(--blue);
		font-size: 2.5em;
		margin-bottom: 15px;
	}

	.header-ressources p {
		font-size: 1.2em;
		color: #666;
	}

	/* --- Section des Cartes --- */
	.conteneur-ressources {
		display: flex;
		justify-content: center;
		gap: 40px; /* Espace entre les deux cartes */
		padding: 0 5%;
		max-width: 1000px;
		margin: 0 auto 80px auto;
	}

	/* --- Design des Cartes --- */
	.carte-ressource {
		background: white;
		border-radius: 12px;
		box-shadow: 0 8px 20px rgba(0,0,0,0.06);
		width: 100%;
		max-width: 450px; /* Limite la largeur de la carte */
		position: relative; /* Indispensable pour placer le badge */
		overflow: hidden;
		transition: transform 0.3s ease;
		display: flex;
		flex-direction: column; /* Permet au bouton de toujours rester en bas */
	}

	.carte-ressource:hover {
		transform: translateY(-8px); /* Petit bond au survol */
	}

	/* Accent visuel pour la ressource payante (bordure bleue) */
	.carte-premium {
		border: 2px solid var(--complementaire);
	}

	/* --- Les Badges (Gratuit / Prix) --- */
	.badge {
		position: absolute;
		top: 20px;
		right: 20px;
		padding: 8px 15px;
		border-radius: 20px;
		font-weight: bold;
		font-size: 0.9em;
		z-index: 10;
	}

	.badge-gratuit {
		background-color: var(--complementaire);
		color: white;
	}

	.badge-payant {
		background-color: var(--gold);
		color: var(--blue);
	}

	/* --- Images et Contenu des cartes --- */
	.image-ressource {
		width: 100%;
		height: 220px;
		object-fit: cover;
	}

	.contenu-ressource {
		padding: 30px;
		display: flex;
		flex-direction: column;
		flex-grow: 1; /* Pousse le bouton vers le bas s'il y a un vide */
	}

	.contenu-ressource h2 {
		color: var(--blue);
		font-size: 1.4em;
		margin-top: 0;
		margin-bottom: 15px;
	}

	.contenu-ressource p {
		color: #555;
		margin-bottom: 30px;
		flex-grow: 1; /* Occupe l'espace libre */
	}

	/* --- Boutons des cartes --- */
	.bouton-ressource {
		display: block;
		text-align: center;
		padding: 12px 20px;
		border-radius: 6px;
		text-decoration: none;
		font-weight: bold;
		transition: background 0.2s, opacity 0.2s;
	}

	.btn-secondaire {
		background-color: var(--fond-clair);
		color: var(--blue);
		border: 1px solid var(--complementaire);
	}

	.btn-secondaire:hover {
		background-color: var(--complementaire);
		color: white;
	}

	.btn-principal {
		background-color: var(--gold);
		color: var(--blue);
	}

	.btn-principal:hover {
		opacity: 0.9;
	}

	/* --- Section Call to Action (Le gros bloc à la fin) --- */
	.section-cta {
		background-color: var(--blue); /* Fond bleu foncé */
		color: white;
		padding: 70px 20px;
		text-align: center;
	}

	.contenu-cta {
		max-width: 700px;
		margin: 0 auto;
	}

	.contenu-cta h2 {
		font-size: 2.2em;
		margin-bottom: 20px;
		color: var(--gold); /* Titre jaune orangé */
	}

	.contenu-cta p {
		font-size: 1.2em;
		margin-bottom: 40px;
		opacity: 0.9;
	}

	/* Bouton du CTA */
	.bouton-cta {
		display: inline-block;
		background-color: var(--gold);
		color: var(--blue);
		padding: 15px 35px;
		font-size: 1.1em;
		font-weight: bold;
		text-decoration: none;
		border-radius: 8px;
		transition: transform 0.2s;
	}

	.bouton-cta:hover {
		transform: scale(1.05); /* Grossit légèrement au survol */
	}

/* Page TELECHARGEMENT - RESSOURCES */
	  @font-face {
		font-display: block;
		font-family: Roboto;
		src: url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/7529907e9eaf8ebb5220c5f9850e3811.woff2) format("woff2"), url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/25c678feafdc175a70922a116c9be3e7.woff) format("woff")
	  }

	  @font-face {
		font-display: fallback;
		font-family: Roboto;
		font-weight: 600;
		src: url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/6e9caeeafb1f3491be3e32744bc30440.woff2) format("woff2"), url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/71501f0d8d5aa95960f6475d5487d4c2.woff) format("woff")
	  }

	  @font-face {
		font-display: fallback;
		font-family: Roboto;
		font-weight: 700;
		src: url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/3ef7cf158f310cf752d5ad08cd0e7e60.woff2) format("woff2"), url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/ece3a1d82f18b60bcce0211725c476aa.woff) format("woff")
	  }

	  #sib-container input:-ms-input-placeholder {
		text-align: left;
		font-family: Helvetica, sans-serif;
		color: #c0ccda;
	  }

	  #sib-container input::placeholder {
		text-align: left;
		font-family: Helvetica, sans-serif;
		color: #c0ccda;
	  }

	  #sib-container textarea::placeholder {
		text-align: left;
		font-family: Helvetica, sans-serif;
		color: #c0ccda;
	  }

	  #sib-container a {
		text-decoration: underline;
		color: #2BB2FC;
	  }

/* ==========================================
   STYLE SKETCHNOTE (DESSIN TEXTUEL HTML/CSS)
   ========================================== */

.sketchnote-container {
    max-width: 900px;
    margin: 0px auto;
    padding: 30px;
    background-color: var(--white);
    border: 2px dashed var(--gold); /* Cadre global façon carnet */
    border-radius: 15px 30px 20px 40px; /* Bordure asymétrique (dessin main) */
    position: relative;
}

/* On utilise la police manuscrite que vous aviez dans votre head */
.sketch-title, .sketch-text, .sketch-handwriting {
    font-family: 'Architects Daughter', cursive, sans-serif;
    color: var(--blue);
}

.sketch-title { font-size: 1.4rem; margin-bottom: 5px; font-weight: bold; }
.sketch-text { font-size: 1.1rem; line-height: 1.4; }
.sketch-handwriting { font-size: 1.3rem; margin-bottom: 10px; }

.sketchnote-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sketch-item {
    text-align: center;
    padding: 20px;
    width: 30%;
}

.sketch-icon {
    font-size: 2.5rem;
    color: var(--blue);
    margin-bottom: 15px;
}
.sketch-icon.gold { color: var(--gold); }

/* --- Effets "Coup de crayon" (Bordures irrégulières) --- */
.highlight-box {
    border: 3px solid var(--gold);
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px; /* Forme dessinée */
}

.dashed-box {
    border: 2px dashed var(--blue);
    border-radius: 10px;
}

.solid-box {
    border: 2px solid var(--blue);
    border-radius: 30px 5px 20px 10px;
}

.scribble-box {
    border: 2px dotted #888;
    background-color: #f1f1f1;
    border-radius: 5px 20px 5px 20px;
}

/* --- Inclinaisons --- */
.tilt-left { transform: rotate(-2deg); }
.tilt-right { transform: rotate(3deg); }

/* --- Flèches de liaison --- */
.sketch-arrow {
    font-size: 2rem;
    color: var(--gold);
}
.mobile-arrow { display: none; } /* Cachée sur ordi */

/* --- Layout spécifique pour les pratiques narratives --- */
.narrative-layout {
    flex-direction: column;
}
.sketch-split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
}
.sketch-separator {
    font-size: 2rem;
    color: var(--gold);
}
.sketch-action {
    text-align: center;
    margin: 20px 0;
}

/* ==========================================
   CORRECTIONS RESPONSIVE & MOBILE
   ========================================== */

/* 1. Empêcher le défilement horizontal (le site qui bouge) */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* 2. Gérer le menu déroulant sur les écrans tactiles */
/* ==========================================
   CORRECTIONS RESPONSIVE & MOBILE
   ========================================== */

/* 1. Empêcher le défilement horizontal (le site qui bouge) */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* 2. Gérer le menu déroulant sur les écrans tactiles */
@media (max-width: 768px) {
    
    /* S'assurer que le menu ouvert peut défiler s'il est long */
    .nav-links.nav-active {
        overflow-y: auto;
        max-height: 100vh;
        padding-bottom: 50px;
    }

    /* Déplier les sous-menus directement dans le menu burger */
    .dropdown-container .dropdown {
        position: static;            /* Annule le flottement */
        display: block !important;   /* Force l'affichage */
        box-shadow: none;            /* Retire l'ombre */
        background-color: transparent;
        width: 100%;
        padding-left: 20px;          /* Indentation pour bien voir la hiérarchie */
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        transform: none;             /* Annule les animations du bureau */
    }

    /* Style des liens du sous-menu sur mobile */
    .dropdown-container .dropdown li a {
        padding: 10px 15px;
        font-size: 0.95em;
        display: block;
    }

    /* Cacher la petite flèche du bas car le menu est déjà déplié */
    .dropdown-container > a > i.fa-chevron-down {
        display: none;
    }
}

/* --- Responsive (Mobile) Skecthnote --- */
@media (max-width: 768px) {
    .sketchnote-layout {
        flex-direction: column;
    }
    .sketch-item {
        width: 100%;
        margin-bottom: 10px;
    }
    .desktop-arrow { display: none; }
    .mobile-arrow { display: block; margin: 10px 0; }
    
    .sketch-split {
        flex-direction: column;
    }
    .sketch-separator {
        transform: rotate(90deg); /* L'éclair pivote vers le bas sur mobile */
    }
}

/* Responsive --- AJUSTEMENTS POUR TABLETTES ET SMARTPHONES --- */
@media screen and (max-width: 768px) {
    .nav-links { display: none; } 
    .hero h1 { font-size: 2rem; }
    .about-grid, .enterprise-content, .footer-grid, .ideal-client-grid, .definitions-grid-3, .form-group, .process-steps, .step-number, .credentials, .credentials-text, .credentials-images { grid-template-columns: 1fr; }
    
    .ARTCHIMIE-grid { grid-template-columns: 1fr; }
    
    .process-steps { flex-direction: column; gap: 30px; }
    .process-line-svg { display: none; /* Cacher le trait sur mobile car vertical */ }
    .step-item { width: 100%; margin-bottom: 20px; border-left: 2px solid var(--gold); padding-left: 20px; text-align: left; }
    .step-number { margin: 0 0 10px 0; }
    
	.timeline::after { left: 20px; }
    .timeline-item.left, .timeline-item.right { width: 100%; padding-left: 60px; padding-right: 0; text-align: left; left: 0; }
    .timeline-item.left .circle, .timeline-item.right .circle { left: 5px; right: auto; }
    .main-offer { transform: scale(1); }
    .photo-placeholder { min-height: 250px; flex-grow: 0;}
    .newsletter-form { flex-direction: column; }
    .newsletter-input { width: 100%; }
	/* Responsive du BLOG */
	@media (max-width: 768px) {
		/* On réduit la taille des titres pour les petits écrans */
		.article-titre { font-size: 2em; /* Un peu plus petit pour éviter de prendre tout l'écran */ padding: 0 10px; }
		.article-container { margin: 30px auto; /* On réduit l'espace en haut et en bas */	}
		.article-intro { font-size: 1.15em; /* On ajuste la taille de l'intro */ }
		/* On réduit l'espace autour des citations */
		.article-contenu blockquote { font-size: 1.2em;	padding: 20px; margin: 30px 0; }
	}
	@media (max-width: 480px) {
		/* Sur les téléphones très étroits */
		.article-titre { font-size: 1.7em; }

		.article-contenu { font-size: 1.05em; /* Texte légèrement plus petit pour plus de confort */ line-height: 1.7; }
		/* On réduit les marges autour des images pour gagner de la place */
		.article-contenu figure { margin: 30px -20px; /* L'image "sort" un peu des bords pour un style moderne */ }
		.article-contenu figure img { border-radius: 0; /* On enlève les arrondis si l'image touche les bords */ }
	}
	/* Responsive du texte défilant */
	@media (max-width: 480px) {
		.conteneur-texte-anime {
			font-size: 20px; /* On réduit légèrement la taille pour éviter trop de retours à la ligne */
			padding: 15px;   /* On réduit un peu l'espace interne */
			line-height: 1.5; 
			text-align: center; /* Souvent plus joli sur mobile pour les citations */
		}
	}
	/* --- Page Ressources --- */
	@media (max-width: 768px) {
		.conteneur-ressources {
			flex-direction: column; /* Passe les cartes l'une sous l'autre */
			align-items: center;
		}
		
		.header-ressources h1 {
			font-size: 2em;
		}
	}