/* ---- Page Qui sommes-nous institutionnelle ---- */
.about-page-header {
  padding: clamp(100px, 10vw, 120px) 0 clamp(24px, 3.5vw, 40px);
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.about-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 960px) {
  .about-editorial-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.about-manifesto-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 42px;
  box-shadow: var(--shadow-md);
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 960px) {
  .about-pillars-grid {
    grid-template-columns: 1fr;
  }
}

.about-pillar-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.about-pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

/* Correction : Pastille neutre et compacte */
.about-pillar-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 20px;
  width: fit-content;
}

.about-location-card {
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-xl);
}

@media (max-width: 960px) {
  .about-location-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 34px 54px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: fit-content;
  margin: 52px auto 0 auto;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-value {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}

.stat-number {
  font-size: 2.5em;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
}

.stat-suffix {
  font-size: 2.5em;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--orange);
}

.stat-label {
  font-size: 0.88em;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-white);
}

.trust-label {
  text-align: center;
  font-size: 0.82em;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 28px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 1.05em;
  font-weight: 700;
  color: var(--text-light);
  opacity: 0.6;
  transition: opacity var(--transition);
}

.trust-item:hover {
  opacity: 1;
}

/* ========================================
   ABOUT
   ======================================== */
.about-section {
  background: var(--bg);
}

.about-image {
  margin-bottom: 60px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 400px;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: all var(--transition);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--orange-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--orange);
}

.value-card h4 {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.92em;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-section {
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.contact-info h2 {
  font-size: 2.5em;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-muted);
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Une piste `1fr` prend pour minimum le min-content de son contenu : une
   adresse ou un numéro insécable donnait une colonne de ~421px qui débordait
   la page sous 430px (masqué par overflow-x:hidden). On autorise la colonne,
   les items et leur texte à se comprimer. */
.contact-grid { min-width: 0; }
.contact-grid > *,
.contact-details,
.contact-item,
.contact-item > div { min-width: 0; }
.contact-item strong,
.contact-item span,
.contact-item a { overflow-wrap: anywhere; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

.contact-item strong {
  display: block;
  font-size: 0.88em;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
  display: block;
  font-size: 0.95em;
  color: var(--text-muted);
  line-height: 1.5;
  transition: color var(--transition);
}

.contact-item a:hover {
  color: var(--orange);
}

/* Form */
.contact-form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88em;
  font-weight: 700;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95em;
  color: var(--text);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,107,0,0.08);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Map */
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 350px;
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---- Clients / Références Section ---- */
.clients-section {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.clients-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.client-card-h {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  min-width: 320px;
}

.client-card-h:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.client-logo-box {
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 16px;
  background: var(--bg-white);
}

.client-logo-box img {
  max-width: 118px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: var(--transition);
}

.client-card-h:hover .client-logo-box img {
  filter: grayscale(0%) opacity(1);
}

.client-info-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 18px 24px;
  border-left: 1px solid var(--border-light);
}

.client-tag {
  font-size: 0.68em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--orange);
}

.client-info-box strong {
  font-size: 1em;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.client-url {
  font-size: 0.78em;
  color: var(--text-muted);
}

/* ---- end Clients Section ---- */
/* ---- Pourquoi SIZEG ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #ffd9b8;
}

.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--orange-light), var(--blue-light));
  border: 1px solid rgba(255, 107, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-dark);
  transition: all var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #ffffff;
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.25);
  border-color: transparent;
}

.why-num {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--border);
  font-family: monospace, sans-serif;
  letter-spacing: -0.05em;
  transition: color var(--transition);
  margin-bottom: 0;
}

.why-card:hover .why-num {
  color: var(--text-light);
}

.why-card h4 {
  font-size: 1.15em;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}

.why-card p {
  font-size: 0.9em;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Pages services ---- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tech-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: all var(--transition);
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: #ffd9b8;
  background: var(--bg-white);
}

.tech-card-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border-light);
}

.brand-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--bg-white), #f1f5f9);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  flex-shrink: 0;
  transition: all var(--transition);
}

.tech-card:hover .brand-icon-box {
  background: linear-gradient(135deg, var(--blue), var(--text));
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2);
}

.tech-card-featured .brand-icon-box {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

.tech-card-featured:hover .brand-icon-box {
  background: linear-gradient(135deg, var(--orange-dark), #cc5500);
  transform: scale(1.1) rotate(4deg);
}

.tech-brand {
  font-weight: 800;
  font-size: 1.05em;
  color: var(--text);
  letter-spacing: -0.02em;
}

.tech-card-featured .tech-brand {
  color: var(--orange-dark);
}

.tech-card strong {
  font-size: 1em;
  color: var(--text);
}

.tech-card span {
  font-size: 0.85em;
  color: var(--text-muted);
}

.tech-card-featured {
  background: var(--orange-light);
  border-color: #ffd9b8;
}

.tech-card-featured span {
  color: var(--orange-dark);
  font-weight: 700;
}

.chips-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

/* Correction : Pastille neutre et compacte */
.app-chip {
  font-size: 0.85em;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.app-chip:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.svc-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.svc-col {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.svc-col:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: #ffd9b8;
  background: var(--bg-white);
}

.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--orange-light), var(--blue-light));
  border: 1px solid rgba(255, 107, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-dark);
  margin-bottom: 18px;
  transition: all var(--transition);
}

.svc-col:hover .svc-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.25);
  border-color: transparent;
}

.svc-col h4 {
  font-size: 0.85em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 16px;
}

.svc-col li {
  font-size: 0.92em;
  color: var(--text-muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border-light);
}

.svc-col li:last-child {
  border-bottom: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.step-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
}

.step-num {
  font-size: 1.6em;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 12px;
}

.step-card-blue .step-num {
  color: var(--blue);
}

.step-card h4 {
  font-size: 1em;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.85em;
  color: var(--text-muted);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sector-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: all var(--transition);
}

.sector-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: #ffd9b8;
  background: var(--bg-white);
}

.sector-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--orange-light), var(--blue-light));
  border: 1px solid rgba(255, 107, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-dark);
  margin-bottom: 18px;
  transition: all var(--transition);
}

.sector-card:hover .sector-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.25);
  border-color: transparent;
}

.sector-card h4 {
  font-size: 1.02em;
  margin-bottom: 10px;
}

.sector-card p {
  font-size: 0.86em;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex: 1;
}

.sector-products {
  font-size: 0.75em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--orange);
}

/* Correction : Pastille neutre et compacte */
.sector-chip {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
}

.value-icon-blue {
  color: var(--blue) !important;
  background: var(--blue-light) !important;
}

/* ---- Références : cartes noms animées ---- */
.client-name-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 250px;
  padding: 28px 34px;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.client-name-card .client-tag {
  font-size: 0.74em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--orange);
}
.client-name-card .client-name {
  font-size: 1.7em;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  transition: color 0.3s ease;
}
.client-name-card .client-url {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85em;
  font-weight: 600;
  color: var(--text-muted);
}
.client-name-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}
.client-name-card:hover .client-name,
.client-name-card:hover .client-url { color: var(--orange); }

/* ---- Lucarne Références Clients ---- */
.lucarne-references-band {
  padding: clamp(32px, 4vw, 50px) 0;
  position: relative;
  z-index: 10;
}
.lrb-card {
  background: var(--bg-white, #ffffff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: var(--radius-2xl, 28px);
  padding: 50px 48px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}
.lrb-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px auto;
}
.lrb-header .section-tag {
  margin-bottom: 8px;
}
.lrb-header h3 {
  font-size: 2em;
  font-weight: 800;
  color: var(--text-main, #0f172a);
  margin-bottom: 14px;
}
.lrb-lead {
  font-size: 1.05em;
  color: var(--text-muted, #64748b);
  line-height: 1.65;
  margin: 0;
}
.lrb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.lrb-client-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-light, #f8fafc);
  border: 1px solid var(--border-light, #f1f5f9);
  border-radius: var(--radius-xl, 20px);
  padding: 28px 32px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.lrb-client-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: var(--border, #cbd5e1);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}
.lrb-client-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.12);
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lrb-icon-blue {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
}
.lrb-client-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lrb-client-info .client-tag {
  font-size: 0.76em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light, #94a3b8);
}
.lrb-client-info .client-name {
  font-size: 1.3em;
  font-weight: 800;
  color: var(--text-main, #0f172a);
}
.lrb-client-desc {
  font-size: 0.94em;
  color: var(--text-muted, #64748b);
  line-height: 1.55;
  margin: 4px 0 8px 0;
}
.lrb-client-info .client-url {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.88em;
  font-weight: 700;
  color: var(--primary, #2563eb);
}
.lrb-client-card:hover .client-url {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .ptm-plaquette-showcase {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ptm-showcase-preview {
    max-width: 320px;
    margin: 0 auto;
  }
  .ptm-showcase-badge {
    align-self: center;
  }
  .ptm-showcase-actions {
    justify-content: center;
  }
  .lrb-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .ptm-card { padding: 40px 24px; }
  .ptm-title { font-size: 1.6em; }
  .ptm-arrow { display: none; }
  .ptm-divider-pills { flex-direction: column; align-items: stretch; }
  .ptm-pill { justify-content: center; }
  .ptm-showcase-actions { flex-direction: column; align-items: stretch; }
  .ptm-showcase-actions .btn { justify-content: center; }
  .lrb-card { padding: 36px 24px; }
  .lrb-header h3 { font-size: 1.6em; }
  .lrb-client-card { flex-direction: column; align-items: flex-start; padding: 24px; }
}
@media (max-width: 768px) {
  .service-universe { padding: 64px 0; }
  .su-head { margin-bottom: 36px; }
  .su-head h2 { font-size: 2em; }
  .su-lead { font-size: 1.05em; }
  .su-watermark { font-size: 9em; top: 6px; }
}

/* ---- Références : grisées, sans cadre, mises en avant au survol ---- */
.rp-refs .rp-clients { gap: 6px; }
.rp-refs .client-name-card {
  min-width: 0;
  padding: 16px 18px;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  opacity: 0.5;
  transition: opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.rp-refs .client-name-card .client-tag,
.rp-refs .client-name-card .client-name,
.rp-refs .client-name-card .client-url { color: var(--text-light); transition: color 0.3s ease; }
.rp-refs .client-name-card .client-name { font-size: 1.4em; }
.rp-refs .client-name-card:hover {
  opacity: 1;
  background: var(--bg-white);
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.rp-refs .client-name-card:hover .client-name { color: var(--text); }
.rp-refs .client-name-card:hover .client-tag { color: var(--orange); }
.rp-refs .client-name-card:hover .client-url { color: var(--text-muted); }

/* ========================================
   CONFORMITÉ — consentement, bandeau, compteur, pages légales
   ======================================== */

/* --- Case de consentement sur les formulaires --- */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 20px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.form-consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
  cursor: pointer;
}
.form-consent label { cursor: pointer; }
.form-consent a { color: var(--orange-dark); text-decoration: underline; }

/* --- Google Maps : bouton "clic pour charger" --- */
.map-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  min-height: 300px;
  padding: 32px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  background: var(--border-light);
  color: var(--text-muted);
  text-align: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.map-consent:hover { background: var(--orange-light); color: var(--orange-dark); }
.map-consent:hover strong { color: var(--orange-dark); }
.map-consent strong { font-size: 1rem; color: var(--text); }
.map-consent span { font-size: 0.8rem; max-width: 340px; line-height: 1.5; }

/* --- Bandeau d'information (cookies) --- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  transform: translateY(140%);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.cookie-banner p a { color: var(--orange-dark); text-decoration: underline; }
.cookie-banner .cookie-ack { flex: 0 0 auto; white-space: nowrap; padding: 10px 22px; }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: left; }
  .cookie-banner .cookie-ack { width: 100%; }
}

/* --- Liens légaux + compteur dans le footer --- */
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.8rem;
}
.footer-legal-links a { color: var(--text-light); text-decoration: none; transition: color var(--transition); }
.footer-legal-links a:hover { color: var(--orange); }
.footer-legal-links span { color: var(--text-light); opacity: 0.6; }
.visitor-counter { color: var(--text-light); }

/* --- Pages légales (mentions & confidentialité) --- */
.legal-section { padding-top: 40px; }
.legal-content { max-width: 820px; }
.legal-content h2 {
  font-size: 1.25rem;
  color: var(--text);
  margin: 36px 0 12px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p,
.legal-content li {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}
.legal-content ul { padding-left: 20px; margin: 10px 0; }
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--orange-dark); text-decoration: underline; }
.legal-content code {
  background: var(--orange-light);
  color: var(--orange-dark);
  padding: 1px 6px;
  border-radius: 6px;
  font-size: 0.85em;
}
.legal-note {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 28px !important;
  color: #92400e !important;
}
.legal-note code { background: #fef3c7; color: #92400e; }
.legal-updated { font-size: 0.85rem !important; color: var(--text-light) !important; margin-top: 32px; font-style: italic; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.88rem;
}
.legal-table th,
.legal-table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  color: var(--text-muted);
}
.legal-table th { background: var(--border-light); color: var(--text); font-weight: 700; }

/* ========================================
   CLASSES PURGÉES — Remplacement des styles en ligne
   ======================================== */

/* --- service-radiocommunication.html --- */
.service-feature-item {
  background: #f8fafc;
  border: 1px solid var(--border);
  padding: 15px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-feature-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ea580c;
  flex-shrink: 0;
}
.service-feature-text {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.92rem;
}
.service-adv-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-adv-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(234, 88, 12, 0.1);
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-adv-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}
.service-adv-desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* --- qui-sommes-nous.html --- */
.about-box-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}
.about-box-card:hover {
  transform: translateY(-4px);
}

/* Correction : Pastille neutre et compacte */
.about-box-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: var(--bg-subtle, #f8fafc);
  border: 1px solid var(--border, #e2e8f0);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.about-box-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
}
.about-box-desc {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.about-box-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  font-size: 0.93rem;
  color: #0f172a;
}
.about-box-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.about-box-item svg {
  flex-shrink: 0;
}
.about-box-btn {
  width: 100%;
  justify-content: center;
}
.about-team-name {
  font-size: 0.94rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 6px;
}
.about-team-role {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 3px;
}