/* ==========================================================================
   HTA SERVICES SARL — Design System Luxury, High Standing & Corporate Tech
   Palette : Obsidian Dark #030914 + Navy Royal #00234C + Gold Métallique #FFD700 / #FF9100 + Cyan #00E5FF
   Typo : Plus Jakarta Sans (titres) + Inter (texte)
   Direction : Luxury glassmorphism, 3D tilt cards, micro-animations, glowing emblems
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --white: #FFFFFF;
  --paper: #F4F7FC;
  --paper-dark: #0A1424;
  --ink: #071325;
  --text: rgba(15, 30, 51, 0.82);
  --text-light: rgba(255, 255, 255, 0.88);
  --text-soft: rgba(15, 30, 51, 0.56);
  --text-soft-light: rgba(255, 255, 255, 0.65);
  --line: rgba(15, 30, 51, 0.08);
  --line-glass: rgba(255, 255, 255, 0.12);

  --obsidian: #030914;
  --navy-deep: #071325;
  --navy: #00234C;
  --blue-royal: #1259C3;
  --cyan: #00E5FF;
  --cyan-deep: #0052D4;
  --orange: #FF9100;
  --gold: #FFD700;
  --amber: #FFC15E;

  --grad-brand: linear-gradient(135deg, #00234C 0%, #1259C3 60%, #00E5FF 100%);
  --grad-gold: linear-gradient(135deg, #FFD700 0%, #FF9100 50%, #FF5500 100%);
  --grad-dark-glass: linear-gradient(135deg, rgba(7, 19, 37, 0.85) 0%, rgba(3, 9, 20, 0.95) 100%);
  --grad-light-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(244, 247, 252, 0.8) 100%);

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1240px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-sm: 0 4px 20px rgba(7, 19, 37, 0.06);
  --shadow-md: 0 16px 40px -12px rgba(0, 35, 76, 0.18);
  --shadow-lg: 0 28px 64px -16px rgba(0, 35, 76, 0.26);
  --shadow-glow-gold: 0 12px 36px -8px rgba(255, 145, 0, 0.45);
  --shadow-glow-cyan: 0 12px 36px -8px rgba(0, 229, 255, 0.35);
  --shadow-glass: 0 20px 50px -10px rgba(0, 0, 0, 0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--orange); color: #fff; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* Dynamic Layout Containers */
.hero__grid > *, .about-split > *, .page-hero__grid > *, .contact-grid > *,
.footer__grid > *, .pillars > *, .svc-categories > *, .atouts > *,
.why-grid > *, .stats-band__grid > *, .cta-band__inner > *, .gallery-grid > * { min-width: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.18;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.4rem, 4.8vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
p { color: var(--text); }

.grad-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.grad-text-cyan {
  background: linear-gradient(135deg, var(--cyan) 0%, #2563EB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- PRELOADER HAUT STANDING ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--obsidian);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__mark { animation: pulse-mark 1.8s ease-in-out infinite; }
.preloader__bar { width: 200px; height: 3px; background: rgba(255, 255, 255, 0.1); border-radius: 4px; overflow: hidden; }
.preloader__bar span {
  display: block; height: 100%; width: 0%;
  background: var(--grad-gold);
  box-shadow: 0 0 12px var(--orange);
  animation: load-bar 1.3s var(--ease) forwards;
}
@keyframes pulse-mark { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.06); opacity: 0.8; } }
@keyframes load-bar { to { width: 100%; } }

/* ---------- AMBIENT LIGHT ORBS & MESH ---------- */
.glow-orb {
  position: absolute; pointer-events: none; z-index: 1; border-radius: 50%;
  filter: blur(80px); opacity: 0.25;
}
.hero__orb-a { width: 500px; height: 500px; background: var(--cyan); top: -100px; right: -100px; animation: floatOrb 12s ease-in-out infinite alternate; }
.hero__orb-b { width: 450px; height: 450px; background: var(--orange); bottom: -50px; left: -100px; animation: floatOrb 15s ease-in-out infinite alternate-reverse; }

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
  100% { transform: translate(-20px, 40px) scale(0.95); }
}

/* ---------- EYEBROW BADGE ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-royal); margin-bottom: 14px; font-weight: 700;
  padding: 6px 16px; border-radius: 30px;
  background: rgba(18, 89, 195, 0.08); border: 1px solid rgba(18, 89, 195, 0.15);
}
.eyebrow::before { content: ''; width: 7px; height: 7px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 8px var(--orange); flex-shrink: 0; }
.eyebrow--light { color: var(--gold); background: rgba(255, 215, 0, 0.12); border-color: rgba(255, 215, 0, 0.25); }
.eyebrow--center { margin-left: auto; margin-right: auto; }

/* ---------- SECTIONS & HEADERS ---------- */
.section { position: relative; padding: 110px 0; }
.section--tight { padding: 70px 0; }
.section--alt { background: var(--paper); }
.section--dark { background: var(--obsidian); color: #fff; }
.section-head { max-width: 680px; margin-bottom: 64px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.08rem; margin-top: 16px; opacity: 0.85; }

/* ---------- LOGO & TOP STRIP ---------- */
.hta-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.hta-logo__text { display: flex; flex-direction: column; gap: 2px; line-height: 1.2; }
.hta-logo__name { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; color: var(--navy); white-space: nowrap; }
.hta-logo__name em { font-style: normal; color: var(--orange); }
.hta-logo__slogan { font-size: 0.72rem; color: var(--text-soft); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }
body.is-home .navbar .hta-logo__slogan { color: rgba(255, 255, 255, 0.5); }
.footer .hta-logo__name { color: #fff; }
.footer .hta-logo__slogan { color: rgba(255, 255, 255, 0.5); }

.top-strip { background: var(--obsidian); color: rgba(255, 255, 255, 0.8); font-size: 0.78rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.top-strip__inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; gap: 16px; }
.top-strip__left { display: flex; align-items: center; gap: 16px; }
.top-strip__left a:hover, .top-strip__right a:hover { color: var(--gold); }
.top-strip__sep { width: 1px; height: 12px; background: rgba(255, 255, 255, 0.2); }
.top-strip__right a { color: var(--gold); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }

/* ---------- NAVBAR GLASSMORPHISM ---------- */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 30, 51, 0.08);
  transition: all 0.3s var(--ease);
}
body.is-home .navbar { background: rgba(3, 9, 20, 0.88); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
body.is-home .navbar .hta-logo__name { color: #fff; }
body.is-home .nav-link { color: rgba(255, 255, 255, 0.85); }
body.is-home .nav-link:hover, body.is-home .nav-link.active { color: var(--gold); }

.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.navbar__nav { display: flex; align-items: center; gap: 28px; }

.nav-link {
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 600;
  color: var(--navy); position: relative; padding: 8px 0; transition: color 0.25s var(--ease);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-link:hover, .nav-link.active { color: var(--blue-royal); }
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 2px;
  background: var(--grad-gold); transition: width 0.3s var(--ease); border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Nav Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(10px);
  width: 270px; background: rgba(7, 19, 37, 0.95); backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--radius);
  padding: 12px; box-shadow: var(--shadow-glass); opacity: 0; visibility: hidden;
  transition: all 0.3s var(--ease); z-index: 100;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown__link {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  border-radius: var(--radius-sm); color: rgba(255, 255, 255, 0.85); font-weight: 600; font-size: 0.88rem;
  transition: all 0.2s var(--ease);
}
.nav-dropdown__link:hover { background: rgba(255, 255, 255, 0.08); color: var(--gold); transform: translateX(4px); }

/* ---------- BOUTONS HAUT STANDING ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.94rem;
  padding: 14px 28px; border-radius: 40px; transition: all 0.3s var(--ease);
  position: relative; overflow: hidden; z-index: 1;
}
.btn--lg { padding: 18px 36px; font-size: 1.02rem; }
.btn--primary {
  background: var(--grad-gold); color: #fff;
  box-shadow: var(--shadow-glow-gold); border: none;
}
.btn--primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}
.btn--primary:hover::before { left: 100%; }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -6px rgba(255, 145, 0, 0.6); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.08); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2); backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.4); transform: translateY(-3px); }

.btn--nav {
  background: var(--grad-brand); color: #fff; padding: 10px 22px; font-size: 0.88rem;
  box-shadow: var(--shadow-sm); border-radius: 30px;
}
.btn--nav:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow-cyan); }

/* ---------- HERO SECTION HAUT STANDING ---------- */
.hero {
  position: relative; background: var(--obsidian); color: #fff;
  padding: 120px 0 100px; overflow: hidden; min-height: 85vh; display: flex; align-items: center;
}
.hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; }

.hero__kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
  padding: 8px 18px; border-radius: 30px; background: rgba(255, 215, 0, 0.1); border: 1px solid rgba(255, 215, 0, 0.2);
}
.hero__title { font-size: clamp(2.6rem, 5.2vw, 4.3rem); font-weight: 800; line-height: 1.1; margin-bottom: 22px; color: #fff; }
.hero__subtitle { font-size: 1.15rem; color: var(--text-light); opacity: 0.88; max-width: 580px; margin-bottom: 36px; }

.hero__actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 50px; }

.hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding: 24px; background: rgba(255, 255, 255, 0.04); backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius);
}
.hero__stat b { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.hero__stat span { font-size: 0.82rem; color: var(--text-soft-light); font-weight: 500; }

/* Visual Cluster 3D Frame */
.hero__cluster { position: relative; display: flex; justify-content: center; align-items: center; }
.hero__diamonds { position: relative; }
.hero__diamond {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-glass); border: 2px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s var(--ease);
}
.hero__diamond img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.hero__diamond:hover img { transform: scale(1.06); }

.hero__diamond--main { width: 300px; height: 380px; z-index: 3; animation: floatDiamondMain 7s ease-in-out infinite; }
.hero__diamond--a { width: 168px; height: 208px; position: absolute; top: -30px; left: -64px; z-index: 2; animation: floatDiamondA 8s ease-in-out infinite; }
.hero__diamond--b { width: 168px; height: 208px; position: absolute; bottom: -30px; right: -54px; z-index: 4; animation: floatDiamondB 9s ease-in-out infinite; }
.hero__diamond--c { width: 130px; height: 160px; position: absolute; bottom: 6px; left: -128px; z-index: 1; animation: floatDiamondC 10s ease-in-out infinite; }
.hero__diamond--d { width: 130px; height: 160px; position: absolute; top: 6px; right: -118px; z-index: 1; animation: floatDiamondD 8.5s ease-in-out infinite; }

@keyframes floatDiamondMain {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes floatDiamondA {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(-7deg) translateY(-14px); }
}
@keyframes floatDiamondB {
  0%, 100% { transform: rotate(7deg) translateY(0); }
  50% { transform: rotate(7deg) translateY(14px); }
}
@keyframes floatDiamondC {
  0%, 100% { transform: rotate(-10deg) translateY(0); }
  50% { transform: rotate(-10deg) translateY(12px); }
}
@keyframes floatDiamondD {
  0%, 100% { transform: rotate(10deg) translateY(0); }
  50% { transform: rotate(10deg) translateY(-12px); }
}

.hero__tag {
  position: absolute; z-index: 5; background: rgba(7, 19, 37, 0.92); backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 215, 0, 0.3); padding: 11px 18px; border-radius: 40px;
  display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 0.82rem; color: #fff;
  box-shadow: var(--shadow-glass); white-space: nowrap;
}
.hero__tag--1 { top: -26px; left: 92px; }
.hero__tag--2 { top: 196px; left: -50px; }
.hero__tag--3 { bottom: 26px; left: -136px; }
.hero__tag--4 { top: 222px; right: -104px; }
.hero__tag--5 { top: 128px; right: -68px; }

/* ---------- MARQUEE BAND (TICKER) ---------- */
.marquee { background: var(--navy-deep); border-y: 1px solid rgba(255, 255, 255, 0.08); padding: 18px 0; overflow: hidden; }
.marquee__track { display: flex; gap: 40px; white-space: nowrap; animation: marqueeLoop 25s linear infinite; }
.marquee__track span {
  display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display);
  font-weight: 700; font-size: 0.95rem; color: rgba(255, 255, 255, 0.85); text-transform: uppercase; letter-spacing: 0.08em;
}
.marquee__track span::before { content: '✦'; color: var(--gold); font-size: 0.9rem; }
@keyframes marqueeLoop { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- SECTOR PILLARS GRID & 3D CARDS ---------- */
.pillars { display: grid; grid-template-columns: repeat(var(--cols, auto-fit), minmax(280px, 1fr)); gap: 30px; }
.pillars--wide { grid-template-columns: repeat(3, 1fr); }

.pillar-card {
  position: relative; background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 30px; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease); overflow: hidden; display: flex; flex-direction: column; justify-content: space-between;
}
.pillar-card--media { padding: 0; }
.pillar-card__media { position: relative; height: 220px; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.pillar-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.pillar-card__num {
  position: absolute; top: 16px; right: 16px; font-family: var(--font-display);
  font-weight: 800; font-size: 1.4rem; color: #fff; background: rgba(3, 9, 20, 0.6);
  backdrop-filter: blur(10px); padding: 4px 14px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.2);
}
.pillar-card__icon {
  position: absolute; bottom: 16px; left: 16px; width: 56px; height: 56px;
  border-radius: 16px; background: var(--grad-gold); color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-glow-gold);
}

.pillar-card__watermark { position: absolute; right: -20px; bottom: -20px; opacity: 0.12; transition: all 0.4s var(--ease); pointer-events: none; }
.pillar-card:hover .pillar-card__watermark { opacity: 0.28; transform: scale(1.1) rotate(-4deg); }

.pillar-card__body { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }
.pillar-card h3 { font-size: 1.35rem; margin-bottom: 12px; transition: color 0.3s var(--ease); }
.pillar-card p { font-size: 0.95rem; color: var(--text-soft); margin-bottom: 24px; line-height: 1.6; }
.pillar-card__link {
  margin-top: auto; font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  color: var(--blue-royal); display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s var(--ease);
}

.pillar-card:hover {
  transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(255, 145, 0, 0.3);
}
.pillar-card:hover .pillar-card__media img { transform: scale(1.08); }
.pillar-card:hover h3 { color: var(--orange); }
.pillar-card:hover .pillar-card__link { gap: 14px; color: var(--orange); }

/* ---------- STATS BAND ---------- */
.stats-band {
  background: var(--obsidian); color: #fff; padding: 70px 0; position: relative; overflow: hidden;
  border-y: 1px solid rgba(255, 255, 255, 0.08);
}
.stats-band__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.stat b { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; color: var(--gold); display: block; line-height: 1; margin-bottom: 10px; }
.stat span { font-size: 1.05rem; opacity: 0.85; font-weight: 500; }

/* ---------- ABOUT & ATOUTS SECTION ---------- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-frame__badge {
  position: absolute; bottom: 30px; left: 30px; background: rgba(7, 19, 37, 0.9);
  backdrop-filter: blur(16px); border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 16px 24px; border-radius: 20px; color: #fff; font-weight: 700;
  display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow-glass);
}

.about-list { margin: 24px 0 34px; display: flex; flex-direction: column; gap: 14px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--navy); }

/* Atouts / Values */
.atouts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.atout-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 26px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: all 0.3s var(--ease);
}
.atout-card__icon {
  width: 58px; height: 58px; border-radius: 16px; background: rgba(255, 145, 0, 0.1);
  color: var(--orange); display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.atout-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.atout-card p { font-size: 0.9rem; color: var(--text-soft); }
.atout-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(255, 145, 0, 0.25); }

/* ---------- PAGE HERO (SERVICE PAGES) ---------- */
.page-hero {
  position: relative; background: var(--obsidian); color: #fff;
  padding: 100px 0 80px; overflow: hidden; min-height: 50vh; display: flex; align-items: center;
}
.page-hero__slides { position: absolute; inset: 0; z-index: 0; opacity: 0.55; }
.page-hero__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  animation: kenBurns 12s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.15) translate(-2%, -2%); }
}
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3, 9, 20, 0.55) 0%, rgba(3, 9, 20, 0.9) 100%); }
.page-hero__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; position: relative; z-index: 2; }
.page-hero p { color: rgba(255, 255, 255, 0.82); font-size: 1.05rem; margin-top: 18px; max-width: 620px; }
.page-hero h1 { color: #fff; }
.page-hero__crumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; opacity: 0.75; margin-bottom: 16px; }
.page-hero__crumb a:hover { color: var(--gold); }
.page-hero__tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.tag {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600;
  padding: 6px 14px; border-radius: 20px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15);
}

.svc-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.svc-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: all 0.3s var(--ease);
}
.svc-card__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--grad-gold); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.svc-card h3 { font-size: 1.25rem; margin-bottom: 16px; }
.svc-card ul { display: flex; flex-direction: column; gap: 10px; }
.svc-card li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--text); }
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(255, 145, 0, 0.3); }

/* ---------- FOOTER HAUT STANDING ---------- */
.footer { background: var(--obsidian); color: rgba(255, 255, 255, 0.8); padding: 90px 0 30px; border-t: 1px solid rgba(255, 255, 255, 0.08); }
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; margin-bottom: 70px; }
.footer__col h4 { font-family: var(--font-display); font-size: 1.1rem; color: #fff; margin-bottom: 22px; font-weight: 700; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { opacity: 0.75; transition: all 0.25s var(--ease); font-size: 0.92rem; }
.footer__links a:hover { opacity: 1; color: var(--gold); transform: translateX(4px); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.08); font-size: 0.85rem; opacity: 0.65; }

/* ---------- GRAIN OVERLAY ---------- */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-scale {
  opacity: 0; transform: scale(0.94);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal-scale.in { opacity: 1; transform: none; }

/* ---------- UTILITY BUTTONS ---------- */
.btn--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); color: #fff;
  box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.45);
}
.btn--whatsapp:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -6px rgba(37, 211, 102, 0.6); }
.btn--outline-light {
  background: rgba(18, 89, 195, 0.06); border: 1.5px solid rgba(18, 89, 195, 0.22); color: var(--blue-royal);
}
.btn--outline-light:hover {
  background: var(--grad-brand); color: #fff; border-color: transparent;
  transform: translateY(-3px); box-shadow: var(--shadow-glow-cyan);
}
.mt-2 { margin-top: 16px; }

/* ---------- DECORATIVE DIAMONDS ---------- */
.hta-diamonds { position: absolute; display: flex; gap: 10px; pointer-events: none; z-index: 1; }
.hta-diamonds i { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); display: block; box-shadow: 0 0 10px var(--gold); }
.hta-diamonds i:nth-child(2) { opacity: 0.6; }
.hta-diamonds i:nth-child(3) { opacity: 0.3; }
.stats-band__diamonds { top: 28px; right: 32px; }
.cta-band__diamonds { bottom: 26px; left: 32px; }

/* ---------- MOBILE NAV / OVERLAY / DROPDOWN TOUCH ---------- */
.navbar__burger { display: none; }
.navbar__burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar__burger.active span:nth-child(2) { opacity: 0; }
.navbar__burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.navbar.scrolled { box-shadow: var(--shadow-sm); }
body.is-home .navbar.scrolled { background: rgba(3, 9, 20, 0.96); }

.nav-overlay {
  position: fixed; inset: 0; z-index: 999; background: rgba(3, 9, 20, 0.6); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: all 0.3s var(--ease);
}
.nav-overlay.active { opacity: 1; visibility: visible; }

.nav-item.open .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.nav-social { display: none; }
.nav-social__links { display: flex; gap: 10px; }
.nav-social__btn {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15); display: flex; align-items: center; justify-content: center;
  color: #fff; transition: all 0.25s var(--ease);
}
.nav-social__btn--wa:hover { background: #25D366; border-color: transparent; }

/* ---------- CTA BAND ---------- */
.cta-band {
  position: relative; background: var(--grad-brand); overflow: hidden; padding: 80px 0; color: #fff;
}
.cta-band__glow {
  position: absolute; inset: -40%; pointer-events: none;
  background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.35), transparent 60%);
  filter: blur(60px);
}
.cta-band__inner {
  position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; }
.cta-band__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- FOOTER EXTRAS ---------- */
.footer__desc { font-size: 0.92rem; line-height: 1.7; opacity: 0.75; margin: 20px 0 6px; max-width: 360px; }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.25s var(--ease);
}
.footer__social a:hover { background: var(--grad-gold); transform: translateY(-3px); box-shadow: var(--shadow-glow-gold); }
.footer__contact-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.footer__contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; }
.footer__contact-list a:hover { color: var(--gold); }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- FLOATING BUTTONS ---------- */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E); display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 14px 34px -8px rgba(37, 211, 102, 0.55); z-index: 500;
  transition: all 0.3s var(--ease); animation: floatPulse 2.6s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 18px 40px -6px rgba(37, 211, 102, 0.7); }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 14px 34px -8px rgba(37, 211, 102, 0.55); }
  50% { box-shadow: 0 14px 34px -8px rgba(37, 211, 102, 0.85), 0 0 0 10px rgba(37, 211, 102, 0.12); }
}
.back-to-top {
  position: fixed; bottom: 26px; right: 96px; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(7, 19, 37, 0.9); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s var(--ease); z-index: 500;
}
.back-to-top svg { transform: rotate(-90deg); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--grad-gold); border-color: transparent; }

/* ---------- QUOTE MODAL & SHARED FORMS ---------- */
.quote-modal {
  position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.quote-modal.active { opacity: 1; visibility: visible; }
.quote-modal__backdrop { position: absolute; inset: 0; background: rgba(3, 9, 20, 0.75); backdrop-filter: blur(6px); }
.quote-modal__panel {
  position: relative; width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto;
  background: #fff; border-radius: var(--radius-lg); padding: 44px 40px; box-shadow: var(--shadow-lg);
  transform: translateY(24px) scale(0.97); transition: transform 0.4s var(--ease);
}
.quote-modal.active .quote-modal__panel { transform: translateY(0) scale(1); }
.quote-modal__close {
  position: absolute; top: 20px; right: 20px; width: 38px; height: 38px; border-radius: 50%;
  background: var(--paper); color: var(--navy); display: flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--ease);
}
.quote-modal__close:hover { background: var(--grad-gold); color: #fff; transform: rotate(90deg); }
.quote-modal__head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; margin-bottom: 28px; }
.quote-modal__head img { margin: 0 auto 10px; }
.quote-modal__head h3 { margin: 8px 0 6px; }
.quote-modal__head p { font-size: 0.92rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--text); background: var(--paper);
  transition: all 0.25s var(--ease); width: 100%;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue-royal); background: #fff; box-shadow: 0 0 0 4px rgba(18, 89, 195, 0.1);
}
.form-submit { width: 100%; margin-top: 6px; }
.form-success {
  display: none; align-items: center; gap: 10px; margin-top: 16px; padding: 14px 18px;
  border-radius: var(--radius-sm); background: rgba(27, 139, 76, 0.1); color: #1B8B4C;
  font-weight: 600; font-size: 0.9rem;
}
.form-success.show { display: flex; }

/* ---------- HOME: WHY / GALLERY BENTO / PARTNERS / CASES ---------- */
.why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.why-grid__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.why-grid__media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.why-list { margin-top: 28px; display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item__icon {
  width: 46px; height: 46px; border-radius: 14px; background: rgba(255, 145, 0, 0.1); color: var(--orange);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-item h4 { font-size: 1rem; margin-bottom: 6px; }
.why-item p { font-size: 0.9rem; color: var(--text-soft); margin: 0; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 180px); gap: 20px; }
.gallery-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 18px;
  background: linear-gradient(0deg, rgba(3, 9, 20, 0.85), transparent); color: #fff;
  font-weight: 600; font-size: 0.85rem; opacity: 0; transform: translateY(8px); transition: all 0.3s var(--ease);
}
.gallery-item:hover .gallery-item__caption { opacity: 1; transform: none; }
.gallery-item--a { grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery-item--b { grid-column: 3 / 5; grid-row: 1 / 2; }
.gallery-item--c { grid-column: 3 / 4; grid-row: 2 / 3; }
.gallery-item--d { grid-column: 4 / 5; grid-row: 2 / 3; }

.partners-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 20px 40px; margin-bottom: 20px; }
.partner-logo-card {
  width: 150px; height: 80px; display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  padding: 16px 24px; transition: all 0.3s var(--ease);
}
.partner-logo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.partner-logo-card img { max-width: 100%; max-height: 100%; object-fit: contain; }

.case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; margin-top: 44px; }
.case-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: all 0.3s var(--ease);
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.case-card__logo { height: 36px; width: auto; object-fit: contain; margin-bottom: 18px; }
.case-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.case-card p { font-size: 0.88rem; color: var(--text-soft); margin: 0; }

.page-hero__mark { display: flex; align-items: center; justify-content: center; opacity: 0.92; filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4)); }
.page-hero__mark svg { max-width: 100%; height: auto; }

/* ---------- CONTACT PAGE ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: start; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 16px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-sm); transition: all 0.3s var(--ease);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(255, 145, 0, 0.25); }
.contact-card__icon {
  width: 48px; height: 48px; border-radius: 14px; background: var(--grad-gold); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow-glow-gold);
}
.contact-card h4 { font-size: 1rem; margin-bottom: 6px; }
.contact-card p { font-size: 0.88rem; margin: 0; }
.contact-card p + p { margin-top: 2px; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); height: 320px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(1.05); }
.map-embed__more { margin-top: 14px; font-size: 0.85rem; text-align: right; }
.map-embed__more a { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--blue-royal); }
.map-embed__more a:hover { color: var(--orange); }

.contact-form {
  background: var(--obsidian); border-radius: var(--radius-lg); padding: 44px 40px;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden; color: #fff;
}
.contact-form::before {
  content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px;
  background: var(--grad-gold); opacity: 0.15; filter: blur(60px); border-radius: 50%;
}
.contact-form h3, .contact-form p { position: relative; }
.contact-form h3 { color: #fff; }
.contact-form p { color: var(--text-soft-light); }
.contact-form .form-group { position: relative; }
.contact-form .form-group label { color: rgba(255, 255, 255, 0.85); }
.contact-form .form-group input, .contact-form .form-group select, .contact-form .form-group textarea {
  background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.14); color: #fff;
}
.contact-form .form-group input::placeholder, .contact-form .form-group textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
.contact-form .form-group input:focus, .contact-form .form-group select:focus, .contact-form .form-group textarea:focus {
  border-color: var(--gold); background: rgba(255, 255, 255, 0.08); box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.12);
}
.contact-form select option { color: #0A1424; }

/* ---------- GALERIE & LIGHTBOX ---------- */
.galerie-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 28px; }
.album-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all 0.4s var(--ease); text-align: left; display: flex; flex-direction: column; width: 100%;
}
.album-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(255, 145, 0, 0.3); }
.album-card__cover { position: relative; height: 200px; overflow: hidden; }
.album-card__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.album-card:hover .album-card__cover img { transform: scale(1.08); }
.album-card__count {
  position: absolute; bottom: 12px; right: 12px; display: inline-flex; align-items: center; gap: 6px;
  background: rgba(3, 9, 20, 0.7); backdrop-filter: blur(8px); color: #fff; font-size: 0.78rem;
  font-weight: 600; padding: 6px 12px; border-radius: 20px;
}
.album-card__body { padding: 22px 24px; }
.album-card__body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.album-card__link { font-family: var(--font-display); font-weight: 700; font-size: 0.86rem; color: var(--blue-royal); display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s var(--ease); }
.album-card:hover .album-card__link { gap: 14px; color: var(--orange); }

.lightbox {
  position: fixed; inset: 0; z-index: 3000; display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(3, 9, 20, 0.94); }
.lightbox__stage { position: relative; z-index: 2; max-width: 88vw; max-height: 76vh; display: flex; align-items: center; justify-content: center; }
.lightbox__stage img { max-width: 88vw; max-height: 76vh; object-fit: contain; border-radius: var(--radius-sm); box-shadow: var(--shadow-glass); }
.lightbox__close, .lightbox__nav {
  position: absolute; z-index: 3; border-radius: 50%; background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2); display: flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--grad-gold); border-color: transparent; }
.lightbox__close { top: 26px; right: 26px; width: 44px; height: 44px; }
.lightbox__close:hover { transform: rotate(90deg); }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }
.lightbox__nav--prev { left: 26px; }
.lightbox__nav--next { right: 26px; }
.lightbox__caption { position: relative; z-index: 2; margin-top: 22px; display: flex; align-items: center; gap: 16px; color: #fff; font-family: var(--font-display); font-weight: 600; }
.lightbox__caption span:last-child { opacity: 0.55; font-size: 0.85rem; font-weight: 500; }

/* ---------- ACTUALITÉS ---------- */
.actu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.actu-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); transition: all 0.4s var(--ease); display: flex; flex-direction: column;
}
.actu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(255, 145, 0, 0.3); }
.actu-card__img { position: relative; height: 200px; overflow: hidden; background: var(--obsidian); }
.actu-card__img img, .actu-card__img video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.actu-card:hover .actu-card__img img, .actu-card:hover .actu-card__img video { transform: scale(1.08); }
.actu-card__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(3, 9, 20, 0.35); }
.actu-card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex-grow: 1; }
.actu-card__date { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.actu-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.actu-card p { font-size: 0.9rem; color: var(--text-soft); margin-bottom: 18px; flex-grow: 1; }
.actu-card__link { margin-top: auto; font-family: var(--font-display); font-weight: 700; font-size: 0.86rem; color: var(--blue-royal); display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s var(--ease); }
.actu-card:hover .actu-card__link { gap: 14px; color: var(--orange); }

.page-hero--article { min-height: auto; padding: 90px 0 60px; }
.actu-article { max-width: 820px; margin: 0 auto; }
.actu-article__cover { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); margin-bottom: 44px; }
.actu-article__cover img, .actu-article__cover video { width: 100%; max-height: 520px; object-fit: cover; }
.actu-article__body { font-size: 1.05rem; line-height: 1.85; }
.actu-article__body p { margin-bottom: 22px; }
.actu-article__gallery-head { margin: 56px 0 28px; text-align: center; }
.actu-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.actu-gallery__item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4 / 3; }
.actu-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.actu-gallery__item:hover img { transform: scale(1.06); }
.actu-videos { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.actu-videos__item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.actu-videos__item video { width: 100%; display: block; }

/* ---------- SERVICE TEMPLATE EXTRAS ---------- */
.showcase-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.showcase-photo img { width: 100%; max-height: 520px; object-fit: cover; }
.showcase-photo__caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 26px 32px;
  background: linear-gradient(0deg, rgba(3, 9, 20, 0.88) 0%, transparent 100%); color: #fff;
  font-weight: 600; font-size: 0.95rem;
}
.product-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.product-gallery__item { text-align: center; }
.product-gallery__photo {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); transition: all 0.3s var(--ease); background: #fff; padding: 18px;
  display: flex; align-items: center; justify-content: center;
}
.product-gallery__photo img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.5s var(--ease); }
.product-gallery__item:hover .product-gallery__photo { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(255, 145, 0, 0.3); }
.product-gallery__item:hover .product-gallery__photo img { transform: scale(1.06); }
.product-gallery__label { display: block; margin-top: 14px; font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.product-gallery__item--more { width: 100%; }
.product-gallery__photo--more {
  background: rgba(255, 145, 0, 0.06); border: 1.5px dashed rgba(255, 145, 0, 0.45); color: var(--orange);
}
.product-gallery__item--more:hover .product-gallery__photo--more {
  background: var(--grad-gold); border-style: solid; border-color: transparent; color: #fff; box-shadow: var(--shadow-glow-gold);
}
.product-gallery__item--more:hover .product-gallery__label { color: var(--orange); }

.svc-products { text-align: center; }
.svc-products__grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
.product-chip {
  display: inline-flex; align-items: center; padding: 10px 20px; border-radius: 30px; background: #fff;
  border: 1px solid var(--line); font-weight: 600; font-size: 0.88rem; color: var(--navy);
  box-shadow: var(--shadow-sm); transition: all 0.3s var(--ease);
}
.product-chip:hover { background: var(--grad-gold); color: #fff; border-color: transparent; transform: translateY(-3px); box-shadow: var(--shadow-glow-gold); }
.coverage-band { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--line); }
.coverage-item { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--blue-royal); font-size: 0.92rem; }

/* ---------- RESPONSIVE BREAKPOINTS ---------- */
@media (max-width: 1024px) {
  .hero__grid, .about-split, .page-hero__grid, .footer__grid { grid-template-columns: 1fr; gap: 50px; }
  .pillars--wide { grid-template-columns: repeat(2, 1fr); }
  .atouts { grid-template-columns: repeat(2, 1fr); }
  .hero__diamond--main { width: 280px; height: 350px; }

  .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid__media img { min-height: 280px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 160px); }
  .gallery-item--a { grid-column: 1 / 3; grid-row: 1 / 2; }
  .gallery-item--b { grid-column: 1 / 2; grid-row: 2 / 3; }
  .gallery-item--c { grid-column: 2 / 3; grid-row: 2 / 3; }
  .gallery-item--d { grid-column: 1 / 3; grid-row: 3 / 4; }
}

@media (max-width: 768px) {
  .top-strip { display: none; }
  .navbar__nav {
    display: flex; position: fixed; top: 0; right: -100%; width: min(340px, 86vw); height: 100vh;
    flex-direction: column; align-items: flex-start; background: var(--obsidian);
    padding: 100px 32px 40px; gap: 4px; overflow-y: auto; transition: right 0.4s var(--ease); z-index: 1001;
  }
  .navbar__nav.active { right: 0; }
  .navbar__nav .nav-link { color: #fff; width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .navbar__nav .btn--nav { width: 100%; justify-content: center; margin-top: 16px; }
  .nav-item { width: 100%; }
  .nav-dropdown {
    position: static; width: 100%; transform: none; opacity: 1; visibility: visible;
    max-height: 0; overflow: hidden; padding: 0; margin: 0; border: none; background: transparent;
    box-shadow: none; transition: max-height 0.35s var(--ease);
  }
  .nav-item.open .nav-dropdown { max-height: 400px; padding: 8px 0 8px 12px; transform: none; left: auto; }
  .nav-social { display: flex; flex-direction: column; gap: 12px; margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.08); width: 100%; }
  .nav-social__label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.6; color: #fff; }

  .navbar__burger { display: flex; flex-direction: column; gap: 6px; cursor: pointer; }
  .navbar__burger span { width: 26px; height: 2px; background: var(--navy); transition: all 0.3s; }
  body.is-home .navbar__burger span { background: #fff; }
  .pillars, .pillars--wide, .stats-band__grid, .atouts { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; }

  .hero__cluster { margin-top: 10px; }
  .hero__diamond { border-radius: 12px; }
  .hero__diamond--main { width: 148px; height: 184px; }
  .hero__diamond--a { width: 92px; height: 114px; top: -58px; left: -68px; }
  .hero__diamond--b { width: 92px; height: 114px; bottom: -58px; right: -58px; }
  .hero__diamond--c { width: 74px; height: 92px; bottom: -18px; left: -88px; }
  .hero__diamond--d { width: 74px; height: 92px; top: -18px; right: -80px; }
  .hero__tag { font-size: 0.66rem; padding: 6px 10px; gap: 5px; }
  .hero__tag svg { width: 13px; height: 13px; }
  .hero__tag--1 { top: -50px; left: -4px; }
  .hero__tag--2 { top: 80px; left: -108px; }
  .hero__tag--3 { bottom: -24px; left: -112px; }
  .hero__tag--4 { top: 128px; right: -100px; }
  .hero__tag--5 { top: -10px; right: -108px; }

  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .quote-modal__panel, .contact-form { padding: 34px 24px; }
  .lightbox__nav { width: 42px; height: 42px; }
  .lightbox__nav--prev { left: 10px; }
  .lightbox__nav--next { right: 10px; }
  .lightbox__close { top: 16px; right: 16px; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
  .back-to-top { width: 44px; height: 44px; bottom: 86px; right: 20px; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .footer__bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
}
