:root {
  --bleu        : #1B4F8C;
  --bleu-fonce  : #0D3366;
  --or          : #F5A623;
  --sombre      : #0D1B2A;
  --fond        : #F4F4F4;
  --blanc       : #FFFFFF;
  --texte       : #2C2C2C;
  --texte-light : #6B7280;
  --ombre       : 0 4px 20px rgba(0,0,0,0.10);
  --ombre-forte : 0 8px 40px rgba(0,0,0,0.20);
  --radius      : 8px;
  --transition  : all 0.3s ease;
  --container   : 1200px;
}

* { margin:0; padding:0; box-sizing:border-box; }

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--texte);
  background: var(--blanc);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
  background: #1B4F8C;
}

a {
  color: inherit;
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 80px 0; }
.section-sombre { background: var(--sombre); color: var(--blanc); }
.section-gris   { background: var(--fond); }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--or);
  color: var(--sombre);
}
.btn-primary:hover {
  background: #e0941a;
  transform: translateY(-2px);
  box-shadow: var(--ombre-forte);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--blanc);
  color: var(--blanc);
}
.btn-outline:hover {
  background: var(--blanc);
  color: var(--bleu);
  transform: translateY(-2px);
}

.titre-section {
  font-size: 2.8rem;
  margin-bottom: 12px;
}
.sous-titre-section {
  font-size: 1.1rem;
  color: var(--texte-light);
  max-width: 600px;
  margin: 0 auto 50px;
}
.accent { color: var(--or); }

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-sombre .sous-titre-section {
  color: rgba(255, 255, 255, 0.72);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(13, 51, 102, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blanc);
  text-decoration: none;
  min-width: 0;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  color: var(--or);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0;
}

.logo-emblem {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border: 1px solid rgba(245, 166, 35, 0.45);
  border-radius: 14px;
  background: #FFFFFF;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24), 0 0 0 4px rgba(245, 166, 35, 0.08);
  transform: translateZ(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.logo-emblem::after {
  content: '';
  position: absolute;
  inset: -45% auto -45% -85%;
  width: 54%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  transform: rotate(18deg);
  transition: left 0.65s ease;
}

.logo-emblem img {
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: contain;
  background: #FFFFFF;
}

.logo-officiel:hover .logo-emblem {
  border-color: rgba(245, 166, 35, 0.9);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32), 0 0 0 5px rgba(245, 166, 35, 0.14);
  transform: translateY(-2px) scale(1.03);
}

.logo-officiel:hover .logo-emblem::after {
  left: 130%;
}

.logo-copy {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(245, 166, 35, 0.5);
  border-radius: var(--radius);
  background: rgba(245, 166, 35, 0.1);
  color: var(--or);
  font-size: 1.15rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.site-nav {
  position: absolute;
  top: 84px;
  left: 20px;
  right: 20px;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--bleu-fonce);
  box-shadow: var(--ombre-forte);
}

.site-nav.open {
  display: flex;
}

.site-nav a {
  position: relative;
  color: var(--blanc);
  text-decoration: none;
  font-weight: 500;
  padding: 12px 10px;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--or);
}

.header-cta {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  color: var(--blanc);
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(13, 27, 42, 0.96) 0%, rgba(13, 51, 102, 0.86) 42%, rgba(13, 27, 42, 0.48) 100%),
    url('../images/hero/hero-metal.jpg') center/cover no-repeat;
}

.hero-inner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding-top: 120px;
  padding-bottom: 44px;
}

.hero-copy {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.92rem;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.9rem);
  text-transform: uppercase;
  max-width: 780px;
}

.hero-copy p {
  max-width: 630px;
  margin-top: 20px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.86);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: auto;
}

.hero-stat {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(13, 27, 42, 0.42);
  backdrop-filter: blur(8px);
}

.hero-stat strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  color: var(--or);
}

.hero-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.84);
}

.quick-services {
  background: var(--bleu);
  color: var(--blanc);
}

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

.quick-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 26px 14px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.quick-service i {
  color: var(--or);
  font-size: 1.6rem;
}

.about-grid {
  display: grid;
  gap: 32px;
}

.about-copy p {
  margin: 20px 0 28px;
  color: var(--texte-light);
}

.about-panel {
  display: grid;
  gap: 18px;
}

.about-visual {
  min-height: 280px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.12), rgba(13, 27, 42, 0.62)),
    url('../images/hero/hero-metal.jpg') center/cover no-repeat;
  box-shadow: var(--ombre);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-stat {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--blanc);
  box-shadow: var(--ombre);
}

.about-stat strong {
  display: block;
  color: var(--bleu);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
}

.services-grid,
.realisations-grid,
.reasons-grid {
  display: grid;
  gap: 20px;
}

.service-card {
  padding: 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--blanc);
  box-shadow: var(--ombre);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--or);
  transform: translateY(-5px);
  box-shadow: var(--ombre-forte);
}

.service-card i,
.reason-card i {
  margin-bottom: 18px;
  color: var(--or);
  font-size: 1.7rem;
}

.service-card h3,
.reason-card h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.service-card p,
.reason-card p {
  color: var(--texte-light);
}

.realisation-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.realisation-media,
.realisation-media-placeholder {
  aspect-ratio: 16 / 10;
  width: 100%;
}

.realisation-media {
  object-fit: cover;
}

.realisation-media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, rgba(27, 79, 140, 0.9), rgba(13, 27, 42, 0.95)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.08) 0, rgba(255,255,255,0.08) 2px, transparent 2px, transparent 14px);
}

.realisation-content {
  padding: 20px;
}

.realisation-content h3 {
  font-size: 1.5rem;
}

.realisation-content p {
  color: rgba(255, 255, 255, 0.72);
}

.section-actions {
  margin-top: 32px;
  text-align: center;
}

.reason-card {
  padding: 24px 0;
}

.cta {
  background: var(--bleu);
  color: var(--blanc);
  text-align: center;
}

.cta h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.site-footer {
  background: var(--sombre);
  color: var(--blanc);
}

.footer-grid {
  display: grid;
  gap: 32px;
  padding: 70px 0 38px;
}

.footer-brand p,
.footer-contact li,
.footer-links a,
.footer-services li {
  color: rgba(255, 255, 255, 0.76);
}

.footer-brand p {
  margin-top: 18px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--or);
  color: var(--sombre);
}

.footer-title {
  margin-bottom: 18px;
  font-size: 1.45rem;
}

.footer-links,
.footer-services,
.footer-contact {
  list-style: none;
}

.footer-links li,
.footer-services li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--or);
}

.footer-contact i {
  width: 20px;
  color: var(--or);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0 28px;
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--blanc);
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: var(--ombre-forte);
  animation: pulse 2s infinite;
}

.reveal {
  opacity: 0;
}

@media (scripting: none) {
  .reveal { opacity: 1; }
}

/* ---- PAGE RÉALISATIONS ---- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 164px 0 84px;
  color: var(--blanc);
  background: var(--sombre);
}

.page-hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%) 0 0 / 34px 34px,
    linear-gradient(315deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%) 0 0 / 34px 34px;
}

.page-hero::after {
  background: linear-gradient(90deg, rgba(13, 27, 42, 0.18), rgba(27, 79, 140, 0.22));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-top: 16px;
  font-size: clamp(2.5rem, 7vw, 4.2rem);
  text-transform: uppercase;
}

.page-hero p {
  max-width: 690px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.breadcrumb a {
  color: var(--or);
  text-decoration: none;
}

.gallery-section {
  min-height: 420px;
}

/* ---- SLIDER AVANT/APRÈS ---- */
.slider-container {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  cursor: col-resize;
  border-radius: 8px 8px 0 0;
  user-select: none;
}

.img-avant,
.img-apres {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-apres {
  clip-path: inset(0 50% 0 0);
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  border: 0;
  background: var(--blanc);
  cursor: col-resize;
  transform: translateX(-50%);
  z-index: 20;
}

.slider-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%);
}

.slider-handle::after {
  content: '◀ ▶';
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--bleu);
  font-size: 10px;
  white-space: nowrap;
  z-index: 11;
  transform: translate(-50%, -50%);
}

.label-avant,
.label-apres {
  position: absolute;
  bottom: 12px;
  z-index: 5;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--blanc);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  pointer-events: none;
}

.label-avant {
  left: 12px;
}

.label-apres {
  right: 12px;
}

/* ---- CARDS PROJETS ---- */
.projets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}

.projet-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blanc);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.projet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.projet-card[hidden] {
  display: none;
}

.card-infos {
  padding: 20px;
}

.badge-categorie {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--bleu);
  color: var(--blanc);
  font-size: 0.78rem;
  font-weight: 600;
}

.card-infos h3 {
  margin-bottom: 8px;
  color: var(--sombre);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.45rem;
}

.card-infos p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 14px;
  color: var(--texte-light);
  font-size: 0.9rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.btn-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  background: var(--sombre);
  color: var(--blanc);
  font-size: 1rem;
}

.btn-card:hover {
  background: var(--bleu);
  transform: translateY(-2px);
  box-shadow: var(--ombre);
}

/* ---- FILTRES ---- */
.filtres-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.filtre-btn {
  padding: 10px 24px;
  border: 2px solid var(--bleu);
  border-radius: 30px;
  background: transparent;
  color: var(--bleu);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filtre-btn:hover,
.filtre-btn.actif {
  border-color: var(--or);
  background: var(--or);
  color: var(--sombre);
}

.gallery-empty {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 54px 20px;
  color: var(--texte-light);
  text-align: center;
}

.gallery-empty i {
  color: var(--bleu);
  font-size: 2rem;
}

.galerie-vide {
  padding: 100px 20px;
  text-align: center;
}

.galerie-vide-inner {
  max-width: 500px;
  margin: 0 auto;
}

.galerie-vide-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: rgba(27, 79, 140, 0.08);
  color: var(--bleu);
  font-size: 2.8rem;
}

.galerie-vide h3 {
  margin-bottom: 14px;
  color: var(--sombre);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.galerie-vide p {
  margin-bottom: 30px;
  color: var(--texte-light);
  font-size: 1rem;
  line-height: 1.7;
}

/* ---- PAGE SERVICES ---- */
.hero-page {
  padding: 156px 0 72px;
  color: var(--blanc);
  text-align: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(245, 166, 35, 0.14), transparent 30%),
    linear-gradient(135deg, #0D1B2A 0%, #1B4F8C 100%);
}

.hero-page h1 {
  margin: 14px 0 16px;
  font-size: clamp(2.6rem, 7vw, 4rem);
  text-transform: uppercase;
}

.hero-page p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
}

.breadcrumb-centered {
  justify-content: center;
}

.services-catalogue {
  background: var(--blanc);
}

.services-page .services-grid {
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 50px;
}

.services-page .service-card {
  position: relative;
  min-height: 248px;
  padding: 32px 24px;
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-left: 4px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.services-page .service-card::after {
  content: '';
  position: absolute;
  inset: auto 24px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27, 79, 140, 0.18), transparent);
}

.services-page .service-card:hover {
  border-color: rgba(13, 27, 42, 0.08);
  border-left-color: var(--or);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.services-page .service-card .icone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(245, 166, 35, 0.14);
  color: var(--or);
  font-size: 2rem;
}

.services-page .service-card h3 {
  color: var(--sombre);
  font-size: 1.5rem;
}

.services-page .service-card p {
  font-size: 0.92rem;
  line-height: 1.7;
}

.processus-section {
  overflow: hidden;
}

.processus-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 50px;
}

.etape {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  text-align: center;
}

.etape-numero {
  position: absolute;
  top: -20px;
  left: 50%;
  color: rgba(27, 79, 140, 0.08);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  transform: translateX(-50%);
}

.etape-cercle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border: 4px solid var(--blanc);
  border-radius: 50%;
  background: var(--bleu);
  color: var(--blanc);
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(27, 79, 140, 0.3);
}

.etape h3 {
  margin-bottom: 8px;
  color: var(--sombre);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
}

.etape p {
  color: var(--texte-light);
  font-size: 0.9rem;
}

.services-cta {
  background: var(--bleu);
  color: var(--blanc);
  text-align: center;
}

.services-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.services-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.services-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

/* ---- PAGE À PROPOS ---- */
.section-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  align-items: center;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 7px 16px;
  border: 1px solid var(--or);
  border-radius: 999px;
  color: var(--or);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.about-story p {
  color: var(--texte-light);
}

.about-story p + p {
  margin-top: 18px;
}

.points-forts {
  margin-top: 28px;
}

.point-fort {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.point-fort i {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--or);
}

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

.stat-bloc {
  padding: 30px 20px;
  border-radius: var(--radius);
  background: var(--bleu);
  box-shadow: 0 4px 20px rgba(27, 79, 140, 0.2);
  text-align: center;
}

.stat-nombre {
  margin-bottom: 8px;
  color: var(--or);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 7vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
}

.valeurs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 50px;
}

.valeur-card {
  padding: 36px 24px;
  border-bottom: 4px solid transparent;
  border-radius: var(--radius);
  background: var(--blanc);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: var(--transition);
}

.valeur-card:hover {
  border-bottom-color: var(--or);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.valeur-icone-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.1);
  color: var(--or);
  font-size: 2rem;
}

.valeur-card h3 {
  margin-bottom: 10px;
  color: var(--sombre);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
}

.valeur-card p {
  color: var(--texte-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.dg-profile {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.dg-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 350px);
  aspect-ratio: 1;
  border-radius: 16px;
  background: linear-gradient(135deg, #1B4F8C, #0D3366);
  color: rgba(245, 166, 35, 0.6);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(4rem, 12vw, 6rem);
  font-weight: 900;
}

.dg-badge {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.pill-badge-dark {
  margin-bottom: 8px;
}

.citation-bloc {
  position: relative;
  padding: 30px 0 0 34px;
}

.citation-guillemet {
  position: absolute;
  top: -4px;
  left: 0;
  color: var(--or);
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  opacity: 0.25;
}

.citation-texte {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.8;
}

.citation-auteur {
  color: var(--or);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.citation-auteur-titre {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.trait-or {
  width: 60px;
  height: 3px;
  margin: 12px 0;
  background: var(--or);
}

.legal-table-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--ombre);
}

.table-legale {
  width: 100%;
  border-collapse: collapse;
}

.table-legale tr:nth-child(even) {
  background: var(--fond);
}

.table-legale td {
  padding: 16px 20px;
  border-bottom: 1px solid #E5E7EB;
  font-size: 0.95rem;
}

.table-legale tr:last-child td {
  border-bottom: 0;
}

.table-legale td:first-child {
  width: 35%;
  color: var(--bleu);
  font-weight: 700;
}

/* ---- PAGE CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  padding: 80px 0;
}

.contact-intro {
  margin: 14px 0 28px;
  color: var(--texte-light);
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: #374151;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-group .field-icon {
  position: absolute;
  top: 46px;
  left: 14px;
  color: #9CA3AF;
  font-size: 0.95rem;
  pointer-events: none;
}

.form-group.has-textarea .field-icon {
  top: 45px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 14px 14px 42px;
  border: 2px solid #E5E7EB;
  border-radius: var(--radius);
  outline: none;
  background: var(--blanc);
  color: #374151;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--bleu);
  box-shadow: 0 0 0 3px rgba(27, 79, 140, 0.1);
}

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

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  border: 0;
  border-radius: var(--radius);
  background: var(--or);
  color: var(--sombre);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background: #e0941a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
}

.btn-submit.is-loading,
.btn-submit:disabled {
  cursor: wait;
  opacity: 0.84;
}

.contact-sidebar h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.contact-infos {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-bloc {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-left: 4px solid var(--bleu);
  border-radius: 10px;
  background: #F8FAFC;
  transition: transform 0.3s ease;
}

.info-bloc:hover {
  /* transform géré par Motion */
}

.info-icone {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bleu);
  color: var(--blanc);
  font-size: 1.1rem;
}

.info-icone.whatsapp {
  background: #25D366;
}

.info-texte strong {
  display: block;
  margin-bottom: 4px;
  color: var(--sombre);
  font-size: 0.95rem;
  font-weight: 700;
}

.info-texte span,
.info-texte a {
  color: var(--texte-light);
  font-size: 0.9rem;
  text-decoration: none;
}

.info-texte a:hover {
  color: var(--bleu);
}

.info-texte .online-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  color: #25D366;
  font-size: 0.8rem;
  font-weight: 600;
}

.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  animation: pulse-green 2s infinite;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border-radius: var(--radius);
  background: #25D366;
  color: var(--blanc);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.alerte-succes {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  padding: 18px 20px;
  border: 2px solid #22C55E;
  border-radius: var(--radius);
  background: #F0FDF4;
  color: #15803D;
  font-weight: 500;
}

.alerte-erreur {
  margin-bottom: 24px;
  padding: 18px 20px;
  border: 2px solid #EF4444;
  border-radius: var(--radius);
  background: #FEF2F2;
  color: #B91C1C;
}

.alerte-erreur-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.alerte-erreur ul {
  margin: 8px 0 0 20px;
  font-size: 0.9rem;
}

.section-carte {
  padding: 60px 0;
  background: var(--fond);
  text-align: center;
}

.carte-wrapper {
  overflow: hidden;
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.carte-frame {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

.carte-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--texte-light);
  font-size: 0.9rem;
}

.carte-note i {
  color: var(--or);
}

/* ---- LIGHTBOX ---- */
body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox.open {
  display: flex;
}

/* Lightbox galerie simple */
.galerie-lb .galerie-lb-inner {
  position: relative;
  width: min(100%, 1100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.galerie-lb #gallerieLbImg {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
}

.galerie-lb-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  color: var(--blanc);
  max-width: min(100%, 1100px);
  width: 100%;
}

.galerie-lb-meta strong {
  font-size: 1rem;
  font-weight: 600;
  flex: 1 1 100%;
}

.galerie-lb-meta p {
  font-size: 0.88rem;
  opacity: 0.78;
  flex: 1 1 100%;
  margin: 0;
  line-height: 1.5;
}

.galerie-lb-meta #gallerieLbCount {
  font-size: 0.8rem;
  opacity: 0.5;
  margin-left: auto;
}

.lightbox-dialog {
  position: relative;
  width: min(100%, 1040px);
}

.lightbox-content {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blanc);
}

.lightbox-slider {
  height: min(62vh, 560px);
  border-radius: 8px 8px 0 0;
}

.lightbox-meta {
  padding: 22px;
}

.lightbox-meta h2 {
  margin-bottom: 10px;
  color: var(--sombre);
  font-size: clamp(1.65rem, 4vw, 2.25rem);
}

.lightbox-meta p {
  color: var(--texte-light);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--blanc);
  color: var(--sombre);
  box-shadow: var(--ombre-forte);
  cursor: pointer;
}

.lightbox-close {
  top: -16px;
  right: -16px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.2rem;
}

.lightbox-nav {
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: -18px;
}

.lightbox-next {
  right: -18px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--or);
}

@keyframes pulse {
  0% { transform: scale(1); }
  70% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@keyframes pulse-green {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

@media (min-width: 768px) {
  .logo-copy {
    display: block;
  }

  .logo-copy strong,
  .logo-copy span {
    display: block;
  }

  .logo-copy strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.45rem;
  }

  .logo-copy span {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.72);
  }

  .hero-stats,
  .quick-services-grid,
  .about-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

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

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

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

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

  .section-2col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
  }

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

  .contact-grid {
    grid-template-columns: 3fr 2fr;
    gap: 60px;
  }
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 10px 12px;
  }

  .site-nav a.active::after {
    content: '';
    position: absolute;
    right: 12px;
    bottom: 3px;
    left: 12px;
    height: 2px;
    background: var(--or);
  }

  .header-cta {
    display: inline-block;
  }

  .about-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  }

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

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

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

  .processus-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12%;
    right: 12%;
    z-index: 0;
    height: 2px;
    background: var(--bleu);
  }

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

@media (max-width: 576px) {
  .page-hero {
    padding: 144px 0 64px;
  }

  .hero-page {
    padding: 144px 0 60px;
  }

  .slider-container {
    height: 240px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-slider {
    height: min(48vh, 360px);
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 126px;
    width: 44px;
    height: 44px;
    transform: none;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

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

  .table-legale td {
    display: block;
    width: 100%;
  }

  .table-legale td:first-child {
    width: 100%;
    padding-bottom: 6px;
  }

  .table-legale td:last-child {
    padding-top: 6px;
  }
}

/* ---- ACCUEIL PREMIUM ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--sombre);
}

::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: var(--or);
}

::-webkit-scrollbar-thumb:hover {
  background: #e0941a;
}

.site-header.header {
  padding: 20px 0;
  background: transparent;
  transition: all 0.4s ease;
}

.site-header.header.scrolled,
.site-header.header.menu-open {
  padding: 12px 0;
  border-bottom: 1px solid rgba(245, 166, 35, 0.15);
  background: rgba(13, 27, 42, 0.92);
  box-shadow: none;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header .logo-emblem {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  animation: logo-arrivee 0.9s ease both;
}

.header .logo-copy strong {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.header .logo-copy span {
  color: var(--or);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

@keyframes logo-arrivee {
  0% {
    opacity: 0;
    transform: translateY(-12px) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.header .site-nav a {
  font-size: 0.88rem;
}

.header .site-nav a::after {
  content: '';
  position: absolute;
  right: 10px;
  bottom: 6px;
  left: 10px;
  height: 2px;
  background: var(--or);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.header .site-nav a:hover::after,
.header .site-nav a.active::after {
  transform: scaleX(1);
}

.header-devis-btn {
  border: 2px solid var(--or);
  background: transparent;
  color: var(--or);
}

.header-devis-btn:hover {
  background: var(--or);
  color: var(--sombre);
}

.home-premium {
  background: var(--sombre);
}

.home-premium .hero.hero-premium {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  background: var(--sombre);
}

.home-premium #particles-js,
.home-premium .hero-slideshow,
.home-premium .hero-bg,
.home-premium .hero-overlay {
  position: absolute;
  inset: 0;
}

.home-premium #particles-js {
  z-index: 1;
}

.home-premium .hero-slideshow {
  z-index: -3;
  overflow: hidden;
}

.home-premium .hero-bg {
  z-index: -2;
  opacity: 0.22;
  background:
    radial-gradient(circle at 72% 35%, rgba(245, 166, 35, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(13, 27, 42, 0.96), transparent 62%);
}

.home-premium .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 6.2s ease;
}

.home-premium .hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 27, 42, 0.96) 0%, rgba(13, 27, 42, 0.72) 42%, rgba(13, 27, 42, 0.28) 100%),
    linear-gradient(to top, rgba(13, 27, 42, 0.72), transparent 46%);
}

.home-premium .hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.home-premium .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}

.home-premium .hero-slide-label {
  position: absolute;
  right: 38px;
  bottom: 120px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.24);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 0.8;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  pointer-events: none;
}

.home-premium .hero-overlay {
  z-index: -1;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 14px
    ),
    linear-gradient(135deg, rgba(13, 27, 42, 0.58), rgba(27, 79, 140, 0.22));
}

.home-premium .hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100vh;
  gap: 38px;
  align-items: center;
  padding-top: 132px;
  padding-bottom: 96px;
}

.home-premium .hero-content {
  max-width: 700px;
  min-width: 0;
}

.home-premium .hero-badge {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid rgba(245, 166, 35, 0.4);
  border-radius: 50px;
  background: rgba(245, 166, 35, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.home-premium .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--or);
  animation: pulse-gold 2s infinite;
}

.home-premium .hero-title {
  display: grid;
  margin: 20px 0 24px;
  color: var(--blanc);
  font-size: 4.4rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-premium .hero-title span {
  display: block;
}

.home-premium .text-gradient {
  background: linear-gradient(135deg, #F5A623, #FFD700);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-premium .hero-typed {
  width: min(100%, calc(100vw - 40px));
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  font-weight: 300;
  overflow-wrap: anywhere;
}

.home-premium .hero-typed span {
  color: var(--or);
  font-weight: 600;
  white-space: normal;
}

.home-premium .hero-desc {
  max-width: 520px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
}

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

.btn-hero-primary,
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 18px 36px;
  border-radius: 4px;
  color: var(--blanc);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #F5A623, #e0941a);
  color: var(--sombre);
  font-weight: 800;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-primary:hover {
  box-shadow: 0 15px 40px rgba(245, 166, 35, 0.4);
  transform: translateY(-3px);
}

.btn-hero-outline {
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.02);
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.btn-hero-outline:hover {
  border-color: var(--or);
  color: var(--or);
  transform: translateY(-3px);
}

.home-premium .hero-image-wrap {
  display: none;
}

.home-premium .hero-image {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.home-premium .hero-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--or), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

.hero-slider-dots {
  position: absolute;
  right: 38px;
  top: 50%;
  z-index: 3;
  display: none;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-50%);
}

.hero-slider-dots button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 166, 35, 0.26);
  border-radius: 50%;
  background: rgba(13, 27, 42, 0.42);
  color: rgba(255, 255, 255, 0.58);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

.hero-slider-dots button:hover,
.hero-slider-dots button.is-active {
  border-color: var(--or);
  background: var(--or);
  color: var(--sombre);
  transform: translateX(-4px);
}

.stats-section {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(245, 166, 35, 0.2);
  background: var(--sombre);
}

.stat-item {
  position: relative;
  overflow: hidden;
  padding: 40px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--or);
  transform: translateX(-50%);
  transition: width 0.6s ease;
}

.stat-item:hover::before {
  width: 60%;
}

.stat-number,
.stat-plus {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  line-height: 1;
}

.stat-number {
  color: var(--blanc);
  font-size: 4rem;
}

.stat-plus {
  display: inline-block;
  margin-top: 10px;
  color: var(--or);
  font-size: 2.4rem;
  vertical-align: top;
}

.stat-label {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.premium-services {
  background: var(--blanc);
}

.premium-heading {
  text-align: center;
}

.premium-heading p,
.projects-heading p,
.eyebrow {
  color: var(--bleu);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title-premium {
  margin-top: 10px;
  color: var(--sombre);
  font-size: 2.8rem;
}

.text-or {
  color: var(--or);
}

.title-line {
  width: 0;
  height: 3px;
  margin: 16px auto 50px;
  background: linear-gradient(to right, var(--or), var(--bleu));
  transition: width 0.8s ease;
}

.title-line.is-visible {
  width: 80px;
}

.services-grid-premium {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card-premium {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  background: var(--blanc);
  cursor: pointer;
  transition: border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background   0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow   0.4s cubic-bezier(0.4, 0, 0.2, 1),
              color        0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-image-wrap {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--sombre);
}

.card-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(13, 27, 42, 0.78), transparent 58%),
    linear-gradient(135deg, rgba(245, 166, 35, 0.14), transparent 42%);
  opacity: 0.78;
  transition: opacity 0.4s ease;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transform: scale(1.01);
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.service-card-premium::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--or), var(--bleu));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card-premium:hover {
  border-color: var(--sombre);
  background: var(--sombre);
  box-shadow: 0 30px 60px rgba(13, 27, 42, 0.2);
}

.service-card-premium:hover .card-image-wrap img {
  filter: saturate(1.08) contrast(1.1);
  transform: scale(1.1);
}

.service-card-premium:hover .card-image-wrap::after {
  opacity: 0.94;
}

.service-card-premium:hover::after {
  transform: scaleX(1);
}

.service-card-premium:hover h3,
.service-card-premium:hover p {
  color: var(--blanc);
}

.card-number {
  position: absolute;
  top: -10px;
  right: 20px;
  color: rgba(245, 166, 35, 0.06);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s ease;
}

.service-card-premium:hover .card-number {
  color: rgba(245, 166, 35, 0.12);
}

.card-icon-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: -30px 32px 20px;
  border: 3px solid var(--blanc);
  border-radius: 50%;
  background: var(--or);
  box-shadow: 0 12px 26px rgba(13, 27, 42, 0.18);
  color: var(--sombre);
  font-size: 1.35rem;
  transition: all 0.4s ease;
}

.service-card-premium:hover .card-icon-wrap {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(245, 166, 35, 0.16);
  color: var(--or);
}

.service-card-premium h3,
.service-card-premium p,
.service-card-premium .card-link {
  margin-right: 32px;
  margin-left: 32px;
}

.service-card-premium h3 {
  margin-bottom: 12px;
  color: var(--sombre);
  font-size: 1.55rem;
}

.service-card-premium p {
  color: var(--texte-light);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  margin-bottom: 34px;
  color: var(--bleu);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-link i {
  transition: transform 0.3s ease;
}

.service-card-premium:hover .card-link {
  color: var(--or);
}

.card-link:hover i,
.service-card-premium:hover .card-link i {
  transform: translateX(5px);
}

.premium-projects {
  background: var(--sombre);
  color: var(--blanc);
}

.projects-heading {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.projects-heading h2 {
  margin-top: 10px;
  font-size: 2.8rem;
}

.btn-inline-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--or);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

.realisations-grid-premium {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.realisations-coming-soon {
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  text-align: center;
}

.realisations-coming-soon i {
  display: block;
  margin-bottom: 20px;
  color: rgba(245, 166, 35, 0.3);
  font-size: 3rem;
}

.realisations-coming-soon a {
  color: var(--or);
  font-weight: 600;
  text-decoration: none;
}

.realisation-card-premium {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.realisation-card-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.realisation-card-premium:hover img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px 24px;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.97) 0%, rgba(13, 27, 42, 0.6) 60%, transparent 100%);
  transform: translateY(60%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.realisation-card-premium:hover .card-overlay {
  transform: translateY(0);
}

.card-overlay h3 {
  font-size: 1.55rem;
}

.card-overlay p {
  color: rgba(255, 255, 255, 0.72);
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 14px;
  border-radius: 2px;
  background: rgba(245, 166, 35, 0.9);
  color: var(--sombre);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-why {
  background: var(--fond);
}

.why-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.why-copy h2 {
  margin: 12px 0 18px;
  color: var(--sombre);
  font-size: 2.4rem;
}

.why-intro {
  max-width: 560px;
  color: var(--texte-light);
}

.why-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.why-item {
  display: flex;
  gap: 16px;
}

.why-item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bleu);
  color: var(--blanc);
}

.why-item h3 {
  margin-bottom: 5px;
  color: var(--sombre);
  font-size: 1.35rem;
}

.why-item p {
  color: var(--texte-light);
}

.image-frame {
  position: relative;
  display: inline-block;
}

.image-frame::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 3px solid var(--or);
  border-radius: 4px;
}

.image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 360px;
  border-radius: 4px;
}

.quote-band {
  padding: 80px 0;
  background: var(--bleu);
  color: var(--blanc);
}

.quote-band blockquote {
  position: relative;
  max-width: 900px;
  color: var(--blanc);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.quote-band blockquote span {
  position: absolute;
  top: -38px;
  left: -10px;
  color: rgba(255, 255, 255, 0.08);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

.quote-band p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.premium-cta {
  background-color: var(--sombre);
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(27, 79, 140, 0.03),
    rgba(27, 79, 140, 0.03) 1px,
    transparent 1px,
    transparent 12px
  );
  color: var(--blanc);
  text-align: center;
}

.premium-cta h2 {
  font-size: 3rem;
  text-transform: uppercase;
}

.premium-cta p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.64);
}

.premium-cta .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.whatsapp-float {
  right: 32px;
  bottom: 32px;
  display: flex;
  width: auto;
  height: auto;
  align-items: center;
  gap: 0;
  overflow: hidden;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  animation: none;
}

.whatsapp-float .wa-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: #25D366;
  animation: wa-pulse 3s ease-out infinite;
}

.whatsapp-float .wa-text {
  max-width: 0;
  overflow: hidden;
  padding: 0;
  color: var(--blanc);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: max-width 0.4s ease, padding 0.4s ease;
}

.whatsapp-float:hover .wa-text {
  max-width: 200px;
  padding: 0 18px 0 0;
}

.cursor,
.cursor-follower {
  display: none;
}

.home-premium.has-custom-cursor,
.home-premium.has-custom-cursor a,
.home-premium.has-custom-cursor button {
  cursor: none;
}

.home-premium.has-custom-cursor .cursor,
.home-premium.has-custom-cursor .cursor-follower {
  position: fixed;
  display: block;
  border-radius: 50%;
  pointer-events: none;
}

.home-premium.has-custom-cursor .cursor {
  z-index: 99999;
  width: 12px;
  height: 12px;
  background: var(--or);
  mix-blend-mode: difference;
  transition: transform 0.15s ease;
}

.home-premium.has-custom-cursor .cursor-follower {
  z-index: 99998;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(245, 166, 35, 0.5);
  transition: all 0.25s ease;
}

@keyframes pulse-gold {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.6);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(245, 166, 35, 0);
  }
}

@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes wa-pulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@keyframes gallery-rise {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 768px) {
  .stats-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 992px) {
  .home-premium .hero-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  }

  .home-premium .hero-image-wrap {
    display: block;
  }

  .hero-slider-dots {
    display: flex;
  }

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

  .stat-item {
    padding: 60px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 0;
  }

  .stat-number {
    font-size: 5rem;
  }

  .stat-plus {
    font-size: 3rem;
  }

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

  .projects-heading {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }

  .why-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }
}

@media (max-width: 767px) {
  .header-inner {
    position: relative;
  }

  .nav-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    transform: none;
  }

  .home-premium .hero-title {
    width: 100%;
    max-width: 360px;
    font-size: clamp(2.25rem, 12vw, 3.1rem);
    line-height: 0.96;
    overflow-wrap: normal;
  }

  .home-premium .hero-title .line-1,
  .home-premium .hero-title .line-2,
  .home-premium .hero-title .line-3 {
    opacity: 1 !important;
    transform: none !important;
  }

  .home-premium .hero-badge,
  .home-premium .hero-typed,
  .home-premium .hero-desc,
  .home-premium .hero-actions {
    opacity: 1 !important;
    transform: none !important;
  }

  .home-premium .hero-slide-label {
    display: none;
  }

  .home-premium .hero-typed {
    min-height: 54px;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }

  .section-title-premium,
  .projects-heading h2,
  .why-copy h2,
  .quote-band blockquote,
  .premium-cta h2 {
    font-size: 2rem;
  }

  .card-overlay {
    transform: translateY(0);
  }

  .image-frame::before {
    top: -10px;
    right: -10px;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
  }
}

/* ---- PAGES INTERNES PREMIUM ---- */
.internal-premium {
  background: #F7F8FA;
}

.internal-premium .hero-page,
.internal-premium .page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 360px;
  padding: 168px 0 84px;
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.96), rgba(13, 27, 42, 0.8)),
    url('../images/hero/hero-metal.jpg') center/cover no-repeat;
  text-align: left;
}

.internal-premium .hero-page::before,
.internal-premium .page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 18%, rgba(245, 166, 35, 0.22), transparent 28%),
    linear-gradient(120deg, rgba(27, 79, 140, 0.16), transparent 54%);
}

.internal-premium .hero-page::after,
.internal-premium .page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 12px
  );
}

.internal-premium .hero-page .container,
.internal-premium .page-hero .container {
  position: relative;
  z-index: 1;
}

.internal-premium .hero-page h1,
.internal-premium .page-hero h1 {
  max-width: 760px;
  margin-top: 16px;
  color: var(--blanc);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.internal-premium .hero-page p,
.internal-premium .page-hero p {
  width: min(650px, calc(100vw - 40px));
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.internal-premium .breadcrumb,
.internal-premium .breadcrumb-centered {
  justify-content: flex-start;
}

.internal-premium .section {
  position: relative;
}

.internal-premium .section-heading .titre-section {
  color: var(--sombre);
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.internal-premium .section-heading .sous-titre-section {
  color: rgba(44, 44, 44, 0.64);
}

.services-premium .services-catalogue {
  background: #F7F8FA;
}

.services-premium .services-page .service-card,
.about-premium .valeur-card,
.contact-premium .info-bloc,
.realisations-premium .projet-card {
  border: 1px solid rgba(13, 27, 42, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(13, 27, 42, 0.08);
}

.services-premium .services-page .service-card {
  min-height: 270px;
  padding: 34px 26px;
  border-left-width: 1px;
}

.services-premium .services-page .service-card:hover {
  border-left-color: var(--or);
  background: var(--sombre);
  transform: translateY(-7px);
  box-shadow: 0 28px 60px rgba(13, 27, 42, 0.16);
}

.services-premium .services-page .service-card:hover h3,
.services-premium .services-page .service-card:hover p {
  color: var(--blanc);
}

.services-page .services-image-grid {
  gap: 26px;
}

.services-premium .services-page .service-card-photo {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 8px;
  background: var(--blanc);
}

.services-premium .services-page .service-card-photo::after {
  display: none;
}

.service-card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--sombre);
}

.service-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(13, 27, 42, 0.82), rgba(13, 27, 42, 0.06) 62%),
    linear-gradient(135deg, rgba(27, 79, 140, 0.2), rgba(245, 166, 35, 0.14));
  opacity: 0.84;
  transition: opacity 0.35s ease;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.05);
  transform: scale(1.01);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.35s ease;
}

.service-card-tag {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(13, 27, 42, 0.58);
  color: var(--blanc);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.service-card-body {
  position: relative;
  padding: 0 26px 30px;
}

.service-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-top: -31px;
  margin-bottom: 18px;
  border: 3px solid var(--blanc);
  border-radius: 16px;
  background: var(--or);
  box-shadow: 0 14px 28px rgba(13, 27, 42, 0.16);
  color: var(--sombre);
  font-size: 1.35rem;
  transition: all 0.35s ease;
}

.services-premium .services-page .service-card-photo .icone {
  display: none;
}

.services-premium .services-page .service-card-photo:hover {
  border-color: rgba(245, 166, 35, 0.5);
  background: var(--sombre);
}

.services-premium .services-page .service-card-photo:hover .service-card-media img {
  filter: saturate(1.08) contrast(1.1);
  transform: scale(1.1);
}

.services-premium .services-page .service-card-photo:hover .service-card-media::after {
  opacity: 0.96;
}

.services-premium .services-page .service-card-photo:hover .service-card-icon {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(245, 166, 35, 0.16);
  color: var(--or);
  transform: translateY(-3px);
}

.services-premium .processus-section,
.about-premium .values-section,
.contact-premium .section-carte {
  background: #EEF1F4;
}

.services-premium .etape-cercle {
  border-color: #EEF1F4;
}

.services-premium .services-cta,
.about-premium .services-cta,
.btp-premium .services-cta {
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.92), rgba(27, 79, 140, 0.9)),
    url('../images/hero/hero-metal.jpg') center/cover no-repeat;
}

.btp-premium .btp-hero {
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.96), rgba(13, 27, 42, 0.72)),
    url('../../uploads/galerie/chantier-structure-equipe.jpg') center/cover no-repeat;
}

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

.btp-intro-section {
  background: var(--blanc);
}

.btp-intro-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}

.btp-intro-copy p {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(44, 44, 44, 0.72);
  line-height: 1.8;
}

.btp-intro-media {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(13, 27, 42, 0.18);
}

.btp-intro-media::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: -1;
  width: 82%;
  height: 82%;
  border: 3px solid var(--or);
  border-radius: 8px;
}

.btp-intro-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.btp-services-section {
  overflow: hidden;
}

.btp-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 46px;
}

.btp-service-card {
  position: relative;
  overflow: hidden;
  padding: 34px 28px;
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(13, 27, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.btp-service-card::after {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.08);
}

.btp-service-card:hover {
  background: var(--sombre);
  box-shadow: 0 28px 60px rgba(13, 27, 42, 0.16);
}

.btp-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: var(--or);
  color: var(--sombre);
  font-size: 1.45rem;
}

.btp-service-card h3 {
  color: var(--sombre);
  font-size: 1.55rem;
}

.btp-service-card p {
  margin-top: 10px;
  color: rgba(44, 44, 44, 0.68);
  line-height: 1.7;
}

.btp-service-card:hover h3,
.btp-service-card:hover p {
  color: var(--blanc);
}

.btp-realisations-section {
  background: var(--blanc);
}

.btp-gallery-grid {
  margin-top: 34px;
}

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

@media (min-width: 992px) {
  .btp-intro-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }
}

.realisations-premium .gallery-section {
  background: #F7F8FA;
}

.realisations-premium .filtres-container {
  justify-content: flex-start;
}

.realisations-premium .filtre-btn {
  border-color: rgba(27, 79, 140, 0.24);
  background: var(--blanc);
}

.realisations-premium .projet-card {
  border-radius: 4px;
}

.realisations-premium .card-infos {
  padding: 22px;
}

.realisations-premium .btn-card {
  background: var(--sombre);
}

.about-premium .about-story,
.about-premium .legal-section {
  background: #F7F8FA;
}

.about-upgraded .about-hero {
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.96), rgba(13, 27, 42, 0.68)),
    url('../../uploads/galerie/charpente-industrielle-interieur.jpg') center/cover no-repeat;
}

.hero-kicker {
  display: inline-flex;
  margin-top: 22px;
  color: var(--or);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-story-upgraded {
  overflow: hidden;
}

.about-story-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.about-story-copy {
  min-width: 0;
}

.about-proof-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.about-visual {
  position: relative;
  min-height: 420px;
  border-radius: 10px;
  isolation: isolate;
}

.about-visual::before {
  content: '';
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: -1;
  width: 78%;
  height: 80%;
  border: 3px solid var(--or);
  border-radius: 10px;
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(13, 27, 42, 0.2);
  filter: saturate(0.95) contrast(1.06);
}

.about-visual-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(13, 27, 42, 0.76);
  color: var(--blanc);
  backdrop-filter: blur(16px);
}

.about-visual-card strong,
.about-visual-card span {
  display: block;
}

.about-visual-card strong {
  color: var(--or);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.22rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-visual-card span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.about-stats-premium {
  margin-top: 58px;
}

.about-premium .stat-bloc {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(27, 79, 140, 0.96), rgba(13, 27, 42, 0.96));
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.about-premium .stat-bloc::after {
  content: '';
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.12);
}

.about-premium .stat-bloc:hover {
  box-shadow: 0 22px 46px rgba(13, 27, 42, 0.18);
  transform: translateY(-6px);
}

.values-upgraded .valeur-card {
  position: relative;
  overflow: hidden;
}

.values-upgraded .valeur-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.98), rgba(27, 79, 140, 0.92));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.values-upgraded .valeur-card > * {
  position: relative;
  z-index: 1;
}

.values-upgraded .valeur-card:hover::before {
  opacity: 1;
}

.values-upgraded .valeur-card:hover h3,
.values-upgraded .valeur-card:hover p {
  color: var(--blanc);
}

.values-upgraded .valeur-card:hover .valeur-icone-wrap {
  background: rgba(245, 166, 35, 0.18);
  transform: translateY(-4px) rotate(-2deg);
}

.about-method-section {
  background: var(--blanc);
}

.about-timeline {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

.about-timeline-item {
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 8px;
  background: #F7F8FA;
  box-shadow: 0 16px 40px rgba(13, 27, 42, 0.06);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.about-timeline-item span {
  display: inline-flex;
  color: rgba(245, 166, 35, 0.85);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.3rem;
  font-weight: 900;
  line-height: 0.85;
}

.about-timeline-item h3 {
  margin-top: 16px;
  color: var(--sombre);
  font-size: 1.45rem;
}

.about-timeline-item p {
  margin-top: 8px;
  color: rgba(44, 44, 44, 0.66);
}

.about-timeline-item:hover {
  border-color: rgba(245, 166, 35, 0.55);
  background: var(--sombre);
  transform: translateY(-6px);
}

.about-timeline-item:hover h3,
.about-timeline-item:hover p {
  color: var(--blanc);
}

.about-premium .dg-section {
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.98), rgba(13, 27, 42, 0.9)),
    url('../images/hero/hero-metal.jpg') center/cover no-repeat;
}

.dg-section-upgraded .dg-photo-placeholder {
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.dg-section-upgraded .dg-photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(245, 166, 35, 0.32);
  border-radius: 12px;
}

.about-premium .legal-table-wrap {
  border-radius: 4px;
}

.legal-upgraded .table-legale tr {
  transition: background 0.2s ease;
}

.legal-upgraded .table-legale tr:hover {
  background: rgba(245, 166, 35, 0.08);
}

@media (min-width: 768px) {
  .about-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .about-story-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
  }

  .title-line {
    width: 80px;
  }
}

.contact-premium .contact-main {
  background: #F7F8FA;
}

.contact-premium .contact-form-wrap {
  padding: 30px;
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 4px;
  background: var(--blanc);
  box-shadow: 0 20px 50px rgba(13, 27, 42, 0.08);
}

.contact-premium .contact-form-wrap .titre-section {
  font-size: clamp(1.95rem, 7vw, 2.8rem);
  overflow-wrap: anywhere;
}

.contact-premium .contact-sidebar h3 {
  color: var(--sombre);
}

.contact-premium .info-bloc {
  border-left-width: 1px;
}

.contact-premium .info-bloc:hover {
  transform: translateY(-3px);
}

.contact-premium .section-carte {
  text-align: left;
}

.contact-premium .section-carte .section-heading {
  text-align: left;
}

.contact-premium .section-carte .sous-titre-section {
  margin-left: 0;
}

@media (min-width: 992px) {
  .internal-premium .hero-page,
  .internal-premium .page-hero {
    min-height: 420px;
    display: flex;
    align-items: end;
  }
}

/* ── Page 404 ──────────────────────────────────────────── */
.page-hero-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--sombre) 0%, #112240 100%);
}

.error-404-content {
  text-align: center;
  color: var(--blanc);
  padding: 60px 0;
}

.error-404-code {
  display: block;
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--or) 0%, #f7c948 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.error-404-content h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 14px;
}

.error-404-content p {
  font-size: 1.05rem;
  opacity: 0.72;
  margin-bottom: 36px;
}

.error-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 40px;
}

.error-404-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  justify-content: center;
}

.error-404-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.error-404-links a:hover {
  color: var(--or);
}

@media (max-width: 767px) {
  .internal-premium .hero-page,
  .internal-premium .page-hero {
    min-height: 300px;
    padding: 138px 0 56px;
  }

  .internal-premium .hero-page h1,
  .internal-premium .page-hero h1 {
    font-size: 2.35rem;
  }

  .realisations-premium .filtres-container {
    justify-content: center;
  }

  .contact-premium .contact-form-wrap {
    width: calc(100vw - 40px);
    padding: 22px;
  }

  .home-premium .hero-typed {
    max-width: 100%;
    font-size: 1.05rem;
  }
}

/* ---- GALERIE PHOTO RÉALISATIONS ---- */
.galerie-simple-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(245, 166, 35, 0.1), transparent 28%),
    #FFFFFF;
  padding-top: 96px;
}

.section-heading-left {
  width: 100%;
  max-width: 760px;
  margin-bottom: 30px;
  text-align: left;
  min-width: 0;
}

.section-heading-left .sous-titre-section {
  width: 100%;
  max-width: 620px;
  margin: 12px 0 0;
  overflow-wrap: anywhere;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--bleu);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--or);
}

.galerie-simple-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  min-width: 0;
}

.galerie-simple-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--sombre);
  box-shadow: 0 20px 50px rgba(13, 27, 42, 0.12);
  animation: gallery-rise 0.7s ease both;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.galerie-simple-card:nth-child(2) { animation-delay: 0.05s; }
.galerie-simple-card:nth-child(3) { animation-delay: 0.1s; }
.galerie-simple-card:nth-child(4) { animation-delay: 0.15s; }
.galerie-simple-card:nth-child(5) { animation-delay: 0.2s; }
.galerie-simple-card:nth-child(6) { animation-delay: 0.25s; }

.galerie-simple-card:hover {
  box-shadow: 0 30px 80px rgba(13, 27, 42, 0.24);
}

.galerie-simple-media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  min-height: 340px;
  aspect-ratio: 4 / 3;
  background: var(--sombre);
  color: var(--blanc);
  text-decoration: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.galerie-simple-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(13, 27, 42, 0.92) 0%, rgba(13, 27, 42, 0.42) 46%, transparent 78%),
    linear-gradient(120deg, rgba(13, 27, 42, 0.16), transparent 60%);
  opacity: 0.88;
  transition: opacity 0.35s ease;
}

.galerie-simple-card:hover .galerie-simple-media::after {
  opacity: 1;
}

.galerie-simple-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.galerie-simple-card:hover .galerie-simple-media img {
  transform: scale(1.08);
}

.galerie-simple-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  max-width: calc(100% - 32px);
  padding: 6px 12px;
  border-radius: 2px;
  background: rgba(245, 166, 35, 0.94);
  color: var(--sombre);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.galerie-simple-overlay {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  transform: translateY(12px);
  transition: transform 0.35s ease;
}

.galerie-simple-card:hover .galerie-simple-overlay {
  transform: translateY(0);
}

.galerie-simple-overlay strong {
  max-width: calc(100% - 76px);
  color: var(--blanc);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.galerie-simple-overlay > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(245, 166, 35, 0.65);
  border-radius: 50%;
  color: var(--or);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(13, 27, 42, 0.42);
  backdrop-filter: blur(10px);
}

.avant-apres-section {
  border-top: 1px solid rgba(13, 27, 42, 0.08);
}

.avant-apres-section .galerie-vide {
  padding-top: 56px;
  padding-bottom: 40px;
}

.home-premium .realisation-card-premium {
  display: block;
  color: var(--blanc);
  text-decoration: none;
}

@media (min-width: 700px) {
  .galerie-simple-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .galerie-simple-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-flow: dense;
  }

  .galerie-simple-card {
    grid-column: span 2;
  }

  .galerie-simple-card:nth-child(1),
  .galerie-simple-card:nth-child(7),
  .galerie-simple-card:nth-child(12) {
    grid-column: span 3;
  }

  .galerie-simple-card:nth-child(5),
  .galerie-simple-card:nth-child(10) {
    grid-column: span 4;
  }

  .galerie-simple-card:nth-child(1) .galerie-simple-media,
  .galerie-simple-card:nth-child(5) .galerie-simple-media,
  .galerie-simple-card:nth-child(10) .galerie-simple-media {
    min-height: 430px;
  }
}

@media (max-width: 767px) {
  .logo {
    gap: 9px;
  }

  .logo-emblem,
  .header .logo-emblem {
    width: 50px;
    height: 50px;
    border-radius: 11px;
  }

  .logo-mark {
    width: 48px;
    height: 48px;
    font-size: 1.45rem;
    line-height: 1;
  }

  .internal-premium .page-hero p,
  .internal-premium .hero-page p,
  .section-heading-left,
  .section-heading-left .sous-titre-section {
    width: 100%;
    max-width: 100%;
  }

  .section-heading-left {
    margin-bottom: 32px;
  }

  .internal-premium .hero-page h1,
  .internal-premium .page-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.95rem, 10vw, 2.25rem);
    overflow-wrap: normal;
  }

  .internal-premium .hero-page p,
  .internal-premium .page-hero p {
    overflow-wrap: anywhere;
  }

  .galerie-simple-section {
    padding-top: 70px;
  }

  .galerie-simple-media {
    min-height: 300px;
  }

  .galerie-simple-overlay {
    right: 18px;
    bottom: 18px;
    left: 18px;
    gap: 10px;
  }

  .galerie-simple-overlay strong {
    max-width: 100%;
    font-size: 1.12rem;
    line-height: 0.98;
    text-wrap: balance;
  }

  .galerie-simple-overlay > span {
    display: none;
  }

  .header-cta,
  .header-devis-btn {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .header-cta,
  .header-devis-btn {
    display: none !important;
  }
}

/* ---- PAGES PUBLIQUES UPGRADEES ---- */
.realisations-upgraded .page-hero-realisations {
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.96), rgba(13, 27, 42, 0.68)),
    url('../../uploads/galerie/charpente-grand-volume.jpg') center/cover no-repeat;
}

.services-upgraded .hero-page {
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.96), rgba(27, 79, 140, 0.78)),
    url('../../uploads/galerie/serrage-structure-metallique.jpg') center/cover no-repeat;
}

.contact-upgraded .contact-hero {
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.96), rgba(27, 79, 140, 0.78)),
    url('../../uploads/galerie/chantier-structure-equipe.jpg') center/cover no-repeat;
}

.realisations-hero-actions,
.services-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.realisations-overview,
.services-promise,
.contact-trust {
  background: var(--sombre);
  border-top: 1px solid rgba(245, 166, 35, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.realisations-overview-grid,
.services-promise-grid,
.contact-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.realisations-overview-card,
.services-promise-item,
.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 112px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--blanc);
  text-decoration: none;
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.realisations-overview-card:last-child,
.services-promise-item:last-child,
.contact-trust-item:last-child {
  border-bottom: 0;
}

.realisations-overview-card span,
.services-promise-item i,
.contact-trust-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(245, 166, 35, 0.32);
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.08);
  color: var(--or);
  font-size: 1.15rem;
}

.realisations-overview-card strong,
.services-promise-item span,
.contact-trust-item span {
  display: block;
  color: var(--blanc);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.realisations-overview-card small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
}

.realisations-overview-card:hover,
.services-promise-item:hover,
.contact-trust-item:hover {
  color: var(--or);
}

.services-promise-grid,
.contact-trust-grid {
  gap: 0;
}

.services-promise-item,
.contact-trust-item {
  justify-content: center;
}

.services-upgraded .services-catalogue {
  background:
    radial-gradient(circle at 12% 12%, rgba(245, 166, 35, 0.1), transparent 30%),
    #F7F8FA;
}

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

.services-upgraded .service-card-photo {
  isolation: isolate;
}

.services-upgraded .service-card-photo h3 {
  min-height: 2.7rem;
}

.services-upgraded .service-card-photo p {
  min-height: 5.6rem;
}

.realisations-upgraded .gallery-section {
  overflow: hidden;
}

.realisations-upgraded .avant-apres-section {
  background:
    radial-gradient(circle at 92% 4%, rgba(27, 79, 140, 0.1), transparent 28%),
    #EEF1F4;
}

.realisations-upgraded .projet-card {
  border-radius: 8px;
}

.realisations-cta {
  background:
    repeating-linear-gradient(-45deg, rgba(245, 166, 35, 0.06), rgba(245, 166, 35, 0.06) 1px, transparent 1px, transparent 12px),
    linear-gradient(135deg, #0D1B2A, #1B4F8C);
}

.contact-upgraded .contact-main {
  background:
    linear-gradient(180deg, #F7F8FA, #EEF1F4);
}

.contact-upgraded .contact-grid {
  gap: 34px;
}

.contact-upgraded .contact-form-wrap,
.contact-upgraded .contact-sidebar {
  border-radius: 10px;
}

.contact-upgraded .contact-form-wrap {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
}

.contact-upgraded .contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--or), var(--bleu));
}

.contact-upgraded .contact-sidebar {
  position: sticky;
  top: 110px;
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid rgba(13, 27, 42, 0.08);
  background: var(--blanc);
  box-shadow: 0 20px 50px rgba(13, 27, 42, 0.08);
}

.contact-upgraded .contact-sidebar h3 {
  margin-bottom: 24px;
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  line-height: 1;
}

.contact-upgraded .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.contact-upgraded .form-group input,
.contact-upgraded .form-group select,
.contact-upgraded .form-group textarea {
  border-color: rgba(13, 27, 42, 0.1);
  background: #FBFCFD;
}

.contact-upgraded .info-bloc {
  border-left: 0;
  border-radius: 8px;
  background: #F7F8FA;
}

.contact-upgraded .section-carte {
  background:
    radial-gradient(circle at 20% 10%, rgba(245, 166, 35, 0.1), transparent 28%),
    var(--fond);
}

.contact-upgraded .carte-wrapper {
  border: 1px solid rgba(13, 27, 42, 0.08);
  box-shadow: 0 22px 60px rgba(13, 27, 42, 0.14);
}

@media (min-width: 720px) {
  .realisations-overview-grid,
  .services-promise-grid,
  .contact-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .realisations-overview-card,
  .services-promise-item,
  .contact-trust-item {
    min-height: 128px;
    padding: 28px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 0;
  }

  .realisations-overview-card:last-child,
  .services-promise-item:last-child,
  .contact-trust-item:last-child {
    border-right: 0;
  }

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

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

@media (min-width: 1100px) {
  .services-upgraded .services-image-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-upgraded .contact-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
    gap: 46px;
  }
}

@media (max-width: 767px) {
  .realisations-hero-actions,
  .services-cta-actions,
  .btp-hero-actions {
    width: 100%;
  }

  .realisations-hero-actions .btn,
  .services-cta-actions .btn,
  .btp-hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .realisations-overview-card,
  .services-promise-item,
  .contact-trust-item {
    padding-inline: 20px;
  }

  .contact-upgraded .contact-sidebar {
    position: static;
  }

  .contact-upgraded .carte-frame {
    height: 320px;
  }

  .internal-premium .hero-page p,
  .internal-premium .page-hero p {
    width: min(100%, 31ch) !important;
    max-width: 31ch !important;
    font-size: 1.02rem;
    line-height: 1.55;
    white-space: normal !important;
    overflow-wrap: break-word;
  }
}

@media (prefers-reduced-motion: reduce) {
  .realisations-overview-card,
  .services-promise-item,
  .contact-trust-item,
  .services-upgraded .service-card-photo,
  .contact-upgraded .info-bloc {
    transition: none;
  }
}
