@charset "UTF-8";
/* CSS Document */

/* ------------------------------------------------------------------
   VARIABLES & BASE
------------------------------------------------------------------ */

:root{
  --bg: #050505;
  --bg-alt: #101010;
  --text: #d4d7d2;
  --muted: #8a8d88;
  --accent: #f15a24;     /* orange logo approximatif -> remplace par ton code */
  --accent-soft: rgba(241,90,36,0.18);
  --border: #292929;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "YourScriptFont", cursive; /* ta calligraphie BessinPhoto si tu veux */
}

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

html, body{
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  font-size: 16px;
}

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

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

h1, h2, h3{
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0 0 0.5em;
}

p{
  margin: 0 0 1em;
  line-height: 1.6;
}

/* ------------------------------------------------------------------
   HEADER
------------------------------------------------------------------ */

.site-header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: #000;               /* fond noir simple */
  border-bottom: 1px solid var(--border);
}

.header-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.1rem 1.5rem;    /* header relativement fin */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img{
  height: 42px;                 /* logo plus petit = header moins haut */
}

/* NAV */

.main-nav ul{
  display: flex;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a{
  font-size: 0.85rem;           /* typo menu réduite */
  text-transform: uppercase;
  letter-spacing: 0.14em;
  position: relative;
  display: inline-flex;
  align-items: center;          /* alignement vertical avec le logo */
}

.main-nav a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.main-nav a:hover::after{
  width: 100%;
}

/* BURGER */

.nav-toggle{
  display: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
	position: relative; z-index: 50;
}

.nav-toggle span{
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section{
  padding: 3rem 0;
}

/* Bande IA dans le header */

.ai-header-visual{
  position: relative;
  width: 100%;
  height: 60px;                 /* hauteur de la bande animée */
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid #111;
}

.ai-header-visual canvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ------------------------------------------------------------------
   HERO
------------------------------------------------------------------ */

.hero{
  border-bottom: 1px solid var(--border);
  background: #000;
}

.hero-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.3rem 1.5rem 3rem;  /* moins de vide */
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-kicker{
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero h1{
  font-size: clamp(1.9rem, 3.2vw, 2.6rem); /* moins massif */
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-sub{
  max-width: 34rem;
  color: var(--muted);
}

.script{
  font-family: var(--font-script);
  font-size: 1.1em;
  color: #fff;
}

.btn-primary{
  display: inline-block;
  margin-top: 1.8rem;
  padding: 0.9rem 1.9rem;
  border: 1px solid var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.1s ease;
}

.btn-primary:hover{
  background: var(--accent);
  color: #000;
  transform: translateY(-1px);
}

/* ------------------------------------------------------------------
   VISUEL IA (HERO DROITE)
------------------------------------------------------------------ */

.hero-visual{
  position: relative;
  min-height: 260px;
  border: 1px solid var(--border);
  background: #050505;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 2.4rem;
  overflow: hidden;
}

/* Chaîne IA : verticale sur tous les écrans */
.ia-chain{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ia-node{
  border: 1px solid var(--accent);
  padding: 0.7rem 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: #000;
  box-shadow: 0 0 10px rgba(241,90,36,0.25);
}

.ia-icon{
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
}

.ia-label{
  white-space: nowrap;
}

/* liens animés verticaux entre les blocs */
.ia-link{
  width: 3px;
  height: 46px;
  background: linear-gradient(
    180deg,
    rgba(241,90,36,0.05),
    var(--accent),
    rgba(241,90,36,0.05)
  );
  position: relative;
  overflow: hidden;
}

.ia-link::after{
  content: "";
  position: absolute;
  top: -26px;
  left: -4px;
  width: 11px;
  height: 28px;
  background: #fff;
  opacity: 0.4;
  filter: blur(5px);
  animation: iaflowv 1.4s linear infinite;
}

@keyframes iaflowv{
  0%{ transform: translateY(0); }
  100%{ transform: translateY(70px); }
}

/* légende sous le bloc */
.hero-caption{
  position: static;
  margin-top: 1.4rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

/* ------------------------------------------------------------------
   SECTIONS GÉNÉRALES
------------------------------------------------------------------ */

section{
  border-bottom: 1px solid var(--border);
}

.intro,
.services,
.portfolio,
.contact{
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.section-header{
  margin-bottom: 2rem;
}

.section-header h2{
  font-size: 1.6rem;
}

.section-header p{
  color: var(--muted);
}

/* INTRO */

.intro-inner{
  max-width: 52rem;
}

/* SERVICES */

.services-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
}

.service-card{
  border: 1px solid var(--border);
  padding: 1.4rem 1.3rem;
  background: var(--bg-alt);
}

.service-card h3{
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

/* PORTFOLIO */

.portfolio-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.1rem;
}

.portfolio-item{
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.portfolio-item .thumb{
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

.portfolio-item .label{
  padding: 0.55rem 0.7rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

/* CONTACT */

.contact-form{
  max-width: 640px;
}

.form-row{
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.form-field{
  flex: 1;
  display: flex;
  flex-direction: column;
}

label{
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}

input,
textarea{
  background: #050505;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.6rem 0.7rem;
  font-family: inherit;
  font-size: 0.95rem;
}

input:focus,
textarea:focus{
  outline: 1px solid var(--accent);
}

/* FOOTER */

.site-footer{
  padding: 1.4rem 1.5rem 1.8rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

/* ------------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------------ */

@media (max-width: 900px){
  .hero-inner{
    grid-template-columns: 1fr;
  }

  .hero-visual{
    order: -1;
    margin-bottom: 1.5rem;
  }

  .services-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .portfolio-grid{
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
}

@media (max-width: 700px){
  .header-inner{
    padding-inline: 1rem;
  }

  .nav-toggle{
    display: block;
  }

  .main-nav{
    position: absolute;
    right: 0;
    top: 100%;
    background: #000;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    transition: max-height 0.2s ease;
	  z-index: 45;
  }

  .main-nav ul{
    flex-direction: column;
    padding: 0.75rem 1.25rem 1rem;
    gap: 0.8rem;
  }

  .main-nav.open{
    max-height: 260px;
  }

  .services-grid{
    grid-template-columns: 1fr;
  }

  .portfolio-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .form-row{
    flex-direction: column;
  }
}

@media (max-width: 480px){
  .portfolio-grid{
    grid-template-columns: 1fr;
  }
}
.whatsapp-header img{
  height: 22px;
  margin-right: 1rem;
  opacity: 0.85;
  transition: opacity .2s;
}
.whatsapp-header img:hover{
  opacity: 1;
}
/* Décalage automatique des ancres à cause du header fixe */
section {
  scroll-margin-top: 100px;
}
.services-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.service-card {
  position: relative;
  padding: 1.75rem 1.75rem 2rem;
  background: #101010;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(120deg, rgba(255,255,255,0.18), rgba(255,255,255,0.02)) border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.16);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(circle at 80% 120%, rgba(255,255,255,0.08), transparent 55%);
}

/* Teintes légèrement différentes par service (reste sobre) */
.service-card--ai .service-icon {
  color: #facc6b;
}

.service-card--seo .service-icon {
  color: #7dd3fc;
}

.service-card--ux .service-icon {
  color: #a5b4fc;
}

.service-card--modules .service-icon {
  color: #f9a8d4;
}

.service-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.service-card p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}
/* PAGE SERVICES
   ------------------------------------------------------------------ */
.page-services .hero-services {
  padding: 4rem 0 2.5rem;
}

.page-services .hero-services .eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  opacity: 0.7;
  margin-bottom: 0.8rem;
}

.page-services .hero-services h1 {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  margin-bottom: 1rem;
}

.page-services .hero-services .lead {
  font-size: 1.02rem;
  max-width: 52rem;
  margin-bottom: 0.8rem;
}

/* Modes d’accompagnement */
.section-pricing-modes {
  padding: 3rem 0;
}

.pricing-modes-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .pricing-modes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.mode-card {
  border-radius: 18px;
  padding: 1.75rem 1.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
}

.mode-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.mode-card p {
  margin-bottom: 0.9rem;
}

.mode-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.94rem;
}

/* Services détaillés */
.section-services-detailed {
  padding: 3rem 0 2rem;
}

.service-detail {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

.service-detail:first-of-type {
  border-top: none;
  padding-top: 0;
}

.service-detail h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.service-detail p {
  margin-bottom: 0.8rem;
  max-width: 60rem;
}

.service-detail ul {
  margin: 0 0 0.8rem;
  padding-left: 1.2rem;
  max-width: 55rem;
  font-size: 0.95rem;
}

.service-detail .service-target {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Bloc CTA en bas de page */
.section-contact-cta {
  padding: 3rem 0 4rem;
  text-align: center;
}

.section-contact-cta p {
  max-width: 40rem;
  margin: 0 auto 0.9rem;
}

/* Bouton secondaire + zone “plus de détails” sur l’index
   ------------------------------------------------------------------ */
.services-more {
  margin-top: 1.5rem;
  text-align: right; /* ou center selon ton layout */
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: inherit;
  text-decoration: none;
  gap: 0.4rem;
  transition: background 0.2s ease-out, border-color 0.2s ease-out, transform 0.15s ease-out;
}

.btn-secondary::after {
  content: "›";
  font-size: 1rem;
  transform: translateY(1px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}
/* PAGE SERVICES
   ------------------------------------------------------------------ */
.page-services .hero-services {
  padding: 4rem 0 2.5rem;
}

.page-services .hero-services .eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  opacity: 0.7;
  margin-bottom: 0.8rem;
}

.page-services .hero-services h1 {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  margin-bottom: 1rem;
}

.page-services .hero-services .lead {
  font-size: 1.02rem;
  max-width: 52rem;
  margin-bottom: 0.8rem;
}

/* Modes d’accompagnement */
.section-pricing-modes {
  padding: 3rem 0;
}

.pricing-modes-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .pricing-modes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.mode-card {
  border-radius: 18px;
  padding: 1.75rem 1.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
}

.mode-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.mode-card p {
  margin-bottom: 0.9rem;
}

.mode-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.94rem;
}

/* Services détaillés */
.section-services-detailed {
  padding: 3rem 0 2rem;
}

.service-detail {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

.service-detail:first-of-type {
  border-top: none;
  padding-top: 0;
}

.service-detail h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.service-detail p {
  margin-bottom: 0.8rem;
  max-width: 60rem;
}

.service-detail ul {
  margin: 0 0 0.8rem;
  padding-left: 1.2rem;
  max-width: 55rem;
  font-size: 0.95rem;
}

.service-detail .service-target {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Bloc CTA en bas de page */
.section-contact-cta {
  padding: 3rem 0 4rem;
  text-align: center;
}

.section-contact-cta p {
  max-width: 40rem;
  margin: 0 auto 0.9rem;
}

/* Bouton secondaire + zone “plus de détails” sur l’index
   ------------------------------------------------------------------ */
.services-more {
  margin-top: 1.5rem;
  text-align: right; /* ou center selon ton layout */
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: inherit;
  text-decoration: none;
  gap: 0.4rem;
  transition: background 0.2s ease-out, border-color 0.2s ease-out, transform 0.15s ease-out;
}

.btn-secondary::after {
  content: "›";
  font-size: 1rem;
  transform: translateY(1px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}
/* ACCENTS PAGE SERVICES
   ------------------------------------------------------------------ */

.page-services .hero-services{
  position: relative;
  padding-top: 4.5rem;
  padding-bottom: 3rem;
  background:
    radial-gradient(circle at 0 0, var(--accent-soft), transparent 55%);
}

.page-services .hero-services .eyebrow{
  color: var(--accent);
  font-weight: 600;
  opacity: 1;
}

.page-services .hero-services h1{
  position: relative;
}

/* petit filet orange sous le H1 */
.page-services .hero-services h1::after{
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin-top: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(241,90,36,0.1));
}
/* Petit marqueur orange avant chaque titre de service détaillé */
.section-services-detailed .service-detail h3{
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-services-detailed .service-detail h3::before{
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 1px rgba(241,90,36,0.25);
}
/* Légère mise en avant des cartes de modes d’accompagnement */
.section-pricing-modes .mode-card{
  background:
    linear-gradient(135deg, rgba(241,90,36,0.12), rgba(255,255,255,0.02));
  border-color: rgba(241,90,36,0.3);
}

.section-pricing-modes .mode-card h3{
  color: #fff;
}
/* --------------------------------------------------
   GÉNÉRIQUE PAGE SERVICES
-------------------------------------------------- */

/* conteneur & sections si pas déjà définis */
.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section{
  padding: 3rem 0;
}

/* HERO SERVICES */
.page-services .hero-services{
  position: relative;
  padding-top: 4.5rem;
  padding-bottom: 3rem;
  background:
    radial-gradient(circle at 0 0, var(--accent-soft, rgba(241,90,36,0.15)), transparent 55%);
}

.page-services .hero-services .eyebrow{
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--accent, #f15a24);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.page-services .hero-services h1{
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  margin-bottom: 1rem;
  position: relative;
}

/* filet orange sous le H1 */
.page-services .hero-services h1::after{
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin-top: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent, #f15a24), rgba(241,90,36,0.1));
}

.page-services .hero-services .lead{
  font-size: 1.02rem;
  max-width: 52rem;
  margin-bottom: 0.8rem;
}

/* --------------------------------------------------
   MODES D’ACCOMPAGNEMENT
-------------------------------------------------- */

.section-pricing-modes{
  padding: 3rem 0;
}

.pricing-modes-grid{
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px){
  .pricing-modes-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.mode-card{
  border-radius: 18px;
  padding: 1.75rem 1.9rem;
  border: 1px solid rgba(241,90,36,0.3);
  background: linear-gradient(135deg, rgba(241,90,36,0.12), rgba(255,255,255,0.02));
  backdrop-filter: blur(10px);
}

.mode-card h3{
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.mode-card p{
  margin-bottom: 0.9rem;
}

.mode-card ul{
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.94rem;
}

/* --------------------------------------------------
   SERVICES DÉTAILLÉS + BADGES
-------------------------------------------------- */

.section-services-detailed{
  padding: 3rem 0 2rem;
}

.service-detail{
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 0;
}

.service-detail:first-of-type{
  border-top: none;
  padding-top: 0;
}

/* en-tête avec badge + titre */
.service-detail-head{
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

/* badge générique */
.service-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border: 1px solid rgba(255,255,255,0.5);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(circle at 80% 120%, rgba(0,0,0,0.5), transparent 55%);
  box-shadow: 0 10px 25px rgba(0,0,0,0.55);
}

/* variantes de couleur */
.service-badge--ia{
  color: var(--accent, #f15a24);
}

.service-badge--seo{
  color: #7dd3fc;
}

.service-badge--ux{
  color: #a5b4fc;
}

.service-badge--ia-plus{
  color: #f9a8d4;
}

.service-detail h3{
  margin: 0;
}

.service-detail p{
  margin-bottom: 0.8rem;
  max-width: 60rem;
}

.service-detail ul{
  margin: 0 0 0.8rem;
  padding-left: 1.2rem;
  max-width: 55rem;
  font-size: 0.95rem;
}

.service-detail .service-target{
  font-size: 0.9rem;
  opacity: 0.9;
}

/* --------------------------------------------------
   CTA BAS DE PAGE
-------------------------------------------------- */

.section-contact-cta{
  padding: 3rem 0 4rem;
  text-align: center;
}

.section-contact-cta p{
  max-width: 40rem;
  margin: 0 auto 0.9rem;
}
@media (min-width: 1200px) {
  .services-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2rem;
  }
}
/* -------- Page consultant IA : alignement à gauche propre -------- */

.section-consultant-ia .service-detail {
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: left !important;
}

.section-consultant-ia .service-detail:first-of-type {
  border-top: none;
}

/* Zone titre + badge */
.section-consultant-ia .service-detail-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-align: left !important;
}

/* Badge remis à plat */
.section-consultant-ia .service-badge {
  position: static !important;
  transform: none !important;
  writing-mode: horizontal-tb !important;

  display: inline-block !important;
  padding: 0.25rem 0.75rem !important;

  background: none !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
  border-radius: 999px !important;

  font-size: 0.7rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;

  opacity: 0.9;
  margin: 0 !important;
}

/* Supprimer les vieux effets */
.section-consultant-ia .service-badge::before,
.section-consultant-ia .service-badge::after {
  content: none !important;
}
/* Bouton CTA page consultant IA */
.page-consultant-ia .btn-ia {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  border: 1px solid #f15a24;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;

  color: #f15a24;
  background: transparent;

  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.page-consultant-ia .btn-ia:hover {
  background: #f15a24;
  color: #000;
  transform: translateY(-1px);
}
/* ==== PAGE CONSULTANT IA : TITRES + BADGES ALIGNÉS À GAUCHE ==== */

/* ==== PAGE CONSULTANT IA : TITRES + BADGES ALIGNÉS À GAUCHE ==== */

/* Bloc général */
.page-consultant-ia .section-consultant-ia .service-detail {
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: left !important;
}

.page-consultant-ia .section-consultant-ia .service-detail:first-of-type {
  border-top: none;
}

/* En-tête : badge AU-DESSUS du h3, tout à gauche */
.page-consultant-ia .section-consultant-ia .service-detail-head {
  display: block !important;
  margin-bottom: 1rem;
  text-align: left !important;
}

/* On remet le badge à zéro, puis on le stylise proprement */
.page-consultant-ia .section-consultant-ia .service-badge {
  all: unset;
  display: inline-block !important;
  padding: 0.25rem 0.75rem !important;
  margin: 0 0 0.5rem 0 !important;

  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,0.35) !important;

  font-size: 0.7rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  opacity: 0.9;
}

/* On tue complètement les anciens effets ronds */
.page-consultant-ia .section-consultant-ia .service-badge::before,
.page-consultant-ia .section-consultant-ia .service-badge::after {
  content: none !important;
}

/* On enlève aussi le petit rond orange devant le h3 s'il existe */
.page-consultant-ia .section-consultant-ia .service-detail-head h3::before {
  content: none !important;
}
/* Eyebrow orange spécifique IA */
.eyebrow-ia {
  color: #f15a24;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Titre impactant section IA */
.titre-ia-important {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.page-actualites-ia .hero-ia-news {
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.page-actualites-ia .section-intro {
  max-width: 48rem;
  margin-bottom: 1.5rem;
}

.page-actualites-ia .ia-articles-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .page-actualites-ia .ia-articles-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
}

.page-actualites-ia .ia-article-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1rem;
  padding: 1.2rem 1.4rem;
}

.page-actualites-ia .ia-article-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.page-actualites-ia .ia-article-card .ia-article-meta {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 0.6rem;
}

/* Grille des flux */
.page-actualites-ia .ia-feeds-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .page-actualites-ia .ia-feeds-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

.page-actualites-ia .ia-feed-block {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1rem;
  padding: 1.2rem 1.4rem;
}

.page-actualites-ia .ia-feed-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}

.page-actualites-ia .ia-feed-list li {
  margin-bottom: 0.4rem;
}

.page-actualites-ia .ia-feed-list a {
  text-decoration: none;
}

.page-actualites-ia .ia-feed-list a:hover {
  text-decoration: underline;
}

.page-actualites-ia .ia-date {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-left: 0.35rem;
}
.page-actualites-ia .ia-articles-details {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.page-actualites-ia .ia-articles-details article h3 {
  margin-bottom: 0.8rem;
}
/* Zone des articles complets : lecture confortable */
.page-actualites-ia .section-ia-details {
  margin-top: 3rem;
}

.page-actualites-ia .section-ia-details .container {
  max-width: 900px;           /* largeur raisonnable pour la lecture */
}

.page-actualites-ia .section-ia-details h2 {
  margin-bottom: 2rem;
}

/* Chaque article dans une “carte” */
.page-actualites-ia .section-ia-details article {
  margin: 0 auto 2.5rem;
  padding: 2rem 2.2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  line-height: 1.7;
}

/* Titres d’article */
.page-actualites-ia .section-ia-details article h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

/* Sous-titres (chapitres) */
.page-actualites-ia .section-ia-details article h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  text-transform: none;
}

/* Paragraphes et listes plus aérés */
.page-actualites-ia .section-ia-details article p {
  margin-bottom: 0.9rem;
}

.page-actualites-ia .section-ia-details article ul {
  margin: 0 0 0.9rem 1.3rem;
}



.page-actualites-ia .ia-articles-note {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 1rem;
}
/* Décalage des ancres pour le header fixe */
.page-actualites-ia .section-ia-details article[id] {
  scroll-margin-top: 120px; /* ajuste si ton header est plus haut/bas */
}
html {
  scroll-behavior: smooth;
}
/* Chaque ligne d'article dans un flux */
.page-actualites-ia .ia-feed-item {
  position: relative;
}

/* Popover de prévisualisation */
.page-actualites-ia .ia-preview {
  display: none;
  position: absolute;
  left: 0;
  top: 110%;
  max-width: 420px;
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  background: rgba(0,0,0,0.9);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  line-height: 1.5;
  z-index: 20;
}

/* Affichage au survol du <li> ou du lien */
.page-actualites-ia .ia-feed-item:hover .ia-preview {
  display: block;
}
/* Lien quand on survole une ligne du flux */
.page-actualites-ia .ia-feed-item:hover > a {
  color: #f15a24;
  text-decoration-color: #f15a24;
}

/* Popover de prévisualisation */
.page-actualites-ia .ia-preview {
  display: none;
  position: absolute;
  left: 0;
  top: 120%;
  max-width: 420px;
  padding: 1rem 1.2rem;
  border-radius: 0.9rem;
  background: rgba(0, 0, 0, 0.96);
  border: 1px solid #f15a24;              /* bordure orange */
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  z-index: 30;
}

/* Affichage au survol */
.page-actualites-ia .ia-feed-item:hover .ia-preview {
  display: block;
}

/* Un peu plus de respiration entre les titres */
.page-actualites-ia .ia-feed-block h3 {
  margin-bottom: 1.3rem;
}

.page-actualites-ia .ia-feed-list li {
  margin-bottom: 0.8rem;
}
/* ====== POPUP APERÇU FLUX IA (version finale) ====== */

/* Chaque ligne d'article dans un flux */
.page-actualites-ia .ia-feed-item {
  position: relative;
}

/* Lien survolé en orange */
.page-actualites-ia .ia-feed-item:hover > a {
  color: #f15a24;
  text-decoration-color: #f15a24;
}

/* Popover de prévisualisation */
.page-actualites-ia .ia-preview {
  display: none;
  position: absolute;
  left: 0;
  top: 120%;
  max-width: 420px;
  padding: 1rem 1.2rem;
  border-radius: 0.9rem;
  background: rgba(0, 0, 0, 0.96);
  border: 1px solid #f15a24;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  z-index: 30;
}

/* Affichage au survol */
.page-actualites-ia .ia-feed-item:hover .ia-preview {
  display: block;
}

/* Un peu plus de respiration dans les listes */
.page-actualites-ia .ia-feed-block h3 {
  margin-bottom: 1.3rem;
}

.page-actualites-ia .ia-feed-list li {
  margin-bottom: 0.8rem;
}


/* ====== SECTION VIDÉOS IA ("TV IA") ====== */

.page-actualites-ia .section-ia-videos {
  margin-top: 3rem;
}

.page-actualites-ia .ia-videos-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.page-actualites-ia .ia-youtube-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: #ff0000;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.page-actualites-ia .ia-youtube-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  color: #ff0000;
  font-size: 11px;
}

/* Grille des vidéos */
.page-actualites-ia .ia-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.page-actualites-ia .ia-video-card {
  cursor: pointer;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.02);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.page-actualites-ia .ia-video-card:hover {
  transform: translateY(-3px);
  border-color: #f15a24;
  box-shadow: 0 18px 35px rgba(0,0,0,0.6);
}

.page-actualites-ia .ia-video-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background-size: cover;
  background-position: center;
}

.page-actualites-ia .ia-video-thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.1));
}

.page-actualites-ia .ia-video-play {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: rgba(241,90,36,0.9);
  color: #fff;
  font-size: 24px;
}

.page-actualites-ia .ia-video-card h3 {
  font-size: 1rem;
  padding: 0.75rem 0.9rem 0;
}

.page-actualites-ia .ia-video-date {
  font-size: 0.8rem;
  opacity: 0.7;
  padding: 0 0.9rem 0.8rem;
}

/* Overlay lecteur vidéo */
.page-actualites-ia .ia-video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.page-actualites-ia .ia-video-overlay.open {
  display: flex;
}

.page-actualites-ia .ia-video-dialog {
  position: relative;
  width: 90%;
  max-width: 960px;
  background: #000;
  border-radius: 1rem;
  overflow: hidden;
}

.page-actualites-ia .ia-video-frame-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
}

.page-actualites-ia .ia-video-frame-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-actualites-ia .ia-video-close {
  position: absolute;
  top: 0.4rem;
  right: 0.6rem;
  z-index: 10;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Un peu de responsive */
@media (max-width: 700px) {
  .page-actualites-ia .ia-videos-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.nav-toggle{
  display: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 30; /* pour être sûr qu’il est au-dessus de tout */
}
/* ===== MENU MOBILE CLASSIQUE AVEC BURGER ===== */
@media (max-width: 700px){

  .header-inner{
    padding-inline: 1rem;
  }

  /* Bouton burger visible et cliquable */
  .nav-toggle{
    display: block;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 50; /* devant le reste */
  }

  /* Navigation repliée sous le header */
  .main-nav{
    position: absolute;
    right: 0;
    top: 100%;
    background: #000;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    transition: max-height 0.2s ease; z-index: 45;
  }

  .main-nav ul{
    flex-direction: column;
    gap: 0;
  }

  .main-nav li{
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .main-nav a{
    display: block;
    padding: 0.9rem 1.5rem;
  }

  /* Quand le JS ajoute .open, on déroule */
  .main-nav.open{
    max-height: 260px; /* ajuste si tu as plus de liens */
  }
}
.hp-field { display:none; }

.contact-form .form-row {
  margin-bottom: 0.75rem;
}

.alert {
  padding: 0.6rem 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.alert-success {
  background: #e6ffec;
  border: 1px solid #4caf50;
}

.alert-error {
  background: #ffeaea;
  border: 1px solid #f44336;
}
/* ----- FORMULAIRE CONTACT KALEDO ----- */

.contact-form {
  max-width: 760px;
}

/* Chaque ligne = label + champ côte à côte */
.contact-form .form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}

/* Colonne label */
.contact-form label,
.contact-form .form-label {
  flex: 0 0 220px;             /* largeur confortable */
  max-width: 220px;
  margin-bottom: 0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Colonne champ */
.contact-form .form-row > input[type="text"],
.contact-form .form-row > textarea,
.contact-form .form-row > select,
.contact-form .form-row > .choice-toggle {
  flex: 1 1 0%;
}

/* Champs texte / textarea / select */

.contact-form input[type="text"],
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #444;
  background: #000;
  color: #f0f0f0;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input[type="text"]:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #f15a24;        /* orange */
  box-shadow: 0 0 0 1px #f15a24;
  background: #050505;
}

/* Textearea un peu plus haut */
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Bouton */

.contact-form .btn-primary,
.contact-form button[type="submit"] {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border: 1px solid #f15a24;
  background: transparent;
  color: #f0f0f0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.contact-form .btn-primary:hover,
.contact-form button[type="submit"]:hover {
  background: #f15a24;
  color: #000;
  transform: translateY(-1px);
}

/* Honeypot caché */
.hp-field {
  display: none;
}

/* ----- Toggle Particulier / Entreprise ----- */

.choice-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.choice-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.choice-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-pill span {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #444;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f0f0f0;
  background: #050505;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.choice-pill input[type="radio"]:checked + span {
  border-color: #f15a24;
  background: #f15a24;
  color: #000;
}

/* ----- Messages succès / erreur (noir / orange / gris clair) ----- */

.alert {
  padding: 0.75rem 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  border-radius: 0;
  border: 1px solid #333;
  background: #111;
  color: #f0f0f0;
}

.alert-success {
  border-color: #f15a24;
  box-shadow: 0 0 0 1px rgba(241, 90, 36, 0.4);
}

.alert-error {
  border-color: #662222;
  box-shadow: 0 0 0 1px rgba(241, 90, 36, 0.25);
}

.alert-error ul {
  padding-left: 1.1rem;
  margin: 0;
}

/* ----- Version mobile : label au-dessus ----- */

@media (max-width: 640px) {
  .contact-form .form-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form label,
  .contact-form .form-label {
    flex: 0 0 auto;
    max-width: 100%;
  }

  .contact-form .form-row > input[type="text"],
  .contact-form .form-row > textarea,
  .contact-form .form-row > select,
  .contact-form .form-row > .choice-toggle {
    width: 100%;
  }
}
.cta-more-robots {
  margin-top: 2.5rem;
  text-align: right;
}

.cta-more-robots .btn-outline {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 1px solid #f15a24;
  color: #f0f0f0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.cta-more-robots .btn-outline:hover {
  background: #f15a24;
  color: #000;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .cta-more-robots {
    text-align: center;
  }
}
/* ----- PAGE ROBOTS HUMANOÏDES ----- */

.robots-videos .hero-robots {
  padding: 4rem 0 2rem;
}

.robots-videos .hero-robots .section-kicker {
  color: #f15a24;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.robots-videos .hero-robots h1 {
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
}

.robots-videos .hero-robots .hero-lead {
  max-width: 720px;
  font-size: 1rem;
  color: #d0d0d0;
}

/* Badge YouTube */

.robots-videos .yt-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: #f15a24;
  color: #000;
  font-size: 0.85rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.robots-videos .yt-pill .yt-icon {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  border: 2px solid #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* Grille vidéos */

.robots-videos .video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.robots-videos .video-card {
  background: #111;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #222;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.robots-videos .video-card a {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.robots-videos .video-card:hover {
  transform: translateY(-4px);
  border-color: #f15a24;
  box-shadow: 0 16px 35px rgba(0,0,0,0.6);
}

/* Vignette */

.robots-videos .video-thumb-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.robots-videos .video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.robots-videos .video-play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f15a24;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.65);
}

/* Texte carte */

.robots-videos .video-meta {
  padding: 0.9rem 1.1rem 1.1rem;
}

.robots-videos .video-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.robots-videos .video-channel {
  font-size: 0.85rem;
  color: #c0c0c0;
  margin-bottom: 0.2rem;
}

.robots-videos .video-date {
  font-size: 0.8rem;
  color: #aaaaaa;
}

/* Note bas de section */

.robots-videos .video-footer-note {
  margin-top: 1.8rem;
  font-size: 0.9rem;
  color: #cccccc;
}

/* Responsive */

@media (max-width: 640px) {
  .robots-videos .hero-robots {
    padding-top: 2.5rem;
  }
}
.robots-videos .ia-videos-header h2 {
  position: relative;
}

.robots-videos .ia-update {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f15a24;
}

