/* ============================================================
   upgrade.css . Différenciation visuelle (charge APRÈS main.css)
   Pas de modification du main.css minifié, juste des additions
   et quelques overrides ciblés.
============================================================ */

/* === HERO : layout 2 colonnes texte / portrait XL === */

/* Override des paddings/font-size pour que le hero tienne dans 100vh
   sur les écrans laptops 13-15 pouces (1366x768 → 1440x900). Le main.css
   définit padding 160px + H1 80px ce qui pousse les CTAs sous la ligne
   de pli sur les écrans moyens. */
@media (min-width: 960px) {
  .hero {
    padding-top: clamp(60px, 7vh, 110px);
    padding-bottom: clamp(50px, 5vh, 90px);
  }
  .hero__title {
    font-size: clamp(36px, 3.6vw, 56px);
    line-height: 1.05;
    margin-bottom: 20px;
  }
  .hero__subtitle {
    margin-bottom: 28px;
  }
  .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    grid-template-rows: auto;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
  }
  .hero__inner > .eyebrow,
  .hero__inner > .hero__title,
  .hero__inner > .hero__subtitle,
  .hero__inner > .hero__ctas,
  .hero__inner > .hero__meta {
    grid-column: 1;
    max-width: 620px;
  }
  /* Sur desktop on cache le portrait XL et on affiche la console IA à sa place */
  .hero__portrait { display: none !important; }
  .hero__stage {
    grid-column: 2;
    grid-row: 1 / span 5;
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }
  /* Logo en watermark top-right : signature visuelle subtile derrière la console */
  .hero { position: relative; overflow: hidden; }
  .hero-glyph--top-right {
    display: block !important;
    position: absolute;
    top: -60px;
    right: -80px;
    width: clamp(360px, 32vw, 520px);
    height: auto;
    opacity: 0.07;
    filter: drop-shadow(0 0 60px rgba(250, 181, 18, 0.35));
    pointer-events: none;
    z-index: 0;
    animation: hero-glyph-float 14s ease-in-out infinite alternate;
  }
  @keyframes hero-glyph-float {
    0%   { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-12px, 8px) rotate(-2deg); }
  }
  .hero .container { position: relative; z-index: 1; }
}

/* Cache la stage en mobile (la signature compacte du portrait reste en haut) */
@media (max-width: 959px) {
  .hero__stage { display: none !important; }
}

.hero__portrait {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}
.hero__portrait::before {
  content: '';
  position: absolute;
  inset: -14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(250,181,18,0.35), transparent 55%),
    radial-gradient(circle at 70% 75%, rgba(250,181,18,0.15), transparent 60%);
  border-radius: 24px;
  z-index: -1;
  filter: blur(28px);
  opacity: 0.95;
  animation: heroPortraitGlow 9s ease-in-out infinite alternate;
}
@keyframes heroPortraitGlow {
  0%   { transform: scale(0.92); opacity: 0.8; }
  100% { transform: scale(1.05); opacity: 1; }
}
.hero__portrait picture,
.hero__portrait img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.45),
    0 0 0 1px rgba(250,181,18,0.18) inset;
  filter: contrast(1.02) saturate(0.95);
  transition: filter 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.hero__portrait:hover img {
  filter: contrast(1.05) saturate(1.05);
  transform: scale(1.015);
}

.hero__portrait-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(10,10,10,0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(250,181,18,0.22);
  padding: 14px 16px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.45;
  color: #cbcbc7;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__portrait-tag strong {
  color: #fab512;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.hero__portrait-tag span {
  color: #9a9a9a;
  font-size: 12px;
}

/* Sur tablette/mobile : la photo devient signature compacte type "auteur d'article".
   On garde le visage humain partout (différenciation E-E-A-T). */
@media (max-width: 959px) {
  .hero__portrait {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: none;
    width: auto;
    aspect-ratio: auto;
    margin: 0 0 28px;
    order: -1;
  }
  .hero__portrait::before { display: none; }
  .hero__portrait picture {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
  }
  .hero__portrait img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(250,181,18,0.35), 0 8px 24px rgba(0,0,0,0.3);
  }
  .hero__portrait-tag {
    position: static;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border: none;
    padding: 0;
    flex: 1;
    min-width: 0;
  }
  .hero__portrait-tag strong { font-size: 15px; }
  .hero__portrait-tag span { font-size: 12px; }
}

/* Très petit écran : on ajuste encore */
@media (max-width: 360px) {
  .hero__portrait picture, .hero__portrait img { width: 52px; height: 52px; }
  .hero__portrait-tag strong { font-size: 14px; }
}

/* === MANIFESTE : section voix personnelle === */

.manifesto {
  position: relative;
  background: #050505;
  padding: clamp(90px, 14vh, 160px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.manifesto::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 70%;
  height: 130%;
  background: radial-gradient(ellipse 60% 50% at center, rgba(250,181,18,0.07), transparent 70%);
  pointer-events: none;
}
.manifesto::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to left, rgba(250,181,18,0.04), transparent);
  pointer-events: none;
}
.manifesto__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.manifesto__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #fab512;
  margin-bottom: 32px;
}
.manifesto__label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #fab512;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(250,181,18,0.6);
}
.manifesto__text {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 1.65rem);
  font-weight: 700;
  line-height: 1.42;
  color: #f5f3ef;
  letter-spacing: -0.012em;
}
.manifesto__text p {
  margin: 0 0 1.1em;
}
.manifesto__text p:last-child { margin-bottom: 0; }
.manifesto__text strong {
  color: #fab512;
  font-weight: 800;
}
.manifesto__text em {
  font-style: italic;
  color: #9a9a9a;
  font-weight: 600;
}
.manifesto__sig {
  margin-top: clamp(36px, 5vh, 56px);
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: 'Inter', sans-serif;
}
.manifesto__sig-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(250,181,18,0.4), transparent);
  max-width: 80px;
}
.manifesto__sig-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  color: #f5f3ef;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.manifesto__sig-role {
  font-size: 13px;
  color: #9a9a9a;
  margin-top: 1px;
}

@media (max-width: 640px) {
  .manifesto { padding: 80px 0; }
  .manifesto__text { font-size: 1.2rem; }
}

/* === DEMO SCENARIO : SVG animé d'un flux d'automatisation === */

.demo-scenario {
  position: relative;
  background: #080808;
  padding: clamp(70px, 10vh, 110px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.demo-scenario::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(250,181,18,0.05), transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(250,181,18,0.04), transparent 55%);
  pointer-events: none;
}
.demo-scenario__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.demo-scenario__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vh, 60px);
}
.demo-scenario__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #fab512;
  margin-bottom: 18px;
}
.demo-scenario__eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #fab512;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(250,181,18,0.6);
  animation: demoPulse 1.6s ease-in-out infinite;
}
@keyframes demoPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.1); }
}
.demo-scenario__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #f5f3ef;
  margin: 0 0 14px;
}
.demo-scenario__title em {
  font-style: normal;
  color: #fab512;
}
.demo-scenario__lead {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  line-height: 1.6;
  color: #9a9a9a;
  margin: 0;
}

/* Conteneur de la viz */
.demo-scenario__viz {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.demo-scenario__svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* Animation cycle : 7 secondes en boucle */
@keyframes demoNodeIn {
  0%, 100% { opacity: 0; transform: translateY(8px) scale(0.92); }
  8%, 88% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes demoLineDraw {
  0%, 100% { stroke-dashoffset: var(--line-len, 200); opacity: 0; }
  5%, 88% { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes demoParticleFlow {
  0%, 100% { opacity: 0; offset-distance: 0%; }
  5% { opacity: 0; }
  10% { opacity: 1; }
  85% { opacity: 1; }
  90% { opacity: 0; offset-distance: 100%; }
}

.demo-node {
  transform-origin: center;
  transform-box: fill-box;
  animation: demoNodeIn 7s ease-in-out infinite;
  opacity: 0;
}
.demo-node--1 { animation-delay: 0s; }
.demo-node--2 { animation-delay: 0.7s; }
.demo-node--3 { animation-delay: 1.4s; }
.demo-node--4 { animation-delay: 2.1s; }
.demo-node--5 { animation-delay: 2.4s; }

.demo-line {
  fill: none;
  stroke: rgba(250,181,18,0.45);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 200;
  animation: demoLineDraw 7s ease-in-out infinite;
}
.demo-line--1 { animation-delay: 0.5s; }
.demo-line--2 { animation-delay: 1.2s; }
.demo-line--3 { animation-delay: 1.9s; }
.demo-line--4 { animation-delay: 1.9s; }

.demo-particle {
  fill: #fab512;
  filter: drop-shadow(0 0 4px rgba(250,181,18,0.9));
  animation: demoParticleFlow 7s ease-in-out infinite;
  opacity: 0;
  r: 5;
}
.demo-particle--1 { offset-path: path('M 165 100 L 295 100'); animation-delay: 0.5s; }
.demo-particle--2 { offset-path: path('M 465 100 L 595 100'); animation-delay: 1.2s; }
.demo-particle--3 { offset-path: path('M 765 100 L 875 60'); animation-delay: 1.9s; }
.demo-particle--4 { offset-path: path('M 765 100 L 875 140'); animation-delay: 1.9s; }

/* Couleurs / styles des nodes */
.demo-node-bg {
  fill: #161616;
  stroke: #2a2a2a;
  stroke-width: 1.2;
}
.demo-node--active .demo-node-bg {
  stroke: rgba(250,181,18,0.5);
}
.demo-node-icon {
  fill: none;
  stroke: #fab512;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.demo-node-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 11px;
  fill: #fab512;
  letter-spacing: 0.1em;
}
.demo-node-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  fill: #f5f3ef;
  letter-spacing: -0.005em;
}
.demo-node-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 11px;
  fill: #9a9a9a;
}
.demo-node-tag {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  fill: #fab512;
}

/* Caption en bas */
.demo-scenario__caption {
  margin: clamp(28px, 4vh, 44px) auto 0;
  max-width: 720px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: #cbcbc7;
  line-height: 1.55;
}
.demo-scenario__caption strong {
  color: #fab512;
  font-weight: 700;
}
.demo-scenario__caption-sub {
  margin-top: 8px;
  color: #6b6b6b;
  font-size: 13px;
}

/* Mobile : SVG scroll horizontal si nécessaire, ou simplifié */
@media (max-width: 900px) {
  .demo-scenario__viz {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding: 0 20px 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(250,181,18,0.3) transparent;
  }
  .demo-scenario__svg {
    min-width: 720px;
  }
}

/* Respect prefers-reduced-motion : animation off, tout visible d'emblée */
@media (prefers-reduced-motion: reduce) {
  .demo-node, .demo-line, .demo-particle,
  .demo-scenario__eyebrow::before {
    animation: none;
  }
  .demo-node, .demo-line { opacity: 1; }
  .demo-line { stroke-dashoffset: 0; }
}

/* === REVIEWS GRID : note moyenne + cards d'avis Google === */

.reviews-grid {
  position: relative;
  padding: clamp(60px, 9vh, 100px) 0;
  background: #080808;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.reviews-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(250,181,18,0.05), transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(250,181,18,0.04), transparent 50%);
  pointer-events: none;
}
.reviews-grid .container { position: relative; }

.reviews-grid__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vh, 64px);
}
.reviews-grid__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #fab512;
  margin-bottom: 22px;
}
.reviews-grid__eyebrow svg { color: #fab512; }
.reviews-grid__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0;
  letter-spacing: -0.02em;
}
.reviews-grid__score {
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  color: #fab512;
  line-height: 0.9;
}
.reviews-grid__stars {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: #fab512;
  letter-spacing: 4px;
  line-height: 1;
}
.reviews-grid__count {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 500;
  color: #9a9a9a;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
}

.reviews-grid__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.review-card {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
  border-color: rgba(250,181,18,0.35);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}
.review-card__stars {
  font-size: 17px;
  color: #fab512;
  letter-spacing: 3px;
  line-height: 1;
}
.review-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: #f5f3ef;
  margin: 0;
  flex: 1;
  font-style: italic;
}
.review-card__text::before { content: '"'; color: #fab512; font-size: 1.1em; font-weight: 700; }
.review-card__text::after { content: '"'; color: #fab512; font-size: 1.1em; font-weight: 700; }
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #2a2a2a;
}
.review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fab512, #c08a09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  color: #0a0a0a;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(250,181,18,0.2);
}
.review-card__name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: #f5f3ef;
  font-size: 14px;
  letter-spacing: -0.005em;
}
.review-card__meta {
  font-size: 12px;
  color: #6b6b6b;
  margin-top: 1px;
  font-family: 'Inter', sans-serif;
}

.reviews-grid__footer {
  margin-top: clamp(32px, 5vh, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.reviews-grid__link {
  color: #cbcbc7;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(250,181,18,0.35);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s, transform 0.25s;
}
.reviews-grid__link:hover {
  color: #fab512;
  border-color: #fab512;
}
.reviews-grid__link:hover span { transform: translateX(3px); display: inline-block; }
.reviews-grid__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 640px) {
  .reviews-grid__title {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }
  .reviews-grid__count { padding-top: 4px; }
  .reviews-grid__footer { flex-direction: column-reverse; gap: 18px; }
}

/* === FOOTER : pictos SVG pour les contacts === */
.footer__list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .15s ease;
}
.footer__list .footer-ico {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: .65;
  transition: opacity .15s ease, transform .15s ease;
}
.footer__list a:hover .footer-ico {
  opacity: 1;
  transform: translateY(-1px);
}

/* ============================================================
   AI CONSOLE : terminal live avec agent qui exécute un scénario
   Visible uniquement en desktop (>=960px), remplace le portrait XL
============================================================ */
.ai-console {
  background: linear-gradient(180deg, #0c0c0c 0%, #050505 100%);
  border: 1px solid rgba(250, 181, 18, 0.18);
  border-radius: 14px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 60px -20px rgba(250, 181, 18, 0.25);
  overflow: hidden;
  position: relative;
}
.ai-console::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(250,181,18,0.4), transparent 30%, transparent 70%, rgba(250,181,18,0.2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}
.ai-console__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
}
.ai-console__dots {
  display: inline-flex;
  gap: 6px;
}
.ai-console__dots i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
}
.ai-console__dots i:nth-child(1) { background: #ff5f57; }
.ai-console__dots i:nth-child(2) { background: #febc2e; }
.ai-console__dots i:nth-child(3) { background: #28c840; }
.ai-console__title {
  flex: 1;
  text-align: center;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 12px;
  color: #777;
  letter-spacing: 0.02em;
}
.ai-console__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 11px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ai-console__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #28c840;
  box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.7);
  animation: ai-pulse 1.8s ease-out infinite;
}
@keyframes ai-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(40, 200, 64, 0); }
  100% { box-shadow: 0 0 0 0 rgba(40, 200, 64, 0); }
}

.ai-console__body {
  padding: 18px 18px 20px;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 13.5px;
  line-height: 1.85;
  color: #e6e6e3;
}
.ai-line {
  opacity: 0;
  transform: translateY(6px);
  animation: ai-line-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0s);
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@keyframes ai-line-in {
  to { opacity: 1; transform: translateY(0); }
}

.ai-prompt {
  color: #fab512;
  font-style: normal;
  font-weight: 700;
  flex-shrink: 0;
}
.ai-arrow {
  color: #6a6a6a;
  font-style: normal;
  flex-shrink: 0;
}
.ai-check {
  color: #28c840;
  font-style: normal;
  flex-shrink: 0;
}
.ai-str {
  color: #fab512;
}
.ai-line--cmd { color: #f3f3ef; font-weight: 500; }
.ai-line--info { color: #9a9a96; }
.ai-line--ok { color: #d4d4cf; }

.ai-line--meta {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 22px;
  font-size: 12px;
  color: #888;
  white-space: nowrap;
  flex-wrap: wrap;
}
.ai-line--meta b {
  color: #fab512;
  font-weight: 700;
  margin-left: 4px;
}
.ai-line--cursor {
  margin-top: 4px;
}
.ai-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: #fab512;
  vertical-align: middle;
  margin-left: 2px;
  animation: ai-blink 1s steps(2) infinite;
}
@keyframes ai-blink {
  50% { opacity: 0; }
}

/* Signature compacte sous la console (desktop) */
.hero__signature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 4px 0;
}
.hero__signature picture,
.hero__signature img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(250, 181, 18, 0.35), 0 6px 18px rgba(0, 0, 0, 0.35);
}
.hero__signature-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #f3f3ef;
  letter-spacing: -0.01em;
}
.hero__signature-role {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #9a9a96;
}

/* Respect des préférences accessibilité : pas d'animations */
@media (prefers-reduced-motion: reduce) {
  .ai-line { opacity: 1; transform: none; animation: none; }
  .ai-cursor, .ai-console__pulse { animation: none; }
}

/* Label au-dessus de la console */
.hero__stage-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #fab512;
  align-self: flex-start;
}
.hero__stage-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fab512;
  box-shadow: 0 0 0 0 rgba(250, 181, 18, 0.6);
  animation: ai-pulse-gold 2.2s ease-out infinite;
}
@keyframes ai-pulse-gold {
  0%   { box-shadow: 0 0 0 0 rgba(250, 181, 18, 0.65); }
  70%  { box-shadow: 0 0 0 9px rgba(250, 181, 18, 0); }
  100% { box-shadow: 0 0 0 0 rgba(250, 181, 18, 0); }
}

/* Tech stack chips sous la signature */
.hero__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 4px;
}
.hero__stack span {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 11.5px;
  color: #b0b0ac;
  letter-spacing: 0.02em;
  transition: border-color .2s, color .2s, background .2s;
}
.hero__stack span:hover {
  border-color: rgba(250, 181, 18, 0.35);
  color: #fab512;
  background: rgba(250, 181, 18, 0.05);
}

@media (prefers-reduced-motion: reduce) {
  .hero__stage-dot { animation: none; }
}

/* ============================================================
   BLOG : pagination "Voir plus"
============================================================ */
.blog-pager {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 48px);
}
.blog-pager .btn {
  min-width: 240px;
  justify-content: center;
}
.blog-pager__count {
  margin-left: 8px;
  opacity: 0.65;
  font-weight: 400;
  font-size: 0.9em;
}

/* ============================================================
   ARTICLE : share buttons (top + bottom)
============================================================ */
.share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: clamp(20px, 3vw, 32px) 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.share-bar--bottom {
  margin-top: clamp(36px, 6vw, 64px);
  background: rgba(250, 181, 18, 0.04);
  border-color: rgba(250, 181, 18, 0.15);
}
.share-bar__label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9a9a96;
  margin-right: 4px;
}
.share-bar--bottom .share-bar__label {
  color: #fab512;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #c8c8c4;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, transform .15s;
  position: relative;
}
.share-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}
.share-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(250, 181, 18, 0.5);
  color: #fab512;
  background: rgba(250, 181, 18, 0.08);
}
.share-btn--wa:hover { color: #25d366; border-color: rgba(37, 211, 102, 0.5); background: rgba(37, 211, 102, 0.08); }
.share-btn--li:hover { color: #0a66c2; border-color: rgba(10, 102, 194, 0.5); background: rgba(10, 102, 194, 0.08); }
.share-btn--fb:hover { color: #1877f2; border-color: rgba(24, 119, 242, 0.5); background: rgba(24, 119, 242, 0.08); }
.share-btn--x:hover { color: #fff; border-color: rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.08); }
.share-btn--mail:hover { color: #fab512; }

.share-btn--copy {
  font: inherit;
  padding: 0;
}
.share-btn__icon-done { display: none; color: #28c840; }
.share-btn.is-copied .share-btn__icon-default { display: none; }
.share-btn.is-copied .share-btn__icon-done { display: block; }
.share-btn.is-copied {
  background: rgba(40, 200, 64, 0.1);
  border-color: rgba(40, 200, 64, 0.5);
}

@media (max-width: 480px) {
  .share-bar { padding: 12px; gap: 8px; }
  .share-btn { width: 36px; height: 36px; }
  .share-bar__label { width: 100%; margin-bottom: 4px; }
}
/* ========================================================================
 * WP Local SEO Studio product page (ajouté le 2026-05-17)
 *
 * BLOC DÉLIMITÉ. Pour retirer la page de vente du site, supprimez tout
 * ce qui se trouve entre les commentaires BEGIN et END. Aucune autre
 * modification du upgrade.css n'a été faite.
 * ====================================================================== */

/* === BEGIN WP Local SEO Studio ================================================= */

.wpgs-hero { padding-block: clamp(28px, 3vw, 56px) !important; border-bottom: 1px solid rgba(255,255,255,0.06); position: relative; overflow: hidden; }
.wpgs-hero::before {
	content: '';
	position: absolute;
	top: -10%;
	right: -5%;
	width: 60%;
	height: 80%;
	background: radial-gradient(ellipse at center, rgba(250,181,18,0.06), transparent 60%);
	pointer-events: none;
}
.wpgs-hero .container { position: relative; z-index: 1; }
.wpgs-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}
@media (max-width: 900px) { .wpgs-hero__grid { grid-template-columns: 1fr; } }
.wpgs-hero h1 {
	font-size: clamp(32px, 3.6vw, 48px);
	line-height: 1.08;
	margin: 0 0 18px;
	letter-spacing: -0.02em;
}
.wpgs-hero h1 .accent { color: var(--accent); }
.wpgs-hero__lead {
	font-size: clamp(15px, 1.4vw, 18px);
	color: var(--muted-2);
	line-height: 1.55;
	margin: 0 0 28px;
	max-width: 56ch;
}
.wpgs-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.wpgs-hero__meta {
	list-style: none;
	display: flex;
	gap: 22px;
	flex-wrap: wrap;
	margin: 30px 0 0;
	padding: 0;
	color: var(--muted-2);
	font-size: 13px;
}
.wpgs-hero__meta strong { color: var(--white); font-weight: 600; }

.wpgs-console {
	background: #050505;
	border: 1px solid rgba(250,181,18,0.18);
	border-radius: 12px;
	padding: 18px;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 13px;
	line-height: 1.55;
	color: #e6e9ef;
	box-shadow: 0 18px 60px rgba(0,0,0,0.55);
}
.wpgs-console__bar {
	display: flex;
	gap: 6px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255,255,255,0.05);
	margin-bottom: 14px;
}
.wpgs-console__bar span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.wpgs-console__bar span:nth-child(1) { background: #ef4444; }
.wpgs-console__bar span:nth-child(2) { background: #fab512; }
.wpgs-console__bar span:nth-child(3) { background: #22c55e; }
.wpgs-console pre { margin: 0; white-space: pre-wrap; font-family: inherit; }
.wpgs-console .c-prompt { color: var(--accent); font-weight: 700; }
.wpgs-console .c-out    { color: #9a9a9a; }
.wpgs-console .c-key    { color: #5ac8fa; }

.wpgs-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 18px;
}
.wpgs-feature {
	background: #111;
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 14px;
	padding: 26px;
	transition: border-color 0.15s ease, transform 0.15s ease;
}
.wpgs-feature:hover { border-color: rgba(250,181,18,0.4); transform: translateY(-3px); }
.wpgs-feature__icon {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(250,181,18,0.12);
	border: 1px solid rgba(250,181,18,0.35);
	border-radius: 10px;
	color: var(--accent);
	font-weight: 800;
	font-size: 14px;
	margin-bottom: 18px;
	font-family: Manrope, sans-serif;
	letter-spacing: 0.02em;
}
.wpgs-feature h3 {
	font-family: Manrope, sans-serif;
	font-weight: 800;
	font-size: 19px;
	margin: 0 0 8px;
	letter-spacing: -0.01em;
}
.wpgs-feature p { color: var(--muted-2); font-size: 14.5px; line-height: 1.55; margin: 0; }

.wpgs-story {
	background: #050505;
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 16px;
	padding: clamp(28px, 4vw, 48px);
}
.wpgs-story__metrics {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 18px;
	margin-top: 26px;
}
.wpgs-story__metric {
	text-align: center;
	padding: 22px 16px;
	background: rgba(250,181,18,0.06);
	border: 1px solid rgba(250,181,18,0.15);
	border-radius: 10px;
}
.wpgs-story__metric-value {
	font-family: Manrope, sans-serif;
	font-weight: 800;
	font-size: clamp(28px, 3.5vw, 42px);
	color: var(--accent);
	line-height: 1;
	margin-bottom: 6px;
	letter-spacing: -0.02em;
}
.wpgs-story__metric-label {
	font-size: 11.5px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--muted-2);
	font-weight: 600;
}

.wpgs-pricing {
	max-width: 560px;
	margin: 0 auto;
	background: #111;
	border: 2px solid var(--accent);
	border-radius: 18px;
	padding: clamp(28px, 4vw, 44px);
	box-shadow: 0 0 0 1px rgba(250,181,18,0.4), 0 28px 80px rgba(250,181,18,0.12);
	position: relative;
}
.wpgs-pricing__badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: #1a1100;
	font-family: Manrope, sans-serif;
	font-weight: 800;
	font-size: 11px;
	padding: 6px 14px;
	border-radius: 999px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.wpgs-pricing__price { display: flex; align-items: baseline; gap: 8px; margin: 14px 0 4px; }
.wpgs-pricing__amount {
	font-family: Manrope, sans-serif;
	font-weight: 800;
	font-size: 64px;
	line-height: 1;
	letter-spacing: -0.02em;
}
.wpgs-pricing__per { color: var(--muted-2); font-size: 15px; }
.wpgs-pricing__sub { color: var(--accent); font-weight: 600; font-size: 14px; margin: 0 0 22px; }
.wpgs-pricing__list { list-style: none; margin: 0 0 28px; padding: 0; }
.wpgs-pricing__list li {
	padding: 8px 0;
	color: var(--white);
	font-size: 14.5px;
	border-bottom: 1px dashed rgba(255,255,255,0.07);
}
.wpgs-pricing__list li:last-child { border-bottom: 0; }
.wpgs-pricing__list li::before { content: "OK "; color: var(--accent); font-weight: 800; margin-right: 6px; }

.wpgs-faq { max-width: 820px; margin: 0 auto; }
.wpgs-faq details {
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 10px;
	margin-bottom: 10px;
	background: #111;
	transition: border-color 0.15s ease;
	overflow: hidden;
}
.wpgs-faq details[open] { border-color: rgba(250,181,18,0.5); }
.wpgs-faq summary {
	cursor: pointer;
	padding: 18px 22px;
	font-weight: 700;
	font-size: 15px;
	font-family: Manrope, sans-serif;
	list-style: none;
	position: relative;
	padding-right: 50px;
	color: var(--white);
}
.wpgs-faq summary::-webkit-details-marker { display: none; }
.wpgs-faq summary::after {
	content: "+";
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--accent);
	font-size: 22px;
	font-weight: 300;
}
.wpgs-faq details[open] summary::after { content: "−"; }
.wpgs-faq details p { padding: 0 22px 18px; color: var(--muted-2); font-size: 14.5px; line-height: 1.6; margin: 0; }

.wpgs-final {
	background:
		radial-gradient(ellipse at top, rgba(250,181,18,0.08), transparent 60%),
		#0a0a0a;
	border-block: 1px solid rgba(255,255,255,0.06);
}

/* === END WP Local SEO Studio =================================================== */


/* ============================================================
   FOOTER : 5e colonne "Produits" ajoutée avec WP Local SEO Studio
============================================================ */
.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
}
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ARTICLE : encart "mise à jour" en début d'article
============================================================ */
.article-update {
  margin: 18px 0 28px;
  padding: 18px 22px;
  background: rgba(250, 181, 18, 0.06);
  border: 1px solid rgba(250, 181, 18, 0.25);
  border-left: 3px solid #fab512;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.55;
  color: #d4d4cf;
}
.article-update strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fab512;
  margin-bottom: 10px;
}
.article-update p {
  margin: 0;
}
.article-update a {
  color: #fab512;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   WP-LOCAL-SEO-STUDIO : logo + hero layout
============================================================ */
.wpgs-hero-logo {
  display: block;
  width: clamp(160px, 16vw, 220px);
  height: auto;
  margin: 0 0 28px;
  filter:
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 40px rgba(250, 181, 18, 0.18));
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.wpgs-hero-logo:hover {
  transform: translateY(-3px) scale(1.02);
}
@media (max-width: 640px) {
  .wpgs-hero-logo {
    width: 140px;
    margin: 0 0 20px;
  }
}

/* ============================================================
   WP LOCAL SEO STUDIO v2.9.0 : refonte page de vente
   Classes wplss-* (WP Local SEO Studio). Les anciennes wpgs-*
   sont conservées pour rétrocompatibilité mais ne servent plus.
============================================================ */

.wplss-section { padding: clamp(48px, 7vw, 90px) 0; }
.wplss-section--tight { padding: clamp(32px, 4vw, 60px) 0; }

.wplss-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #fab512;
  margin: 0 0 18px;
}
.wplss-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fab512;
  box-shadow: 0 0 0 0 rgba(250, 181, 18, 0.6);
  animation: wplss-pulse 2.2s ease-out infinite;
}
@keyframes wplss-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(250, 181, 18, 0.65); }
  70%  { box-shadow: 0 0 0 9px rgba(250, 181, 18, 0); }
  100% { box-shadow: 0 0 0 0 rgba(250, 181, 18, 0); }
}

/* === Hero === */
.wplss-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px) 0 clamp(40px, 5vw, 70px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.wplss-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(250, 181, 18, 0.08), transparent 60%);
  pointer-events: none;
}
.wplss-hero .container { position: relative; z-index: 1; }
.wplss-hero__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.wplss-hero__logo {
  display: block;
  width: clamp(140px, 14vw, 200px);
  height: auto;
  margin: 0 auto 26px;
  filter:
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 40px rgba(250, 181, 18, 0.18));
}
.wplss-hero__inner .wplss-eyebrow {
  justify-content: center;
  margin-bottom: 14px;
}
.wplss-hero__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: #f5f3ef;
}
.wplss-hero__lead {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  color: #b0b0ac;
  max-width: 680px;
  margin: 0 auto 32px;
}
.wplss-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
.wplss-hero__meta {
  list-style: none;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #9a9a9a;
}
.wplss-hero__meta strong { color: #f5f3ef; font-weight: 600; }

/* === Sections génériques === */
.wplss-block { max-width: 780px; }
.wplss-section__head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.wplss-section__head .wplss-eyebrow { justify-content: center; }
.wplss-section__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 36px);
  letter-spacing: -0.018em;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #f5f3ef;
}
.wplss-section__lead {
  font-size: 16px;
  line-height: 1.65;
  color: #b0b0ac;
  margin: 0 0 14px;
}
.wplss-section__lead:last-child { margin-bottom: 0; }
.wplss-section__sub {
  font-size: 14.5px;
  line-height: 1.55;
  color: #9a9a9a;
  margin: 14px auto 0;
  max-width: 620px;
}
.wplss-section__cite {
  margin-top: 22px;
  font-size: 14.5px;
}
.wplss-section__cite a { color: #fab512; font-weight: 600; }
.wplss-section__cite a:hover { text-decoration: underline; }

/* === Pillars (3 cartes) === */
.wplss-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.wplss-pillar {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px 26px;
  transition: border-color 0.2s, transform 0.2s;
}
.wplss-pillar:hover {
  border-color: rgba(250, 181, 18, 0.35);
  transform: translateY(-3px);
}
.wplss-pillar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(250, 181, 18, 0.12);
  border: 1px solid rgba(250, 181, 18, 0.35);
  border-radius: 10px;
  color: #fab512;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.wplss-pillar__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: #f5f3ef;
}
.wplss-pillar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wplss-pillar__list li {
  position: relative;
  padding: 7px 0 7px 22px;
  font-size: 14px;
  line-height: 1.5;
  color: #cbcbc7;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}
.wplss-pillar__list li:last-child { border-bottom: none; }
.wplss-pillar__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: #fab512;
  border-radius: 50%;
}
.wplss-pillar code,
.wplss-faq code,
.wplss-plan__list code {
  background: rgba(250, 181, 18, 0.1);
  color: #fab512;
  padding: 1px 6px;
  border-radius: 4px;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 12.5px;
}

/* === Aligné Google === */
.wplss-aligned {
  background:
    radial-gradient(ellipse at top, rgba(250, 181, 18, 0.05), transparent 60%),
    #050505;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}
.wplss-aligned__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.wplss-aligned__inner .wplss-eyebrow { justify-content: center; }
.wplss-aligned__inner em {
  color: #fab512;
  font-style: normal;
  font-weight: 600;
}

/* === Pricing grid === */
.wplss-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.wplss-plan {
  position: relative;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.wplss-plan--core {
  border-color: rgba(250, 181, 18, 0.4);
  box-shadow: 0 0 0 1px rgba(250, 181, 18, 0.15), 0 24px 60px rgba(250, 181, 18, 0.08);
}
.wplss-plan--pro {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.12);
}
.wplss-plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f5f3ef;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
}
.wplss-plan__head { margin-bottom: 20px; }
.wplss-plan__name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9a9a9a;
  margin: 0 0 6px;
}
.wplss-plan__price {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #f5f3ef;
  margin: 0 0 8px;
}
.wplss-plan--core .wplss-plan__price { color: #fab512; }
.wplss-plan__sub {
  font-size: 13.5px;
  line-height: 1.5;
  color: #9a9a9a;
  margin: 0;
}
.wplss-plan__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.wplss-plan__list li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #cbcbc7;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}
.wplss-plan__list li:last-child { border-bottom: none; }
.wplss-plan__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: #fab512;
  font-weight: 700;
  font-size: 14px;
}
.wplss-plan--pro .wplss-plan__list li::before {
  color: #6a6a6a;
}
.wplss-plan__cta { width: 100%; justify-content: center; }
.wplss-plan__note {
  text-align: center;
  font-size: 12px;
  color: #888;
  margin: 12px 0 0;
  line-height: 1.5;
}

/* Notify form */
.wplss-notify {
  margin-top: auto;
}
.wplss-notify__label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #f5f3ef;
  margin-bottom: 10px;
}
.wplss-notify__row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.wplss-notify__input {
  flex: 1;
  min-width: 180px;
  padding: 12px 14px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #f5f3ef;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s;
}
.wplss-notify__input:focus {
  border-color: rgba(250, 181, 18, 0.5);
}
.wplss-notify__input::placeholder { color: #6a6a6a; }
.wplss-notify__btn { white-space: nowrap; }
.wplss-notify__status {
  font-size: 13px;
  min-height: 18px;
  margin: 8px 0 0;
  color: #9a9a9a;
}
.wplss-notify__legal {
  font-size: 11.5px;
  color: #6a6a6a;
  margin: 8px 0 0;
  line-height: 1.5;
}

/* === FAQ === */
.wplss-faq {
  max-width: 820px;
  margin: 0 auto;
}
.wplss-faq details {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  margin-bottom: 10px;
  background: #111;
  transition: border-color 0.15s;
  overflow: hidden;
}
.wplss-faq details[open] { border-color: rgba(250, 181, 18, 0.45); }
.wplss-faq summary {
  cursor: pointer;
  padding: 18px 50px 18px 22px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  list-style: none;
  position: relative;
  color: #f5f3ef;
}
.wplss-faq summary::-webkit-details-marker { display: none; }
.wplss-faq summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: #fab512;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
}
.wplss-faq details[open] summary::after { content: '−'; }
.wplss-faq details p {
  padding: 0 22px 18px;
  color: #b0b0ac;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

/* === Personas === */
.wplss-personas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.wplss-persona {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 26px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.wplss-persona:hover {
  border-color: rgba(250, 181, 18, 0.3);
  transform: translateY(-2px);
}
.wplss-persona__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: #fab512;
}
.wplss-persona p {
  font-size: 14px;
  line-height: 1.6;
  color: #cbcbc7;
  margin: 0;
}

/* === Final CTA === */
.wplss-final {
  background:
    radial-gradient(ellipse at center, rgba(250, 181, 18, 0.06), transparent 60%),
    #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.wplss-final__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.wplss-final__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 24px 0 18px;
}
.wplss-final__note {
  font-size: 13px;
  color: #9a9a9a;
  margin: 0;
}
.wplss-final__note a { color: #fab512; }

/* === Mobile === */
@media (max-width: 640px) {
  .wplss-hero__title { font-size: clamp(24px, 6vw, 32px); }
  .wplss-hero__lead { font-size: 15px; }
  .wplss-hero__meta { gap: 12px; font-size: 12px; }
  .wplss-pillars,
  .wplss-personas,
  .wplss-pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* === Feature cards (nouveautés 2.10.1) === */
.wplss-feature {
  position: relative;
  padding-top: 38px;
}
.wplss-feature__badge {
  position: absolute;
  top: 18px;
  left: 26px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fab512;
  padding: 4px 10px;
  background: rgba(250, 181, 18, 0.1);
  border: 1px solid rgba(250, 181, 18, 0.3);
  border-radius: 999px;
}
.wplss-feature__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: #cbcbc7;
  margin: 0;
}
.wplss-feature__desc code {
  background: rgba(250, 181, 18, 0.1);
  color: #fab512;
  padding: 1px 6px;
  border-radius: 4px;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 12.5px;
}

/* ============================================================
   FAQ — accordéon <details>/<summary>
============================================================ */
.faq-list{max-width:720px;margin:40px auto 0}
.faq-item{border-bottom:1px solid rgba(255,255,255,.08)}
.faq-item:first-child{border-top:1px solid rgba(255,255,255,.08)}
.faq-q{display:flex;justify-content:space-between;align-items:flex-start;gap:16px;padding:20px 0;cursor:pointer;font-size:1rem;font-weight:600;line-height:1.4;list-style:none;color:var(--fg)}
.faq-q::-webkit-details-marker{display:none}
.faq-q::after{content:'+';flex-shrink:0;font-size:1.5rem;font-weight:300;color:var(--muted-2);line-height:1;transition:transform .2s ease}
details[open]>.faq-q::after{transform:rotate(45deg)}
.faq-a{padding:0 0 20px;font-size:15px;line-height:1.65;color:var(--muted-2)}

/* ============================================================
   CAS CLIENTS — grille 2 colonnes
============================================================ */
.cs-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:40px}
.cs-card{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:16px;padding:28px 32px}
.cs-card__sector{display:inline-block;font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:#fab512;margin-bottom:20px}
.cs-card__row{display:grid;gap:16px;margin-bottom:20px}
.cs-card__label{font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--muted-2);margin-bottom:4px}
.cs-card__text{font-size:14px;line-height:1.55}
.cs-card__result{padding:16px 20px;background:rgba(250,181,18,.06);border:1px solid rgba(250,181,18,.2);border-radius:10px}
.cs-card__metric{font-size:22px;font-weight:800;font-family:'Manrope',sans-serif;color:#fab512;margin-bottom:4px}
@media(max-width:640px){.cs-grid{grid-template-columns:1fr}.cs-card{padding:20px}}

/* ============================================================
   COCON ARTICLES — composants partagés
============================================================ */

/* ── Article diagram ── */
figure.article__diagram{margin:2.5rem 0}
figure.article__diagram svg{width:100%;max-width:720px;height:auto;display:block;margin:0 auto;border-radius:12px;border:1px solid rgba(255,255,255,.06);background:#111}
figure.article__diagram figcaption,.article__diagram figcaption{display:block;margin-top:.75rem;font-size:13px;color:#9a9a9a;text-align:center;line-height:1.5;font-style:normal}

/* ── Callout (encart doré) ── */
.callout{background:rgba(250,181,18,.07);border:1px solid rgba(250,181,18,.28);border-left:3px solid #fab512;border-radius:12px;padding:28px 32px;margin:2.5rem 0}
.callout__title{font-family:'Manrope',sans-serif;font-size:.95rem;font-weight:700;color:#fab512;margin-bottom:12px}
.callout p{margin:0 0 14px;font-size:15px;line-height:1.65;color:rgba(245,243,239,.85)}
.callout p:last-of-type{margin-bottom:0}
.callout a{color:#fab512}
.callout a:hover{text-decoration:underline}
.callout__cta{display:inline-flex;align-items:center;gap:8px;margin-top:18px}
@media(max-width:640px){.callout{padding:20px 18px}}

/* ── End CTA ── */
.end-cta{background:linear-gradient(135deg,#111 0%,#141208 100%);border:1px solid rgba(250,181,18,.15);border-radius:16px;padding:40px;text-align:center;margin:3rem 0}
.end-cta h2{font-family:'Manrope',sans-serif;font-size:1.45rem;font-weight:800;letter-spacing:-.03em;margin-bottom:12px;color:#f5f3ef}
.end-cta p{font-size:15px;color:#9a9a9a;margin-bottom:24px;max-width:480px;margin-left:auto;margin-right:auto;line-height:1.65}
.end-cta__btns{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
@media(max-width:640px){.end-cta{padding:28px 20px}}

/* ── Article related ── */
.article-related{margin:3rem 0 1rem;padding-top:2rem;border-top:1px solid rgba(255,255,255,.08)}
aside.article-related{margin:0;padding:2.5rem 0 0}
.article-related__title{font-family:'Manrope',sans-serif;font-size:.68rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:#fab512;margin-bottom:14px}
.article-related a{display:block;font-size:15px;color:rgba(245,243,239,.75);text-decoration:none;padding:9px 0;border-bottom:1px solid rgba(255,255,255,.05);transition:color .18s}
.article-related a:hover{color:#fab512}
.article-related a:last-child{border-bottom:none}

/* ── FAQ — pattern BEM (__q / __a) ── */
.faq{max-width:720px;margin:2.5rem 0}
.faq__item{border-bottom:1px solid rgba(255,255,255,.08);padding:18px 0}
.faq__item:first-child{border-top:1px solid rgba(255,255,255,.08)}
.faq__q{font-size:1rem;font-weight:600;line-height:1.4;color:#f5f3ef;margin-bottom:8px}
.faq__a{font-size:15px;line-height:1.65;color:#9a9a9a;margin:0}
.faq__a a{color:#fab512;text-decoration:none}
.faq__a a:hover{text-decoration:underline}

/* ── FAQ — pattern tiret simple sur divs (pas details/summary) ── */
/* Le ::after '+' est conçu pour <summary> ; on le masque sur les divs */
div.faq-q::after{display:none}
.faq-q{cursor:default}
.faq-a{display:block}

/* ── CS card : sous-classes pour articles cocon ── */
.cs-card{border-left:3px solid #fab512}
.cs-card__header{display:flex;align-items:center;gap:10px;margin-bottom:20px;flex-wrap:wrap}
.cs-card__body>p{font-size:15px;line-height:1.65;color:rgba(245,243,239,.82);margin-bottom:14px}
.cs-card__body>p:last-of-type{margin-bottom:0}
.cs-tag{display:inline-block;font-size:10px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;background:#fab512;color:#0a0a0a;padding:3px 10px;border-radius:20px;line-height:1.8}
.cs-sector{font-size:13px;color:#9a9a9a}
.cs-results{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-top:24px}
.cs-result{background:rgba(250,181,18,.06);border:1px solid rgba(250,181,18,.18);border-radius:10px;padding:16px 18px}
.cs-result__value{display:block;font-family:'Manrope',sans-serif;font-size:1.65rem;font-weight:800;color:#fab512;letter-spacing:-.03em;line-height:1;margin-bottom:6px}
.cs-result__label{display:block;font-size:12px;line-height:1.5;color:#9a9a9a}
@media(max-width:580px){.cs-results{grid-template-columns:1fr 1fr}}
@media(max-width:400px){.cs-results{grid-template-columns:1fr}}

/* ============================================================
   BLOG COVERS - cocon automatisation PME
============================================================ */
.blog-cover{position:relative;display:block!important;padding:0!important;background:#0d0d0d;overflow:hidden}
.blog-cover::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(250,181,18,.12),transparent 38%),linear-gradient(180deg,rgba(255,255,255,.035),transparent 45%);opacity:.95;pointer-events:none}
.blog-cover__svg{position:relative;z-index:1;display:block;width:100%;height:100%;min-height:100%;transform:scale(1);transition:transform .35s ease,opacity .35s ease}
.blog-card:hover .blog-cover__svg{transform:scale(1.025);opacity:.98}
.blog-cover__label{position:absolute;left:24px;bottom:22px;z-index:2;display:inline-flex;align-items:center;min-height:30px;padding:7px 12px;border:1px solid rgba(250,181,18,.45);border-radius:999px;background:rgba(10,10,10,.72);color:#fab512;font-family:'Manrope',sans-serif;font-size:12px;font-weight:800;line-height:1;text-transform:uppercase;letter-spacing:0;box-shadow:0 16px 34px rgba(0,0,0,.32)}
.blog-cover__grid{fill:none;stroke:rgba(255,255,255,.06);stroke-width:2}
.blog-cover__panel,.blog-cover__folder,.blog-cover__funnel{fill:rgba(255,255,255,.045);stroke:rgba(255,255,255,.18);stroke-width:4}
.blog-cover__line{fill:none;stroke:rgba(245,243,239,.78);stroke-width:12;stroke-linecap:round;stroke-linejoin:round}
.blog-cover__accent{fill:none;stroke:#fab512;stroke-width:14;stroke-linecap:round;stroke-linejoin:round}
.blog-cover__check{fill:none;stroke:#fab512;stroke-width:16;stroke-linecap:round;stroke-linejoin:round}
.blog-cover__node{fill:rgba(250,181,18,.1);stroke:#fab512;stroke-width:5}
.blog-cover__node--large{fill:rgba(250,181,18,.07)}
.blog-cover__pin{fill:#fab512;stroke:rgba(10,10,10,.75);stroke-width:8}
.blog-cover__bar{fill:rgba(250,181,18,.22);stroke:rgba(250,181,18,.65);stroke-width:4}
.blog-cover__tail{fill:rgba(255,255,255,.045);stroke:rgba(255,255,255,.18);stroke-width:4;stroke-linejoin:round}
.blog-cover--devis::before{background:linear-gradient(135deg,rgba(250,181,18,.11),transparent 40%),linear-gradient(45deg,transparent,rgba(91,192,190,.08))}
.blog-cover--reporting::before{background:linear-gradient(135deg,rgba(91,192,190,.13),transparent 42%),linear-gradient(180deg,rgba(250,181,18,.08),transparent 62%)}
.blog-cover--support::before{background:linear-gradient(135deg,rgba(250,181,18,.1),transparent 38%),linear-gradient(45deg,rgba(255,255,255,.04),transparent 58%)}
.blog-cover--leads::before{background:linear-gradient(135deg,rgba(250,181,18,.13),transparent 44%),linear-gradient(45deg,transparent,rgba(91,192,190,.07))}
.blog-cover--connect::before{background:linear-gradient(135deg,rgba(91,192,190,.11),transparent 40%),linear-gradient(180deg,rgba(250,181,18,.09),transparent 58%)}
.blog-cover--docs::before{background:linear-gradient(135deg,rgba(255,255,255,.05),transparent 38%),linear-gradient(45deg,transparent,rgba(250,181,18,.12))}
.blog-cover--tools::before{background:linear-gradient(135deg,rgba(250,181,18,.12),transparent 42%),linear-gradient(45deg,rgba(91,192,190,.08),transparent 62%)}
.blog-cover--local-seo::before{background:linear-gradient(135deg,rgba(250,181,18,.11),transparent 42%),linear-gradient(45deg,transparent,rgba(91,192,190,.1))}
.blog-cover--governance::before{background:linear-gradient(135deg,rgba(91,192,190,.12),transparent 40%),linear-gradient(180deg,rgba(250,181,18,.08),transparent 60%)}`r`n.blog-cover--search-agent::before{background:linear-gradient(135deg,rgba(250,181,18,.12),transparent 42%),linear-gradient(45deg,rgba(91,192,190,.1),transparent 62%)}
@media(max-width:640px){.blog-cover__label{left:18px;bottom:18px;font-size:11px;min-height:28px;padding:7px 10px}.blog-cover__line{stroke-width:14}}

/* ============================================================
   PROCESS STEPS — page Odoo et pages pilier
============================================================ */
.process-steps{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin:2.5rem 0}
.process-step{background:rgba(255,255,255,.035);border:1px solid rgba(255,255,255,.07);border-radius:14px;padding:28px 28px 28px 24px;display:flex;gap:20px;align-items:flex-start}
.process-step__num{flex-shrink:0;width:40px;height:40px;border-radius:50%;background:rgba(250,181,18,.12);border:1px solid rgba(250,181,18,.35);display:flex;align-items:center;justify-content:center;font-family:'Manrope',sans-serif;font-size:1rem;font-weight:800;color:#fab512;line-height:1}
.process-step__content{min-width:0}
.process-step__title{font-family:'Manrope',sans-serif;font-size:1rem;font-weight:700;color:#f5f3ef;margin:0 0 8px}
.process-step__desc{font-size:14px;line-height:1.6;color:#9a9a9a;margin:0}
.process-step__price{display:inline-block;margin-top:10px;font-family:'Manrope',sans-serif;font-size:13px;font-weight:700;color:#fab512;background:rgba(250,181,18,.1);border:1px solid rgba(250,181,18,.25);border-radius:20px;padding:4px 12px}
@media(max-width:680px){.process-steps{grid-template-columns:1fr}}
@media(max-width:480px){.process-step{flex-direction:column;gap:12px}.process-step__num{width:36px;height:36px;font-size:.9rem}}

/* ============================================================
   ODOO LANDING - page PME Centre-Val de Loire
============================================================ */
.odoo-hero-proof{display:flex;flex-wrap:wrap;gap:10px;margin:28px 0 34px}
.odoo-hero-proof span{display:inline-flex;align-items:center;min-height:38px;padding:9px 14px;border:1px solid rgba(250,181,18,.32);border-radius:999px;background:rgba(250,181,18,.07);color:#f5f3ef;font-size:13px;font-weight:700}
.odoo-offer{display:grid;grid-template-columns:1fr 1.15fr;gap:clamp(28px,4vw,56px);align-items:center;background:#111;border:1px solid rgba(250,181,18,.24);border-radius:18px;padding:clamp(28px,5vw,56px)}
.odoo-offer__title{font-family:'Manrope',sans-serif;font-size:clamp(28px,4vw,48px);font-weight:800;line-height:1.05;margin-bottom:18px;color:#f5f3ef}
.odoo-offer__lead{font-size:17px;line-height:1.65;color:#cfc9bd;margin-bottom:26px;max-width:620px}
.odoo-deliverables{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.odoo-deliverables div,.odoo-migration-card,.odoo-price-card,.odoo-case__metrics div{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:12px;padding:20px}
.odoo-deliverables strong,.odoo-migration-card strong,.odoo-price-card span{display:block;font-family:'Manrope',sans-serif;font-size:13px;font-weight:800;color:#fab512;margin-bottom:8px;text-transform:uppercase;letter-spacing:0}
.odoo-deliverables span,.odoo-migration-card span,.odoo-price-card p,.odoo-case__metrics span{display:block;font-size:14px;line-height:1.55;color:#aaa}
.odoo-migration-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-bottom:24px}
.odoo-links{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px}
.odoo-links a{display:inline-flex;align-items:center;min-height:42px;padding:10px 14px;border:1px solid rgba(255,255,255,.1);border-radius:999px;background:rgba(255,255,255,.03);color:#fab512;font-size:13px;font-weight:700;transition:border-color .2s ease,background .2s ease}
.odoo-links a:hover{border-color:#fab512;background:rgba(250,181,18,.08)}
.odoo-price-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.odoo-price-card strong{display:block;font-family:'Manrope',sans-serif;font-size:clamp(22px,2.4vw,30px);font-weight:800;line-height:1.05;color:#f5f3ef;margin-bottom:14px}
.odoo-case{display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(28px,4vw,56px);align-items:center;background:#111;border:1px solid rgba(255,255,255,.09);border-left:3px solid #fab512;border-radius:18px;padding:clamp(28px,5vw,56px)}
.odoo-case h2{font-family:'Manrope',sans-serif;font-size:clamp(28px,4vw,46px);font-weight:800;line-height:1.08;margin-bottom:18px;color:#f5f3ef}
.odoo-case p{font-size:16px;line-height:1.7;color:#cfc9bd}
.odoo-case__metrics{display:grid;gap:14px}
.odoo-case__metrics strong{display:block;font-family:'Manrope',sans-serif;font-size:32px;font-weight:800;color:#fab512;line-height:1;margin-bottom:8px}
@media(max-width:980px){.odoo-offer,.odoo-case{grid-template-columns:1fr}.odoo-migration-grid,.odoo-price-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.odoo-deliverables,.odoo-migration-grid,.odoo-price-grid{grid-template-columns:1fr}.odoo-offer,.odoo-case{padding:24px 18px}.odoo-hero-proof span{width:100%;justify-content:center}}