:root {
  --bg: #0b0b0d;
  --bg-soft: #121318;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f3f4f6;
  --text-soft: #c7cad1;
  --muted: #9aa0ab;
  --accent: #c8a56a;
  --accent-strong: #e2bc7b;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(200, 165, 106, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 18%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.section-heading p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(11, 11, 13, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(200, 165, 106, 0.22), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(200, 165, 106, 0.28);
  color: var(--accent-strong);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 3px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px 0;
  background: var(--text);
  transition: var(--transition);
}

.hero {
  padding-top: 110px;
  padding-bottom: 110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 820px;
}

.hero-text {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: 1.12rem;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #1a1712;
  box-shadow: 0 10px 30px rgba(200, 165, 106, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-ghost {
  background: transparent;
  color: var(--text-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover,
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.hero-card {
  position: relative;
}

.hero-panel,
.feature-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 34px;
}

.panel-label {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(200, 165, 106, 0.12);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-panel h2 {
  margin: 0 0 14px;
  font-size: 1.7rem;
  line-height: 1.15;
}

.hero-panel p {
  margin: 0;
  color: var(--text-soft);
}

.hero-points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.card-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 30px;
}

.feature-card h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
}

.large-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.feature-copy,
.feature-note {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-tag {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(200, 165, 106, 0.12);
  color: var(--accent-strong);
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--accent-strong);
  font-weight: 700;
}

.text-link:hover {
  color: var(--text);
}

.site-footer {
  padding: 56px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.22);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
  margin-bottom: 14px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--text-soft);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}



.contact-page-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}

.contact-list {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.contact-list p {
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 10px;
}

.form-row label {
  font-weight: 600;
  color: var(--text);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--muted);
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(200, 165, 106, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.form-row textarea {
  resize: vertical;
  min-height: 140px;
}


@media (max-width: 980px) {
  .hero-grid,
  .large-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .card-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 11, 13, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 20px 24px;
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .hero-content h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .hero-text,
  .section-heading p,
  .feature-card p {
    font-size: 1rem;
  }

  .hero-panel,
  .feature-card {
    padding: 24px;
  }

  .btn {
    width: 100%;
  }
}


.legal-heading {
  max-width: 900px;
}

.legal-section {
  padding-top: 32px;
}

.legal-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.legal-card h2 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.legal-card p + p {
  margin-top: 12px;
}

@media (max-width: 980px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }
}


.questionnaire-card {
  padding: 34px;
}

.questionnaire-form {
  display: grid;
  gap: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.questionnaire-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.question-block h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

.questionnaire-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

select:focus {
  border-color: rgba(200, 165, 106, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 980px) {
  .form-grid,
  .questionnaire-sections {
    grid-template-columns: 1fr;
  }
}


.article-hero-inner {
  max-width: 920px;
}

.article-intro {
  max-width: 780px;
  margin: 22px 0 0;
  font-size: 1.12rem;
  color: var(--text-soft);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.article-section {
  padding-top: 28px;
}

.article-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr;
  gap: 24px;
  align-items: start;
}

.article-content-card {
  padding: 38px;
}

.article-content {
  max-width: 760px;
}

.article-content h2 {
  margin-top: 34px;
  margin-bottom: 14px;
  font-size: 1.7rem;
  line-height: 1.15;
}

.article-content p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.article-content blockquote {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 16px 16px 0;
  color: var(--text);
  font-weight: 600;
}

.article-sidebar {
  display: grid;
  gap: 24px;
}

.sidebar-card {
  padding: 28px;
}

.sidebar-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

@media (max-width: 980px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
}


.admin-login-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(200, 165, 106, 0.09), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 18%),
    var(--bg);
}

.admin-login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 48px 0;
}

.admin-login-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.admin-brand {
  margin-bottom: 34px;
}

.admin-login-intro h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.admin-login-note {
  margin-top: 26px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-login-note p {
  margin: 0;
  color: var(--text-soft);
}

.admin-login-card {
  padding: 34px;
  max-width: 520px;
  width: 100%;
  justify-self: end;
}

.admin-login-card-head h2 {
  margin: 0 0 18px;
  font-size: 1.8rem;
  line-height: 1.1;
}

.admin-form {
  gap: 20px;
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.admin-login-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-login-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .admin-login-layout {
    grid-template-columns: 1fr;
  }

  .admin-login-card {
    justify-self: stretch;
    max-width: none;
  }
}


.admin-articles-toolbar,
.admin-articles-list {
  display: grid;
  gap: 24px;
}

.admin-filters-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.admin-article-row {
  display: grid;
  grid-template-columns: 1.2fr 0.45fr;
  gap: 24px;
  align-items: center;
}

.admin-article-main h2 {
  margin: 8px 0 12px;
  font-size: 1.5rem;
  line-height: 1.1;
}

.admin-article-main p {
  margin: 0;
}

.admin-article-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-article-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

@media (max-width: 980px) {
  .admin-filters-grid,
  .admin-article-row {
    grid-template-columns: 1fr;
  }

  .admin-article-side {
    align-items: flex-start;
  }
}


.neuroprofil-filters-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-neuroprofil-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.admin-neuro-card-wide {
  grid-column: span 2;
}

.admin-neuro-list {
  display: grid;
  gap: 18px;
}

.admin-neuro-row {
  display: grid;
  grid-template-columns: 1.2fr 0.45fr;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-neuro-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.admin-neuro-row h3 {
  margin: 8px 0 10px;
  font-size: 1.35rem;
}

.admin-neuro-row p {
  margin: 0;
}

@media (max-width: 980px) {
  .admin-neuroprofil-grid,
  .neuroprofil-filters-grid,
  .admin-neuro-row {
    grid-template-columns: 1fr;
  }

  .admin-neuro-card-wide {
    grid-column: span 1;
  }
}


.admin-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.admin-media-panel-wide {
  grid-column: span 2;
}

.admin-media-list {
  display: grid;
  gap: 18px;
}

.admin-media-row {
  display: grid;
  grid-template-columns: 1.2fr 0.45fr;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-media-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.admin-media-row h3 {
  margin: 8px 0 10px;
  font-size: 1.35rem;
}

.admin-media-row p {
  margin: 0;
}

@media (max-width: 980px) {
  .admin-media-grid,
  .admin-media-row {
    grid-template-columns: 1fr;
  }

  .admin-media-panel-wide {
    grid-column: span 1;
  }
}


.admin-newsletter-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 24px;
  align-items: start;
}

.admin-newsletter-main {
  min-width: 0;
}

@media (max-width: 980px) {
  .admin-newsletter-grid {
    grid-template-columns: 1fr;
  }
}


/* Bloc commercial questionnaire gratuit */
.btn-xl {
  min-height: 58px;
  padding: 0 30px;
  font-size: 1rem;
}

.hero-trust,
.micro-copy {
  margin: 14px 0 0;
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 0.95rem;
}

.neuro-test-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(200, 165, 106, 0.28);
  background:
    radial-gradient(circle at top left, rgba(200, 165, 106, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.032));
}

.free-tag {
  background: rgba(226, 188, 123, 0.18);
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.neuro-test-note h3 {
  margin: 0;
}

.check-list {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-strong);
  font-weight: 800;
}



/* SEO/GEO visibility pages */
.visibility-hero .solo { max-width: 920px; }
.visibility-grid .feature-card { min-height: 230px; }
.narrow-content { max-width: 860px; }
.narrow-content h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; margin: 0 0 20px; }
.narrow-content p { color: var(--text-soft); font-size: 1.08rem; }
.faq-list { display: grid; gap: 22px; }
.faq-list .feature-card h2 { margin: 0 0 14px; font-size: 1.45rem; }
.faq-list .feature-card p { font-size: 1.03rem; }
.free-tag { background: rgba(126, 224, 129, 0.12); color: #a8f0a7; }
@media (max-width: 980px) { .visibility-grid .feature-card { min-height: auto; } }

/* Blog dynamique + admin articles */
.blog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}
.blog-tab {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 10px 15px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}
.blog-tab:hover,
.blog-tab.is-active {
  background: rgba(226,188,123,0.18);
  border-color: rgba(226,188,123,0.55);
  color: var(--accent-strong);
}
.blog-status {
  color: var(--text-soft);
  margin: 0 0 24px;
  font-weight: 700;
}
.blog-grid { margin-top: 20px; }
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article-category,
.panel-label {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(226,188,123,0.13);
  color: var(--accent-strong);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.small-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .86rem;
}
.article-hero .article-cover {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: var(--accent-strong);
  font-weight: 800;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}
.article-body {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 52px);
  box-shadow: var(--shadow);
}
.article-body h2 {
  margin: 38px 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.12;
}
.article-body h2:first-child { margin-top: 0; }
.article-body p {
  color: var(--text-soft);
  font-size: 1.08rem;
}
.article-aside { position: sticky; top: 110px; }
.article-aside .btn { width: 100%; margin-top: 10px; justify-content: center; }
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}
.tag-row span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--text-soft);
  background: rgba(255,255,255,0.04);
}
.admin-editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 24px;
  align-items: start;
}
.admin-editor-card label,
.admin-side label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--text-soft);
  font-weight: 800;
}
.admin-editor-card input,
.admin-editor-card textarea,
.admin-editor-card select,
.social-output textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(0,0,0,0.32);
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
}
.admin-editor-card textarea,
.social-output textarea { resize: vertical; }
.admin-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: end;
}
.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.admin-status {
  margin: 14px 0 0;
  color: #a8f0a7;
  font-weight: 800;
}
.admin-status.error { color: #ff9b9b; }
.admin-side { display: grid; gap: 18px; }
.social-output textarea {
  min-height: 130px;
  margin: 10px 0;
  font-size: .92rem;
}
.admin-list-card { margin-top: 28px; }
.admin-list-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}
.admin-articles-list { display: grid; gap: 12px; }
.admin-article-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(0,0,0,.18);
}
.muted { color: var(--muted); }
@media (max-width: 980px) {
  .article-layout,
  .admin-editor-grid,
  .admin-row { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .admin-article-row { flex-direction: column; align-items: flex-start; }
}

/* Correctif admin articles : suppression + réseaux Facebook/Instagram/TikTok */
.btn-danger {
  border-color: rgba(255, 120, 120, .45);
  background: rgba(255, 80, 80, .10);
  color: #ffd7d7;
}
.btn-danger:hover {
  border-color: rgba(255, 120, 120, .8);
  background: rgba(255, 80, 80, .18);
}

/* ==========================================================
   PREMIUM ATHLETIC CARNIVORE — Design global noir / or / crème
   Patch design 2026-04-30
   ========================================================== */
:root{
  --bg:#050504;
  --bg-soft:#0d0c0a;
  --bg-warm:#14100c;
  --panel:rgba(255,248,236,.055);
  --panel-strong:rgba(255,248,236,.095);
  --border:rgba(228,201,130,.18);
  --border-strong:rgba(228,201,130,.38);
  --text:#fff8ec;
  --text-soft:#dfd2bd;
  --muted:#a99c89;
  --accent:#c9a45c;
  --accent-strong:#e4c982;
  --cream:#f4ebdd;
  --meat:#7a2e24;
  --shadow:0 30px 90px rgba(0,0,0,.55);
  --gold-shadow:0 18px 55px rgba(201,164,92,.22);
  --radius:26px;
  --radius-sm:16px;
}
html{background:#050504;}
body{
  background:
    radial-gradient(circle at 15% 5%, rgba(228,201,130,.16), transparent 28%),
    radial-gradient(circle at 78% 8%, rgba(122,46,36,.18), transparent 26%),
    linear-gradient(135deg,#050504 0%, #0b0907 42%, #100d09 100%);
  color:var(--text);
  text-rendering:optimizeLegibility;
}
body:before{
  content:"";position:fixed;inset:0;pointer-events:none;z-index:-1;
  background-image:linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,.55), transparent 72%);
}
.container{width:min(100% - 34px, 1200px);}
.site-header{background:rgba(5,5,4,.82);border-bottom:1px solid rgba(228,201,130,.14);box-shadow:0 12px 55px rgba(0,0,0,.34);}
.header-inner{min-height:92px;}
.brand{gap:16px;}
.brand-mark{width:58px;height:58px;border-radius:50%;overflow:hidden;background:linear-gradient(135deg, rgba(228,201,130,.28), rgba(0,0,0,.34));border:1px solid rgba(228,201,130,.55);box-shadow:0 12px 30px rgba(0,0,0,.42), inset 0 0 22px rgba(228,201,130,.14);color:transparent;flex:0 0 auto;}
.brand-mark img{width:100%;height:100%;object-fit:cover;display:block;}
.brand-text strong{font-family:Georgia,'Times New Roman',serif;letter-spacing:.045em;text-transform:uppercase;color:var(--cream);font-size:1rem;}
.brand-text small{color:var(--muted);letter-spacing:.045em;}
.main-nav a{position:relative;color:#d4cab8;font-weight:750;}
.main-nav a:after{content:"";position:absolute;left:0;right:0;bottom:-10px;height:1px;background:linear-gradient(90deg, transparent, var(--accent-strong), transparent);transform:scaleX(0);transform-origin:center;transition:transform .25s ease;}
.main-nav a:hover:after,.main-nav a.active:after{transform:scaleX(1);}
.main-nav a:hover,.main-nav a.active{color:#fff8ec;}
.hero{position:relative;overflow:hidden;padding-top:126px;padding-bottom:126px;}
.hero:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 70% 20%, rgba(228,201,130,.16), transparent 24%),radial-gradient(circle at 18% 82%, rgba(122,46,36,.22), transparent 28%);pointer-events:none;}
.hero .container{position:relative;z-index:1;}
.hero-content h1,.section-heading h2,.feature-card h2,.feature-card h3,.article-body h2{font-family:Georgia,'Times New Roman',serif;letter-spacing:-.035em;}
.hero-content h1{font-size:clamp(3.2rem,7.2vw,6.7rem);line-height:.88;max-width:920px;text-shadow:0 20px 60px rgba(0,0,0,.45);}
.hero-text{color:#e7dccc;font-size:clamp(1.05rem,1.45vw,1.23rem);max-width:780px;}
.eyebrow{color:var(--accent-strong);letter-spacing:.22em;font-size:.78rem;}
.btn{border:1px solid rgba(228,201,130,.28);min-height:54px;}
.btn-primary{background:linear-gradient(135deg,#e5c87f 0%, #c9a45c 50%, #9c7436 100%);color:#120e08;box-shadow:var(--gold-shadow);}
.btn-primary:hover{box-shadow:0 24px 70px rgba(201,164,92,.30);}
.btn-secondary{background:rgba(255,248,236,.055);border:1px solid rgba(228,201,130,.25);color:var(--cream);}
.btn-secondary:hover{background:rgba(228,201,130,.10);border-color:rgba(228,201,130,.45);}
.feature-card,.hero-panel,.hero-card,.article-body,.admin-editor-card,.admin-side .feature-card,.contact-card,.result-card,.profile-card{background:linear-gradient(145deg, rgba(255,248,236,.085), rgba(255,248,236,.026)),radial-gradient(circle at top left, rgba(228,201,130,.10), transparent 42%);border:1px solid var(--border);box-shadow:var(--shadow);}
.feature-card{transition:transform .24s ease,border-color .24s ease,box-shadow .24s ease;}
.feature-card:hover{border-color:rgba(228,201,130,.35);transform:translateY(-3px);}
.price-tag,.article-category,.panel-label{color:#2b1f0c;background:linear-gradient(135deg,#e4c982,#c9a45c);box-shadow:0 10px 30px rgba(201,164,92,.18);}
.section-alt{background:linear-gradient(180deg, rgba(255,248,236,.035), rgba(0,0,0,.06));border-top:1px solid rgba(228,201,130,.10);border-bottom:1px solid rgba(228,201,130,.10);}
.text-link{color:var(--accent-strong);font-weight:850;}
.text-link:hover{color:#fff2ca;}
.check-list li,.hero-points li{color:#e4d9c8;}
.site-footer{background:#030302;border-top:1px solid rgba(228,201,130,.16);}
.premium-hero{min-height:calc(100vh - 92px);display:flex;align-items:center;}
.premium-hero .hero-grid{grid-template-columns:minmax(0,1.05fr) minmax(340px,.95fr);}
.premium-kicker{display:flex;gap:10px;flex-wrap:wrap;margin:0 0 22px;}
.premium-kicker span{border:1px solid rgba(228,201,130,.24);border-radius:999px;padding:8px 11px;color:var(--accent-strong);background:rgba(0,0,0,.24);font-size:.76rem;font-weight:900;text-transform:uppercase;letter-spacing:.12em;}
.premium-proof-row{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px;color:var(--muted);font-weight:700;}
.premium-proof-row strong{color:var(--accent-strong);}
.method-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:36px;}
.method-pill{border:1px solid rgba(228,201,130,.18);border-radius:18px;padding:14px 16px;background:rgba(255,248,236,.045);}
.method-pill span{display:block;color:var(--accent-strong);font-weight:950;font-size:.76rem;text-transform:uppercase;letter-spacing:.13em;}
.method-pill strong{display:block;margin-top:4px;color:var(--cream);}
.logo-orb{position:relative;margin-inline:auto;width:min(440px,100%);aspect-ratio:1/1;border-radius:50%;padding:16px;background:radial-gradient(circle at 50% 45%, rgba(228,201,130,.28), transparent 54%),linear-gradient(145deg, rgba(228,201,130,.26), rgba(0,0,0,.18));border:1px solid rgba(228,201,130,.35);box-shadow:0 35px 110px rgba(0,0,0,.62),0 0 80px rgba(201,164,92,.14);}
.logo-orb img{width:100%;height:100%;object-fit:cover;border-radius:50%;filter:contrast(1.04) saturate(1.05);}
.logo-orb:after{content:"";position:absolute;inset:-18px;border-radius:50%;border:1px solid rgba(228,201,130,.12);pointer-events:none;}
.orb-caption{margin:22px auto 0;max-width:430px;color:#dfd2bd;text-align:center;font-weight:700;}
.stat-band{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:30px;}
.stat-box{text-align:center;border:1px solid rgba(228,201,130,.18);border-radius:18px;padding:16px 12px;background:rgba(0,0,0,.22);}
.stat-box strong{display:block;color:var(--accent-strong);font-size:1.45rem;font-family:Georgia,'Times New Roman',serif;}
.stat-box span{display:block;color:var(--muted);font-size:.86rem;}
.premium-path{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;counter-reset:path;}
.path-card{position:relative;overflow:hidden;}
.path-card:before{counter-increment:path;content:"0" counter(path);position:absolute;right:22px;top:16px;font-family:Georgia,'Times New Roman',serif;color:rgba(228,201,130,.22);font-size:4rem;line-height:1;font-weight:900;}
.path-card h3,.path-card p,.path-card a{position:relative;z-index:1;}
.premium-quote{font-family:Georgia,'Times New Roman',serif;font-size:clamp(1.9rem,3.4vw,3.25rem);line-height:1.08;color:var(--cream);max-width:1000px;margin:0;}
.premium-quote em{color:var(--accent-strong);font-style:normal;}
.blog-tabs{gap:10px;}
.blog-tab{border:1px solid rgba(228,201,130,.20);background:rgba(255,248,236,.045);color:#d9ccb9;}
.blog-tab:hover,.blog-tab.is-active{background:linear-gradient(135deg,#e4c982,#c9a45c);color:#160f07;border-color:transparent;}
.blog-card{min-height:100%;}
.blog-card-img{border-color:rgba(228,201,130,.20);}
.blog-status{color:var(--muted);}
.coach-shell,.member-shell,.chat-shell{border:1px solid rgba(228,201,130,.18);background:linear-gradient(145deg,rgba(255,248,236,.065),rgba(0,0,0,.12));box-shadow:var(--shadow);}
.chat-message.assistant,.message.assistant{background:rgba(255,248,236,.075);border:1px solid rgba(228,201,130,.16);}
.chat-message.user,.message.user{background:linear-gradient(135deg,rgba(228,201,130,.28),rgba(201,164,92,.16));border:1px solid rgba(228,201,130,.24);}
input,textarea,select{accent-color:var(--accent);}
@media (max-width: 980px){.premium-hero{min-height:auto;}.premium-hero .hero-grid,.premium-path,.method-strip,.stat-band{grid-template-columns:1fr;}.logo-orb{width:min(320px,100%);}.main-nav.open{background:rgba(5,5,4,.98);border-color:rgba(228,201,130,.18);}}
@media (max-width: 620px){.hero{padding-top:82px;padding-bottom:82px;}.hero-content h1{font-size:clamp(2.6rem,17vw,4.2rem);}.brand-text small{display:none;}.brand-mark{width:50px;height:50px;}.header-inner{min-height:78px;}}

/* Correctif affichage explicite des visuels premium */
.site-visual{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  border:1px solid rgba(215,179,106,.28);
  background:#070707;
  box-shadow:0 28px 80px rgba(0,0,0,.48),0 0 0 1px rgba(255,255,255,.04) inset;
}
.site-visual img{
  display:block;
  width:100%;
  height:auto;
  max-width:100%;
  object-fit:cover;
}
.hero-media.site-visual{align-self:center}
.hero-media.site-visual img{
  min-height:360px;
  height:clamp(360px,38vw,560px);
  object-fit:cover;
}
.wide-visual{margin:0}
.wide-visual img{width:100%;height:auto;display:block}
.visual-band-section .section-heading{max-width:860px;margin-bottom:28px}
@media(max-width:900px){
  .hero-media.site-visual img{min-height:auto;height:auto}
  .site-visual{border-radius:20px}
  .visual-band-section{padding-top:44px;padding-bottom:44px}
}

/* PATCH RECALAGE VISUELS — 2026-04-30 */
.hero {
  padding-top: clamp(64px, 7vw, 96px) !important;
  padding-bottom: clamp(58px, 7vw, 92px) !important;
}
.premium-hero { min-height: auto !important; align-items: center !important; }
.premium-hero .hero-grid,
.hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr) !important;
  gap: clamp(28px, 4vw, 56px) !important;
  align-items: center !important;
}
.hero-content h1 {
  font-size: clamp(2.75rem, 5vw, 5.05rem) !important;
  line-height: 1.01 !important;
  letter-spacing: -0.045em !important;
  max-width: 760px !important;
  margin-top: 0 !important;
}
.hero-text { max-width: 700px !important; margin-top: 22px !important; }
.hero-media.site-visual { width: 100% !important; align-self: center !important; border-radius: 30px !important; }
.hero-media.site-visual img,
.site-visual img {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
}
.hero-media.site-visual img { object-position: 58% center !important; }
.wide-visual { border-radius: 30px !important; max-width: 1180px !important; margin-inline: auto !important; }
.wide-visual img {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  object-fit: cover !important;
  object-position: center center !important;
}
.visual-band-section {
  padding-top: clamp(58px, 6vw, 82px) !important;
  padding-bottom: clamp(58px, 6vw, 82px) !important;
}
.method-strip { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
@media (max-width: 1100px) {
  .premium-hero .hero-grid,
  .hero-grid { grid-template-columns: 1fr !important; }
  .hero-content h1 { max-width: 900px !important; font-size: clamp(2.55rem, 8vw, 4.7rem) !important; }
  .hero-media.site-visual { max-width: 920px !important; margin-inline: auto !important; }
  .method-strip { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 24px, 1200px) !important; }
  .hero { padding-top: 42px !important; padding-bottom: 56px !important; }
  .hero-content h1 { font-size: clamp(2.25rem, 12vw, 3.6rem) !important; line-height: 1.02 !important; }
  .hero-text { font-size: 1rem !important; }
  .premium-kicker { gap: 8px !important; }
  .premium-kicker span { font-size: .68rem !important; padding: 7px 9px !important; }
  .method-strip,
  .premium-proof-row { grid-template-columns: 1fr !important; }
  .hero-media.site-visual,
  .site-visual,
  .wide-visual { border-radius: 18px !important; }
}


/* PATCH VISUELS EN FOND PLEIN ECRAN — 2026-04-30 */
.hero-fullscreen{position:relative!important;min-height:calc(100svh - 84px)!important;padding:0!important;display:flex!important;align-items:center!important;overflow:hidden!important;background-image:var(--hero-bg)!important;background-size:cover!important;background-repeat:no-repeat!important;background-position:center center!important;isolation:isolate;border-bottom:1px solid rgba(228,201,130,.18)}
.hero-fullscreen:before{content:"";position:absolute;inset:0;z-index:0;pointer-events:none;background:linear-gradient(90deg,rgba(0,0,0,.92) 0%,rgba(0,0,0,.78) 30%,rgba(0,0,0,.42) 58%,rgba(0,0,0,.12) 100%),linear-gradient(180deg,rgba(0,0,0,.55) 0%,rgba(0,0,0,.18) 42%,rgba(0,0,0,.72) 100%)}
.hero-fullscreen:after{content:"";position:absolute;inset:0;z-index:0;pointer-events:none;background:radial-gradient(circle at 18% 50%,rgba(228,201,130,.14),transparent 26%),radial-gradient(circle at 75% 18%,rgba(228,201,130,.08),transparent 30%);mix-blend-mode:screen;opacity:.82}
.hero-fullscreen>.container{position:relative!important;z-index:1!important;min-height:calc(100svh - 84px)!important;display:flex!important;align-items:center!important;width:min(100% - 44px,1280px)!important}
.hero-fullscreen .hero-grid{display:block!important;width:100%!important}
.hero-fullscreen .hero-content{max-width:780px!important;padding:clamp(72px,10vh,132px) 0 clamp(58px,8vh,110px)!important}
.hero-fullscreen .hero-media,.hero-fullscreen .hero-media.site-visual{display:none!important}
.hero-fullscreen .premium-kicker,.hero-fullscreen .eyebrow{color:#e6c47c!important;text-shadow:0 2px 16px rgba(0,0,0,.8)}
.hero-fullscreen .hero-content h1{max-width:760px!important;font-size:clamp(3.1rem,6.1vw,6.25rem)!important;line-height:.9!important;letter-spacing:-.055em!important;text-shadow:0 18px 62px rgba(0,0,0,.8),0 2px 0 rgba(0,0,0,.25)!important}
.hero-fullscreen .hero-text{max-width:660px!important;color:#f2e8d8!important;font-size:clamp(1.03rem,1.28vw,1.22rem)!important;text-shadow:0 7px 28px rgba(0,0,0,.95)!important}
.hero-fullscreen .btn{box-shadow:0 18px 48px rgba(0,0,0,.42),0 10px 30px rgba(200,165,106,.22)!important}
.hero-home{background-position:center center!important}.hero-commencer{background-position:center center!important}.hero-blog{background-position:center top!important}.hero-coach{background-position:center center!important}
.visual-band-section .wide-visual{overflow:hidden!important;border-radius:34px!important;border:1px solid rgba(228,201,130,.20)!important;box-shadow:0 28px 90px rgba(0,0,0,.45)!important;background:#070707!important}
.visual-band-section .wide-visual img{width:100%!important;aspect-ratio:16/9!important;height:auto!important;object-fit:cover!important;object-position:center center!important}
@media(max-width:980px){.hero-fullscreen{min-height:calc(92svh - 78px)!important;background-position:62% center!important}.hero-fullscreen:before{background:linear-gradient(90deg,rgba(0,0,0,.94) 0%,rgba(0,0,0,.82) 46%,rgba(0,0,0,.38) 100%),linear-gradient(180deg,rgba(0,0,0,.58) 0%,rgba(0,0,0,.18) 42%,rgba(0,0,0,.76) 100%)}.hero-fullscreen>.container{min-height:calc(92svh - 78px)!important}.hero-fullscreen .hero-content{max-width:720px!important}.hero-fullscreen .hero-content h1{font-size:clamp(2.7rem,9vw,4.8rem)!important;line-height:.94!important}}
@media(max-width:620px){.hero-fullscreen{min-height:calc(88svh - 76px)!important;background-position:68% center!important}.hero-fullscreen:before{background:linear-gradient(90deg,rgba(0,0,0,.96) 0%,rgba(0,0,0,.88) 56%,rgba(0,0,0,.55) 100%),linear-gradient(180deg,rgba(0,0,0,.64) 0%,rgba(0,0,0,.20) 38%,rgba(0,0,0,.82) 100%)}.hero-fullscreen>.container{width:min(100% - 28px,1280px)!important;min-height:calc(88svh - 76px)!important}.hero-fullscreen .hero-content{padding:52px 0 46px!important}.hero-fullscreen .hero-content h1{font-size:clamp(2.35rem,13vw,3.6rem)!important;line-height:.98!important;max-width:96%!important}.hero-fullscreen .hero-text{font-size:1rem!important;max-width:96%!important}.hero-fullscreen .method-strip,.hero-fullscreen .premium-proof-row{display:none!important}}


/* PATCH HERO FOND SAVANE + SLOGAN CSS V1 */
.hero-home.hero-fullscreen{
  background-image:var(--hero-bg)!important;
  background-size:cover!important;
  background-position:center center!important;
  min-height:calc(100svh - 76px)!important;
  padding:0!important;
  position:relative!important;
}

.hero-home.hero-fullscreen:before{
  content:""!important;
  display:block!important;
  position:absolute!important;
  inset:0!important;
  z-index:0!important;
  pointer-events:none!important;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,.46) 0%,
      rgba(0,0,0,.30) 33%,
      rgba(0,0,0,.08) 58%,
      rgba(0,0,0,.02) 100%)!important,
    linear-gradient(180deg,
      rgba(0,0,0,.20) 0%,
      rgba(0,0,0,.02) 48%,
      rgba(0,0,0,.34) 100%)!important;
}

.hero-home.hero-fullscreen:after{
  display:none!important;
}

.hero-home.hero-fullscreen>.container{
  width:100%!important;
  max-width:none!important;
  min-height:calc(100svh - 76px)!important;
  margin:0!important;
  padding-left:clamp(52px,5.4vw,96px)!important;
  padding-right:clamp(30px,4vw,74px)!important;
  position:relative!important;
  z-index:2!important;
}

.hero-home.hero-fullscreen .hero-grid{
  display:block!important;
  width:100%!important;
}

.hero-home.hero-fullscreen .hero-content{
  display:block!important;
  max-width:760px!important;
  padding-top:clamp(120px,16vh,170px)!important;
  padding-bottom:clamp(70px,10vh,110px)!important;
  position:relative!important;
  z-index:3!important;
}

.hero-home.hero-fullscreen .hero-media,
.hero-home.hero-fullscreen .hero-media.site-visual,
.hero-title-visual,
.hero-home .premium-proof-row,
.hero-home .method-strip{
  display:none!important;
}

.hero-home .premium-kicker.hero-signature{
  display:flex!important;
  align-items:center!important;
  flex-wrap:wrap!important;
  gap:0!important;
  margin:0 0 18px!important;
}

.hero-home .premium-kicker.hero-signature span{
  border:0!important;
  background:transparent!important;
  padding:0!important;
  border-radius:0!important;
  box-shadow:none!important;
  color:#c99b4b!important;
  font-family:Inter, system-ui, sans-serif!important;
  font-size:.66rem!important;
  font-weight:900!important;
  letter-spacing:.26em!important;
  text-transform:uppercase!important;
  text-shadow:0 8px 24px rgba(0,0,0,.90)!important;
}

.hero-home .premium-kicker.hero-signature span:not(:last-child)::after{
  content:"";
  display:inline-block;
  width:38px;
  height:1px;
  margin:0 14px 3px;
  background:linear-gradient(90deg, rgba(201,155,75,.75), rgba(201,155,75,.08));
}

.hero-home .hero-slogan{
  margin:0!important;
  max-width:760px!important;
  font-family:"Cinzel", Georgia, "Times New Roman", serif!important;
  font-size:clamp(4.4rem,6.25vw,7.3rem)!important;
  line-height:.88!important;
  letter-spacing:-.055em!important;
  font-weight:800!important;
  text-transform:uppercase!important;
  color:#f4c869!important;
  background:linear-gradient(180deg,#fff1ba 0%,#e7b650 34%,#9f661f 72%,#f4d27f 100%)!important;
  -webkit-background-clip:text!important;
  background-clip:text!important;
  -webkit-text-fill-color:transparent!important;
  text-shadow:
    0 4px 0 rgba(52,29,6,.48),
    0 20px 58px rgba(0,0,0,.92),
    0 0 24px rgba(223,160,55,.20)!important;
  filter:drop-shadow(0 0 10px rgba(216,151,45,.18))!important;
}

.hero-home .hero-slogan::after{
  content:"";
  display:block;
  width:132px;
  height:2px;
  margin:24px 0 0;
  background:linear-gradient(90deg,#e3b657,rgba(227,182,87,.04));
  box-shadow:0 0 18px rgba(227,182,87,.32);
}

.hero-home.hero-fullscreen .hero-text{
  display:block!important;
  max-width:500px!important;
  margin:24px 0 0!important;
  color:#efe0c7!important;
  font-size:clamp(1rem,1.02vw,1.12rem)!important;
  line-height:1.58!important;
  font-weight:650!important;
  text-shadow:0 10px 32px rgba(0,0,0,.98)!important;
}

.hero-home .hero-actions{
  display:flex!important;
  align-items:center!important;
  flex-wrap:wrap!important;
  gap:16px!important;
  margin-top:26px!important;
  position:relative!important;
  width:fit-content!important;
}

.hero-home .hero-actions:before{
  content:""!important;
  position:absolute!important;
  left:-34px!important;
  right:-34px!important;
  top:-24px!important;
  bottom:-24px!important;
  pointer-events:none!important;
  background:radial-gradient(circle at 38% 50%, rgba(232,184,89,.22), transparent 46%)!important;
  filter:blur(14px)!important;
  opacity:.58!important;
}

.hero-home .btn{
  position:relative!important;
  z-index:1!important;
  min-height:56px!important;
  padding:0 30px!important;
  border-radius:999px!important;
  font-family:Inter, system-ui, sans-serif!important;
  font-size:.88rem!important;
  font-weight:900!important;
  letter-spacing:.02em!important;
}

.hero-home .btn-primary{
  display:inline-flex!important;
  background:linear-gradient(135deg,#f5d27b 0%,#d1983a 50%,#8b5f20 100%)!important;
  color:#120d06!important;
  border:1px solid rgba(255,232,160,.58)!important;
  box-shadow:
    0 22px 62px rgba(0,0,0,.62),
    0 10px 34px rgba(209,152,58,.32),
    inset 0 1px 0 rgba(255,246,205,.60)!important;
}

.hero-home .btn-secondary{
  display:inline-flex!important;
  background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(0,0,0,.24))!important;
  border:1px solid rgba(217,171,83,.34)!important;
  color:#eadfcb!important;
  box-shadow:0 18px 54px rgba(0,0,0,.42),inset 0 1px 0 rgba(255,255,255,.08)!important;
}

.site-header{
  background:rgba(0,0,0,.93)!important;
  border-bottom:1px solid rgba(214,170,82,.20)!important;
}

@media(max-width:900px){
  .hero-home.hero-fullscreen>.container{
    padding-left:28px!important;
    padding-right:24px!important;
  }
  .hero-home.hero-fullscreen .hero-content{
    max-width:680px!important;
    padding-top:110px!important;
  }
  .hero-home .hero-slogan{
    font-size:clamp(3.4rem,10vw,5.4rem)!important;
  }
}

@media(max-width:760px){
  .hero-home.hero-fullscreen{
    min-height:calc(92svh - 72px)!important;
    background-position:70% center!important;
  }
  .hero-home.hero-fullscreen:before{
    background:
      linear-gradient(90deg,rgba(0,0,0,.78) 0%,rgba(0,0,0,.58) 58%,rgba(0,0,0,.24) 100%),
      linear-gradient(180deg,rgba(0,0,0,.34) 0%,rgba(0,0,0,.08) 44%,rgba(0,0,0,.72) 100%)!important;
  }
  .hero-home.hero-fullscreen>.container{
    min-height:calc(92svh - 72px)!important;
    padding-left:18px!important;
    padding-right:18px!important;
  }
  .hero-home.hero-fullscreen .hero-content{
    max-width:100%!important;
    padding-top:70px!important;
    padding-bottom:36px!important;
  }
  .hero-home .premium-kicker.hero-signature{
    row-gap:8px!important;
  }
  .hero-home .premium-kicker.hero-signature span{
    font-size:.56rem!important;
    letter-spacing:.18em!important;
  }
  .hero-home .premium-kicker.hero-signature span:not(:last-child)::after{
    width:16px!important;
    margin:0 7px 3px!important;
  }
  .hero-home .hero-slogan{
    max-width:100%!important;
    font-size:clamp(2.75rem,12vw,4rem)!important;
    line-height:.94!important;
    letter-spacing:-.045em!important;
  }
  .hero-home .hero-slogan::after{
    width:86px!important;
    margin-top:18px!important;
  }
  .hero-home.hero-fullscreen .hero-text{
    max-width:100%!important;
    font-size:.95rem!important;
  }
  .hero-home .hero-actions{
    width:100%!important;
    gap:12px!important;
  }
  .hero-home .btn{
    min-height:50px!important;
    padding:0 18px!important;
    font-size:.80rem!important;
  }
}


/* PATCH HERO V3 — IMAGE RÉELLEMENT ÉCLAIRCIE + SUPPRESSION DU VOILE GLOBAL */
.hero-home.hero-fullscreen{
  background-image:var(--hero-bg)!important;
  background-size:cover!important;
  background-position:center center!important;
  filter:none!important;
}

.hero-home.hero-fullscreen:before,
.hero-home.hero-fullscreen:after{
  display:none!important;
  content:none!important;
  background:none!important;
}

/* Zone de lecture locale uniquement, pour éviter de réassombrir toute l'image */
.hero-home.hero-fullscreen .hero-content{
  position:relative!important;
  z-index:3!important;
}

.hero-home.hero-fullscreen .hero-content:before{
  content:""!important;
  position:absolute!important;
  z-index:-1!important;
  left:-28px!important;
  top:-22px!important;
  width:min(720px, calc(100vw - 36px))!important;
  height:calc(100% + 36px)!important;
  pointer-events:none!important;
  border-radius:30px!important;
  background:linear-gradient(90deg, rgba(0,0,0,.32), rgba(0,0,0,.10) 68%, transparent)!important;
  filter:blur(1px)!important;
  opacity:.65!important;
}

.hero-home .hero-slogan{
  text-shadow:
    0 3px 0 rgba(34,19,4,.32),
    0 14px 40px rgba(0,0,0,.68),
    0 0 18px rgba(223,160,55,.18)!important;
}

.hero-home.hero-fullscreen .hero-text{
  color:#fff0d6!important;
  text-shadow:0 8px 24px rgba(0,0,0,.88)!important;
}

@media(max-width:760px){
  .hero-home.hero-fullscreen{
    background-position:70% center!important;
  }
  .hero-home.hero-fullscreen .hero-content:before{
    left:-12px!important;
    right:-12px!important;
    width:auto!important;
    border-radius:22px!important;
    background:linear-gradient(90deg, rgba(0,0,0,.50), rgba(0,0,0,.20) 72%, transparent)!important;
    opacity:.78!important;
  }
}


/* PATCH HEADER + CTA V4 — alignement marque, menu à droite, bouton plus vendeur */
.site-header{
  min-height:86px!important;
  background:rgba(0,0,0,.94)!important;
  border-bottom:1px solid rgba(214,170,82,.22)!important;
}

.header-inner{
  width:100%!important;
  max-width:none!important;
  margin:0!important;
  min-height:86px!important;
  padding-left:clamp(52px,5.4vw,96px)!important;
  padding-right:clamp(30px,4.4vw,86px)!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
}

.site-header .brand{
  display:flex!important;
  align-items:center!important;
  gap:16px!important;
  flex:0 0 auto!important;
}

.brand-mark{
  width:58px!important;
  height:58px!important;
  border-radius:50%!important;
}

.brand-text strong{
  font-size:1.13rem!important;
  line-height:1!important;
  font-weight:950!important;
  letter-spacing:.045em!important;
  color:#fff3df!important;
}

.brand-text small{
  margin-top:7px!important;
  font-size:.78rem!important;
  line-height:1!important;
  color:#b7aa96!important;
  letter-spacing:.05em!important;
}

.main-nav{
  margin-left:auto!important;
  flex:0 0 auto!important;
}

.main-nav ul{
  gap:34px!important;
  justify-content:flex-end!important;
}

.main-nav a{
  font-size:.88rem!important;
  font-weight:900!important;
  letter-spacing:.012em!important;
  color:#ddd3c2!important;
}

.main-nav a.active,
.main-nav a:hover{
  color:#e1b962!important;
}

.hero-home.hero-fullscreen>.container{
  padding-left:clamp(52px,5.4vw,96px)!important;
  padding-right:clamp(30px,4.4vw,86px)!important;
}

/* CTA principal plus visible */
.hero-home .hero-actions{
  margin-top:30px!important;
  gap:18px!important;
}

.hero-home .hero-actions:before{
  left:-42px!important;
  right:-42px!important;
  top:-30px!important;
  bottom:-30px!important;
  background:
    radial-gradient(circle at 34% 50%, rgba(255,205,92,.36), transparent 43%),
    radial-gradient(circle at 72% 50%, rgba(198,135,40,.16), transparent 48%)!important;
  filter:blur(16px)!important;
  opacity:.82!important;
}

.hero-home .btn-primary{
  min-height:62px!important;
  padding:0 38px!important;
  font-size:.95rem!important;
  font-weight:950!important;
  letter-spacing:.018em!important;
  background:
    linear-gradient(135deg,#ffe18b 0%,#e7aa3f 45%,#9a6822 100%)!important;
  color:#120d06!important;
  border:1px solid rgba(255,239,179,.70)!important;
  box-shadow:
    0 26px 78px rgba(0,0,0,.70),
    0 12px 42px rgba(231,170,63,.42),
    inset 0 1px 0 rgba(255,250,220,.78),
    inset 0 -14px 32px rgba(95,53,8,.24)!important;
}

.hero-home .btn-primary::before{
  content:""!important;
  position:absolute!important;
  inset:-2px!important;
  border-radius:inherit!important;
  z-index:-1!important;
  background:linear-gradient(135deg, rgba(255,230,145,.65), rgba(202,139,40,.10), rgba(255,230,145,.35))!important;
  filter:blur(7px)!important;
  opacity:.75!important;
}

.hero-home .btn-primary:hover{
  transform:translateY(-3px)!important;
  box-shadow:
    0 30px 88px rgba(0,0,0,.74),
    0 14px 50px rgba(231,170,63,.50),
    inset 0 1px 0 rgba(255,250,220,.84)!important;
}

.hero-home .btn-secondary{
  min-height:56px!important;
  padding:0 30px!important;
  opacity:.92!important;
}

@media(max-width:1050px){
  .header-inner{
    padding-left:32px!important;
    padding-right:28px!important;
  }
  .hero-home.hero-fullscreen>.container{
    padding-left:32px!important;
    padding-right:28px!important;
  }
  .main-nav ul{
    gap:20px!important;
  }
  .main-nav a{
    font-size:.80rem!important;
  }
  .brand-mark{
    width:52px!important;
    height:52px!important;
  }
  .brand-text strong{
    font-size:1rem!important;
  }
}

@media(max-width:760px){
  .site-header{
    min-height:74px!important;
  }
  .header-inner{
    min-height:74px!important;
    padding-left:18px!important;
    padding-right:18px!important;
  }
  .brand-mark{
    width:46px!important;
    height:46px!important;
  }
  .brand-text strong{
    font-size:.86rem!important;
  }
  .brand-text small{
    font-size:.66rem!important;
    margin-top:5px!important;
  }
  .hero-home.hero-fullscreen>.container{
    padding-left:18px!important;
    padding-right:18px!important;
  }
  .hero-home .btn-primary{
    width:100%!important;
    min-height:56px!important;
    padding:0 22px!important;
    font-size:.88rem!important;
  }
}

/* PATCH HOME PREMIUM V5 — stabilisation header + hero desktop/mobile */
.site-header{min-height:82px!important;background:rgba(0,0,0,.92)!important;box-shadow:0 18px 50px rgba(0,0,0,.28)!important;}
.header-inner{min-height:82px!important;padding-left:clamp(42px,5vw,88px)!important;padding-right:clamp(28px,4.6vw,82px)!important;gap:22px!important;}
.brand-mark{width:54px!important;height:54px!important;box-shadow:0 0 0 1px rgba(255,230,150,.12) inset,0 12px 36px rgba(0,0,0,.34)!important;}
.brand-text strong{font-size:1.08rem!important;white-space:nowrap!important;}
.brand-text small{font-size:.74rem!important;white-space:nowrap!important;}
.main-nav ul{gap:clamp(18px,2.05vw,30px)!important;}
.main-nav a{font-size:clamp(.78rem,.72vw,.88rem)!important;white-space:nowrap!important;}
.hero-home.hero-fullscreen{min-height:calc(100svh - 82px)!important;background-position:center center!important;}
.hero-home.hero-fullscreen>.container{min-height:calc(100svh - 82px)!important;padding-left:clamp(42px,5vw,88px)!important;padding-right:clamp(28px,4.6vw,82px)!important;}
.hero-home.hero-fullscreen .hero-content{max-width:720px!important;padding-top:clamp(84px,12vh,132px)!important;padding-bottom:clamp(54px,8vh,92px)!important;}
.hero-home.hero-fullscreen .hero-content:before{left:-24px!important;top:-18px!important;width:min(650px, calc(100vw - 34px))!important;height:calc(100% + 30px)!important;background:linear-gradient(90deg, rgba(0,0,0,.26), rgba(0,0,0,.08) 66%, transparent)!important;opacity:.58!important;}
.hero-home .premium-kicker.hero-signature{margin-bottom:16px!important;}
.hero-home .premium-kicker.hero-signature span{color:#d1a650!important;font-size:.62rem!important;letter-spacing:.24em!important;}
.hero-home .hero-slogan{max-width:700px!important;font-size:clamp(4.05rem,5.75vw,6.75rem)!important;line-height:.90!important;letter-spacing:-.048em!important;}
.hero-home .hero-slogan::after{width:118px!important;margin-top:22px!important;}
.hero-home.hero-fullscreen .hero-text{max-width:470px!important;margin-top:22px!important;font-size:clamp(.98rem,1vw,1.08rem)!important;}
.hero-home .hero-actions{margin-top:24px!important;gap:16px!important;}
.hero-home .btn-primary{min-height:60px!important;padding:0 36px!important;}
.hero-home .btn-secondary{min-height:54px!important;padding:0 28px!important;}
@media(max-width:1180px) and (min-width:981px){.header-inner{padding-left:28px!important;padding-right:28px!important;}.brand-mark{width:50px!important;height:50px!important;}.brand-text strong{font-size:.96rem!important;}.brand-text small{font-size:.66rem!important;}.main-nav ul{gap:16px!important;}.main-nav a{font-size:.76rem!important;}}
@media(max-width:980px){.site-header{min-height:74px!important;}.header-inner{min-height:74px!important;padding-left:20px!important;padding-right:20px!important;}.main-nav{background:rgba(0,0,0,.98)!important;border-bottom:1px solid rgba(214,170,82,.22)!important;}.main-nav ul{gap:16px!important;}.main-nav a{font-size:.92rem!important;}.hero-home.hero-fullscreen{min-height:calc(94svh - 74px)!important;background-position:68% center!important;}.hero-home.hero-fullscreen>.container{min-height:calc(94svh - 74px)!important;padding-left:22px!important;padding-right:22px!important;}.hero-home.hero-fullscreen .hero-content{max-width:620px!important;padding-top:74px!important;padding-bottom:44px!important;}.hero-home .hero-slogan{font-size:clamp(3.15rem,10.5vw,5.1rem)!important;}}
@media(max-width:620px){.brand-text strong{font-size:.82rem!important;letter-spacing:.02em!important;}.brand-text small{display:none!important;}.brand-mark{width:44px!important;height:44px!important;}.hero-home.hero-fullscreen{min-height:calc(92svh - 74px)!important;background-position:72% center!important;}.hero-home.hero-fullscreen>.container{min-height:calc(92svh - 74px)!important;padding-left:16px!important;padding-right:16px!important;}.hero-home.hero-fullscreen .hero-content{padding-top:56px!important;padding-bottom:34px!important;}.hero-home.hero-fullscreen .hero-content:before{left:-10px!important;right:-10px!important;width:auto!important;background:linear-gradient(90deg, rgba(0,0,0,.52), rgba(0,0,0,.24) 72%, transparent)!important;opacity:.78!important;}.hero-home .premium-kicker.hero-signature{margin-bottom:14px!important;}.hero-home .premium-kicker.hero-signature span{font-size:.52rem!important;letter-spacing:.16em!important;}.hero-home .premium-kicker.hero-signature span:not(:last-child)::after{width:12px!important;margin:0 6px 3px!important;}.hero-home .hero-slogan{font-size:clamp(2.55rem,12.4vw,3.72rem)!important;line-height:.94!important;}.hero-home .hero-slogan::after{width:78px!important;margin-top:16px!important;}.hero-home.hero-fullscreen .hero-text{font-size:.93rem!important;line-height:1.48!important;margin-top:18px!important;}.hero-home .hero-actions{width:100%!important;margin-top:22px!important;gap:12px!important;}.hero-home .btn{width:100%!important;}.hero-home .btn-primary{min-height:56px!important;padding:0 20px!important;font-size:.86rem!important;}.hero-home .btn-secondary{min-height:50px!important;padding:0 18px!important;font-size:.80rem!important;}}

/* PATCH HEADER OVERLAY V8 — header posé directement sur l'image hero */

/*
   Le problème n'était pas seulement le fond noir du header :
   le header occupait encore une bande séparée au-dessus du hero.
   Ici, on le place en absolute pour qu'il flotte sur l'image de fond.
*/

body.home,
body.home-page {
  padding-top: 0 !important;
}

.site-header {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 50 !important;
  min-height: 92px !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border-bottom: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Sécurité : supprime les éventuelles couches noires ajoutées par pseudo-éléments */
.site-header::before,
.site-header::after {
  content: none !important;
  display: none !important;
  background: transparent !important;
}

/* Le contenu du header reste aligné, mais plus grand */
.header-inner {
  min-height: 92px !important;
  padding-left: clamp(48px, 5.2vw, 96px) !important;
  padding-right: clamp(36px, 4.8vw, 88px) !important;
  gap: 26px !important;
  background: transparent !important;
}

/* Marque plus grande */
.site-header .brand {
  gap: 18px !important;
  flex: 0 0 auto !important;
}

.brand-mark {
  width: 68px !important;
  height: 68px !important;
  min-width: 68px !important;
  min-height: 68px !important;
}

.brand-text strong {
  font-size: 1.32rem !important;
  line-height: 1.05 !important;
  letter-spacing: 0.055em !important;
  white-space: nowrap !important;
}

.brand-text small {
  font-size: 0.84rem !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}

/* Onglets un peu plus grands sans les repousser bizarrement */
.main-nav {
  margin-left: auto !important;
  flex: 0 1 auto !important;
  background: transparent !important;
}

.main-nav ul {
  gap: clamp(20px, 2.15vw, 32px) !important;
}

.main-nav a {
  font-size: clamp(.86rem, .82vw, 1rem) !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}

/* L'image hero doit commencer tout en haut, derrière le header */
.hero-home.hero-fullscreen {
  margin-top: 0 !important;
  padding-top: 0 !important;
  min-height: 100svh !important;
  background-position: center center !important;
}

.hero-home.hero-fullscreen > .container {
  min-height: 100svh !important;
}

/* On garde le texte hero assez bas pour ne pas passer sous le header */
.hero-home.hero-fullscreen .hero-content {
  padding-top: clamp(118px, 15vh, 160px) !important;
}

/* Desktop moyen : marque + menu agrandis mais contenus */
@media (max-width: 1180px) and (min-width: 981px) {
  .header-inner {
    padding-left: 30px !important;
    padding-right: 30px !important;
    gap: 18px !important;
  }

  .brand-mark {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    min-height: 58px !important;
  }

  .brand-text strong {
    font-size: 1.08rem !important;
  }

  .brand-text small {
    font-size: .72rem !important;
  }

  .main-nav ul {
    gap: 17px !important;
  }

  .main-nav a {
    font-size: .82rem !important;
  }
}

/* Mobile : header toujours sur l'image, menu ouvert avec fond seulement quand nécessaire */
@media (max-width: 980px) {
  .site-header {
    position: absolute !important;
    min-height: 78px !important;
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: 0 !important;
  }

  .header-inner {
    min-height: 78px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .main-nav {
    background: transparent !important;
  }

  .main-nav.open {
    background: rgba(0, 0, 0, .96) !important;
    border-bottom: 1px solid rgba(214, 170, 82, .22) !important;
  }

  .hero-home.hero-fullscreen {
    min-height: 100svh !important;
  }

  .hero-home.hero-fullscreen > .container {
    min-height: 100svh !important;
  }

  .hero-home.hero-fullscreen .hero-content {
    padding-top: 106px !important;
  }
}

@media (max-width: 620px) {
  .brand-mark {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
  }

  .brand-text strong {
    font-size: .96rem !important;
    letter-spacing: .028em !important;
  }

  .brand-text small {
    display: none !important;
  }

  .hero-home.hero-fullscreen .hero-content {
    padding-top: 94px !important;
  }
}

/* PATCH CTA PRINCIPAL V9 — bouton unique plus commercial */

/* La phrase sous le slogan devient un vrai argument commercial visible */
.hero-home.hero-fullscreen .hero-text {
  max-width: 620px !important;
  font-size: clamp(1.18rem, 1.28vw, 1.42rem) !important;
  line-height: 1.48 !important;
  font-weight: 800 !important;
  color: #fff6df !important;
  text-shadow: 0 3px 16px rgba(0, 0, 0, .72) !important;
  margin-top: 28px !important;
}

/* Un seul bouton : il occupe l'espace des deux anciens boutons */
.hero-home .hero-actions {
  margin-top: 32px !important;
  display: flex !important;
  width: min(620px, 100%) !important;
  gap: 0 !important;
}

.hero-home .hero-actions .btn-secondary {
  display: none !important;
}

/* Gros CTA principal, plus lumineux, plus cliquable */
.hero-home .hero-actions .btn-primary {
  width: 100% !important;
  min-height: 74px !important;
  padding: 0 46px !important;
  justify-content: center !important;
  border-radius: 999px !important;
  font-size: clamp(1rem, 1.05vw, 1.22rem) !important;
  font-weight: 950 !important;
  letter-spacing: .105em !important;
  text-transform: uppercase !important;
  color: #1a1004 !important;
  background:
    linear-gradient(135deg, #fff3b4 0%, #e2b44f 34%, #b87918 68%, #ffe08a 100%) !important;
  border: 1px solid rgba(255, 235, 165, .9) !important;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, .50),
    0 0 38px rgba(222, 171, 71, .34),
    inset 0 1px 0 rgba(255, 255, 255, .55) !important;
  transform: translateY(0) !important;
}

.hero-home .hero-actions .btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow:
    0 24px 58px rgba(0, 0, 0, .56),
    0 0 52px rgba(255, 205, 92, .48),
    inset 0 1px 0 rgba(255, 255, 255, .62) !important;
}

/* Mobile : le bouton reste imposant mais ne déborde pas */
@media (max-width: 620px) {
  .hero-home.hero-fullscreen .hero-text {
    max-width: 100% !important;
    font-size: clamp(1rem, 4.7vw, 1.18rem) !important;
    line-height: 1.42 !important;
    margin-top: 22px !important;
  }

  .hero-home .hero-actions {
    width: 100% !important;
    margin-top: 26px !important;
  }

  .hero-home .hero-actions .btn-primary {
    min-height: 64px !important;
    padding: 0 24px !important;
    font-size: .94rem !important;
    letter-spacing: .075em !important;
  }
}

/* PATCH METHODE IMMERSIVE V10 — section visuelle avec fond dédié */

.methode-immersive-section {
  position: relative !important;
  min-height: 760px !important;
  padding: clamp(90px, 9vw, 140px) 0 !important;
  overflow: hidden !important;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .70) 32%, rgba(0, 0, 0, .18) 62%, rgba(0, 0, 0, .40) 100%),
    url("assets/visuels/home-viking-methode.png?v=20260628-vikinghome-clean3") center center / cover no-repeat !important;
}

.methode-immersive-section::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background:
    radial-gradient(circle at 18% 38%, rgba(213, 153, 61, .10), transparent 34%),
    linear-gradient(180deg, rgba(0,0,0,.24), transparent 22%, transparent 70%, rgba(0,0,0,.42)) !important;
  z-index: 0 !important;
}

.methode-immersive-inner {
  position: relative !important;
  z-index: 1 !important;
  min-height: 560px !important;
  display: flex !important;
  align-items: center !important;
}

.methode-copy {
  width: min(620px, 100%) !important;
  padding-left: clamp(0px, 1vw, 20px) !important;
}

.methode-copy .eyebrow {
  margin-bottom: 18px !important;
  color: #d7a64a !important;
  letter-spacing: .32em !important;
  text-transform: uppercase !important;
  font-weight: 900 !important;
}

.methode-copy h2 {
  max-width: 720px !important;
  margin: 0 0 26px !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(3.3rem, 5.4vw, 6.4rem) !important;
  line-height: .92 !important;
  letter-spacing: -.045em !important;
  color: #f4ead2 !important;
  text-shadow: 0 8px 34px rgba(0, 0, 0, .72) !important;
}

.methode-copy h2::after {
  content: "" !important;
  display: block !important;
  width: 120px !important;
  height: 2px !important;
  margin-top: 28px !important;
  background: linear-gradient(90deg, #e4b24f, rgba(228, 178, 79, 0)) !important;
}

.methode-copy p {
  max-width: 560px !important;
  color: #f0dfbc !important;
  font-size: clamp(1.03rem, 1.04vw, 1.22rem) !important;
  line-height: 1.62 !important;
  font-weight: 650 !important;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .72) !important;
}

.methode-copy .methode-lead {
  font-size: clamp(1.2rem, 1.32vw, 1.48rem) !important;
  line-height: 1.46 !important;
  color: #fff4dc !important;
  font-weight: 850 !important;
}

.methode-cta {
  margin-top: 34px !important;
  min-height: 66px !important;
  padding: 0 42px !important;
  border-radius: 999px !important;
  font-size: clamp(.96rem, .95vw, 1.12rem) !important;
  letter-spacing: .11em !important;
  text-transform: uppercase !important;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, .52),
    0 0 38px rgba(222, 171, 71, .30) !important;
}

@media (max-width: 980px) {
  .methode-immersive-section {
    min-height: auto !important;
    padding: 86px 0 !important;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .90) 0%, rgba(0, 0, 0, .72) 48%, rgba(0, 0, 0, .42) 100%),
      url("assets/visuels/methode-parcours-bg.webp?v=20260501") 64% center / cover no-repeat !important;
  }

  .methode-immersive-inner {
    min-height: 520px !important;
    align-items: flex-start !important;
  }

  .methode-copy {
    width: min(620px, 100%) !important;
  }

  .methode-copy h2 {
    font-size: clamp(2.8rem, 9vw, 4.8rem) !important;
  }
}

@media (max-width: 620px) {
  .methode-immersive-section {
    padding: 70px 0 !important;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .76) 48%, rgba(0, 0, 0, .62) 100%),
      url("assets/visuels/methode-parcours-bg.webp?v=20260501") 68% center / cover no-repeat !important;
  }

  .methode-immersive-inner {
    min-height: auto !important;
  }

  .methode-copy h2 {
    font-size: clamp(2.35rem, 12vw, 3.45rem) !important;
    line-height: .98 !important;
  }

  .methode-copy p {
    font-size: .98rem !important;
    line-height: 1.52 !important;
  }

  .methode-copy .methode-lead {
    font-size: 1.08rem !important;
  }

  .methode-cta {
    width: 100% !important;
    justify-content: center !important;
    min-height: 62px !important;
    padding: 0 24px !important;
    font-size: .92rem !important;
  }
}

/* PATCH METHODE ALIGN V11 — cohérence avec le hero haut de page */

/*
   Objectif : la section Méthode reprend la même grille visuelle que le hero :
   texte aligné à gauche comme "Réveille ton instinct", hiérarchie plus horizontale,
   police et proportions plus proches du bloc d'accueil.
*/

.methode-immersive-section {
  min-height: 100svh !important;
  padding: 0 !important;
  display: flex !important;
  align-items: stretch !important;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .52) 34%, rgba(0, 0, 0, .08) 61%, rgba(0, 0, 0, .28) 100%),
    url("assets/visuels/home-viking-methode.png?v=20260628-vikinghome-clean3") center center / cover no-repeat !important;
}

.methode-immersive-inner {
  min-height: 100svh !important;
  display: flex !important;
  align-items: center !important;
  padding-left: clamp(42px, 5vw, 88px) !important;
  padding-right: clamp(28px, 4.6vw, 82px) !important;
}

/* Même largeur et positionnement que le bloc texte du hero */
.methode-copy {
  width: min(720px, 48vw) !important;
  max-width: 720px !important;
  padding-left: 0 !important;
  transform: translateY(-2vh) !important;
}

/* Le label reprend l'esprit des petits mots du hero */
.methode-copy .eyebrow {
  margin: 0 0 16px !important;
  color: #d1a650 !important;
  font-size: .62rem !important;
  line-height: 1 !important;
  letter-spacing: .24em !important;
  text-transform: uppercase !important;
  font-weight: 900 !important;
}

/* Titre moins vertical, plus proche du slogan hero */
.methode-copy h2 {
  max-width: 700px !important;
  margin: 0 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(4.05rem, 5.75vw, 6.75rem) !important;
  line-height: .90 !important;
  letter-spacing: -.048em !important;
  color: #e8dcc0 !important;
  text-shadow: 0 7px 30px rgba(0, 0, 0, .74) !important;
}

.methode-copy h2::after {
  content: "" !important;
  display: block !important;
  width: 118px !important;
  height: 2px !important;
  margin-top: 22px !important;
  background: linear-gradient(90deg, rgba(214, 166, 74, .96), rgba(214, 166, 74, 0)) !important;
}

/* Texte dans la même force commerciale que le texte sous le hero */
.methode-copy p {
  max-width: 520px !important;
  margin-top: 22px !important;
  color: #fff3dd !important;
  font-size: clamp(1rem, 1.04vw, 1.16rem) !important;
  line-height: 1.50 !important;
  font-weight: 760 !important;
  text-shadow: 0 3px 16px rgba(0, 0, 0, .72) !important;
}

.methode-copy .methode-lead {
  max-width: 540px !important;
  margin-top: 24px !important;
  font-size: clamp(1.08rem, 1.16vw, 1.28rem) !important;
  line-height: 1.44 !important;
  color: #fff7e8 !important;
  font-weight: 850 !important;
}

/* Bouton harmonisé avec le gros CTA du hero */
.methode-cta {
  width: min(560px, 100%) !important;
  min-height: 70px !important;
  margin-top: 30px !important;
  padding: 0 42px !important;
  justify-content: center !important;
  border-radius: 999px !important;
  font-size: clamp(.98rem, 1vw, 1.16rem) !important;
  font-weight: 950 !important;
  letter-spacing: .105em !important;
  text-transform: uppercase !important;
  color: #1a1004 !important;
  background:
    linear-gradient(135deg, #fff3b4 0%, #e2b44f 34%, #b87918 68%, #ffe08a 100%) !important;
  border: 1px solid rgba(255, 235, 165, .9) !important;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, .50),
    0 0 38px rgba(222, 171, 71, .32),
    inset 0 1px 0 rgba(255, 255, 255, .55) !important;
}

/* Tablette : on évite que le texte recouvre trop la panthère */
@media (max-width: 1180px) and (min-width: 981px) {
  .methode-copy {
    width: min(620px, 50vw) !important;
  }

  .methode-copy h2 {
    font-size: clamp(3.45rem, 5.2vw, 5.2rem) !important;
    line-height: .92 !important;
  }

  .methode-copy p {
    max-width: 470px !important;
    font-size: 1rem !important;
  }

  .methode-cta {
    width: min(500px, 100%) !important;
    min-height: 64px !important;
  }
}

/* Mobile/tablette : le fond reste lisible, le texte reste dans la même logique */
@media (max-width: 980px) {
  .methode-immersive-section {
    min-height: auto !important;
    padding: 0 !important;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .68) 50%, rgba(0, 0, 0, .38) 100%),
      url("assets/visuels/methode-parcours-bg.webp?v=20260501") 64% center / cover no-repeat !important;
  }

  .methode-immersive-inner {
    min-height: 92svh !important;
    align-items: center !important;
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .methode-copy {
    width: min(620px, 100%) !important;
    max-width: 620px !important;
    transform: none !important;
  }

  .methode-copy h2 {
    font-size: clamp(3.15rem, 10.5vw, 5.1rem) !important;
    line-height: .94 !important;
  }

  .methode-copy p {
    max-width: 520px !important;
    font-size: 1rem !important;
  }
}

@media (max-width: 620px) {
  .methode-immersive-section {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .76) 50%, rgba(0, 0, 0, .68) 100%),
      url("assets/visuels/methode-parcours-bg.webp?v=20260501") 68% center / cover no-repeat !important;
  }

  .methode-immersive-inner {
    min-height: auto !important;
    padding-top: 76px !important;
    padding-bottom: 76px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .methode-copy .eyebrow {
    font-size: .52rem !important;
    letter-spacing: .16em !important;
  }

  .methode-copy h2 {
    font-size: clamp(2.55rem, 12.4vw, 3.72rem) !important;
    line-height: .94 !important;
  }

  .methode-copy h2::after {
    width: 78px !important;
    margin-top: 16px !important;
  }

  .methode-copy p,
  .methode-copy .methode-lead {
    max-width: 100% !important;
    font-size: .96rem !important;
    line-height: 1.48 !important;
  }

  .methode-cta {
    width: 100% !important;
    min-height: 60px !important;
    padding: 0 20px !important;
    font-size: .88rem !important;
    letter-spacing: .075em !important;
  }
}

/* PATCH METHODE ALIGN V12 — alignement strict hero + même police slogan */

/*
   Correction demandée :
   - plus de grosse marge à gauche ;
   - le titre "Une méthode..." utilise la même famille que "Réveille ton instinct" ;
   - alignement calé sur le bloc texte du hero, au même départ visuel.
*/

.methode-immersive-inner {
  padding-left: clamp(42px, 5vw, 88px) !important;
  padding-right: clamp(28px, 4.6vw, 82px) !important;
}

/* On annule tout décalage interne ajouté à la section méthode */
.methode-copy {
  margin-left: 0 !important;
  padding-left: 0 !important;
  transform: translateY(-2vh) !important;
  width: min(720px, 48vw) !important;
  max-width: 720px !important;
}

/* Même départ que le contenu du hero */
.methode-immersive-section .container,
.methode-immersive-inner.container {
  width: 100% !important;
  max-width: none !important;
}

/* Même police que "Réveille ton instinct" */
.methode-copy h2 {
  font-family: Cinzel, Georgia, "Times New Roman", serif !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  max-width: 700px !important;
  font-size: clamp(4.05rem, 5.75vw, 6.75rem) !important;
  line-height: .90 !important;
  letter-spacing: -.048em !important;
  color: #c7a04b !important;
}

/* Garde une hiérarchie proche du hero, mais adaptée au texte plus long */
.methode-copy h2 .line,
.methode-copy h2 span {
  font-family: inherit !important;
}

/* Texte commercial aligné sur le titre, sans retrait */
.methode-copy .eyebrow,
.methode-copy p,
.methode-copy .methode-lead,
.methode-copy .methode-cta {
  margin-left: 0 !important;
}

/* Si le titre se casse trop verticalement, on lui donne un peu plus de largeur */
@media (min-width: 1181px) {
  .methode-copy {
    width: 760px !important;
    max-width: 760px !important;
  }

  .methode-copy h2 {
    max-width: 760px !important;
  }
}

/* Tablette : même marge que le hero tablette */
@media (max-width: 1180px) and (min-width: 981px) {
  .methode-immersive-inner {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  .methode-copy {
    width: min(620px, 52vw) !important;
    max-width: 620px !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  .methode-copy h2 {
    font-family: Cinzel, Georgia, "Times New Roman", serif !important;
    font-size: clamp(3.25rem, 5vw, 5rem) !important;
  }
}

/* Mobile : même marge que le hero mobile */
@media (max-width: 980px) {
  .methode-immersive-inner {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .methode-copy {
    width: min(620px, 100%) !important;
    max-width: 620px !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    transform: none !important;
  }

  .methode-copy h2 {
    font-family: Cinzel, Georgia, "Times New Roman", serif !important;
    font-size: clamp(3.15rem, 10.5vw, 5.1rem) !important;
  }
}

@media (max-width: 620px) {
  .methode-immersive-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .methode-copy h2 {
    font-family: Cinzel, Georgia, "Times New Roman", serif !important;
    font-size: clamp(2.55rem, 12.4vw, 3.72rem) !important;
  }
}

/* PATCH METHODE TITLE V13 — titre méthode plus premium, moins massif */

/*
   On garde la même police que "Réveille ton instinct",
   mais on réduit fortement le titre pour qu'il ne mange plus la moitié de la section.
*/

.methode-copy {
  width: min(560px, 40vw) !important;
  max-width: 560px !important;
  transform: translateY(-1vh) !important;
}

.methode-copy h2 {
  font-family: Cinzel, Georgia, "Times New Roman", serif !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  max-width: 560px !important;
  font-size: clamp(2.85rem, 3.65vw, 4.45rem) !important;
  line-height: .95 !important;
  letter-spacing: -.035em !important;
  color: #c7a04b !important;
}

.methode-copy h2::after {
  width: 96px !important;
  margin-top: 18px !important;
}

.methode-copy .methode-lead {
  margin-top: 22px !important;
  max-width: 520px !important;
  font-size: clamp(1.03rem, 1.02vw, 1.18rem) !important;
  line-height: 1.46 !important;
}

.methode-copy p {
  max-width: 520px !important;
  font-size: clamp(.96rem, .95vw, 1.06rem) !important;
  line-height: 1.48 !important;
}

.methode-cta {
  width: min(500px, 100%) !important;
  min-height: 64px !important;
  margin-top: 28px !important;
}

/* Desktop large : plus d'espace au visuel, texte plus élégant */
@media (min-width: 1181px) {
  .methode-copy {
    width: 560px !important;
    max-width: 560px !important;
  }

  .methode-copy h2 {
    max-width: 560px !important;
    font-size: clamp(3rem, 3.55vw, 4.35rem) !important;
  }
}

/* Tablette */
@media (max-width: 1180px) and (min-width: 981px) {
  .methode-copy {
    width: min(520px, 45vw) !important;
    max-width: 520px !important;
  }

  .methode-copy h2 {
    max-width: 520px !important;
    font-size: clamp(2.65rem, 4.2vw, 3.75rem) !important;
    line-height: .96 !important;
  }

  .methode-copy .methode-lead,
  .methode-copy p {
    max-width: 500px !important;
  }
}

/* Mobile/tablette : garde la lisibilité sans effet bloc énorme */
@media (max-width: 980px) {
  .methode-copy {
    width: min(560px, 100%) !important;
    max-width: 560px !important;
  }

  .methode-copy h2 {
    max-width: 560px !important;
    font-size: clamp(2.45rem, 8.5vw, 3.9rem) !important;
    line-height: .98 !important;
    letter-spacing: -.032em !important;
  }
}

@media (max-width: 620px) {
  .methode-copy h2 {
    font-size: clamp(2.05rem, 10vw, 3rem) !important;
    line-height: 1 !important;
  }

  .methode-copy h2::after {
    width: 72px !important;
    margin-top: 14px !important;
  }

  .methode-copy .methode-lead,
  .methode-copy p {
    font-size: .94rem !important;
    line-height: 1.46 !important;
  }

  .methode-cta {
    min-height: 58px !important;
  }
}

/* PATCH CTA IMAGE V14 — bouton visuel savane/lion */

/*
   Le CTA "Faire le test gratuit" utilise maintenant le bouton image généré.
   L'image reste stockée dans assets/visuels pour pouvoir la réutiliser ailleurs.
*/

.image-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  overflow: visible !important;
  text-decoration: none !important;
  line-height: 0 !important;
  transform: none !important;
}

.image-cta::before,
.image-cta::after {
  content: none !important;
  display: none !important;
}

.image-cta img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  filter:
    drop-shadow(0 18px 34px rgba(0, 0, 0, .55))
    drop-shadow(0 0 20px rgba(226, 176, 72, .24)) !important;
  transition: transform .22s ease, filter .22s ease !important;
}

.image-cta:hover img {
  transform: translateY(-2px) scale(1.01) !important;
  filter:
    drop-shadow(0 22px 42px rgba(0, 0, 0, .62))
    drop-shadow(0 0 30px rgba(255, 206, 96, .34)) !important;
}

/* Bouton du hero : large, comme l'ancien gros CTA */
.hero-home .hero-actions {
  width: min(620px, 100%) !important;
  margin-top: 32px !important;
}

.hero-home .image-cta-hero {
  width: min(620px, 100%) !important;
  max-width: 620px !important;
}

/* Bouton de la section Méthode : même image, légèrement plus compacte */
.methode-copy .image-cta-methode,
.methode-cta.image-cta {
  width: min(540px, 100%) !important;
  max-width: 540px !important;
  margin-top: 30px !important;
}

/* On neutralise les styles dorés CSS précédents appliqués au même lien */
.hero-home .hero-actions .btn-primary.image-cta,
.methode-cta.image-cta {
  color: transparent !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  border-radius: 0 !important;
}

/* Mobile */
@media (max-width: 620px) {
  .hero-home .hero-actions {
    width: 100% !important;
    margin-top: 26px !important;
  }

  .hero-home .image-cta-hero,
  .methode-copy .image-cta-methode,
  .methode-cta.image-cta {
    width: 100% !important;
    max-width: 100% !important;
  }

  .image-cta img {
    filter:
      drop-shadow(0 14px 26px rgba(0, 0, 0, .55))
      drop-shadow(0 0 14px rgba(226, 176, 72, .20)) !important;
  }
}



/* PATCH CTA IMAGE CLEAN V15 — aucun fond autour du bouton */
.image-cta,
.image-cta-hero,
.image-cta-methode {
  background: transparent !important;
}

.image-cta img {
  background: transparent !important;
}


/* PATCH HERO CTA IMAGE V16 — bouton image sur la page d'accueil */

.hero-home .hero-actions {
  width: min(620px, 100%) !important;
  margin-top: 32px !important;
  display: flex !important;
  gap: 0 !important;
}

.image-cta,
.hero-home .image-cta,
.methode-copy .image-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  line-height: 0 !important;
  text-decoration: none !important;
  overflow: visible !important;
}

.image-cta::before,
.image-cta::after {
  content: none !important;
  display: none !important;
}

.image-cta img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  filter:
    drop-shadow(0 18px 34px rgba(0, 0, 0, .55))
    drop-shadow(0 0 20px rgba(226, 176, 72, .24)) !important;
  transition: transform .22s ease, filter .22s ease !important;
}

.image-cta:hover img {
  transform: translateY(-2px) scale(1.01) !important;
  filter:
    drop-shadow(0 22px 42px rgba(0, 0, 0, .62))
    drop-shadow(0 0 30px rgba(255, 206, 96, .34)) !important;
}

.hero-home .image-cta-hero {
  width: min(620px, 100%) !important;
  max-width: 620px !important;
}

.methode-copy .image-cta-methode,
.methode-cta.image-cta {
  width: min(540px, 100%) !important;
  max-width: 540px !important;
  margin-top: 30px !important;
}

@media (max-width: 620px) {
  .hero-home .hero-actions {
    width: 100% !important;
    margin-top: 26px !important;
  }

  .hero-home .image-cta-hero,
  .methode-copy .image-cta-methode,
  .methode-cta.image-cta {
    width: 100% !important;
    max-width: 100% !important;
  }
}



/* PATCH PAGE VITRINE IMMERSIVE V19 */
.story-section{
  position:relative;
  min-height:clamp(660px, 88svh, 920px);
  padding:0;
  display:flex;
  align-items:center;
  isolation:isolate;
  background-image:var(--story-bg);
  background-size:cover;
  background-position:var(--story-pos, center center);
  background-repeat:no-repeat;
  border-top:1px solid rgba(214,170,82,.08);
  border-bottom:1px solid rgba(214,170,82,.08);
}
.story-section::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.90) 0%, rgba(0,0,0,.76) 34%, rgba(0,0,0,.34) 64%, rgba(0,0,0,.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.10) 38%, rgba(0,0,0,.58) 100%);
}
.story-shell{
  position:relative;
  z-index:1;
  width:100%;
  max-width:none;
  margin:0;
  padding-left:clamp(52px,5.4vw,96px);
  padding-right:clamp(30px,4vw,74px);
}
.story-content{
  max-width:min(44vw, 760px);
  padding-top:clamp(92px, 12vh, 148px);
  padding-bottom:clamp(88px, 12vh, 136px);
}
.story-kicker{
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 0 18px;
  font-family:Inter, system-ui, sans-serif;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.26em;
  text-transform:uppercase;
  color:#c99b4b;
  text-shadow:0 8px 24px rgba(0,0,0,.90);
}
.story-kicker::after{
  content:"";
  display:block;
  width:42px;
  height:1px;
  background:linear-gradient(90deg, rgba(201,155,75,.82), rgba(201,155,75,.12));
}
.story-title{
  margin:0;
  max-width:860px;
  font-family:"Cinzel", Georgia, "Times New Roman", serif;
  font-size:clamp(2.9rem, 5.45vw, 5.8rem);
  line-height:.92;
  letter-spacing:-.05em;
  font-weight:800;
  text-transform:uppercase;
  color:#f4c869;
  background:linear-gradient(180deg,#fff0bd 0%,#e6b64f 34%,#9b651f 74%,#f5d487 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  text-shadow:0 4px 0 rgba(52,29,6,.48),0 18px 56px rgba(0,0,0,.88),0 0 22px rgba(223,160,55,.14);
}
.story-title::after{
  content:"";
  display:block;
  width:132px;
  height:2px;
  margin:22px 0 0;
  background:linear-gradient(90deg, #e3b657, rgba(227,182,87,.04));
  box-shadow:0 0 18px rgba(227,182,87,.32);
}
.story-lead{
  max-width:640px;
  margin:22px 0 0;
  color:#f1e2c8;
  font-size:clamp(1rem,1.08vw,1.16rem);
  line-height:1.58;
  font-weight:700;
  text-shadow:0 10px 32px rgba(0,0,0,.98);
}
.story-text{
  max-width:660px;
  margin:18px 0 0;
  color:#efe6d7;
  font-size:1rem;
  line-height:1.72;
  font-weight:500;
  text-shadow:0 10px 26px rgba(0,0,0,.95);
}
.story-list,
.story-pill-grid{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:28px 0 0;
}
.story-list span,
.story-pill-grid span{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(226,188,123,.25);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.22));
  color:#efe0c2;
  box-shadow:0 18px 40px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter:blur(8px);
  font-size:.92rem;
  font-weight:700;
}
.story-pill-grid{max-width:720px}
.story-card-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
  max-width:760px;
  margin-top:28px;
}
.story-card-grid-small{
  grid-template-columns:repeat(3, minmax(0, 1fr));
  max-width:940px;
}
.story-card{
  padding:22px 22px 20px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(11,11,13,.62), rgba(11,11,13,.48));
  border:1px solid rgba(226,188,123,.16);
  box-shadow:0 28px 70px rgba(0,0,0,.40), inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter:blur(12px);
}
.story-card h3{
  margin:0 0 10px;
  font-family:"Cinzel", Georgia, serif;
  font-size:1.18rem;
  line-height:1.1;
  color:#f0c977;
}
.story-card p{
  margin:0;
  color:#f3ede1;
  font-size:.96rem;
  line-height:1.65;
}
.story-card .text-link{
  display:inline-block;
  margin-top:14px;
  color:#f0c977;
  font-weight:700;
}
.story-actions{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:18px;
  margin-top:28px;
}
.story-image-cta img{
  width:min(100%, 560px);
  height:auto;
  filter:drop-shadow(0 18px 34px rgba(0,0,0,.58));
}
.story-actions .btn{
  min-height:54px;
  padding:0 24px;
  border:1px solid rgba(217,171,83,.34);
  background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(0,0,0,.24));
  color:#eadfcb;
  box-shadow:0 18px 54px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.08);
}
.story-actions .btn:hover{background:rgba(255,255,255,.1)}
.story-final-cta .story-content{max-width:min(42vw, 720px)}
.story-reveal .story-content,
.story-understand .story-content{max-width:min(50vw, 860px)}
.story-plan .story-content{max-width:min(46vw, 780px)}
.story-plan .story-title,
.story-understand .story-title,
.story-final-cta .story-title{max-width:900px}

@media (max-width: 1180px){
  .story-content,
  .story-reveal .story-content,
  .story-understand .story-content,
  .story-plan .story-content,
  .story-final-cta .story-content{max-width:min(58vw, 760px)}
}

@media (max-width: 900px){
  .story-section{
    min-height:auto;
    background-position:68% center;
  }
  .story-section::before{
    background:
      linear-gradient(90deg, rgba(0,0,0,.90) 0%, rgba(0,0,0,.78) 56%, rgba(0,0,0,.42) 100%),
      linear-gradient(180deg, rgba(0,0,0,.34) 0%, rgba(0,0,0,.12) 42%, rgba(0,0,0,.70) 100%);
  }
  .story-shell{
    padding-left:28px;
    padding-right:24px;
  }
  .story-content,
  .story-reveal .story-content,
  .story-understand .story-content,
  .story-plan .story-content,
  .story-final-cta .story-content{
    max-width:100%;
    padding-top:88px;
    padding-bottom:82px;
  }
  .story-title{
    font-size:clamp(2.4rem,8vw,4.3rem);
  }
  .story-card-grid,
  .story-card-grid-small{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 640px){
  .story-shell{
    padding-left:18px;
    padding-right:18px;
  }
  .story-content,
  .story-reveal .story-content,
  .story-understand .story-content,
  .story-plan .story-content,
  .story-final-cta .story-content{
    padding-top:70px;
    padding-bottom:64px;
  }
  .story-kicker{
    font-size:.56rem;
    letter-spacing:.20em;
  }
  .story-kicker::after{
    width:20px;
  }
  .story-title{
    font-size:clamp(2rem,12.8vw,3.3rem);
    line-height:.96;
  }
  .story-title::after{
    width:86px;
    margin-top:18px;
  }
  .story-lead,
  .story-text{
    max-width:100%;
    font-size:.96rem;
  }
  .story-card-grid,
  .story-card-grid-small{
    grid-template-columns:1fr;
  }
  .story-list,
  .story-pill-grid{
    gap:10px;
  }
  .story-list span,
  .story-pill-grid span{
    min-height:40px;
    padding:0 14px;
    font-size:.84rem;
  }
  .story-card{
    padding:18px 18px 16px;
  }
  .story-actions{
    gap:12px;
  }
  .story-image-cta img{
    width:100%;
    max-width:100%;
  }
  .story-actions .btn{
    width:100%;
  }
}

/* PATCH STORY TITLES FONT V21 — mêmes polices que “Une méthode, pas un simple régime.” */

/*
   Les slogans des sections suivantes reprennent maintenant le même traitement typographique
   que le titre de la section Méthode :
   - Ton corps parle déjà.
   - Commence par ton profil, pas par une règle au hasard.
   - Ce que le test peut révéler.
   - Ton profil transformé en plan d’action.
   - Comprendre avant d’appliquer.
   - Passe le test gratuit et avance avec un cap clair.
*/

.story-title,
.story-section .story-title,
.story-signals .story-title,
.story-profile .story-title,
.story-reveal .story-title,
.story-plan .story-title,
.story-understand .story-title,
.story-final-cta .story-title {
  font-family: Cinzel, Georgia, "Times New Roman", serif !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  color: #c7a04b !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #c7a04b !important;
  text-shadow: 0 7px 30px rgba(0, 0, 0, .74) !important;
  letter-spacing: -.035em !important;
  line-height: .95 !important;
}

/* Taille premium : plus proche de la section Méthode, sans redevenir trop massive */
.story-title {
  max-width: 760px !important;
  font-size: clamp(2.85rem, 3.65vw, 4.45rem) !important;
}

/* Titres très longs : un peu plus contenus pour garder la lisibilité */
.story-profile .story-title,
.story-final-cta .story-title {
  max-width: 860px !important;
  font-size: clamp(2.55rem, 3.35vw, 4.05rem) !important;
  line-height: 1 !important;
}

/* Trait doré harmonisé avec la section Méthode */
.story-title::after {
  width: 96px !important;
  height: 2px !important;
  margin-top: 18px !important;
  background: linear-gradient(90deg, rgba(214, 166, 74, .96), rgba(214, 166, 74, 0)) !important;
  box-shadow: none !important;
}

/* Responsive */
@media (max-width: 1180px) and (min-width: 981px) {
  .story-title {
    font-size: clamp(2.65rem, 4.2vw, 3.75rem) !important;
    line-height: .96 !important;
  }

  .story-profile .story-title,
  .story-final-cta .story-title {
    font-size: clamp(2.35rem, 3.9vw, 3.45rem) !important;
  }
}

@media (max-width: 980px) {
  .story-title,
  .story-profile .story-title,
  .story-final-cta .story-title {
    font-size: clamp(2.45rem, 8.5vw, 3.9rem) !important;
    line-height: .98 !important;
    letter-spacing: -.032em !important;
  }
}

@media (max-width: 620px) {
  .story-title,
  .story-profile .story-title,
  .story-final-cta .story-title {
    font-size: clamp(2.05rem, 10vw, 3rem) !important;
    line-height: 1 !important;
  }

  .story-title::after {
    width: 72px !important;
    margin-top: 14px !important;
  }
}

/* PATCH CTA SIZE UNIFIED V22 — même taille de bouton que le hero accueil */

/*
   Tous les boutons visuels "Faire le test gratuit" utilisent maintenant
   la même taille que le bouton principal de la page Réveille ton instinct.
*/

.hero-home .image-cta-hero,
.methode-copy .image-cta-methode,
.methode-cta.image-cta,
.story-image-cta,
.image-cta-suite,
.image-cta-final,
.story-actions .story-image-cta,
.story-section .image-cta,
.final-cta-inner .image-cta {
  width: min(620px, 100%) !important;
  max-width: 620px !important;
  min-width: 0 !important;
}

.hero-home .image-cta-hero img,
.methode-copy .image-cta-methode img,
.methode-cta.image-cta img,
.story-image-cta img,
.image-cta-suite img,
.image-cta-final img,
.story-actions .story-image-cta img,
.story-section .image-cta img,
.final-cta-inner .image-cta img {
  width: 100% !important;
  max-width: 620px !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Les zones d'action restent alignées proprement */
.story-actions,
.hero-home .hero-actions {
  width: min(620px, 100%) !important;
}

/* Quand un bouton secondaire est à côté, il passe sous le gros bouton si nécessaire */
.story-actions {
  align-items: flex-start !important;
}

/* Mobile : tous les boutons prennent la largeur disponible */
@media (max-width: 620px) {
  .hero-home .image-cta-hero,
  .methode-copy .image-cta-methode,
  .methode-cta.image-cta,
  .story-image-cta,
  .image-cta-suite,
  .image-cta-final,
  .story-actions .story-image-cta,
  .story-section .image-cta,
  .final-cta-inner .image-cta,
  .story-actions,
  .hero-home .hero-actions {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-home .image-cta-hero img,
  .methode-copy .image-cta-methode img,
  .methode-cta.image-cta img,
  .story-image-cta img,
  .image-cta-suite img,
  .image-cta-final img,
  .story-actions .story-image-cta img,
  .story-section .image-cta img,
  .final-cta-inner .image-cta img {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* PATCH REVEAL TITLE V23 — correction du titre “Ce que le test peut révéler” */

/*
   Cette section avait un titre trop massif par rapport à la zone visible.
   On garde la même police validée, mais avec une taille plus premium et plus respirante.
*/

.story-reveal .story-title {
  max-width: 640px !important;
  font-size: clamp(2.35rem, 3.05vw, 3.55rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -.028em !important;
}

.story-reveal .story-title::after {
  width: 86px !important;
  margin-top: 16px !important;
}

.story-reveal .story-lead {
  max-width: 620px !important;
  margin-top: 22px !important;
}

/* On laisse plus d'air sous le titre avant les cartes */
.story-reveal .story-card-grid {
  margin-top: 34px !important;
}

/* Tablette */
@media (max-width: 1180px) and (min-width: 981px) {
  .story-reveal .story-title {
    max-width: 600px !important;
    font-size: clamp(2.25rem, 3.6vw, 3.3rem) !important;
  }
}

/* Mobile */
@media (max-width: 980px) {
  .story-reveal .story-title {
    max-width: 100% !important;
    font-size: clamp(2.25rem, 7.6vw, 3.35rem) !important;
    line-height: 1.02 !important;
  }
}

@media (max-width: 620px) {
  .story-reveal .story-title {
    font-size: clamp(1.9rem, 9.4vw, 2.65rem) !important;
    line-height: 1.04 !important;
  }
}

/* PATCH ACCENT FIX REVEAL V24 — corrige l'accent aigu qui remonte sur la ligne du dessus */

.story-reveal .story-title {
  /* On garde la même police, mais on redonne de l'air vertical
     pour les capitales accentuées comme É / Révéler */
  line-height: 1.12 !important;
  padding-top: 0.08em !important;
  padding-bottom: 0.04em !important;
  overflow: visible !important;
}

/* Sur cette section, le span/titre ne doit pas couper l'accent */
.story-reveal .story-copy,
.story-reveal .story-copy-inner,
.story-reveal .story-title-wrap,
.story-reveal .story-head {
  overflow: visible !important;
}

/* Version desktop/tablette : un peu plus d'air encore pour éviter tout chevauchement */
@media (min-width: 981px) {
  .story-reveal .story-title {
    line-height: 1.14 !important;
  }
}

/* Mobile : on garde lisible sans trop détendre */
@media (max-width: 980px) {
  .story-reveal .story-title {
    line-height: 1.10 !important;
    padding-top: 0.06em !important;
  }
}



/* PATCH V26 — bouton coach propre + page formations */
.hero-home .hero-actions {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 18px !important;
  width: min(620px, 100%) !important;
}

.hero-home .image-cta-coach {
  width: min(620px, 100%) !important;
  max-width: 620px !important;
}

.hero-home .image-cta-coach img {
  display: block !important;
  width: 100% !important;
  max-width: 620px !important;
  height: auto !important;
  object-fit: contain !important;
}

.formations-hero {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
}

.align-left {
  text-align: left;
  margin-left: 0;
}

.formations-grid {
  margin-top: 34px;
}

.section-cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

@media (max-width: 767px) {
  .hero-home .hero-actions {
    gap: 14px !important;
    width: 100% !important;
  }

  .hero-home .image-cta-coach,
  .hero-home .image-cta-coach img {
    width: 100% !important;
    max-width: 100% !important;
  }
}


/* PATCH COMMENCER PREMIUM V28 */

.hero-commencer-premium.hero-fullscreen{background-position:64% center!important;}
.hero-commencer-premium.hero-fullscreen:before{
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.46) 34%, rgba(0,0,0,.14) 63%, rgba(0,0,0,.04) 100%)!important,
    linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.04) 48%, rgba(0,0,0,.42) 100%)!important;
}
.hero-commencer-premium .hero-content{max-width:760px!important;}
.hero-commencer-premium .hero-text{max-width:640px!important;}
.hero-commencer-premium .hero-actions{display:flex!important;flex-direction:column!important;align-items:flex-start!important;gap:18px!important;width:min(620px,100%)!important;}
.hero-commencer-premium .hero-actions:before{left:-36px!important;right:-36px!important;}
.hero-commencer-premium .image-cta-hero,
.hero-commencer-premium .image-cta-hero img{width:min(620px,100%)!important;max-width:620px!important;height:auto!important;}
.commencer-story .story-content{max-width:min(48vw, 800px)!important;}
.commencer-story .story-title{max-width:860px!important;}
.commencer-story-pathways .story-content{max-width:min(54vw, 920px)!important;}
.commencer-card-grid-four{grid-template-columns:repeat(2,minmax(0,1fr))!important;max-width:940px!important;}
.commencer-story .story-actions{width:min(620px,100%)!important;}
.commencer-story .story-image-cta,
.commencer-story .story-image-cta img{width:min(620px,100%)!important;max-width:620px!important;height:auto!important;}
@media (max-width:1180px){
  .commencer-story .story-content,
  .commencer-story-pathways .story-content{max-width:min(62vw, 820px)!important;}
}
@media (max-width:980px){
  .hero-commencer-premium.hero-fullscreen{background-position:70% center!important;}
  .commencer-story .story-content,
  .commencer-story-pathways .story-content{max-width:100%!important;}
  .commencer-card-grid-four{grid-template-columns:1fr 1fr!important;}
}
@media (max-width:640px){
  .commencer-card-grid-four{grid-template-columns:1fr!important;}
  .hero-commencer-premium .hero-actions,
  .hero-commencer-premium .image-cta-hero,
  .hero-commencer-premium .image-cta-hero img,
  .commencer-story .story-actions,
  .commencer-story .story-image-cta,
  .commencer-story .story-image-cta img{width:100%!important;max-width:100%!important;}
}


/* PATCH BLOG PREMIUM V29 */

.hero-blog-premium.hero-fullscreen{background-position:68% center!important;}
.hero-blog-premium.hero-fullscreen:before{
  background:
    linear-gradient(90deg, rgba(0,0,0,.74) 0%, rgba(0,0,0,.48) 36%, rgba(0,0,0,.14) 63%, rgba(0,0,0,.05) 100%)!important,
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.03) 52%, rgba(0,0,0,.44) 100%)!important;
}
.hero-blog-premium .hero-content{max-width:760px!important;}
.hero-blog-premium .hero-text{max-width:650px!important;}
.hero-blog-premium .hero-actions{display:flex!important;flex-direction:column!important;align-items:flex-start!important;gap:18px!important;width:min(620px,100%)!important;}
.hero-blog-premium .hero-actions:before{left:-36px!important;right:-36px!important;}
.hero-blog-premium .image-cta-hero,
.hero-blog-premium .image-cta-hero img{width:min(620px,100%)!important;max-width:620px!important;height:auto!important;}
.blog-library-premium{position:relative;overflow:hidden;background:
 linear-gradient(180deg, rgba(7,5,2,.98) 0%, rgba(13,9,4,.96) 100%);}
.blog-library-premium:before{content:"";position:absolute;inset:0;background:
 radial-gradient(circle at 85% 15%, rgba(224,154,41,.18), transparent 34%),
 radial-gradient(circle at 12% 86%, rgba(163,104,18,.14), transparent 30%);
pointer-events:none;}
.blog-library-premium .container{position:relative;z-index:1;}
.premium-section-heading.section-heading{max-width:900px;margin-bottom:32px;}
.section-heading-left{text-align:left;}
.blog-library-premium .blog-tabs{margin-top:10px;margin-bottom:18px;}
.blog-library-premium .blog-status{margin-bottom:10px;}
.blog-library-premium .blog-tab{backdrop-filter:blur(8px);}
.blog-library-premium .blog-card,
.blog-reading-paths .pathway-card{background:linear-gradient(180deg, rgba(255,248,236,.06), rgba(255,248,236,.03));border:1px solid rgba(228,201,130,.16);box-shadow:0 24px 48px rgba(0,0,0,.24);}
.blog-reading-paths{background:linear-gradient(180deg, #0b0804 0%, #120d06 100%);}
.three-up-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
.blog-final-cta .story-content{max-width:min(50vw, 820px)!important;}
.blog-final-cta .story-actions{width:min(620px,100%)!important;}
.blog-final-cta .story-image-cta,
.blog-final-cta .story-image-cta img{width:min(620px,100%)!important;max-width:620px!important;height:auto!important;}
@media (max-width:980px){
  .hero-blog-premium.hero-fullscreen{background-position:76% center!important;}
  .three-up-grid{grid-template-columns:1fr;}
  .blog-final-cta .story-content{max-width:100%!important;}
}
@media (max-width:640px){
  .hero-blog-premium .hero-actions,
  .hero-blog-premium .image-cta-hero,
  .hero-blog-premium .image-cta-hero img,
  .blog-final-cta .story-actions,
  .blog-final-cta .story-image-cta,
  .blog-final-cta .story-image-cta img{width:100%!important;max-width:100%!important;}
}


/* PATCH FORMATIONS V38 */
.hero-formations-premium.hero-fullscreen {
  background-position: 74% center !important;
}

.hero-formations-premium .hero-slogan {
  max-width: 820px !important;
}

.hero-formations-premium .hero-actions {
  width: auto !important;
}

.formations-offers-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(214, 166, 74, .16), transparent 34%),
    radial-gradient(circle at 12% 92%, rgba(214, 166, 74, .10), transparent 28%),
    linear-gradient(180deg, #050403 0%, #0f0a05 48%, #050403 100%);
}

.formations-heading {
  max-width: 980px;
}

.formations-heading h2,
.formations-method-section .story-title {
  font-family: Cinzel, Georgia, "Times New Roman", serif !important;
  text-transform: uppercase;
}

.formations-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.formation-offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px 28px;
  border-radius: 30px;
  border: 1px solid rgba(214, 166, 74, .24);
  background:
    linear-gradient(145deg, rgba(19, 13, 7, .88), rgba(5, 4, 3, .78));
  box-shadow:
    0 32px 84px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,235,168,.08);
  overflow: hidden;
}

.formation-offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(224,176,74,.16), transparent 42%);
  pointer-events: none;
}

.formation-card-top,
.formation-price,
.formation-list,
.formation-offer-card .btn {
  position: relative;
  z-index: 1;
}

.formation-status {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(214, 166, 74, .35);
  background: rgba(214, 166, 74, .10);
  color: #f1d08a;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.formation-offer-card h3 {
  margin: 0 0 14px;
  color: #f4ead2;
  font-family: Cinzel, Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.2vw, 2.45rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.formation-offer-card p {
  color: #ddc9a5;
  font-weight: 560;
}

.formation-price {
  margin: 22px 0 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(214, 166, 74, .18);
}

.formation-price span {
  color: #d6a64a;
  font-family: Cinzel, Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
}

.formation-list {
  display: grid;
  gap: 11px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  color: #efe1c8;
  font-weight: 650;
}

.formation-list li {
  position: relative;
  padding-left: 20px;
}

.formation-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d6a64a;
  box-shadow: 0 0 16px rgba(214,166,74,.50);
}

.formation-offer-card .btn {
  margin-top: auto;
}

.formation-offer-card.is-featured,
.formation-offer-card.pack-card {
  border-color: rgba(230, 185, 88, .42);
}

.formation-offer-card.pack-card {
  transform: translateY(-10px);
  box-shadow:
    0 40px 110px rgba(0,0,0,.52),
    0 0 44px rgba(214,166,74,.12),
    inset 0 1px 0 rgba(255,235,168,.10);
}

.formations-method-section .story-content {
  max-width: min(52vw, 860px) !important;
}

.formations-final-section {
  background:
    radial-gradient(circle at 18% 24%, rgba(214, 166, 74, .12), transparent 30%),
    linear-gradient(180deg, #050403, #0f0a05);
}

.formations-large-card {
  align-items: stretch;
}

@media (max-width: 1100px) {
  .formations-offer-grid {
    grid-template-columns: 1fr;
  }

  .formation-offer-card.pack-card {
    transform: none;
  }

  .formations-method-section .story-content {
    max-width: 100% !important;
  }
}

@media (max-width: 640px) {
  .formation-offer-card {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .formation-offer-card h3 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }
}


/* PATCH COACH V62 — visuels savane premium */
.coach-hero-premium{
  background-position: 66% center !important;
}
.coach-hero-premium::before{
  background:
    linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.34) 30%, rgba(0,0,0,.12) 58%, rgba(0,0,0,.02) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.02) 55%, rgba(0,0,0,.12) 100%) !important;
}
.coach-hero-premium .hero-content{max-width:760px !important;}
.coach-hero-premium h1{
  max-width: 11ch;
}
.coach-visual-card img{
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
  border: 1px solid rgba(228,201,130,.22);
}
.coach-question-section{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-image: var(--coach-bg) !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.coach-question-section::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.42) 28%, rgba(0,0,0,.14) 58%, rgba(0,0,0,.04) 100%),
    linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.02) 55%, rgba(0,0,0,.10) 100%);
}
.coach-question-section > .container{
  position: relative;
  z-index: 1;
}
.coach-app .section-heading{
  max-width: 760px;
}
.coach-shell{
  background: linear-gradient(155deg, rgba(18,12,7,.76), rgba(8,5,3,.54)) !important;
  border: 1px solid rgba(228,201,130,.20) !important;
  box-shadow: 0 28px 56px rgba(0,0,0,.26) !important;
  backdrop-filter: blur(6px);
}
.coach-top,
.coach-form{
  background: rgba(0,0,0,.18) !important;
}
.coach-msg.bot{
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.11) !important;
}


/* ===== Navigation globale Athletic Carnivore : espace membre + langues ===== */
.header-tools{display:flex;align-items:center;gap:10px;flex:0 0 auto;white-space:nowrap}
.language-switcher{display:flex;align-items:center;gap:4px;padding:5px 7px;border:1px solid rgba(214,170,82,.26);border-radius:999px;background:rgba(0,0,0,.22);box-shadow:inset 0 1px 0 rgba(255,255,255,.04)}
.language-switcher .lang{font-size:15px;line-height:1;opacity:.62;filter:saturate(.9);transition:opacity .18s ease,transform .18s ease}
.language-switcher .lang:hover,.language-switcher .lang.active{opacity:1;transform:translateY(-1px)}
.member-access{display:inline-flex;align-items:center;justify-content:center;min-height:34px;padding:8px 14px;border:1px solid rgba(214,170,82,.42);border-radius:999px;color:#f2d083!important;background:rgba(0,0,0,.22);font-weight:850;font-size:.76rem;letter-spacing:.02em;text-decoration:none;transition:.18s ease}
.member-access:hover{background:rgba(214,170,82,.12);color:#fff4db!important;transform:translateY(-1px)}
@media(max-width:1320px){.header-inner{gap:14px!important}.main-nav ul{gap:clamp(10px,1.25vw,18px)!important}.main-nav a{font-size:.74rem!important}.brand-text small{display:none}.member-access{padding:7px 10px;font-size:.70rem}.language-switcher .lang{font-size:14px}}
@media(max-width:980px){.header-inner{flex-wrap:wrap}.header-tools{order:3;width:100%;justify-content:flex-start;padding-bottom:10px}.main-nav.open + .header-tools{border-top:1px solid rgba(214,170,82,.14);padding-top:10px}.language-switcher{padding:6px 8px}.member-access{min-height:36px}}

/* PATCH BLOG V59 — cartes plus lisibles + liens directs vers article.php */
.blog-grid.card-grid{
  grid-template-columns:repeat(auto-fit,minmax(min(100%,520px),1fr)) !important;
  gap:24px !important;
}
.blog-card.feature-card{
  min-height:0 !important;
  padding:30px !important;
}
.blog-card-img{
  display:block !important;
  width:100% !important;
  aspect-ratio:16/9 !important;
  min-height:clamp(260px,22vw,360px) !important;
  border-radius:20px !important;
  overflow:hidden !important;
  background:rgba(255,248,236,.08) !important;
}
.blog-card-img img{
  width:100% !important;
  height:100% !important;
  object-fit:contain !important;
  object-position:center center !important;
  background:rgba(255,248,236,.06) !important;
}
.blog-card h3 a{
  color:inherit !important;
  text-decoration:none !important;
}
.blog-card h3 a:hover,
.blog-card .text-link:hover{
  color:var(--accent-strong,#edcb6d) !important;
}
.blog-tab[hidden]{display:none !important;}
@media (max-width:700px){
  .blog-grid.card-grid{grid-template-columns:1fr !important;}
  .blog-card.feature-card{padding:22px !important;}
  .blog-card-img{min-height:220px !important;}
}


/* Bouton retour tableau de bord — pages admin */
.admin-dashboard-return{
  position:fixed;
  right:18px;
  top:18px;
  z-index:99999;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 16px;
  border:1px solid rgba(228,201,130,.45);
  border-radius:999px;
  background:rgba(5,5,5,.86);
  color:#f5d987;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.78rem;
  font-weight:800;
  box-shadow:0 14px 38px rgba(0,0,0,.42);
  backdrop-filter:blur(8px);
}
.admin-dashboard-return:hover{background:rgba(228,201,130,.14);color:#fff0c6;transform:translateY(-1px)}
@media(max-width:760px){.admin-dashboard-return{right:10px;top:10px;padding:8px 11px;font-size:.68rem;min-height:36px}}


/* Correctif tunnel commercial — questionnaire > résultat > rapport > coach */
.ac-commercial-path,
.ac-sales-ladder,
.ac-blog-cta,
.ac-example-report{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(237,203,109,.26);
  border-radius:30px;
  background:linear-gradient(135deg,rgba(237,203,109,.13),rgba(8,8,9,.82) 42%,rgba(201,146,53,.10));
  box-shadow:0 28px 80px rgba(0,0,0,.34);
}
.ac-commercial-path:before,
.ac-sales-ladder:before,
.ac-blog-cta:before,
.ac-example-report:before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(circle at 18% 0%,rgba(255,226,150,.17),transparent 30%),linear-gradient(90deg,rgba(0,0,0,.18),transparent 58%);
}
.ac-commercial-inner,.ac-ladder-inner,.ac-blog-cta-inner,.ac-example-inner{position:relative;z-index:1;padding:clamp(24px,4vw,46px)}
.ac-commercial-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(18px,3vw,34px);align-items:center}
.ac-commercial-kicker,.ac-step-num,.ac-example-kicker{display:inline-flex;align-items:center;width:max-content;border:1px solid rgba(237,203,109,.34);border-radius:999px;padding:7px 12px;background:rgba(0,0,0,.26);color:#f5d982;text-transform:uppercase;letter-spacing:.12em;font-weight:950;font-size:.72rem}
.ac-commercial-title,.ac-ladder-title,.ac-blog-cta h2,.ac-example-report h2{margin:14px 0 0;color:#fff2cf;font-family:Cinzel,Georgia,serif;text-transform:uppercase;line-height:1.05;font-size:clamp(1.9rem,3.2vw,3.3rem)}
.ac-commercial-text,.ac-ladder-lead,.ac-blog-cta p,.ac-example-report p{color:#ead9b6;line-height:1.72;font-size:1.02rem}
.ac-commercial-steps{display:grid;gap:12px;counter-reset:acstep}
.ac-commercial-step{display:grid;grid-template-columns:auto 1fr;gap:14px;align-items:start;padding:16px;border-radius:20px;border:1px solid rgba(237,203,109,.18);background:rgba(0,0,0,.28)}
.ac-commercial-step b{display:flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:50%;background:linear-gradient(135deg,#f1d276,#b67a22);color:#080604;font-weight:1000}
.ac-commercial-step h3{margin:0 0 4px;color:#fff0c9;font-size:1rem;text-transform:uppercase;letter-spacing:.03em}
.ac-commercial-step p{margin:0;color:#d8c6a1;font-size:.94rem;line-height:1.5}
.ac-commercial-actions,.ac-blog-actions,.ac-example-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:22px}
.ac-btn-gold,.ac-btn-dark{display:inline-flex;align-items:center;justify-content:center;min-height:48px;padding:13px 18px;border-radius:999px;text-decoration:none;text-transform:uppercase;letter-spacing:.08em;font-weight:950;font-size:.82rem}
.ac-btn-gold{background:linear-gradient(135deg,#f4d77c,#b98524);color:#080604;box-shadow:0 16px 34px rgba(0,0,0,.32)}
.ac-btn-dark{background:rgba(0,0,0,.32);border:1px solid rgba(237,203,109,.28);color:#f8e4b4}
.ac-ladder-cards{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-top:22px}
.ac-ladder-card{padding:18px;border-radius:22px;border:1px solid rgba(237,203,109,.20);background:rgba(0,0,0,.30)}
.ac-ladder-card h3{margin:12px 0 8px;color:#fff2cf;font-size:1rem;text-transform:uppercase}.ac-ladder-card p{margin:0;color:#d8c6a1;font-size:.92rem;line-height:1.55}
.ac-offer-compare{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:20px}.ac-offer-compare article{padding:18px;border-radius:22px;border:1px solid rgba(237,203,109,.22);background:rgba(0,0,0,.30)}.ac-offer-compare h3{margin:0 0 10px;color:#fff0ca}.ac-offer-compare ul{display:grid;gap:8px;margin:0;padding-left:18px;color:#dcc9a3;line-height:1.48}.ac-offer-compare .premium{border-color:rgba(237,203,109,.46);background:linear-gradient(180deg,rgba(237,203,109,.12),rgba(0,0,0,.34))}
.ac-mini-proof{margin-top:14px;color:#d3bf94;font-size:.9rem;font-weight:800}
@media(max-width:900px){.ac-commercial-grid,.ac-offer-compare{grid-template-columns:1fr}.ac-ladder-cards{grid-template-columns:1fr 1fr}}
@media(max-width:620px){.ac-ladder-cards{grid-template-columns:1fr}.ac-commercial-inner,.ac-ladder-inner,.ac-blog-cta-inner,.ac-example-inner{padding:20px}.ac-btn-gold,.ac-btn-dark{width:100%;text-align:center}}

/* PATCH 2026-05-14 — mobile menu fiable + header téléphone */
@media (max-width: 980px) {
  .site-header,
  header.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    background: rgba(5, 5, 5, .96) !important;
    backdrop-filter: blur(14px) !important;
    border-bottom: 1px solid rgba(214,170,82,.18) !important;
    overflow: visible !important;
  }

  .header-inner {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
      "brand toggle"
      "tools tools" !important;
    gap: 10px 12px !important;
    width: min(100% - 24px, var(--container, 1180px)) !important;
    min-height: 74px !important;
    padding: 10px 0 !important;
  }

  .brand {
    grid-area: brand !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .brand-mark {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 12px !important;
  }

  .brand-text {
    min-width: 0 !important;
  }

  .brand-text strong {
    font-size: clamp(.92rem, 4vw, 1.05rem) !important;
    white-space: nowrap !important;
  }

  .brand-text small {
    font-size: .70rem !important;
    white-space: nowrap !important;
  }

  .menu-toggle {
    grid-area: toggle !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    border: 1px solid rgba(214,170,82,.34) !important;
    border-radius: 14px !important;
    background: rgba(0,0,0,.42) !important;
    cursor: pointer !important;
    z-index: 10002 !important;
  }

  .menu-toggle span {
    display: block !important;
    width: 24px !important;
    height: 2px !important;
    margin: 3px 0 !important;
    border-radius: 999px !important;
    background: #f6d884 !important;
    transition: transform .2s ease, opacity .2s ease !important;
  }

  .menu-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg) !important; }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0 !important; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg) !important; }

  .main-nav {
    position: absolute !important;
    top: calc(100% + 6px) !important;
    left: 0 !important;
    right: 0 !important;
    display: none !important;
    width: 100% !important;
    max-height: calc(100vh - 96px) !important;
    overflow-y: auto !important;
    padding: 14px !important;
    border: 1px solid rgba(214,170,82,.24) !important;
    border-radius: 18px !important;
    background: rgba(5,5,5,.985) !important;
    box-shadow: 0 22px 54px rgba(0,0,0,.62) !important;
    z-index: 10001 !important;
  }

  .main-nav.open,
  .main-nav.is-open {
    display: block !important;
  }

  .main-nav ul {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .main-nav li { list-style: none !important; }

  .main-nav a {
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: 44px !important;
    padding: 11px 12px !important;
    border-radius: 12px !important;
    color: #fff3d5 !important;
    font-size: 1rem !important;
    font-weight: 850 !important;
    line-height: 1.1 !important;
    background: rgba(255,255,255,.035) !important;
    border: 1px solid rgba(255,255,255,.045) !important;
  }

  .main-nav a.active,
  .main-nav a:hover {
    color: #100b04 !important;
    background: linear-gradient(135deg, #f0d37a, #b8862e) !important;
    border-color: rgba(240,211,122,.58) !important;
  }

  .header-tools {
    grid-area: tools !important;
    width: 100% !important;
    justify-content: space-between !important;
    gap: 8px !important;
    padding: 0 0 2px !important;
    flex-wrap: wrap !important;
  }

  .member-access {
    min-height: 34px !important;
    padding: 7px 10px !important;
    font-size: .74rem !important;
  }

  .language-switcher {
    margin-left: auto !important;
  }
}

@media (max-width: 420px) {
  .brand-text small { display: none !important; }
  .header-tools { justify-content: flex-start !important; }
  .language-switcher { margin-left: 0 !important; }
}


/* Correctif 2026-05-19 : ajout onglet Consultation dans la navigation vitrine */
@media (min-width:981px){
  .main-nav ul{gap:clamp(8px,1.02vw,17px)!important;}
  .main-nav a{font-size:clamp(.70rem,.68vw,.84rem)!important;white-space:nowrap!important;}
}

/* Correctif admin articles : sortie Facebook multilingue propre à copier-coller. */
#facebookOut {
  min-height: 360px;
  line-height: 1.5;
  white-space: pre-wrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}




/* Correctif final onglets — modèle Blog : plus petit, une seule ligne, zéro chevauchement */
.site-header{
  position:relative!important;
  z-index:999!important;
  width:100%!important;
  max-width:100%!important;
  overflow:visible!important;
  background:#030303!important;
  border-bottom:1px solid rgba(217,173,70,.22)!important;
  box-sizing:border-box!important;
}
.site-header .header-inner,
.site-header > .container,
header.site-header > .container,
.ac-header-inner{
  width:100%!important;
  max-width:none!important;
  margin:0!important;
  min-height:96px!important;
  padding:0 32px!important;
  display:grid!important;
  grid-template-columns:minmax(270px,330px) minmax(0,1fr) minmax(235px,300px)!important;
  align-items:center!important;
  column-gap:14px!important;
  box-sizing:border-box!important;
}
.site-header .brand,
.site-header .ac-brand{
  grid-column:1!important;
  justify-self:start!important;
  width:auto!important;
  min-width:0!important;
  max-width:330px!important;
  display:flex!important;
  align-items:center!important;
  gap:14px!important;
  overflow:hidden!important;
  text-decoration:none!important;
}
.site-header .brand-mark,
.site-header .brand img,
.site-header .brand-mark img,
.site-header .ac-brand img{
  width:66px!important;
  height:66px!important;
  min-width:66px!important;
  flex:0 0 66px!important;
  object-fit:contain!important;
}
.site-header .brand-text,
.site-header .ac-brand-text,
.site-header .brand > span:not(.brand-mark){
  min-width:0!important;
  max-width:245px!important;
  overflow:hidden!important;
}
.site-header .brand-text strong,
.site-header .brand strong,
.site-header .ac-brand-text strong{
  display:block!important;
  font-family:Cinzel,Georgia,serif!important;
  font-size:20px!important;
  line-height:1.05!important;
  letter-spacing:0!important;
  text-transform:uppercase!important;
  color:#fff6df!important;
  white-space:nowrap!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
}
.site-header .brand-text small,
.site-header .brand small,
.site-header .ac-brand-text small,
.site-header .brand > span:not(.brand-mark) span{
  display:block!important;
  margin-top:3px!important;
  font-size:13px!important;
  line-height:1.25!important;
  letter-spacing:0!important;
  text-transform:none!important;
  color:#dbc58e!important;
  white-space:nowrap!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
}
.site-header .main-nav,
.site-header .nav,
.site-header .ac-nav{
  grid-column:2!important;
  justify-self:center!important;
  width:100%!important;
  min-width:0!important;
  max-width:100%!important;
  display:block!important;
  overflow:visible!important;
}
.site-header .main-nav ul,
.site-header .nav ul,
.site-header .ac-nav ul{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  flex-wrap:nowrap!important;
  gap:10px!important;
  list-style:none!important;
  margin:0!important;
  padding:0!important;
  white-space:nowrap!important;
}
.site-header .main-nav li,
.site-header .nav li,
.site-header .ac-nav li{list-style:none!important;flex:0 0 auto!important;margin:0!important;padding:0!important;}
.site-header .main-nav a,
.site-header .nav a,
.site-header .ac-nav a{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  padding:0!important;
  margin:0!important;
  font-family:Inter,Arial,Helvetica,sans-serif!important;
  font-size:13px!important;
  line-height:1.05!important;
  font-weight:900!important;
  letter-spacing:0!important;
  text-transform:none!important;
  text-decoration:none!important;
  color:#fff6df!important;
  white-space:nowrap!important;
}
.site-header .main-nav a.active,
.site-header .main-nav a:hover,
.site-header .nav a.active,
.site-header .nav a:hover,
.site-header .ac-nav a.active,
.site-header .ac-nav a:hover{color:#d9ad46!important;}
.site-header .header-tools,
.site-header .header-side,
.site-header .ac-header-extra{
  grid-column:3!important;
  justify-self:end!important;
  width:auto!important;
  min-width:0!important;
  max-width:300px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:flex-end!important;
  gap:8px!important;
  overflow:visible!important;
  white-space:nowrap!important;
}
.site-header .member-access,
.site-header .member-btn{
  order:1!important;
  flex:0 0 auto!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:38px!important;
  padding:9px 13px!important;
  border:1px solid rgba(217,173,70,.6)!important;
  border-radius:999px!important;
  background:rgba(0,0,0,.3)!important;
  color:#ffe7a0!important;
  font-family:Inter,Arial,Helvetica,sans-serif!important;
  font-size:12px!important;
  font-weight:900!important;
  line-height:1!important;
  letter-spacing:0!important;
  text-transform:none!important;
  text-align:center!important;
  text-decoration:none!important;
  white-space:nowrap!important;
}
.site-header .language-switcher,
.site-header .langs{
  order:2!important;
  flex:0 0 auto!important;
  display:flex!important;
  align-items:center!important;
  justify-content:flex-end!important;
  gap:4px!important;
  min-width:auto!important;
  max-width:none!important;
  padding:6px 8px!important;
  border:1px solid rgba(217,173,70,.45)!important;
  border-radius:999px!important;
  background:rgba(0,0,0,.35)!important;
  white-space:nowrap!important;
}
.site-header .language-switcher a,
.site-header .langs a,
.site-header .lang{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:auto!important;
  height:auto!important;
  min-width:0!important;
  padding:0!important;
  margin:0!important;
  border:0!important;
  background:transparent!important;
  text-decoration:none!important;
  font-size:12px!important;
  line-height:1!important;
  opacity:.82!important;
}
.site-header .language-switcher a.active,
.site-header .langs a.active,
.site-header .lang.active{opacity:1!important;transform:scale(1.08)!important;}
.site-header .menu-toggle{display:none!important;}
@media (min-width:1680px){
  .site-header .header-inner,.site-header > .container,header.site-header > .container,.ac-header-inner{grid-template-columns:minmax(300px,360px) minmax(0,1fr) minmax(250px,310px)!important;column-gap:16px!important;}
  .site-header .main-nav ul,.site-header .nav ul,.site-header .ac-nav ul{gap:11px!important;}
  .site-header .main-nav a,.site-header .nav a,.site-header .ac-nav a{font-size:14px!important;}
  .site-header .member-access,.site-header .member-btn{font-size:13px!important;padding:10px 15px!important;}
  .site-header .language-switcher a,.site-header .langs a,.site-header .lang{font-size:12px!important;}
}
@media (max-width:1280px){
  .site-header .header-inner,.site-header > .container,header.site-header > .container,.ac-header-inner{grid-template-columns:minmax(230px,280px) minmax(0,1fr) minmax(200px,250px)!important;padding:0 18px!important;column-gap:10px!important;}
  .site-header .brand-text strong,.site-header .brand strong,.site-header .ac-brand-text strong{font-size:17px!important;}
  .site-header .brand-text small,.site-header .brand small,.site-header .ac-brand-text small{font-size:11px!important;}
  .site-header .main-nav ul,.site-header .nav ul,.site-header .ac-nav ul{gap:7px!important;}
  .site-header .main-nav a,.site-header .nav a,.site-header .ac-nav a{font-size:11px!important;}
  .site-header .member-access,.site-header .member-btn{font-size:11px!important;padding:8px 10px!important;}
}
@media (max-width:980px){
  .site-header .header-inner,.site-header > .container,header.site-header > .container,.ac-header-inner{display:flex!important;flex-wrap:wrap!important;gap:12px!important;padding:12px 18px!important;min-height:auto!important;}
  .site-header .brand{max-width:100%!important;}
  .site-header .main-nav,.site-header .nav,.site-header .ac-nav{order:3!important;width:100%!important;overflow-x:auto!important;}
  .site-header .main-nav ul,.site-header .nav ul,.site-header .ac-nav ul{justify-content:flex-start!important;gap:14px!important;}
  .site-header .main-nav a,.site-header .nav a,.site-header .ac-nav a{font-size:13px!important;}
  .site-header .header-tools,.site-header .header-side,.site-header .ac-header-extra{margin-left:auto!important;}
}


