:root {
  --primary: #014e7c;
  --primary-light: #0176c0;
  --secondary: #f39200;
  --text: #212529;
  --bg: #ffffff;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
body{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif;line-height:1.6;color:var(--text);background:var(--bg)}
header{background:var(--primary);color:#fff;position:sticky;top:0;z-index:1000}

.container{width:90%;max-width:1080px;margin:0 auto}
/* —— Productos · desktop à 2 colonnes —— */
/* mobile (<900 px) : 1 colonne (règles déjà en place)  */
/* desktop (≥900 px) : 2 colonnes                       */
@media (min-width:900px){
  /* cible uniquement la grille de productos.html */
  #productos .grid-3{
    grid-template-columns:repeat(2,1fr);
  }
}

.flex{display:flex;align-items:center}

/* ——— BANNER INFORMATIVO (au-dessus du header) ——— */
.site-banner{
  display:flex;align-items:center;justify-content:center;gap:.75rem;
  padding:.65rem 1rem;
  background:var(--secondary);       /* orange corporate */
  color:#fff;font-weight:600;
  text-align:center;
  position:sticky;top:0;z-index:1001;/* au-dessus du header */
  box-shadow:0 2px 6px rgba(0,0,0,.15);
}
.site-banner strong{text-decoration:underline;}
.banner-close{
  background:none;border:0;color:#fff;font-size:1.25rem;
  line-height:1;cursor:pointer;padding:0 .25rem;
}
.banner-close:hover{opacity:.8;}
@media(max-width:600px){
  .site-banner{flex-direction:column;gap:.5rem;} /* texte + bouton passent à la ligne */
}

/* ——— Masquer la bannière sur mobile & tablette ——— */
@media (max-width: 992px){    /* 992 px ≈ fin du “tablet-landscape” */
  .site-banner{display:none;}
}

/* ——— HEADER & BURGER ——— */
.site-header{
  background:rgba(1,78,124,.95);      /* bleu primaire semi-transparent */
  box-shadow:0 2px 6px rgba(0,0,0,.15);
  position:sticky;top:0;z-index:999;
}

.header-inner{
  display:flex;align-items:center;
  justify-content:space-between;      /* espace entre logo & burger */
  padding:.5rem 0;
}

/* —— Alignement vertical parfait dans le header —— */
.header-inner{
  padding:.75rem 0;               /* un peu plus d’air */
}

.nav-list{
  display:flex;
  gap:1.5rem;
  align-items:center;             /* ⬅️ centre les <li> sur l’axe Y */
}

.nav-list li{display:flex;}       /* pour que <a> & .btn héritent du centrage */

/* (facultatif) apaise la hauteur du bouton pour qu’il n’empiète pas */
.nav-cta .btn-sm{
  line-height:1;
  padding:.55rem 1.25rem;
}

/* logo avec dégagement autour */
.logo img{height:48px;width:auto;margin:0 .5rem;}

/* burger bouton */
.burger{
  display:flex;flex-direction:column;
  gap:5px;padding:.5rem;
  background:none;border:0;cursor:pointer;
}
.burger span{
  width:26px;height:3px;background:#fff;
  transition:transform .3s,opacity .3s;
  border-radius:3px;
}

/* état “open” du burger → X */
.burger.open span:nth-child(1){transform:translateY(8px) rotate(45deg);}
.burger.open span:nth-child(2){opacity:0;}
.burger.open span:nth-child(3){transform:translateY(-8px) rotate(-45deg);}

/* menu commun */
.nav-list{
  list-style:none;margin:0;padding:0;
  display:flex;gap:1.5rem;            /* espace suffisant desktop */
}
.nav-list a{
  color:#fff;text-decoration:none;font-weight:500;
}
.nav-list a:hover{color:#f39200;}

/* — burger invisible ≥ 769 px — */
@media(min-width:769px){
  .burger{display:none;}
}

/* — mobile (<768 px) — */
@media(max-width:768px){
  .nav-list{
    position:fixed;inset:0 0 0 40%;          /* slide depuis la droite */
    background:#002b45;flex-direction:column;
    padding:6rem 2rem;gap:2rem;
    transform:translateX(100%);transition:.35s;
  }
  .nav-list.open{transform:translateX(0);}    /* révélé */
}

/* ——— FIN HEADER ——— */

/* ——— CTA HEADER ——— */
.nav-cta{margin-left:1rem;}           /* espace sur desktop */
.nav-cta .btn-sm{
  padding:.55rem 1.25rem;font-size:.85rem;
  white-space:nowrap;                 /* texte sur une ligne */
}

/* largeur complète & centrage dans le volet mobile */
@media(max-width:768px){
  .nav-cta{margin:0;}
  .nav-cta .btn-sm{
    width:100%;text-align:center;
  }
}

/* ——— Bouton CTA header : texte reste blanc même au survol ——— */
.nav-cta .btn-sm,
.nav-cta .btn-sm:hover,
.nav-cta .btn-sm:focus{
  color:#fff !important;    /* force la couleur blanche */
  text-decoration:none;     /* empêche soulignement éventuel */
}

/* —— ALIGNEMENT VERTICAL PARFAIT DU HEADER —— */

/* la barre principale */
.header-inner{
  display:flex;align-items:center;       /* logo + menu centrés sur l’axe Y */
  padding:.65rem 0;                      /* fine marge haut/bas */
}

/* la liste de navigation */
.nav-list{
  display:flex;gap:1.5rem;
  align-items:center;                    /* centre chaque <li> (texte + bouton) */
}

/* chaque <li> devient flex pour centrer son contenu */
.nav-list li{display:flex;align-items:center;}

/* bouton CTA : même hauteur “pill” et aucun décalage */
.nav-cta .btn-sm{
  display:inline-flex;align-items:center;justify-content:center;
  padding:.55rem 1.25rem;line-height:1;
  margin:0;                              /* retire tout offset vertical */
}

/* (mobile) panneau coulissant : rien ne change */
@media(max-width:768px){
  .nav-list{flex-direction:column;gap:2rem;}
  .nav-cta .btn-sm{width:100%;text-align:center;}
}
/* ——— FIN HEADER ——— */

/* ——— HERO REMASTERED ——— */
.hero{
  position:relative;
  padding:6rem 0 4rem;
  text-align:center;
  color:#fff;
  overflow:hidden;
}

.hero::before{               /* image de fond */
  content:"";
  position:absolute;inset:0;
  background:url('assets/img/hero-industrial.jpg') center/cover no-repeat;
  z-index:-2;
}
.hero::after{                /* voile couleur pour contraste */
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(135deg,
              rgba(1,78,124,.88) 0%,
              rgba(0,43,69,.88) 100%);
  z-index:-1;
}

.hero h1{
  font-size:clamp(2.5rem,6vw,3.5rem);
  line-height:1.2;
}
.hero .accent{color:#f39200;}
.hero p{
  max-width:720px;
  margin:1rem auto 2rem;
  font-size:1.125rem;
}
.btn-lg{padding:1rem 2rem;font-size:1.125rem}

.wave{                       /* vague blanche de séparation */
  position:absolute;
  bottom:-1px;left:0;width:100%;height:90px;
  fill:#fff;                /* s’accorde avec le fond du body */
  z-index:-1;
}
/* ——— fin HERO ——— */

/* ——— BOUTON AMÉLIORÉ ——— */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:.5rem;

  padding:.85rem 1.75rem;
  font-weight:600;font-size:1rem;line-height:1;
  color:#fff;text-decoration:none;

  background:linear-gradient(135deg,var(--secondary) 0%,#ffb24d 100%);
  border-radius:999px;                 /* look “pill” moderne */
  box-shadow:0 4px 12px rgba(0,0,0,.15);

  transition:background .25s ease,box-shadow .25s ease,
             transform .25s cubic-bezier(.215,.61,.355,1);
}

/* état survol */
.btn:hover{
  background:linear-gradient(135deg,#ffb24d 0%,var(--secondary) 100%);
  box-shadow:0 6px 18px rgba(0,0,0,.18);
  transform:translateY(-3px);
}

/* clic */
.btn:active{
  transform:translateY(-1px) scale(.98);
  box-shadow:0 3px 10px rgba(0,0,0,.16);
}

/* focus clavier */
.btn:focus-visible{
  outline:3px solid #fff;outline-offset:2px;
}

/* petite flèche animée (optionnelle) */
.btn::after{
  content:"→";
  font-size:1.2em;transition:transform .25s;
}
.btn:hover::after{transform:translateX(4px);}

/* ——— ABOUT SPOTLIGHT 2025 ——— */
.about-spotlight{
  position:relative;padding:5rem 0;
  background:linear-gradient(135deg,#002b45 0%,#014e7c 100%);
  color:#fff;overflow:hidden;
}

.about-grid{
  display:grid;gap:3rem;align-items:center;
}
@media(min-width:900px){.about-grid{grid-template-columns:1fr 1fr;}}

/* — texte — */
.about-text .lead{
  font-size:1.125rem;margin:1rem 0 2rem;
}
.badge-list{
  display:flex;flex-wrap:wrap;gap:.5rem 1rem;
  margin-bottom:2rem;padding:0;list-style:none;
}
.badge-list li{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.25);
  border-radius:999px;padding:.25rem .75rem;
  font-size:.875rem;
}

/* titre souligné dynamique */
.accent-bg{
  background:linear-gradient(90deg,var(--secondary) 0%,var(--secondary) 100%);
  background-size:100% 35%;
  background-repeat:no-repeat;
  background-position:0 70%;
  padding-bottom:.2em;
}
/* titre souligné dynamique orange */
.accent-bw{
  background:linear-gradient(90deg,var(--secondary) 0%,var(--secondary) 100%);
  background-size:100% 35%;
  background-repeat:no-repeat;
  background-position:0 70%;
  padding-bottom:.2em;

      color:#fff;              /* ← texte en blanc */
}

/* — bouton outline — */
.btn-outline{
  padding:.75rem 1.5rem;border:2px solid var(--secondary);
  background:transparent;color:#fff;transition:.25s;
}
.btn-outline:hover{
  background:var(--secondary);color:#fff;
}

/* — image + blob — */
.about-img{position:relative;}
.about-img img{
  width:100%;height:auto;border-radius:1rem;display:block;
  filter:brightness(.9) contrast(1.05);
}
.about-img .blob{
  position:absolute;top:-10%;left:-10%;width:120%;height:120%;
  fill:var(--secondary);opacity:.05;z-index:-1;
}
/* ——— FIN ABOUT ——— */

/* ——— CTA CONTACTO 2025 ——— */
.cta-section{
  position:relative;padding:5rem 0 4rem;
  background:linear-gradient(135deg,var(--secondary) 0%,#ffaf3d 100%);
  color:#fff;text-align:center;overflow:hidden;
}
.cta-wave-top,.cta-wave-bottom{
  position:absolute;width:100%;height:60px;left:0;fill:#fff;z-index:-1;
}
.cta-wave-top{top:0;transform:translateY(-100%);}
.cta-wave-bottom{bottom:0;}

.cta-inner .lead{
  font-size:1.125rem;margin:1rem auto 2.5rem;
  max-width:640px;
}
.cta-actions{
  display:flex;flex-wrap:wrap;justify-content:center;gap:1rem;
}
.cta-chip{
  display:inline-block;padding:.65rem 1.25rem;
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.35);
  border-radius:999px;font-size:.95rem;color:#fff;
  text-decoration:none;transition:.25s;
}
.cta-chip:hover{background:rgba(255,255,255,.25);}
/* ——— FIN CTA ——— */

/* ——— INFO SECTION ——— */
.info-section{padding:4rem 0;background:#f8fafc;}   /* gris très clair */
.info-grid{
  display:grid;gap:2.5rem;text-align:center;
}
@media(min-width:600px){.info-grid{grid-template-columns:repeat(2,1fr);}}
@media(min-width:992px){.info-grid{grid-template-columns:repeat(3,1fr);}}

.info-item img{
  width:60px;height:auto;margin-bottom:1rem;
}
.info-item h3{
  font-size:1.05rem;font-weight:600;margin-bottom:.5rem;color:var(--primary);
}
.info-item p{
  font-size:.9rem;line-height:1.45;
}

/* accessibilité : dissimule le h2 visuellement mais pas aux lecteurs d’écran */
.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);border:0;
}
/* ——— FIN INFO ——— */

/* ——— CONTACTO BLOCK ——— */
.contacto-block{
  position:relative;padding:5rem 0 4rem;
  background:#f8fafc;color:var(--text);text-align:center;overflow:hidden;
}
.wave-top,.wave-bottom{
  position:absolute;left:0;width:100%;height:60px;fill:#fff;z-index:-1;
}
.wave-top{top:0;transform:translateY(-100%);}
.wave-bottom{bottom:0;}

/* Titre réutilise .accent-bg déjà défini */
.contacto-heading{font-size:clamp(1.8rem,5vw,2.4rem);margin-bottom:2.5rem;}

.contact-list{
  list-style:none;margin:0 auto;max-width:640px;padding:0;
  display:grid;gap:1.5rem;
}
.contact-list li{
  display:flex;align-items:center;justify-content:center;gap:1rem;
  font-size:1rem;
}
.contact-list a{
  color:var(--primary);font-weight:600;text-decoration:none;
}
.contact-list a:hover{color:var(--secondary);}

.icon{
  background:var(--primary);color:#fff;border-radius:50%;
  width:46px;height:46px;display:flex;align-items:center;justify-content:center;
}
.icon svg{width:22px;height:22px;fill:#fff;}
/* ——— FIN CONTACTO ——— */

/* ——— ABOUT INTRO ——— */
.about-intro{
  position:relative;padding:4.5rem 0 3.5rem;
  background:#e9f2f8;                       /* bleu très pâle compatible charte */
  color:var(--text);text-align:center;
}
.about-intro .lead{
  font-size:1.125rem;max-width:720px;margin:1rem auto 2.5rem;
}
/* ——— STATS GRID ——— */
.stats-grid{
  margin:2rem 0 1rem;display:grid;gap:2rem;justify-content:center;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  list-style:none;padding:0;
}
.stat{
  position:relative;text-align:center;padding-top:4rem;
}
.stat-value{
  display:block;font-size:1.5rem;font-weight:700;color:var(--primary);
  margin:.25rem 0;
}
.stat small{font-size:.9rem;opacity:.8;}

/* anneau animé */
.stat-ring{
  position:absolute;top:0;left:50%;transform:translateX(-50%);
  width:64px;height:64px;
}
.stat-ring svg{width:100%;height:100%;transform:rotate(-90deg);}
.stat-ring .bg{
  fill:none;stroke:#e9ecef;stroke-width:4;
}
.stat-ring .fg{
  fill:none;stroke:var(--secondary);stroke-width:4;stroke-linecap:round;
  animation:dash 2s ease-out forwards;
}
@keyframes dash{
  from{stroke-dasharray:0 100;}
  to  {stroke-dasharray:var(--value,100) 0;}
}

/* couleurs adaptatives si thème sombre (facultatif) */
@media (prefers-color-scheme: dark){
  .stat-ring .bg{stroke:#334155;}
  .stat small{opacity:.7;}
}
/* ——— FIN STATS GRID ——— */

/* vague de transition vers la prochaine section */
.about-wave{
  position:absolute;bottom:0;left:0;width:100%;height:60px;
  fill:#fff;                                /* fond blanc suivant */
  z-index:-1;
}
/* ——— FIN ABOUT INTRO ——— */

/* ——— TIMELINE MODERN ——— */
.timeline-modern{padding:4.5rem 0;background:#fff;}
.tl-list{
  list-style:none;margin:0;padding:0;position:relative;
}
.tl-list::before{          /* ligne verticale (mobile) */
  content:"";position:absolute;left:24px;top:0;bottom:0;
  width:3px;background:var(--primary);
}
.tl-list li{
  position:relative;padding:0 0 2.25rem 70px; /* push le texte à droite de la puce */
}
/* Puce – année */
.tl-year{
  position:absolute;left:0;top:.2rem;
  width:48px;height:48px;border-radius:50%;
  background:var(--secondary);color:#fff;font-weight:700;
  display:flex;align-items:center;justify-content:center;
  font-size:1rem;
}

/* —— Amélioration desktop ≥ 768 px —— */
@media(min-width:768px){
  .tl-list{padding:0 0 0 0;}
  .tl-list::before{left:50%;transform:translateX(-50%);}
  .tl-list li{
    width:50%;padding:0 2.5rem 2.5rem 2.5rem;
  }
  .tl-list li:nth-child(odd){
    text-align:right;
  }
  .tl-list li:nth-child(even){
    margin-left:50%;           /* pousse à droite de l’axe */
  }
  .tl-list li:nth-child(odd) .tl-year{
    left:auto;right:-24px;     /* positionne la puce sur l’axe */
  }
  .tl-list li:nth-child(even) .tl-year{
    left:-24px;
  }
}
/* ——— FIN TIMELINE ——— */

/* ——— PRODUCT TILE ——— */
.product-tile{
  display:flex;flex-direction:column;align-items:center;
  background:#fff;border:1px solid #e9ecef;border-radius:1rem;
  box-shadow:0 4px 16px rgba(0,0,0,.06);
  transition:transform .25s ease,box-shadow .25s ease;
  overflow:hidden;             /* garde l’arrondi */
}
.product-tile:hover{
  transform:translateY(-6px);
  box-shadow:0 8px 22px rgba(0,0,0,.08);
}

/* vignette */
.product-thumb{
  width:100%;background:#f8fafc;    /* fond neutre */
  display:flex;align-items:center;justify-content:center;
  aspect-ratio:1/1;                 /* carré responsive */
}
.product-thumb img{
  max-width:80%;max-height:80%;
  object-fit:contain;               /* image entière, non coupée */
}

/* texte */
.product-info{
  text-align:center;padding:1rem .75rem;
}
.product-info h3{font-size:1.15rem;color:var(--primary);margin-bottom:.25rem;}
.product-info p{font-size:.9rem;}

/* CTA */
.btn-sm{
  padding:.5rem 1.25rem;font-size:.9rem;margin-bottom:1.25rem;
}
.product-cta{margin-top:auto;}      /* colle le bouton en bas */

/* responsive grille : si tu l’utilises dans .grid grid-3 existante, rien à changer */

/* réutilise .accent-bg du bloc “Quiénes somos” pour souligner le titre */

section{padding:4rem 0}

h2{font-size:clamp(1.5rem,4vw,2.25rem);margin-bottom:2rem;text-align:center;color:var(--primary)}
.grid{display:grid;gap:2rem}

@media(min-width:600px){.grid-2{grid-template-columns:repeat(2,1fr)}}
@media(min-width:900px){.grid-3{grid-template-columns:repeat(3,1fr)}}

.card{border:1px solid #e9ecef;border-radius:8px;overflow:hidden;box-shadow:0 4px 8px rgba(0,0,0,.05);transition:transform .3s}
.card:hover{transform:translateY(-4px)}
.card img{width:100%;height:auto;aspect-ratio:3/2;object-fit:cover;}
.card-body{padding:1rem}
.card-body h3{font-size:1.25rem;color:var(--primary);margin-bottom:.5rem}
.card-body p{font-size:.95rem}

form{display:grid;gap:1rem;max-width:600px;margin:0 auto}

input,textarea{padding:.75rem;border:1px solid #ced4da;border-radius:4px;width:100%}

textarea{min-height:140px}

footer{background:#002b45;color:#fff;padding:2rem 0}
footer .links{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center;margin-top:1rem}
footer a{color:#fff;text-decoration:none;font-size:.875rem}

.card-link{display:block;text-decoration:none;color:inherit}
/* Ajoutez ceci dans style.css (en bas, par ex.) */
.tile{
  display:flex;
  flex-direction:column;
}
.tile .card{ flex:1; }          /* carte prend toute la hauteur disponible */
.tile-btn{ margin-top:.75rem; } /* petit espacement sous la carte           */

/* ——— AMX5 ——— */
/* ——— PRODUCT SPOTLIGHT ——— */
.product-spotlight{padding:4rem 0;}
.ps-grid{
  display:flex;flex-direction:column;gap:2rem;
}
/* —— Desktop ≥ 768 px —— */
@media(min-width:768px){
  .ps-grid{
    flex-direction:row;
    align-items:flex-start;   /* ⬅️  aligne les deux colonnes en haut */
    gap:3rem;
  }
  .ps-img{align-self:flex-start;}     /* l’image ne recentre plus */
  .ps-img{max-width:45%;}             /* (option) limite la largeur colonne image */
}

/* visuel */
.ps-img{
  flex:1;display:flex;justify-content:center;align-items:center;
  background:#f8fafc;border-radius:1rem;padding:1.5rem;
}
.ps-img img{
  max-width:100%;height:auto;object-fit:contain;
}

/* contenu */
.ps-content{flex:1;display:flex;flex-direction:column;gap:1rem;}
.ps-tagline{font-size:1.05rem;}
.ps-features{list-style:disc;padding-left:1.1rem;margin:0 0 1rem;}
.ps-features li{margin-bottom:.35rem;}

.ps-specs summary{
  cursor:pointer;font-weight:600;color:var(--primary);
  margin:.5rem 0 1rem;
}
.ps-specs table{
  width:100%;border-collapse:collapse;font-size:.9rem;
}
.ps-specs th{padding:.4rem 0;text-align:left;font-weight:600;}
.ps-specs td{padding:.4rem 0;}
.ps-specs tr+tr th,
.ps-specs tr+tr td{border-top:1px solid #e9ecef;}

.ps-cta{margin-top:1rem;align-self:flex-start;}

/* ——— CAMPO DE APLICACIÓN ——— */
.app-field-section{
  padding:4rem 0;background:#f8fafc;
  border-top:4px solid var(--primary);
}

.app-grid{
  display:flex;flex-direction:column;gap:2rem;
}

.app-icon{
  max-width:120px;align-self:center;
}
.app-icon svg{width:100%;height:auto;}

.app-content h2{
  font-size:1.5rem;margin-bottom:1rem;color:var(--primary);
}
.app-content p{margin-bottom:1rem;font-size:1rem;line-height:1.55;}

.app-note{
  background:rgba(243,146,0,.1);
  border-left:4px solid var(--secondary);
  padding:.75rem 1rem;border-radius:.25rem;
  font-size:.9rem;
}

/* desktop ≥ 768 px : icône à gauche, texte à droite */
@media(min-width:768px){
  .app-grid{
    flex-direction:row;align-items:center;
  }
  .app-icon{flex:0 0 140px;}
  .app-content{flex:1;}
}
/* ——— FIN CAMPO ——— */
/* ——— FIN PRODUCT SPOTLIGHT ——— */

/* —— Désactive les liens tél. auto-générés —— */
a[href^="tel"],
a[x-apple-data-detectors]{
  pointer-events:none;      /* plus cliquable                */
  text-decoration:none;     /* enlève le soulignement        */
  color:inherit;            /* garde la couleur du texte     */
  cursor:default;
}

/* ——— TECH SECTION ——— */
.tech-section{padding:4rem 0;}
.tech-section h2{text-align:center;margin-bottom:3rem;}

/* carte générique */
.tech-card{
  display:flex;flex-direction:column;gap:2rem;
  border-radius:1rem;padding:2rem;margin-bottom:3rem;
  box-shadow:0 4px 16px rgba(0,0,0,.05);
}
.tech-card.light{background:#f4f5f7;}
.tech-card.green{background:linear-gradient(135deg,#017a45 0%,#02683b 100%);
                 color:#fff;}
.tech-card.reverse{flex-direction:column-reverse;}
@media(min-width:900px){
  .tech-card{flex-direction:row;align-items:center;}
  .tech-card.reverse{flex-direction:row-reverse;}
}

/* image */
.tech-img{
  flex:0 0 220px;max-width:220px;width:100%;
  object-fit:contain;
}

/* contenu */
.tech-body{flex:1;display:flex;flex-direction:column;gap:1rem;}
.tech-body h3{font-size:1.125rem;margin:0 0 .5rem;}
.tech-list{
  list-style:none;padding:0;margin:0 0 1.5rem;
  display:flex;flex-wrap:wrap;gap:0.5rem 1.25rem;
}
.tech-list li{
  position:relative;padding-left:20px;font-size:.92rem;
}
.tech-list li::before{
  content:"✓";position:absolute;left:0;top:0;
  color:var(--secondary);font-weight:700;
}
.tech-card.green .tech-list li::before{color:#fff;}

/* boutons */
.tech-btn{align-self:flex-start;font-size:.9rem;padding:.75rem 1.5rem;}
.tech-btn.red{background:#e32222;color:#fff;}
.tech-btn.red:hover{background:#c91d1d;}
.tech-btn.yellow{background:#f8d44c;color:#000;}
.tech-btn.yellow:hover{background:#f4c933;}
/* ——— FIN TECH SECTION ——— */