/*
Theme Name:   Ashe NeuroBoost
Theme URI:    https://aabdrabi.com
Description:  Thème enfant Ashe – Charte NeuroBoost (navy / or / teal)
Author:       Abdelali ABD-RABI
Template:     ashe
Version:      4.0.0
Text Domain:  ashe-neuroboost
*/

/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --navy:       #1B2E4B;
  --navy-dark:  #111E31;
  --navy-light: rgba(27, 46, 75, 0.06);
  --gold:       #C9A84C;
  --gold-light: rgba(201, 168, 76, 0.12);
  --gold-dark:  #A07C2A;
  --teal:       #2E7D8C;
  --teal-light: rgba(46, 125, 140, 0.12);
  --teal-dark:  #1F5E6B;
  --white:      #ffffff;
  --off-white:  #F7F5F0;
  --gray:       #6B7A8D;
  --light-gray: #E8E6E0;
  --text:       #1B2E4B;
  --radius:     6px;
  --shadow:     0 4px 24px rgba(27,46,75,0.10);
  --shadow-lg:  0 8px 40px rgba(27,46,75,0.16);
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;
  --transition:   0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }

p {
  line-height: 1.8;
  color: var(--gray);
  font-size: 1rem;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold); }

strong { font-weight: 500; color: var(--navy); }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
#masthead,
.site-header {
  background: var(--navy) !important;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 20px rgba(27,46,75,0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-branding .site-title a {
  color: var(--gold) !important;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.site-branding .site-title a:hover { color: var(--gold-dark) !important; }

.site-branding .site-description {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Navigation principale */
.main-navigation ul li a {
  color: rgba(255,255,255,0.85) !important;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px !important;
  transition: color var(--transition);
  position: relative;
}
.main-navigation ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.main-navigation ul li a:hover::after,
.main-navigation ul li.current-menu-item > a::after { transform: scaleX(1); }
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a {
  color: var(--gold) !important;
}

/* Sous-menu */
.main-navigation ul ul {
  background: var(--navy-dark) !important;
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow);
}
.main-navigation ul ul li a {
  padding: 10px 20px !important;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ============================================================
   HERO / BANNER — v3 (particules + glow + animations entree)
   ============================================================ */
.hero-neuroboost {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 60%, #1e3a5f 100%);
  position: relative;
  overflow: hidden;
  padding: 130px 0 110px;
  text-align: center;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
#nb-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-neuroboost::before {
  content: \'\';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(ellipse at center,
    rgba(201,168,76,0.08) 0%,
    rgba(201,168,76,0.03) 40%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-neuroboost::after {
  content: \'\';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 1;
}
.hero-neuroboost .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hero-neuroboost .hero-tag,
.hero-neuroboost h1,
.hero-neuroboost p.hero-desc,
.hero-neuroboost .hero-cta,
.hero-neuroboost .hero-scroll-hint {
  opacity: 0;
  animation: nbHeroFadeUp 0.7s ease forwards;
}
.hero-neuroboost .hero-tag       { animation-delay: 0.1s; }
.hero-neuroboost h1              { animation-delay: 0.25s; }
.hero-neuroboost p.hero-desc     { animation-delay: 0.42s; }
.hero-neuroboost .hero-cta       { animation-delay: 0.58s; }
.hero-neuroboost .hero-scroll-hint { animation-delay: 1.1s; }
@keyframes nbHeroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-neuroboost .hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 8px 24px;
  border-radius: 40px;
  margin-bottom: 32px;
  background: rgba(201,168,76,0.06);
}
.hero-neuroboost h1 {
  color: var(--white) !important;
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero-neuroboost h1 em {
  color: var(--gold) !important;
  font-style: italic;
  font-weight: 400;
  position: relative;
  display: inline-block;
}
.hero-neuroboost h1 em::after {
  content: \'\';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: nbUnderline 2.5s ease-in-out 1.2s infinite;
}
@keyframes nbUnderline {
  0%, 100% { opacity: 0.4; transform: scaleX(0.7); }
  50%       { opacity: 1;   transform: scaleX(1); }
}
.hero-neuroboost p.hero-desc {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto 42px;
  line-height: 1.85;
  font-weight: 300;
}
.hero-neuroboost .hero-cta {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-scroll-hint {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.hero-scroll-hint span {
  display: block;
  width: 28px; height: 44px;
  border: 2px solid rgba(201,168,76,0.5);
  border-radius: 14px;
  position: relative;
}
.hero-scroll-hint span::before {
  content: \'\';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: nbScrollDot 1.8s ease infinite;
}
@keyframes nbScrollDot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  80%  { opacity: 0; transform: translateX(-50%) translateY(14px); }
  100% { opacity: 0; transform: translateX(-50%) translateY(0); }
}
@media (max-width: 768px) {
  .hero-neuroboost { min-height: 80vh; padding: 100px 0 80px; }
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn,
.wp-block-button__link,
input[type="submit"],
button[type="submit"],
.wpcf7-submit {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary,
input[type="submit"],
.wpcf7-submit {
  background: var(--gold);
  color: var(--navy) !important;
  border-color: var(--gold);
}
.btn-primary:hover,
input[type="submit"]:hover,
.wpcf7-submit:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-teal {
  background: var(--teal);
  color: var(--white) !important;
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,125,140,0.35);
}

/* ============================================================
   MISE EN PAGE GÉNÉRALE
   ============================================================ */
.site-content,
#content {
  background: var(--white);
}

.container,
.entry-content,
.site-inner {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section-light { background: var(--white); padding: 80px 0; }
.section-off   { background: var(--off-white); padding: 80px 0; }
.section-navy  { background: var(--navy); padding: 80px 0; }
.section-teal  { background: var(--teal); padding: 80px 0; }

.section-title-wrap {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title-wrap h2 { color: var(--teal); }
.section-title-wrap p  { margin-top: 14px; }
.title-rule {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 18px auto 0;
  border: none;
}

/* ============================================================
   CARTES
   ============================================================ */
.nb-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.nb-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nb-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
}
.nb-card:hover::before { transform: scaleX(1); }

.nb-card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-dark);
  font-size: 1.5rem;
}
.nb-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.nb-card p  { font-size: 0.9rem; margin-bottom: 20px; }

/* Grille de cartes */
.nb-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.nb-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

/* ============================================================
   ARTICLES / BLOG
   ============================================================ */
.entry-header .entry-title {
  font-family: var(--font-display);
  color: var(--navy);
}
.entry-header .entry-title a { color: var(--navy); }
.entry-header .entry-title a:hover { color: var(--teal); }

.entry-meta,
.posted-on,
.byline {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
}
.entry-meta a { color: var(--teal); }

/* Carte article */
article.post {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
  margin-bottom: 32px;
}
article.post:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.entry-thumbnail img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* Catégories */
.cat-links a {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 40px;
  margin-right: 6px;
  border: 1px solid rgba(46,125,140,0.2);
}
.cat-links a:hover {
  background: var(--teal);
  color: var(--white);
}

/* Lire la suite */
.read-more,
.more-link {
  display: inline-block;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}
.read-more::after,
.more-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.read-more:hover::after,
.more-link:hover::after { transform: scaleX(1); }
.read-more:hover, .more-link:hover { color: var(--gold); }

/* ============================================================
   PAGE ARTICLE UNIQUE
   ============================================================ */
.single .entry-content {
  max-width: 760px;
  margin: 0 auto;
}
.single .entry-content h2,
.single .entry-content h3 {
  color: var(--navy);
  margin: 2rem 0 1rem;
}
.single .entry-content blockquote {
  border-left: 4px solid var(--gold);
  background: var(--gold-light);
  margin: 2rem 0;
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
}

/* ============================================================
   PAGE À PROPOS
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
}
.about-photo {
  position: relative;
}
.about-photo img {
  border-radius: 10px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.about-photo::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 2px solid var(--gold);
  border-radius: 10px;
  z-index: -1;
}
.about-content .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}
.about-content h2 { margin-bottom: 20px; }

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.temoignage-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
}
.temoignage-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 8px; left: 20px;
  line-height: 1;
}
.temoignage-card blockquote {
  border: none;
  background: none;
  padding: 0;
  margin: 0 0 20px;
  font-style: italic;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
}
.temoignage-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.temoignage-card .author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.temoignage-card .author-name {
  font-weight: 500;
  color: var(--navy);
  font-size: 0.9rem;
}
.temoignage-card .author-role {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.5px;
}
.temoignage-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* ============================================================
   COACHING & CONFÉRENCES
   ============================================================ */
.offre-header {
  background: linear-gradient(135deg, var(--navy) 0%, #243D5E 100%);
  color: var(--white);
  padding: 64px 0 48px;
  text-align: center;
  position: relative;
}
.offre-header h1 { color: var(--gold) !important; }
.offre-header h1 em { color: var(--gold) !important; font-style: italic; }
.offre-header p { color: rgba(255,255,255,0.90); margin: 0 auto; max-width: 600px; }
.offre-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 40px;
  margin-bottom: 20px;
}

/* Tableau tarifaire */
.tarif-wrap {
  background: var(--off-white);
  border-radius: 10px;
  padding: 32px;
  margin: 32px 0;
}
.tarif-wrap h3 {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
  font-size: 1.3rem;
}
.tarif-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.tarif-table thead th {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 18px;
  text-align: left;
}
.tarif-table thead th:first-child { border-radius: 6px 0 0 0; }
.tarif-table thead th:last-child  { border-radius: 0 6px 0 0; text-align: right; }
.tarif-table tbody tr {
  border-bottom: 1px solid rgba(27,46,75,0.08);
  transition: background var(--transition);
}
.tarif-table tbody tr:last-child { border-bottom: none; }
.tarif-table tbody td { padding: 12px 18px; color: var(--navy); }
.tarif-table tbody td:last-child { text-align: right; font-weight: 500; color: var(--teal); }
.tarif-table tbody tr:hover { background: var(--gold-light); }
.tarif-table .tarif-promo { color: var(--gold-dark); font-style: italic; font-size: 0.8rem; }

/* Bénéfices */
.benefices-list {
  list-style: none;
  padding: 0; margin: 0;
}
.benefices-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.9rem;
  color: var(--gray);
}
.benefices-list li:last-child { border-bottom: none; }
.benefices-list li::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.widget-area .widget {
  background: var(--off-white);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
  border-left: 3px solid var(--gold);
}
.widget-area .widget-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-gray);
}
.widget-area ul { list-style: none; padding: 0; margin: 0; }
.widget-area ul li {
  padding: 7px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.88rem;
}
.widget-area ul li:last-child { border-bottom: none; }
.widget-area ul li a { color: var(--gray); }
.widget-area ul li a:hover { color: var(--teal); }

/* Widget recherche */
.widget_search .search-form { display: flex; gap: 0; }
.widget_search input[type="search"] {
  flex: 1;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  border-right: none;
}
.widget_search input[type="search"]:focus { border-color: var(--teal); }
.widget_search input[type="submit"] {
  background: var(--teal);
  color: var(--white) !important;
  border: 1px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 10px 16px;
  font-size: 0.78rem;
  letter-spacing: 1px;
}

/* ============================================================
   FORMULAIRE DE CONTACT
   ============================================================ */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  transition: border-color var(--transition);
  background: var(--white);
}
.wpcf7 input:focus,
.wpcf7 textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(46,125,140,0.12);
}

/* ============================================================
   FOOTER
   ============================================================ */
#colophon,
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 32px;
  border-top: 3px solid var(--gold);
}
.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 48px;
}
.footer-widget-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer a { color: rgba(255,255,255,0.5); }
.site-footer a:hover { color: var(--gold); }
.site-info {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-align: center;
}
.site-info a { color: var(--gold); }

/* Gold accent footer */
.footer-gold-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 12px 0 16px;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.nav-links a,
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 0.88rem;
  transition: all var(--transition);
  text-decoration: none;
}
.nav-links a:hover,
.page-numbers:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.page-numbers.current { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nb-grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .nb-grid-2 { grid-template-columns: 1fr; }
  .tarif-wrap { padding: 20px 16px; }
}

@media (max-width: 640px) {
  .hero-neuroboost { padding: 60px 0 50px; }
  .section-light, .section-off, .section-navy, .section-teal { padding: 48px 0; }
  .nb-card { padding: 24px 20px; }
  .tarif-table thead th,
  .tarif-table tbody td { padding: 10px 12px; font-size: 0.82rem; }
}

/* ============================================================
   UTILITAIRES
   ============================================================ */
.text-gold  { color: var(--gold); }
.text-teal  { color: var(--teal); }
.text-navy  { color: var(--navy); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

.bg-navy   { background: var(--navy); }
.bg-teal   { background: var(--teal); }
.bg-gold   { background: var(--gold); }
.bg-off    { background: var(--off-white); }

.mt-1 { margin-top: 8px;  }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 8px;  }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 40px; }

/* Barre dorée décorative */
.gold-bar {
  display: block;
  width: 50px; height: 3px;
  background: var(--gold);
  margin: 16px 0;
}
.gold-bar.centered { margin: 16px auto; }

/* Bandeau chiffres clés */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
}
.stat-item {
  background: var(--white);
  padding: 32px 20px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--gold); }
.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
}

/* CTA bandeau */
.cta-band {
  background: var(--teal);
  padding: 56px 24px;
  text-align: center;
}
.cta-band h2 { color: var(--gold); margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,0.90); margin-bottom: 28px; }

/* ============================================================
   MENU MOBILE — hamburger natif NeuroBoost
   ============================================================ */

/* Cacher le bouton sur desktop */
.nb-hamburger,
button.menu-toggle {
  display: none;
}

@media (max-width: 768px) {

  /* ── Conteneur navigation ── */
  #site-navigation,
  .main-navigation,
  .primary-navigation {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  /* ── Masquer la liste par défaut ── */
  #site-navigation ul,
  .main-navigation ul,
  .primary-navigation ul {
    display: none !important;
    width: 100%;
    flex-direction: column;
    background: var(--navy-dark);
    border-top: 2px solid var(--gold);
    margin: 0;
    padding: 8px 0;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  }

  /* ── Quand le menu est ouvert ── */
  #site-navigation ul.nb-menu-open,
  .main-navigation ul.nb-menu-open,
  .primary-navigation ul.nb-menu-open {
    display: flex !important;
  }

  /* ── Items du menu ── */
  #site-navigation ul li,
  .main-navigation ul li,
  .primary-navigation ul li {
    display: block !important;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  #site-navigation ul li:last-child,
  .main-navigation ul li:last-child {
    border-bottom: none;
  }

  #site-navigation ul li a,
  .main-navigation ul li a,
  .primary-navigation ul li a {
    display: block !important;
    padding: 14px 24px !important;
    color: rgba(255,255,255,0.88) !important;
    font-size: 0.95rem;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
  }

  #site-navigation ul li a:hover,
  .main-navigation ul li a:hover {
    color: var(--gold) !important;
    background: rgba(201,168,76,0.08);
  }

  /* ── Bouton hamburger ── */
  .nb-hamburger,
  button.menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 36px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    z-index: 10000;
  }

  .nb-hamburger span,
  button.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* Animation X quand ouvert */
  .nb-hamburger.nb-toggled span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
  .nb-hamburger.nb-toggled span:nth-child(2) { opacity: 0; }
  .nb-hamburger.nb-toggled span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

  /* Header doit être en position relative pour le menu absolu */
  #masthead,
  .site-header {
    position: relative !important;
  }
}


/* ============================================================
   CHARTE HOMOGÈNE — POLICES BLEU ET DORÉ
   ============================================================ */

/* Tous les h2 sur fond blanc/clair : navy */
.section-light h2, .section-off h2 { color: var(--navy) !important; }
/* h2 sur fond sombre : gold */
.offre-header h2, .cta-band h2, .hero-neuroboost h2 { color: var(--gold) !important; }

/* Section eyebrow uniformisé */
.section-eyebrow, .eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 12px;
}

/* Barre gold */
.gold-bar {
  display: block;
  width: 48px; height: 3px;
  background: var(--gold);
  margin: 18px 0 26px;
  border-radius: 2px;
}

/* Read more link */
.read-more {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s, color .25s;
}
.read-more:hover { gap: 10px; color: var(--gold); }

/* ============================================================
   ARTICLES — SINGLE POST
   ============================================================ */
.nb-single-header {
  background: var(--navy);
  padding: 70px 0 60px;
  position: relative; overflow: hidden;
}
.nb-single-header::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 50px; background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.nb-single-header h1 { color: var(--gold) !important; font-size: clamp(1.8rem,4vw,3rem); }
.nb-single-cat {
  display: inline-block;
  background: var(--gold); color: var(--navy);
  font-size: 0.65rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 16px; border-radius: 40px;
  margin-bottom: 18px; text-decoration: none;
}
.nb-single-meta {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
  font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 14px;
}
.nb-single-content { max-width: 780px; margin: 0 auto; padding: 56px 24px 80px; }
.nb-single-content h2 { color: var(--navy); font-size: 1.8rem; margin: 36px 0 14px; }
.nb-single-content h3 { color: var(--navy); font-size: 1.3rem; margin: 28px 0 10px; }
.nb-single-content p  { font-size: 1rem; line-height: 1.9; color: #374151; }
.nb-single-content a  { color: var(--teal); text-decoration: underline; text-decoration-color: rgba(46,125,140,0.3); }
.nb-single-content blockquote {
  border-left: 4px solid var(--gold);
  margin: 28px 0; padding: 18px 24px;
  background: var(--off); border-radius: 0 8px 8px 0;
}
.nb-single-content blockquote p { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; color: var(--navy); margin: 0; }
.nb-single-content img { border-radius: 10px; box-shadow: 0 4px 24px rgba(27,46,75,0.1); margin: 24px 0; }

/* Boîte auteur */
.nb-author-box {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--off); border-radius: 10px;
  padding: 24px 28px; margin: 40px 0;
  border-left: 4px solid var(--gold);
}
.nb-author-box img { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--gold); }
.nb-author-box h4 { color: var(--navy) !important; font-size: 1.1rem; margin-bottom: 4px; }

/* Pagination articles */
.nb-pagination {
  display: flex; justify-content: center; gap: 8px;
  margin: 48px 0; flex-wrap: wrap;
}
.nb-pagination a, .nb-pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 6px;
  font-size: 0.88rem; font-weight: 500;
  text-decoration: none; transition: all .25s;
  border: 1.5px solid var(--gray-light); color: var(--navy);
}
.nb-pagination a:hover { background: rgba(201,168,76,0.12); border-color: var(--gold); color: var(--gold); }
.nb-pagination .current { background: var(--gold); border-color: var(--gold); color: var(--navy); font-weight: 600; }

/* ============================================================
   PAGE CONTACT
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
}
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-item strong { display: block; font-weight: 600; color: var(--navy); font-size: 0.88rem; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.88rem; margin: 0; }
.contact-info-item a { color: var(--teal); text-decoration: none; }
.contact-info-item a:hover { color: var(--gold); }

.contact-reseaux {
  display: flex; gap: 10px; margin: 24px 0;
}
.contact-reseau-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 0.85rem; font-weight: 600;
  text-decoration: none; transition: all .25s;
}
.contact-reseau-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-light); }

.contact-seance-card {
  background: var(--navy);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  margin-top: 32px;
  border: 2px solid var(--gold);
}
.contact-seance-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.contact-seance-card h4 { color: var(--gold) !important; font-size: 1.1rem; margin-bottom: 8px; }
.contact-seance-card p { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin-bottom: 0; }

/* Formulaire contact */
.contact-form-card {
  background: var(--white);
  border-radius: 10px;
  padding: 40px 36px;
  box-shadow: 0 4px 32px rgba(27,46,75,0.1);
  border-top: 4px solid var(--gold);
}
.contact-form-card h3 {
  color: var(--navy); font-size: 1.5rem; margin-bottom: 6px;
  font-family: var(--font-display);
}
.nb-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .nb-form-row { grid-template-columns: 1fr; } }

.nb-form-group { margin-bottom: 18px; }
.nb-form-group label {
  display: block; font-size: 0.8rem; font-weight: 500;
  color: var(--navy); margin-bottom: 6px; letter-spacing: 0.3px;
}
.nb-form-group input,
.nb-form-group select,
.nb-form-group textarea {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid var(--gray-light);
  border-radius: 6px;
  font-family: var(--font-body); font-size: 0.92rem;
  color: var(--navy); background: var(--white);
  transition: border-color .25s, box-shadow .25s;
  appearance: none;
}
.nb-form-group input:focus,
.nb-form-group select:focus,
.nb-form-group textarea:focus {
  border-color: var(--teal); outline: none;
  box-shadow: 0 0 0 3px rgba(46,125,140,0.12);
}
.nb-form-group textarea { resize: vertical; min-height: 120px; }
.nb-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.nb-btn-submit {
  width: 100%; padding: 16px;
  background: var(--gold); color: var(--navy);
  border: none; border-radius: 6px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all .25s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
  margin-top: 4px;
}
.nb-btn-submit:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.4); }

.nb-form-securite {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-top: 12px;
  font-size: 0.72rem; color: var(--gray);
}

/* Message succès */
.nb-form-success {
  text-align: center; padding: 48px 24px;
}
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  font-size: 1.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.nb-form-success h4 { color: var(--navy); font-size: 1.4rem; margin-bottom: 10px; }

/* Tarifs uniformisés */
.nb-tarif-wrap { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 24px rgba(27,46,75,0.08); margin: 24px 0; }
.nb-tarif-wrap h3 { background: var(--navy); color: var(--gold) !important; padding: 18px 24px; font-size: 1rem; letter-spacing: 1px; margin: 0; }
.nb-tarif-table { width: 100%; border-collapse: collapse; }
.nb-tarif-table thead th { background: var(--navy-mid, #243D5E); color: var(--gold); font-size: 0.68rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; padding: 12px 20px; text-align: left; }
.nb-tarif-table tbody tr { border-bottom: 1px solid var(--gray-light); }
.nb-tarif-table tbody tr:last-child { border-bottom: none; }
.nb-tarif-table tbody tr:hover { background: rgba(201,168,76,0.06); }
.nb-tarif-table tbody td { padding: 14px 20px; color: var(--navy); font-size: 0.9rem; }
.nb-tarif-table tbody td:last-child { font-weight: 600; color: var(--teal); text-align: right; }

/* Bénéfices uniformisés */
.nb-benefices { list-style: none; padding: 0; margin: 0; }
.nb-benefices li { padding: 10px 0 10px 34px; position: relative; border-bottom: 1px solid var(--gray-light); font-size: 0.92rem; color: var(--navy); }
.nb-benefices li:last-child { border-bottom: none; }
.nb-benefices li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; background: var(--gold); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B2E4B' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size: 11px; background-repeat: no-repeat; background-position: center; }

/* Témoignages : sans rôle, prénom seulement */
.author { display: flex; align-items: center; gap: 12px; }
.author-name { font-weight: 600; color: var(--navy); font-size: 0.92rem; }
.author-role { display: none !important; }

/* Grid 2 colonnes */
.nb-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 768px) { .nb-grid-2 { grid-template-columns: 1fr; } }

/* Reveal animation */
.reveal-block { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal-block.visible { opacity: 1; transform: none; }

/* ================================================================
   SINGLE.PHP — Article individuel
   ================================================================ */

.nb-single-thumbnail { margin-bottom: 2.5rem; border-radius: 6px; overflow: hidden; }
.nb-single-thumbnail img { width: 100%; height: auto; display: block; }

.nb-single-header { padding-bottom: 1.5rem; border-bottom: 2px solid var(--gold-light); margin-bottom: 2rem; }
.nb-single-header .entry-title { font-size: clamp(1.7rem, 4vw, 2.5rem); color: var(--navy); margin-bottom: .6rem; }

.nb-entry-meta { font-size: 0.85rem; color: var(--gray); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.nb-meta-sep { color: var(--gold); }
.nb-entry-meta a { color: var(--teal); text-decoration: none; }
.nb-entry-meta a:hover { color: var(--gold); }

.nb-single-content { font-size: 1rem; line-height: 1.85; color: var(--text); max-width: 740px; }
.nb-single-content p { margin-bottom: 1.4em; }
.nb-single-content h2, .nb-single-content h3 { color: var(--navy); margin-top: 2em; }

/* ================================================================
   BOUTONS DE PARTAGE RÉSEAUX SOCIAUX
   ================================================================ */

.nb-share-block {
    margin: 3rem 0 2rem;
    padding: 1.6rem 2rem;
    background: var(--gold-light);
    border-left: 4px solid var(--gold);
    border-radius: 6px;
}

.nb-share-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--navy);
    margin: 0 0 1rem;
}

.nb-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nb-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: background .22s ease, transform .18s ease, box-shadow .22s ease;
    color: var(--white) !important;
    background: var(--navy);
    box-shadow: 0 2px 6px rgba(27,46,75,.18);
}

.nb-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(27,46,75,.25);
    color: var(--white) !important;
}

/* Couleur spécifique par réseau */
.nb-share-linkedin  { background: #0A66C2; }
.nb-share-linkedin:hover  { background: #004182; }
.nb-share-facebook  { background: #1877F2; }
.nb-share-facebook:hover  { background: #0a5dc2; }
.nb-share-twitter   { background: #000000; }
.nb-share-twitter:hover   { background: #333; }
.nb-share-whatsapp  { background: #25D366; }
.nb-share-whatsapp:hover  { background: #1da851; }
.nb-share-instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.nb-share-instagram:hover { opacity: .88; }
.nb-share-youtube   { background: #FF0000; }
.nb-share-youtube:hover   { background: #cc0000; }

.nb-share-btn svg { flex-shrink: 0; }

/* Petits écrans : on masque le label texte et on garde juste l'icône */
@media (max-width: 480px) {
    .nb-share-btn span { display: none; }
    .nb-share-btn { padding: 10px 12px; }
}


/* ============================================================
   AMÉLIORATIONS V3 — Performance & Design
   ============================================================ */

/* Bouton primaire — effet shimmer au hover */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.45);
}

/* Cards — hover élévation + trait or */
.nb-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 3px solid transparent;
}
.nb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(27,46,75,0.14);
  border-bottom-color: var(--gold);
}

/* Témoignages — hover subtil */
.temoignage-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.temoignage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(27,46,75,0.12);
}

/* Stats bar — chiffres en or */
.stat-number span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  display: block;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}
.stat-item {
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid var(--light-gray);
}
.stat-item:last-child { border-right: none; }

/* Section eyebrow — ligne dorée */
.section-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(201,168,76,0.4);
}

/* About photo — cadre élégant */
.about-photo img {
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(27,46,75,0.2);
  transition: transform 0.4s ease;
  width: 100%;
  height: auto;
}
.about-photo:hover img { transform: scale(1.02); }
.about-photo {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.about-photo::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  width: 60px; height: 60px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  z-index: 1;
  pointer-events: none;
}
.about-photo::after {
  content: '';
  position: absolute;
  bottom: -10px; right: -10px;
  width: 60px; height: 60px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  z-index: 1;
  pointer-events: none;
}

/* CTA band — gradient amélioré */
.cta-band {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #243d5e 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Lazy loading natif — images */
img { loading: lazy; }

/* Focus visible amélioré — accessibilité */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Réduction mouvement — accessibilité */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Performance : will-change sur éléments animés */
.hero-neuroboost .hero-tag,
.hero-neuroboost h1,
.hero-neuroboost p.hero-desc,
.hero-neuroboost .hero-cta {
  will-change: opacity, transform;
}
.nb-card, .temoignage-card { will-change: transform; }
