/*
Theme Name: ALMA Industrie
Theme URI: https://alma.ma
Author: ALMA Group
Author URI: https://alma.ma
Description: ThÃƒÆ’Ã‚Â¨me WordPress sur mesure pour ALMA ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Groupe industriel marocain. Structure inspirÃƒÆ’Ã‚Â©e du template Industrie RSTheme, adaptÃƒÆ’Ã‚Â©e avec les couleurs et le contenu ALMA.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
License: Proprietary
Text Domain: alma-industrie
*/

/* ============================================================
   CSS Custom Properties (ALMA Brand Colors from Logo)
   Logo colors: #1D83C1 (deep blue), #73C6F0 (sky blue)
   ============================================================ */
:root {
  /* Brand Colors ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â from ALMA logo */
  --alma-blue: #1D83C1;
  --alma-sky: #73C6F0;
  --alma-blue-dark: #0B5394;
  --alma-blue-light: #A8DCF7;

  /* Accent */
  --alma-orange: #E5651A;
  --alma-green: #2EA46A;
  --alma-purple: #7C5BC9;
  --alma-cyan: #1FA8E0;
  --alma-yellow: #E0B81F;

  /* Neutrals */
  --text: #1E2023;
  --text-dim: #475467;
  --text-muted: #667085;
  --bg: #FFFFFF;
  --bg-alt: #F4F7FA;
  --bg-dark: #111418;
  --surface: #FFFFFF;
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.14);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.12);

  /* Typography */
  --font-body: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;

  /* Sizes */
  --max-width: 1280px;
  --header-height: 90px;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--alma-blue); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--text-dim); }

/* ============================================================
   Utility Classes
   ============================================================ */
.hi { color: var(--alma-blue); }
.text-dim { color: var(--text-dim); }
.text-muted { color: var(--text-muted); }

.eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--alma-blue);
  margin-bottom: 0.5rem;
}

.section {
  padding: 100px 20px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head h2 { margin-bottom: 12px; }
.section-head p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* Reveal animation ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â GSAP ScrollTrigger style (power2.out) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: var(--radius);
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn.lg { padding: 16px 36px; font-size: 1rem; }
.btn.sm { padding: 8px 18px; font-size: 0.85rem; }

.btn-primary {
  background: var(--alma-blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--alma-blue-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--alma-blue);
  border: 2px solid var(--alma-blue);
}
.btn-outline:hover {
  background: var(--alma-blue);
  color: #fff;
}

.btn-orange {
  background: transparent;
  color: var(--alma-orange);
  border: 1.5px solid var(--alma-orange);
}
.btn-orange:hover {
  background: var(--alma-orange);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--alma-blue);
}
.btn-white:hover {
  background: var(--alma-sky);
  color: var(--alma-blue-dark);
}

/* ============================================================
   Preloader
   ============================================================ */
#preloader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s, visibility 0.5s;
}
#preloader.loaded { opacity: 0; visibility: hidden; }
#preloader .loader-icon {
  width: 60px; height: 60px;
  border: 3px solid var(--line);
  border-top-color: var(--alma-blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   Top Bar
   ============================================================ */
.alma-topbar {
  background: var(--bg-dark);
  color: #CECFD2;
  font-size: 0.9rem;
  padding: 8px 0;
}
.alma-topbar .tb-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.alma-topbar .tb-left,
.alma-topbar .tb-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.alma-topbar .item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.alma-topbar .item svg { flex-shrink: 0; width: 16px !important; height: 16px !important; }
.alma-topbar .socials { display: flex; gap: 12px; }
.alma-topbar .socials a {
  color: #CECFD2;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.alma-topbar .socials a svg {
  width: 16px !important;
  height: 16px !important;
}
.alma-topbar .socials a:hover { color: var(--alma-sky); }
.alma-topbar .lang { display: flex; gap: 6px; font-weight: 600; }
.alma-topbar .lang .opt { opacity: 0.5; cursor: pointer; display: flex; align-items: center; gap: 4px; }
.alma-topbar .lang .opt.active { opacity: 1; color: #fff; }

/* ============================================================
   Header / Navigation
   ============================================================ */
.alma-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.alma-nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}
.alma-nav .logo img { height: 52px; width: auto; }

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-link {
  padding: 12px 18px;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  color: var(--text);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  background: rgba(29, 131, 193, 0.08);
  color: var(--alma-blue);
}
.nav-link .caret {
  margin-left: 4px;
  font-size: 0.7rem;
  transition: transform 0.2s;
  display: inline-block;
}
.nav-link .caret.open { transform: rotate(180deg); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mega menu */
.v1-mega {
  position: absolute;
  top: var(--header-height);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  display: none;
  padding: 40px;
  z-index: 999;
}
.v1-mega.open { display: flex; }
.v1-mega .intro { width: 300px; flex-shrink: 0; }
.v1-mega .intro h4 { margin-bottom: 8px; }
.v1-mega .intro p { font-size: 0.9rem; }
.v1-mega .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  flex: 1;
  margin-left: 40px;
}
.activity-card {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all 0.25s;
  cursor: pointer;
}
.activity-card:hover {
  border-color: var(--act-color, var(--alma-blue));
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.activity-card .ico { font-size: 1.6rem; margin-bottom: 8px; }
.activity-card .title { font-weight: 700; margin-bottom: 4px; color: var(--text); }
.activity-card .desc { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 8px; }
.activity-card .arrow { font-size: 0.85rem; font-weight: 600; color: var(--alma-blue); }

/* Mobile menu toggle */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* Offcanvas mobile */
.offcanvas {
  position: fixed;
  top: 0; right: -320px;
  width: 320px; height: 100vh;
  background: #fff;
  z-index: 10001;
  box-shadow: var(--shadow-lg);
  transition: right 0.35s ease;
  padding: 30px;
  overflow-y: auto;
}
.offcanvas.open { right: 0; }
.offcanvas-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  opacity: 0; visibility: hidden;
  transition: 0.35s;
}
.offcanvas-overlay.open { opacity: 1; visibility: visible; }
.offcanvas .oc-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer;
  color: var(--text);
}
.offcanvas .oc-links { display: flex; flex-direction: column; gap: 4px; margin-top: 30px; }
.offcanvas .oc-links a {
  padding: 12px 16px;
  font-weight: 500;
  border-radius: var(--radius);
}
.offcanvas .oc-links a:hover { background: rgba(29,131,193,0.08); }

/* ============================================================
   HERO Section
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - var(--header-height) - 38px);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 20px;
}
.hero-text h1 { margin-bottom: 20px; }
.hero-text h1 .hi { display: inline-block; position: relative; }
.hero-text h1 .hi::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 6px;
  background: rgba(29,131,193,0.18);
  border-radius: 3px;
  z-index: -1;
}
.hero-text > p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--alma-blue) 0%, var(--alma-sky) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
}
.hero-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><path d="M0 400 L200 350 L400 380 L600 300 L800 350 L800 600 L0 600 Z" fill="rgba(255,255,255,0.08)"/><circle cx="150" cy="180" r="80" fill="rgba(255,255,255,0.06)"/><circle cx="500" cy="250" r="120" fill="rgba(255,255,255,0.04)"/><rect x="350" y="150" width="200" height="16" rx="8" fill="rgba(255,255,255,0.1)"/><rect x="380" y="180" width="140" height="10" rx="5" fill="rgba(255,255,255,0.06)"/><circle cx="420" cy="230" r="26" fill="rgba(255,255,255,0.12)"/></svg>') center/cover no-repeat;
}
.hero-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.hero-badge .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--alma-blue);
  line-height: 1;
}
.hero-badge .lbl { font-size: 0.8rem; color: var(--text-dim); margin-top: 4px; }

/* ============================================================
   ABOUT / QUI SOMMES-NOUS Section
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-text h2 { margin-bottom: 24px; }

.story-tab-nav {
  display: flex;
  gap: 4px;
  background: var(--bg-alt);
  padding: 4px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  width: fit-content;
}
.story-tab-btn {
  padding: 10px 24px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: 0.25s;
  color: var(--text-dim);
}
.story-tab-btn.active {
  background: #fff;
  color: var(--alma-blue);
  box-shadow: var(--shadow-sm);
}
.story-tab-content {
  color: var(--text-dim);
  line-height: 1.7;
}

.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.media-gallery { position: relative; }
.media-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transition: opacity 0.8s;
}
.media-img.active { opacity: 1; position: relative; }
.corner-ribbon {
  position: absolute;
  top: 20px; left: -8px;
  background: var(--alma-blue);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 20px;
  z-index: 2;
  border-radius: 0 6px 6px 0;
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   COUNTER Section (Style 02)
   ============================================================ */
.counter-section {
  padding: 80px 20px;
  background: var(--bg-alt);
}
.counter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.counter-text h2 { margin-bottom: 16px; }
.counter-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
/* ============================================================
   ACTIVITIES / SERVICES Section
   ============================================================ */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.activity-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.activity-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--alma-sky);
}
.activity-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--act-color, var(--alma-blue));
}
.activity-item .act-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(29, 131, 193, 0.08);
  position: absolute;
  top: 16px; right: 24px;
  line-height: 1;
}
.activity-item .act-ico { font-size: 2rem; margin-bottom: 16px; }
.activity-item h3 { margin-bottom: 8px; }
.activity-item p { font-size: 0.9rem; margin-bottom: 16px; }
.activity-item .act-link {
  font-weight: 600;
  color: var(--alma-blue);
  font-size: 0.9rem;
}

/* ============================================================
   CERTIFICATIONS Section
   ============================================================ */
.certif-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.certif-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
}
.certif-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.certif-card .certif-seal {
  width: 70px; height: 70px;
  margin: 0 auto 12px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--alma-blue);
}
.certif-card .certif-code {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.certif-card .certif-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   WHY CHOOSE US (Masonry cards)
   ============================================================ */
.why-masonry {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}
.why-col { display: flex; flex-direction: column; gap: 20px; }

.why-card-v2 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
}
.why-card-v2:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.why-card-v2.featured {
  border-color: var(--alma-sky);
  background: linear-gradient(135deg, rgba(29,131,193,0.03), rgba(115,198,240,0.06));
}
.why-card-v2 .card-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(29,131,193,0.1);
  margin-bottom: 8px;
  line-height: 1;
}
.why-card-v2 .card-ico { font-size: 1.6rem; margin-bottom: 10px; }
.why-card-v2 .card-cat {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.why-card-v2 .card-cat.blue { color: var(--alma-blue); }
.why-card-v2 .card-cat.red { color: var(--alma-orange); }
.why-card-v2 .card-cat.purple { color: var(--alma-purple); }
.why-card-v2 .card-cat.orange { color: var(--alma-orange); }
.why-card-v2 .card-cat.cyan { color: var(--alma-cyan); }
.why-card-v2 .card-title { font-size: 1.1rem; margin-bottom: 6px; }
.why-card-v2 .card-desc { font-size: 0.88rem; margin-bottom: 12px; }
.why-card-v2 .card-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--alma-blue);
  cursor: pointer;
}

/* ============================================================
   ENVIRONMENTAL Section
   ============================================================ */
.env-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(29,131,193,0.04), rgba(115,198,240,0.02));
}
.env-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.env-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.env-photo-tag {
  margin-top: 12px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.env-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-left: -80px;
  padding-right: 40px;
  width: 73% !important;
}
@media (max-width: 768px) {
  .env-stats,
  .home .env-stats {
    margin-left: 0 !important;
    padding-right: 0;
    width: auto !important;
  }
}
.env-stat {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.env-leaf-top {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
  padding-left: 0;
}
.env-leaf-top img {
  display: block;
  opacity: 0.9;
}

.env-leaf-top .env-leaf-icon-shift {
  transform: translateX(55px) !important;
}

.env-leaf-spacer {
  height: 88px;
}

.env-stat {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.env-water-drop {
  display: flex;
  justify-content: center;
  height: 22px;
  margin-bottom: 4px;
  transform: translateX(-75px);
}

.env-water-spacer {
  height: 26px;
}

.env-leaf-between {
  position: relative !important;
  z-index: 5 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  grid-column: 1 / -1 !important;
  width: 100% !important;
  margin-top: 0 !important;
  padding: 0 !important;
  top: -65px !important;
}

.env-leaf-between img {
  display: block !important;
  width: 110px !important;
  height: 110px !important;
  transform: translateX(180px) translateY(-20px) !important;
}

.env-leaf-between img {
  display: block;
  width: 90px;
  height: 90px;
}
.env-stat:nth-child(2n) { border-right: none; }
.env-stat:nth-child(n+3) { border-bottom: none; }
.env-stat.hi {
  background: linear-gradient(135deg, var(--alma-blue), var(--alma-blue-dark));
  border-radius: var(--radius);
  border: none;
  grid-column: 1 / -1;
  margin-top: 8px;
}
.env-stat.hi .env-num { color: #fff; }
.env-stat.hi .env-line { background: var(--alma-sky); }
.env-stat.hi .env-lbl { color: rgba(255,255,255,0.85); }
.env-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--alma-blue);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.env-decimal { font-size: 1.2rem; }
.env-line {
  width: 30px; height: 3px;
  background: var(--alma-sky);
  margin: 10px auto;
  border-radius: 2px;
}
.env-lbl { font-size: 0.82rem; color: var(--text-dim); }

/* ============================================================
   REFERENCES Carousel
   ============================================================ */
.ref-carousel {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}
.ref-track {
  display: flex;
  gap: 20px;
  animation: scroll-refs 25s linear infinite;
}
.ref-track.paused { animation-play-state: paused; }
.ref-slide {
  flex-shrink: 0;
  width: 180px;
  height: 90px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: all 0.3s;
  overflow: hidden;
}
.ref-slide:hover { box-shadow: var(--shadow); border-color: var(--alma-sky); }
.ref-slide-img { max-width: 100%; max-height: 100%; object-fit: contain; }
.ref-slide-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.9);
  opacity: 0; transition: 0.3s;
}
.ref-slide:hover .ref-slide-overlay { opacity: 1; }
.ref-slide-num { font-weight: 700; color: var(--alma-blue); }

.ref-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.ref-dot { width: 8px; height: 8px; background: var(--alma-green); border-radius: 50%; }
.ref-dot.paused { background: var(--alma-orange); }

@keyframes scroll-refs {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   CONTACT Section
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.contact-info h3 { margin-bottom: 16px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item .ci-ico {
  width: 44px; height: 44px;
  background: rgba(29,131,193,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--alma-blue);
  flex-shrink: 0;
}
.contact-item .ci-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; color: var(--text-muted); }
.contact-item .ci-val { font-weight: 600; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s;
  background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--alma-blue);
  box-shadow: 0 0 0 3px rgba(29,131,193,0.1);
}
.contact-form textarea { resize: vertical; min-height: 140px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin-top: 16px;
}
.newsletter input {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.newsletter input:focus { outline: none; border-color: var(--alma-blue); }

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  color: var(--alma-blue) !important;
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

/* Social icons: keep a consistent white circular treatment across pages. */
.alma-topbar .socials a,
.alma-topbar .tb-right .socials a,
.header-socials-almaflow .header-social-link-af,
.footer-socials a,
.offcanvas .oc-socials a,
.social-links .social-link-item,
.team-card .team-socials a,
.nav-socials a {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: #fff !important;
  border: 1px solid rgba(11, 58, 96, 0.12) !important;
  color: #0b3a60 !important;
  box-shadow: 0 8px 22px rgba(8, 32, 54, 0.10) !important;
  opacity: 1 !important;
  text-decoration: none !important;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
}

.alma-topbar .socials a:hover,
.alma-topbar .tb-right .socials a:hover,
.header-socials-almaflow .header-social-link-af:hover,
.footer-socials a:hover,
.offcanvas .oc-socials a:hover,
.social-links .social-link-item:hover,
.team-card .team-socials a:hover,
.nav-socials a:hover {
  background: #fff !important;
  border-color: rgba(29, 131, 193, 0.28) !important;
  color: #1D83C1 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(8, 32, 54, 0.16) !important;
}

.alma-topbar .socials a svg,
.alma-topbar .tb-right .socials a svg,
.header-socials-almaflow .header-social-link-af svg,
.footer-socials a svg,
.offcanvas .oc-socials a svg,
.social-links .social-link-item svg,
.team-card .team-socials a svg,
.nav-socials a svg {
  width: 16px !important;
  height: 16px !important;
  display: block !important;
}

/* ALMAflow final green theme: no blue accents on family/product pages. */
.page-template-page-almaflow,
.page-template-page-almaflow-domestique,
.page-template-page-almaflow-domestique-categorie,
.page-template-page-almaflow .aflow-page,
.page-template-page-almaflow-domestique .aflow-page,
.page-template-page-almaflow-domestique-categorie .aflow-page {
  --alma-blue: #248346 !important;
  --alma-blue-dark: #1d6f3b !important;
  --alma-sky: #63c979 !important;
  --activity-color: #35a957 !important;
}

.page-template-page-almaflow #hero-slider .slide-inner-hero-cover::after,
.page-template-page-almaflow-domestique #hero-slider .slide-inner-hero-cover::after,
.page-template-page-almaflow-domestique-categorie #hero-slider .slide-inner-hero-cover::after {
  background: linear-gradient(90deg, rgba(9, 51, 29, 0.70) 0%, rgba(18, 94, 49, 0.34) 48%, rgba(18, 94, 49, 0.05) 100%) !important;
}

.page-template-page-almaflow #hero-slider .slide-hero-cover-image,
.page-template-page-almaflow-domestique #hero-slider .slide-hero-cover-image,
.page-template-page-almaflow-domestique-categorie #hero-slider .slide-hero-cover-image {
  background: #f6faf8 !important;
}

.page-template-page-almaflow .aflow-page h1,
.page-template-page-almaflow .aflow-page h2,
.page-template-page-almaflow .aflow-page h3,
.page-template-page-almaflow .aflow-page h4,
.page-template-page-almaflow-domestique .aflow-page h1,
.page-template-page-almaflow-domestique .aflow-page h2,
.page-template-page-almaflow-domestique .aflow-page h3,
.page-template-page-almaflow-domestique .aflow-page h4,
.page-template-page-almaflow-domestique-categorie .aflow-page h1,
.page-template-page-almaflow-domestique-categorie .aflow-page h2,
.page-template-page-almaflow-domestique-categorie .aflow-page h3,
.page-template-page-almaflow-domestique-categorie .aflow-page h4 {
  color: #164d2d !important;
}

.page-template-page-almaflow #hero-slider .slide-hero-content h1,
.page-template-page-almaflow-domestique #hero-slider .slide-hero-content h1,
.page-template-page-almaflow-domestique-categorie #hero-slider .slide-hero-content h1 {
  color: #fff !important;
  text-shadow: 0 3px 22px rgba(8, 45, 25, 0.48) !important;
}

.page-template-page-almaflow .aflow-page a:not(.btn):not(.header-catalogue-btn):not(.about-testimonials-more),
.page-template-page-almaflow-domestique .aflow-page a:not(.btn):not(.header-catalogue-btn):not(.about-testimonials-more),
.page-template-page-almaflow-domestique-categorie .aflow-page a:not(.btn):not(.header-catalogue-btn):not(.about-testimonials-more),
.page-template-page-almaflow .aflow-page span:not(.cps-cat),
.page-template-page-almaflow-domestique .aflow-page span:not(.cps-cat),
.page-template-page-almaflow-domestique-categorie .aflow-page span:not(.cps-cat),
.page-template-page-almaflow-domestique .activity-catalog-family-eyebrow,
.page-template-page-almaflow-domestique-categorie .activity-catalog-family-eyebrow,
.page-template-page-almaflow-domestique .activity-product-card-category,
.page-template-page-almaflow-domestique-categorie .activity-product-card-category,
.page-template-page-almaflow-domestique .activity-product-eyebrow,
.page-template-page-almaflow-domestique-categorie .activity-product-eyebrow {
  color: var(--activity-color) !important;
}

/* Specific overrides to keep white text and arrows on solution cards, why section, testimonials link, and tabs */
.page-template-page-almaflow .aflow-page .aflow-model-solution-card a,
.page-template-page-almaflow .aflow-page .aflow-model-solution-card a span,
.page-template-page-almaflow .aflow-page .aflow-model-why-list a,
.page-template-page-almaflow .aflow-page .aflow-model-why-list a span,
.page-template-page-almaflow .aflow-page .about-testimonials-more,
.page-template-page-almaflow .aflow-page .about-testimonials-more span,
.page-template-page-almaflow-domestique .activity-product-tabs span,
.page-template-page-almaflow-domestique-categorie .activity-product-tabs span {
  color: #ffffff !important;
}

.page-template-page-almaflow-domestique .aflow-domestic-page .family-card-link,
.page-template-page-almaflow-domestique-categorie .aflow-domestic-page .family-card-link,
.page-template-page-almaflow-domestique .aflow-category-back a,
.page-template-page-almaflow-domestique-categorie .aflow-category-back a {
  color: var(--activity-color) !important;
  border-color: var(--activity-color) !important;
}

.page-template-page-almaflow-domestique .activity-catalog-search-field:focus-within,
.page-template-page-almaflow-domestique-categorie .activity-catalog-search-field:focus-within {
  border-color: color-mix(in srgb, var(--activity-color) 42%, transparent) !important;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--activity-color) 13%, transparent) !important;
}

.page-template-page-almaflow-domestique .activity-product-filter-bar a.active,
.page-template-page-almaflow-domestique-categorie .activity-product-filter-bar a.active,
.page-template-page-almaflow-domestique .activity-product-card.active,
.page-template-page-almaflow-domestique-categorie .activity-product-card.active,
.page-template-page-almaflow-domestique .activity-product-card:hover,
.page-template-page-almaflow-domestique-categorie .activity-product-card:hover {
  border-color: color-mix(in srgb, var(--activity-color) 46%, transparent) !important;
}

.page-template-page-almaflow-domestique .activity-product-card::before,
.page-template-page-almaflow-domestique-categorie .activity-product-card::before,
.page-template-page-almaflow-domestique .family-card-line,
.page-template-page-almaflow-domestique-categorie .family-card-line,
.page-template-page-almaflow-domestique .btn-primary,
.page-template-page-almaflow-domestique-categorie .btn-primary,
.page-template-page-almaflow-domestique .activity-product-tabs span,
.page-template-page-almaflow-domestique-categorie .activity-product-tabs span {
  background: var(--activity-color) !important;
  border-color: var(--activity-color) !important;
}

.activity-product-tabs {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  gap: 8px !important;
  margin: 22px 0 0 !important;
}
.activity-product-tabs::-webkit-scrollbar {
  display: none !important;
}
.activity-product-tabs > * {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.page-template-page-almaflow-domestique .btn-outline,
.page-template-page-almaflow-domestique-categorie .btn-outline {
  color: #248346 !important;
  border-color: #35a957 !important;
}

.page-template-page-almaflow-domestique .activity-tech-table th,
.page-template-page-almaflow-domestique-categorie .activity-tech-table th,
.page-template-page-almaflow-domestique .aflow-product-detail .activity-detail-info h2,
.page-template-page-almaflow-domestique-categorie .aflow-product-detail .activity-detail-info h2 {
  color: #164d2d !important;
}

.page-template-page-almaflow-domestique .alma-topbar .socials a:not([title="YouTube"]),
.page-template-page-almaflow-domestique-categorie .alma-topbar .socials a:not([title="YouTube"]),
.page-template-page-almaflow-domestique .header-socials-almaflow .header-social-link-af:not([title="YouTube"]),
.page-template-page-almaflow-domestique-categorie .header-socials-almaflow .header-social-link-af:not([title="YouTube"]) {
  color: #248346 !important;
}

.page-template-page-almaflow-domestique .alma-topbar .socials a:not([title="YouTube"]):hover,
.page-template-page-almaflow-domestique-categorie .alma-topbar .socials a:not([title="YouTube"]):hover,
.page-template-page-almaflow-domestique .header-socials-almaflow .header-social-link-af:not([title="YouTube"]):hover,
.page-template-page-almaflow-domestique-categorie .header-socials-almaflow .header-social-link-af:not([title="YouTube"]):hover {
  border-color: rgba(53, 169, 87, 0.34) !important;
  color: #1d6f3b !important;
}

/* ALMAflow domestic/catalogue refinements */
.page-template-page-almaflow-domestique #hero-slider,
.page-template-page-almaflow-domestique-categorie #hero-slider {
  min-height: 0 !important;
  height: auto !important;
  background: #f6faf8 !important;
}

.page-template-page-almaflow-domestique #hero-slider .swiper-wrapper,
.page-template-page-almaflow-domestique #hero-slider .swiper-slide,
.page-template-page-almaflow-domestique-categorie #hero-slider .swiper-wrapper,
.page-template-page-almaflow-domestique-categorie #hero-slider .swiper-slide {
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
}

.page-template-page-almaflow-domestique #hero-slider .slide-inner-hero-cover,
.page-template-page-almaflow-domestique-categorie #hero-slider .slide-inner-hero-cover {
  min-height: clamp(520px, 68svh, 760px) !important;
  padding: clamp(230px, 38svh, 360px) clamp(28px, 7vw, 96px) clamp(76px, 11svh, 120px) !important;
  background: #f6faf8 !important;
}

.page-template-page-almaflow-domestique #hero-slider .slide-inner-hero-cover::after,
.page-template-page-almaflow-domestique-categorie #hero-slider .slide-inner-hero-cover::after {
  background: linear-gradient(90deg, rgba(1, 18, 31, 0.58) 0%, rgba(1, 18, 31, 0.24) 48%, rgba(1, 18, 31, 0.02) 100%) !important;
}

.page-template-page-almaflow-domestique #hero-slider .slide-hero-cover-image,
.page-template-page-almaflow-domestique-categorie #hero-slider .slide-hero-cover-image {
  object-fit: contain !important;
  object-position: center center !important;
  background: #f6faf8 !important;
}

.page-template-page-almaflow-domestique #hero-slider .slide-hero-content,
.page-template-page-almaflow-domestique-categorie #hero-slider .slide-hero-content {
  width: min(980px, calc(100% - 32px)) !important;
}

.page-template-page-almaflow-domestique #hero-slider .slide-hero-content h1 {
  font-size: clamp(34px, 4.2vw, 60px) !important;
  line-height: 1.02 !important;
  max-width: 980px !important;
  white-space: normal !important;
}

.page-template-page-almaflow-domestique #hero-slider .slide-hero-content .slide-title-line {
  display: block !important;
  white-space: nowrap !important;
}

.aflow-domestic-category-page .aflow-category-catalog {
  max-width: 1180px !important;
  width: min(1180px, calc(100% - 40px)) !important;
  margin: 0 auto !important;
}

.aflow-domestic-category-page .aflow-category-title {
  margin-bottom: 0 !important;
}

.aflow-domestic-category-page .aflow-category-products .activity-product-main {
  margin-top: 36px !important;
}

.aflow-domestic-category-page .aflow-category-products .activity-product-filter-bar a.active {
  background: rgba(53, 169, 87, 0.12) !important;
  border-color: rgba(53, 169, 87, 0.24) !important;
  color: #248346 !important;
}

.aflow-domestic-category-page .aflow-category-products .activity-catalog-search-field:focus-within {
  border-color: rgba(53, 169, 87, 0.42) !important;
  box-shadow: 0 0 0 4px rgba(53, 169, 87, 0.10) !important;
}

.page-template-page-almaflow .header-socials-almaflow .header-social-link-af:not([title="YouTube"]),
.page-template-page-almaflow-domestique .header-socials-almaflow .header-social-link-af:not([title="YouTube"]),
.page-template-page-almaflow-domestique-categorie .header-socials-almaflow .header-social-link-af:not([title="YouTube"]),
.page-template-page-almaflow .alma-topbar .socials a:not([title="YouTube"]),
.page-template-page-almaflow-domestique .alma-topbar .socials a:not([title="YouTube"]),
.page-template-page-almaflow-domestique-categorie .alma-topbar .socials a:not([title="YouTube"]),
.page-template-page-almaflow .footer-socials a:not([title="YouTube"]),
.page-template-page-almaflow-domestique .footer-socials a:not([title="YouTube"]),
.page-template-page-almaflow-domestique-categorie .footer-socials a:not([title="YouTube"]),
.page-template-page-almaflow .offcanvas .oc-socials a:not([title="YouTube"]),
.page-template-page-almaflow-domestique .offcanvas .oc-socials a:not([title="YouTube"]),
.page-template-page-almaflow-domestique-categorie .offcanvas .oc-socials a:not([title="YouTube"]) {
  color: #fff !important;
  background: #35a957 !important;
  border-color: #35a957 !important;
  overflow: visible !important;
}

.page-template-page-almaflow .header-socials-almaflow .header-social-link-af:not([title="YouTube"]):hover,
.page-template-page-almaflow-domestique .header-socials-almaflow .header-social-link-af:not([title="YouTube"]):hover,
.page-template-page-almaflow-domestique-categorie .header-socials-almaflow .header-social-link-af:not([title="YouTube"]):hover,
.page-template-page-almaflow .alma-topbar .socials a:not([title="YouTube"]):hover,
.page-template-page-almaflow-domestique .alma-topbar .socials a:not([title="YouTube"]):hover,
.page-template-page-almaflow-domestique-categorie .alma-topbar .socials a:not([title="YouTube"]):hover,
.page-template-page-almaflow .footer-socials a:not([title="YouTube"]):hover,
.page-template-page-almaflow-domestique .footer-socials a:not([title="YouTube"]):hover,
.page-template-page-almaflow-domestique-categorie .footer-socials a:not([title="YouTube"]):hover,
.page-template-page-almaflow .offcanvas .oc-socials a:not([title="YouTube"]):hover,
.page-template-page-almaflow-domestique .offcanvas .oc-socials a:not([title="YouTube"]):hover,
.page-template-page-almaflow-domestique-categorie .offcanvas .oc-socials a:not([title="YouTube"]):hover {
  background: #248346 !important;
  border-color: #248346 !important;
}

@media (max-width: 760px) {
  .page-template-page-almaflow-domestique #hero-slider .slide-inner-hero-cover,
  .page-template-page-almaflow-domestique-categorie #hero-slider .slide-inner-hero-cover {
    min-height: clamp(430px, 58svh, 620px) !important;
    padding: clamp(180px, 32svh, 280px) 22px 72px !important;
  }

  .page-template-page-almaflow-domestique #hero-slider .slide-hero-content .slide-title-line {
    white-space: normal !important;
  }
}

/* Premium product technical sheet */
.activity-product-page .activity-product-detail {
  margin-top: 34px !important;
  padding: clamp(18px, 3vw, 38px);
  border: 1px solid #e0ebf1;
  border-radius: 28px;
  background: linear-gradient(145deg, #f8fbfd 0%, #fff 60%, #f3f8fb 100%);
  box-shadow: 0 24px 70px rgba(14, 58, 83, .11);
}
.activity-product-page .activity-product-detail-inner {
  align-items: stretch;
  gap: clamp(26px, 4vw, 56px);
}
.activity-product-page .activity-product-detail .activity-detail-gallery {
  overflow: hidden;
  border: 1px solid #e3edf2;
  border-radius: 22px;
  box-shadow: 0 16px 35px rgba(25, 70, 96, .08);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .4s ease;
}
.activity-product-page .activity-product-detail .activity-detail-gallery img {
  transition: transform .55s cubic-bezier(.2,.8,.2,1), filter .4s ease;
  will-change: transform;
}
.activity-product-page .activity-product-detail .activity-detail-gallery:hover {
  border-color: color-mix(in srgb, var(--activity-color) 38%, #dce8ee);
  box-shadow: 0 24px 50px color-mix(in srgb, var(--activity-color) 16%, transparent);
  transform: translateY(-5px);
}
.activity-product-page .activity-product-detail .activity-detail-gallery:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.045);
}
.activity-product-page .activity-detail-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}
.activity-product-page .activity-product-eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-bottom: 13px;
  padding: 7px 13px;
  border: 1px solid color-mix(in srgb, var(--activity-color) 24%, transparent);
  border-radius: 999px;
  color: var(--activity-color);
  background: color-mix(in srgb, var(--activity-color) 8%, #fff);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.activity-product-page .activity-product-eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--activity-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--activity-color) 15%, transparent);
  content: "";
}
.activity-product-page .activity-detail-info h2 {
  margin: 0;
  color: #103c58;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.activity-product-page .activity-detail-lead {
  margin: 16px 0 0;
  color: #5e7482;
  font-size: 1rem;
  line-height: 1.75;
}
.activity-product-page .activity-product-tabs {
  display: flex;
  gap: 5px;
  margin: 24px 0 0;
  padding: 5px;
  border: 1px solid #dfebf1 !important;
  border-radius: 14px;
  background: #edf4f7;
}
.activity-product-page .activity-product-tabs .apt-tab {
  min-height: 42px;
  padding: 9px 15px;
  border: 0 !important;
  border-radius: 10px !important;
  color: #536d7c !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: .82rem;
  font-weight: 750;
  white-space: nowrap;
}
.activity-product-page .activity-product-tabs .apt-tab:hover {
  color: var(--activity-color) !important;
  background: rgba(255,255,255,.72) !important;
}
.activity-product-page .activity-product-tabs .apt-tab--active {
  color: #fff !important;
  background: var(--activity-color) !important;
  box-shadow: 0 7px 16px color-mix(in srgb, var(--activity-color) 28%, transparent) !important;
}
.activity-product-page .apt-panel {
  margin-top: 14px !important;
  padding: clamp(17px, 2vw, 24px);
  border: 1px solid #e2ecf1;
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 8px 20px rgba(22, 65, 89, .05);
}
.activity-product-page .activity-detail-description {
  margin: 0;
  color: #526b79;
  font-size: .97rem;
  line-height: 1.8;
  white-space: pre-line;
}
.activity-product-page .activity-tech-table {
  width: 100%;
  border: 0;
  border-collapse: separate;
  border-spacing: 0 7px;
  background: transparent;
}
.activity-product-page .activity-tech-table th,
.activity-product-page .activity-tech-table td {
  padding: 13px 15px;
  border: 0 !important;
  line-height: 1.5;
  vertical-align: middle;
}
.activity-product-page .activity-tech-table th {
  width: 39%;
  border-radius: 10px 0 0 10px;
  color: #173f57;
  background: #eef5f8;
  font-size: .79rem;
  letter-spacing: .025em;
}
.activity-product-page .activity-tech-table td {
  border-radius: 0 10px 10px 0;
  color: #546c79;
  background: #f8fbfc;
  font-size: .9rem;
}
.activity-product-page .aflow-downloads-list {
  display: grid !important;
  gap: 10px !important;
  margin: 0 !important;
}
.activity-product-page .aflow-downloads-list .btn {
  width: 100% !important;
  min-height: 52px;
  justify-content: flex-start;
  padding: 12px 16px !important;
  border: 1px solid #dce8ee !important;
  border-radius: 12px;
  color: #214d67 !important;
  background: #f8fbfc;
  text-align: left;
}
.activity-product-page .activity-pdf-icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: #fff0f0;
}
.activity-product-page .activity-pdf-icon svg { display: block; }
.activity-product-page .activity-download-label {
  color: inherit;
  font-size: .88rem;
  font-weight: 750;
  line-height: 1.35;
}
.activity-product-page .aflow-downloads-list .btn:hover {
  border-color: var(--activity-color) !important;
  color: #fff !important;
  background: var(--activity-color) !important;
  box-shadow: 0 12px 26px color-mix(in srgb, var(--activity-color) 22%, transparent);
  transform: translateY(-2px);
}
.activity-product-page .aflow-downloads-list .btn:hover .activity-download-label,
.activity-product-page .aflow-downloads-list .btn:focus-visible .activity-download-label {
  color: #fff !important;
}
.activity-product-page .aflow-downloads-list .btn:focus-visible {
  border-color: var(--activity-color) !important;
  color: #fff !important;
  background: var(--activity-color) !important;
}
.activity-product-page .activity-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 20px;
}
.activity-product-page .activity-product-actions .btn {
  min-height: 48px;
  padding: 12px 19px;
  border-radius: 12px;
}
.activity-product-page .activity-product-actions .btn-primary:hover,
.activity-product-page .activity-product-actions .btn-primary:focus-visible {
  border-color: color-mix(in srgb, var(--activity-color) 78%, #000) !important;
  color: #fff !important;
  background: color-mix(in srgb, var(--activity-color) 78%, #000) !important;
  box-shadow: 0 12px 26px color-mix(in srgb, var(--activity-color) 24%, transparent);
  transform: translateY(-2px);
}
.activity-product-page .activity-product-actions .btn-outline:hover,
.activity-product-page .activity-product-actions .btn-outline:focus-visible {
  border-color: var(--activity-color) !important;
  color: #fff !important;
  background: var(--activity-color) !important;
  box-shadow: 0 12px 26px color-mix(in srgb, var(--activity-color) 22%, transparent);
  transform: translateY(-2px);
}
.activity-product-page .activity-product-actions .btn:focus-visible,
.activity-product-page .aflow-downloads-list .btn:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--activity-color) 24%, transparent);
  outline-offset: 3px;
}
@media (max-width: 760px) {
  .activity-product-page .activity-product-detail {
    padding: 13px;
    border-radius: 20px;
  }
  .activity-product-page .activity-product-detail-inner { gap: 22px; }
  .activity-product-page .activity-product-tabs { border-radius: 12px; }
  .activity-product-page .apt-panel { padding: 13px; }
  .activity-product-page .activity-tech-table,
  .activity-product-page .activity-tech-table tbody,
  .activity-product-page .activity-tech-table tr,
  .activity-product-page .activity-tech-table th,
  .activity-product-page .activity-tech-table td { display: block; width: 100%; }
  .activity-product-page .activity-tech-table tr { margin-bottom: 9px; }
  .activity-product-page .activity-tech-table th { border-radius: 9px 9px 0 0; }
  .activity-product-page .activity-tech-table td { border-radius: 0 0 9px 9px; }
  .activity-product-page .activity-product-actions .btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .activity-product-page .activity-product-detail .activity-detail-gallery,
  .activity-product-page .activity-product-detail .activity-detail-gallery img {
    transition: none;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.alma-footer {
  background: var(--bg-dark);
  color: #CECFD2;
  padding: 60px 20px 30px;
}
.alma-footer .foot-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.alma-footer .foot-logo { height: 46px; width: auto; margin-bottom: 12px; }
.alma-footer .foot-about { font-size: 0.88rem; color: #98A2B3; margin-bottom: 0; }
.alma-footer h5 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.alma-footer a {
  display: block;
  color: #98A2B3;
  font-size: 0.88rem;
  margin-bottom: 8px;
  transition: color 0.2s;
  cursor: pointer;
}
.alma-footer a:hover { color: var(--alma-sky); }
.alma-footer h5 .footer-heading-link {
  color: inherit;
  font: inherit;
  margin: 0;
}
.alma-footer .foot-about {
  display: block;
}
.alma-footer .foot-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: #667085;
  text-align: center;
}

/* ============================================================
   PAGE HERO (internal pages)
   ============================================================ */
.page-hero {
  padding: 80px 20px 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(29,131,193,0.04), transparent);
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { max-width: 600px; margin: 0 auto; }
.crumbs {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.crumbs span { color: var(--alma-blue); font-weight: 600; }

/* ============================================================
   EXPORT MAP
   ============================================================ */
.export-map-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto 40px;
}
.world-map-img {
  width: 100%;
  opacity: 0.15;
}
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.pin-dot {
  width: 12px; height: 12px;
  background: var(--color, var(--alma-orange));
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color, var(--alma-orange));
}
.pin-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color, var(--alma-orange));
  opacity: 0.3;
  animation: pinPulse 2s ease-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes pinPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.24; }
  100% { transform: translate(-50%, -50%) scale(1.75); opacity: 0; }
}
.pin-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.pin-tooltip strong { display: block; color: var(--text); }
.pin-tooltip span { font-size: 0.72rem; color: var(--text-muted); }
.map-pin:hover .pin-tooltip { opacity: 1; }
.map-pin.active .pin-dot { transform: scale(1.4); }

.export-stats-strip {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 20px;
}
.exp-stat { text-align: center; }
.exp-num { font-size: 2.4rem; font-weight: 800; color: var(--alma-blue); }
.exp-lbl { font-size: 0.85rem; color: var(--text-muted); }

.export-regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.region-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--rc, var(--bg-alt));
  transition: all 0.3s;
}
.region-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.region-ico { font-size: 2.2rem; margin-bottom: 12px; }
.region-title { margin-bottom: 12px; }
.region-pays { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.region-pays span {
  font-size: 0.78rem;
  background: rgba(29,131,193,0.08);
  color: var(--alma-blue);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.region-desc { font-size: 0.88rem; }

.export-cta {
  padding: 60px 20px;
}
.export-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  background: linear-gradient(135deg, var(--alma-blue), var(--alma-blue-dark));
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.export-cta-inner h2 { color: #fff; margin-bottom: 4px; }
.export-cta-inner p { color: rgba(255,255,255,0.8); margin: 0; }

/* ============================================================
   REALISATIONS Grid
   ============================================================ */
.real-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}
.chip {
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 40px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.chip:hover { border-color: var(--alma-sky); }
.chip.active {
  background: var(--alma-blue);
  color: #fff;
  border-color: var(--alma-blue);
}
.chip-count {
  font-size: 0.75rem;
  background: rgba(0,0,0,0.06);
  padding: 2px 8px;
  border-radius: 10px;
}
.chip.active .chip-count { background: rgba(255,255,255,0.2); }

.real-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.real-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}
.real-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.real-thumb {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--bg-alt);
  overflow: hidden;
}
.real-thumb-img { width: 100%; height: 100%; object-fit: cover; }
.real-cat {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--cat-color, var(--alma-blue));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.real-year {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}
.real-body { padding: 20px; }
.real-title { font-size: 1rem; margin-bottom: 10px; }
.real-meta { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.real-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
}
.real-meta-row .lab { color: var(--text-muted); }
.real-meta-row .val { font-weight: 600; }
.real-link { font-weight: 600; font-size: 0.88rem; color: var(--alma-blue); cursor: pointer; }

/* CTA Card */
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--bg-alt);
  padding: 40px 36px;
  border-radius: var(--radius-lg);
}
.cta-card h3 { margin-bottom: 4px; }
.cta-card p { margin: 0; }

/* ============================================================
   ALMAFLOW page
   ============================================================ */
.aflow-hero {
  padding: 80px 20px;
  position: relative;
  background: linear-gradient(135deg, rgba(29,131,193,0.06), rgba(46,164,106,0.04));
}
.aflow-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.aflow-hero-media { position: relative; }
.aflow-hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.aflow-wave {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
}

.aflow-kpis {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 50px 20px;
}
.aflow-kpi { text-align: center; }
.aflow-kpi .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--alma-blue);
}
.aflow-kpi .num span { font-size: 1.2rem; }
.aflow-kpi .lbl { font-size: 0.85rem; color: var(--text-muted); }

.aflow-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.aflow-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.aflow-card-photo { aspect-ratio: 16/10; overflow: hidden; }
.aflow-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.aflow-card-body { padding: 24px; }

.aflow-prods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.aflow-prod {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}
.aflow-prod-img { aspect-ratio: 4/3; overflow: hidden; }
.aflow-prod-img img { width: 100%; height: 100%; object-fit: cover; }
.aflow-prod h4 { margin: 16px 16px 6px; }
.aflow-prod p { font-size: 0.85rem; margin: 0 16px 14px; }

.aflow-cta-band {
  padding: 80px 20px;
  text-align: center;
  background: var(--bg-alt);
}
.aflow-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 30px auto;
}
.aflow-srv .aflow-srv-ico { font-size: 2rem; margin-bottom: 8px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-text > p { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-media { max-width: 500px; margin: 0 auto; }

  .intro-grid { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .certif-grid { grid-template-columns: repeat(3, 1fr); }
  .why-masonry { grid-template-columns: 1fr; }
  .env-split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .real-grid { grid-template-columns: repeat(2, 1fr); }
  .export-regions { grid-template-columns: 1fr; }
  .aflow-hero-inner { grid-template-columns: 1fr; }
  .aflow-prods { grid-template-columns: repeat(2, 1fr); }
  .aflow-duo { grid-template-columns: 1fr; }
  .aflow-kpis { grid-template-columns: repeat(2, 1fr); }
  .alma-footer .foot-grid { grid-template-columns: 1fr 1fr; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .hero-badge { position: static; margin-top: 20px; }
  .counter-stats { grid-template-columns: 1fr; }
  .cv2-cell { border-right: none; }
  .cv2-cell:last-child { border-bottom: none; }
  .activities-grid { grid-template-columns: 1fr; }
  .certif-grid { grid-template-columns: repeat(2, 1fr); }
  .env-stats { grid-template-columns: 1fr; }
  .env-stat { border-right: none; }
  .env-stat:last-child { border-bottom: none; }
  .real-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .aflow-prods { grid-template-columns: 1fr; }
  .aflow-services { grid-template-columns: 1fr; }
  .alma-footer .foot-grid { grid-template-columns: 1fr; }
  .alma-topbar .tb-inner { flex-direction: column; text-align: center; }
  .v1-mega.open { flex-direction: column; }
  .v1-mega .grid { grid-template-columns: 1fr 1fr; margin-left: 0; margin-top: 20px; }

  .section { padding: 60px 16px; }
  h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .certif-grid { grid-template-columns: 1fr; }
  .aflow-kpis { grid-template-columns: 1fr; }
  .v1-mega .grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NAVIGATION UPGRADE ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Industrie Style (overrides)
   ============================================================ */
.alma-header { transition: box-shadow 0.3s ease; }
.alma-header.scrolled { box-shadow: var(--shadow); }
.alma-nav .logo { flex-shrink: 0; }
.alma-nav .logo img { transition: height 0.3s; }

.nav-link {
  border-radius: var(--radius-sm);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--alma-blue);
  border-radius: 1px;
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--alma-blue); background: transparent; }
.nav-link:hover::after,
.nav-link.active::after { width: 20px; }
.nav-link.active { color: var(--alma-blue); font-weight: 600; background: transparent; }

.v1-mega {
  justify-content: center;
  padding: 40px 20px;
  animation: megaFadeIn 0.25s ease;
}
@keyframes megaFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.v1-mega .mega-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; gap: 40px; width: 100%;
}
.v1-mega .intro { width: 280px; flex-shrink: 0; }
.v1-mega .intro p { font-size: 0.88rem; }
.v1-mega .grid { gap: 12px; }
.activity-card {
  padding: 18px 20px;
}
.activity-card:hover {
  background: rgba(29,131,193,0.02);
}
.activity-card .title { font-size: 0.9rem; }
.activity-card .desc { font-size: 0.82rem; }
.activity-card .arrow { font-size: 0.82rem; }

.hamburger { z-index: 999; padding: 10px; }
.hamburger span { width: 26px; height: 2.5px; }

.offcanvas {
  right: -340px; width: 340px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}
.offcanvas-overlay { background: rgba(0,0,0,0.6); transition: opacity 0.35s, visibility 0.35s; }
.offcanvas .oc-close {
  top: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.offcanvas .oc-close:hover { background: rgba(0,0,0,0.08); }
.offcanvas .oc-body { padding: 30px 28px; }
.offcanvas .oc-logo { margin-bottom: 24px; display: block; }
.offcanvas .oc-links { margin-bottom: 28px; }
.offcanvas .oc-links a {
  padding: 13px 16px; font-size: 1rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--line);
  transition: all 0.2s;
}
.offcanvas .oc-links a:hover { background: rgba(29,131,193,0.06); color: var(--alma-blue); }
.offcanvas .oc-info { margin-top: 8px; }
.offcanvas .oc-info .oc-info-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: 0.85rem; color: var(--text-dim);
}
.offcanvas .oc-info .oc-info-item svg { color: var(--alma-blue); flex-shrink: 0; }
.offcanvas .oc-socials {
  display: flex; gap: 8px; margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--line);
}
.offcanvas .oc-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-alt); display: flex; align-items: center;
  justify-content: center; color: var(--text-dim); transition: all 0.2s;
}
.offcanvas .oc-socials a:hover { background: var(--alma-blue); color: #fff; }

/* ============================================================
   INDUSTRIE STYLE UPGRADE ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Typography, Sections, Tabs, Cards
   Keeps ALMA brand colors
   ============================================================ */

/* --- Typography --- */
h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 700; }
h5 { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
p { margin-bottom: 1rem; color: var(--text-dim); font-size: 1rem; line-height: 1.7; }

/* --- Eyebrow --- */
.eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--alma-blue);
  margin-bottom: 0.6rem;
  display: inline-block;
  position: relative;
  padding-left: 16px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--alma-blue);
  border-radius: 2px;
}

/* --- Section --- */
.section { padding: 110px 20px; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { max-width: 640px; margin: 0 auto; font-size: 1.05rem; line-height: 1.65; }


/* --- Story Tabs (Histoire / Mission / Vision) --- */
.story-tab-nav {
  display: flex; gap: 6px;
  background: var(--bg-alt); padding: 5px;
  border-radius: var(--radius); margin-bottom: 20px;
  width: fit-content;
}
.story-tab-btn {
  padding: 11px 28px;
  border: none; background: transparent;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.92rem; border-radius: var(--radius-sm);
  cursor: pointer; transition: all 0.3s ease;
  color: var(--text-dim); position: relative;
}
.story-tab-btn.active {
  background: #fff; color: var(--alma-blue);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.story-tab-btn:hover:not(.active) { color: var(--text); }
.tab-pane { animation: tabFadeIn 0.4s ease; }
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Page Hero (internal pages) --- */
.page-hero {
  padding: 90px 20px 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(29,131,193,0.05), transparent);
  position: relative;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

/* --- Counter Cells --- */

/* --- Activity Items --- */
.activity-item { padding: 40px 32px; }
.activity-item h3 { font-size: 1.1rem; margin-bottom: 10px; }
.activity-item .act-num { font-size: 3.2rem; }

/* --- Certification Cards --- */
.certif-card { padding: 28px 20px; }

/* --- Why Choose Cards --- */
.why-card-v2 { padding: 32px; }
.why-card-v2 .card-num { font-size: 3rem; }
.why-card-v2 .card-title { font-size: 1.15rem; margin-bottom: 8px; }
.why-card-v2 .card-desc { font-size: 0.9rem; line-height: 1.65; }

/* --- Environment Stats --- */
.env-stat { padding: 32px 24px; }
.env-num { font-size: 2.4rem; }
.env-stat.hi .env-num { color: #fff; }

/* --- Contact --- */
.contact-item .ci-ico { width: 48px; height: 48px; }
.contact-item .ci-label { font-size: 0.78rem; letter-spacing: 0.06em; }
.contact-item .ci-val { font-size: 0.95rem; }

/* --- Realisations cards --- */
.real-card { border-radius: var(--radius-lg); }
.real-body { padding: 22px 24px; }
.real-title { font-size: 1.05rem; margin-bottom: 12px; line-height: 1.4; }
.real-meta-row { font-size: 0.84rem; margin-bottom: 2px; }

/* --- Activity cards (mega menu) --- */
.activity-card { padding: 20px 22px; }
.activity-card .ico { font-size: 1.5rem; }

/* --- H1 highlight underline --- */
.hero-text h1 .hi::after { bottom: 5px; height: 7px; }

/* --- ALMA Flow --- */
.aflow-hero { padding: 90px 20px; }
.aflow-card-body h3 { font-size: 1.2rem; }

/* --- Export --- */
.export-cta-inner { padding: 52px 44px; }
.export-cta-inner h2 { color: #fff; }
.region-card { padding: 34px 28px; }

/* --- Footer --- */
.alma-footer { padding: 70px 20px 36px; }
.alma-footer h5 { margin-bottom: 20px; font-size: 1rem; letter-spacing: 0.05em; }

/* ============================================================
   INDUSTRIE COMPONENTS ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Exact style replication
   ============================================================ */

/* --- Mega Menu Dropdown (Industrie style) --- */
.v1-mega .mega-inner .intro {
  border-right: 1px solid var(--line);
  padding-right: 32px;
}
.v1-mega .grid {
  grid-template-columns: repeat(3, 1fr);
}
.activity-card {
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.activity-card:hover {
  border-color: var(--act-color, var(--alma-blue));
  background: rgba(29,131,193,0.03);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.activity-card .ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
  transition: all 0.3s;
}
.activity-card:hover .ico {
  background: var(--act-color, var(--alma-blue));
  color: #fff;
  transform: scale(1.05);
}
.activity-card .title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.activity-card .desc {
  font-size: 0.85rem;
  line-height: 1.55;
  margin-bottom: 10px;
}
.activity-card .arrow {
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s;
}
.activity-card:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* --- Counter Style 02 (Industrie) --- */
.counter-section {
  position: relative;
}
.counter-grid {
  align-items: center;
}
.counter-text h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  position: relative;
}
.counter-text h2::after {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: var(--alma-blue);
  margin-top: 18px;
  border-radius: 2px;
}
.counter-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.cv2-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--alma-blue);
  transition: color 0.3s;
}
.cv2-cell:hover .cv2-num {
  color: var(--alma-blue-dark);
}
.cv2-line {
  width: 40px; height: 3px;
  background: var(--alma-sky);
  margin: 14px auto;
}
.cv2-lbl {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- Advance Tabs (Histoire / Mission / Vision) --- */
.story-tab-nav {
  display: inline-flex;
  gap: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  border-bottom: 2px solid var(--line);
  margin-bottom: 28px;
}
.story-tab-btn {
  padding: 14px 32px;
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 0;
  box-shadow: none;
}
.story-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 10%; right: 10%;
  height: 2px;
  background: var(--alma-blue);
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.story-tab-btn.active {
  color: var(--alma-blue);
  background: transparent;
  box-shadow: none;
}
.story-tab-btn.active::after {
  transform: scaleX(1);
}
.story-tab-btn:hover:not(.active) {
  color: var(--text);
}
.story-tab-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dim);
}
@keyframes tabFadeSlide {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}
.tab-pane.active {
  animation: tabFadeSlide 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Activity Items (Style 01 icon box grid) --- */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.activity-item {
  padding: 44px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.activity-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--act-color, var(--alma-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.activity-item:hover { 
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
  transform: translateY(-6px);
  border-color: transparent;
}
.activity-item:hover::before { transform: scaleX(1); }
.activity-item .act-num {
  font-size: 3.6rem;
  font-weight: 800;
  color: rgba(29,131,193,0.06);
  position: absolute;
  top: 20px; right: 28px;
  line-height: 1;
  font-family: var(--font-heading);
  transition: color 0.3s;
}
.activity-item:hover .act-num {
  color: rgba(29,131,193,0.12);
}
.activity-item .act-ico {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s;
}
.activity-item:hover .act-ico { transform: scale(1.1); }
.activity-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.activity-item:hover h3 { color: var(--alma-blue); }
.activity-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: var(--text-dim);
}
.activity-item .act-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--alma-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.activity-item:hover .act-link { gap: 10px; }

/* --- Environment stats (Counter Style 04) --- */
.env-stats {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}
.env-stat {
  padding: 36px 28px;
  transition: background 0.3s;
}
.env-stat:hover { background: rgba(29,131,193,0.02); }
.env-num { font-size: 2.6rem; }
.env-stat.hi {
  border-radius: 0;
  border: none;
  margin: 0;
}

/* --- Hero text animation --- */
.hero-text h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1.15;
  font-weight: 700;
}
.hero-text h1 .hi {
  position: relative;
  display: inline-block;
}
.hero-text h1 .hi::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 0; right: 0;
  height: 8px;
  background: rgba(29,131,193,0.2);
  border-radius: 4px;
  z-index: -1;
}
.hero-text > p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-dim);
  max-width: 540px;
}

/* --- Header scroll effect --- */
.alma-header {
  transition: box-shadow 0.4s ease, background 0.4s ease;
}

/* --- Blog/News cards --- */
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s;
}
.blog-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}

/* --- Forms (Contact Form 7 style) --- */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--alma-blue);
  box-shadow: 0 0 0 4px rgba(29,131,193,0.08);
  outline: none;
}

/* --- Page Hero (internal pages - no crumbs) --- */
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
}

/* --- Sub-menu dropdown (Industrie style) --- */
.nav-link.has-dropdown {
  position: relative;
}
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 250px;
  padding: 8px 0;
  z-index: 1001;
  list-style: none;
  margin: 0;
  animation: submenuFadeIn 0.25s ease;
}
@keyframes submenuFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-link.has-dropdown:hover .sub-menu {
  display: block;
}
.sub-menu li { margin: 0; padding: 0; }
.sub-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
  white-space: nowrap;
}
.sub-menu li a:hover {
  background: rgba(29,131,193,0.06);
  color: var(--alma-blue);
  padding-left: 28px;
}
.sub-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--alma-blue);
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0);
  transition: all 0.25s;
}
.sub-menu li a:hover .sub-dot {
  opacity: 1;
  transform: scale(1);
}



/* --- H1 ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Large titles (Industrie: 36px+, line-height 1.27) --- */
h1, .hero-text h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #1E2023;
}

/* --- H2 ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Section headings (Industrie: 28-36px, line-height 1.35) --- */
h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: #1E2023;
}

/* --- H3 ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Card titles --- */
h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
  color: #1E2023;
}

/* --- H4 ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Small headings --- */
h4 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #1E2023;
}

/* --- H5 ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Footer/widget headings --- */
h5 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #1E2023;
}

/* --- Paragraph text --- */
p {
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  margin-bottom: 1.2rem;
  color: #475467;
}

/* --- Eyebrow / Section label --- */
.eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--alma-blue);
  margin-bottom: 0.75rem;
}

/* --- Section spacing --- */
.section {
  padding: 100px 20px;
}
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head h2 {
  margin-bottom: 16px;
}
.section-head p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* --- Card descriptions --- */
.activity-item p,
.why-card-v2 .card-desc,
.real-card .real-meta-row .lab,
.aflow-card-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: #475467;
}

/* --- Activity card titles --- */
.activity-item h3,
.why-card-v2 .card-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
}

/* --- Counter numbers --- */
.cv2-num {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.cv2-lbl {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Form fields --- */
.contact-form input,
.contact-form textarea {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* --- Hero paragraph --- */
.hero-text > p {
  font-size: 1.1rem;
  line-height: 1.75;
  letter-spacing: 0.01em;
  max-width: 540px;
  margin-bottom: 32px;
}

/* --- Hero h1 specific --- */
.hero-text h1 {
  margin-bottom: 22px;
}

/* --- Page hero --- */
.page-hero {
  padding: 80px 20px 60px;
}
.page-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
}
.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* --- Buttons --- */
.btn {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 13px 30px;
}
.btn.lg {
  padding: 17px 38px;
  font-size: 1rem;
}

/* --- Intro text (about section) --- */
.intro-text h2 {
  margin-bottom: 24px;
}
.intro-text p {
  font-size: 1rem;
  line-height: 1.75;
}

/* --- Tab content --- */
.story-tab-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: #475467;
}

/* --- Certification cards --- */
.certif-code {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.certif-label {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: #667085;
}

/* --- Footer text --- */
.alma-footer .foot-about {
  font-size: 0.9rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

/* ============================================================
   PRIORITY 1 ÃƒÂ¯Ã‚Â¿Ã‚Â½ Hero Slider, Button Wipe, Shape Dividers
   ============================================================ */

/* --- Button Wipe Effect (Industrie Style) --- */
.btn-primary, .btn-outline, .btn-orange, .btn-white {
  position: relative; overflow: hidden; z-index: 1;
}
.btn-primary::before,
.btn-outline::before,
.btn-orange::before,
.btn-white::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0;
  width: 0; background: var(--alma-blue-dark);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: -1;
}
.btn-primary:hover::before,
.btn-outline:hover::before,
.btn-orange:hover::before,
.btn-white:hover::before { width: 100%; }
.btn-outline::before { background: var(--alma-blue); }
.btn-orange::before { background: var(--alma-orange); }
.btn-orange:hover { color: #fff; border-color: var(--alma-orange); }
.btn-white::before { background: rgba(0,0,0,0.06); }

/* --- Shape Dividers SVG --- */
.shape-divider {
  position: absolute; bottom: 0; left: 0; width: 100%;
  overflow: hidden; line-height: 0; pointer-events: none;
}
.shape-divider svg { display: block; width: 100%; height: 60px; }
.shape-divider-top { top: 0; bottom: auto; transform: rotate(180deg); }

/* --- Hero Slider (Swiper.js) --- */
.hero-slider { width: 100%; min-height: calc(100vh - var(--header-height) - 38px); position: relative; overflow: hidden; }
.hero-slider .swiper-slide { display: flex; align-items: center; justify-content: center; padding: 60px 20px; }
.hero-slider .slide-inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; }
.hero-slider .slide-text h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 20px; animation: slideFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.hero-slider .slide-text p { font-size: 1.1rem; line-height: 1.7; color: var(--text-dim); margin-bottom: 32px; max-width: 520px; animation: slideFadeUp 0.8s 0.15s cubic-bezier(0.4, 0, 0.2, 1) both; }
.hero-slider .slide-cta { display: flex; gap: 16px; flex-wrap: wrap; animation: slideFadeUp 0.8s 0.3s cubic-bezier(0.4, 0, 0.2, 1) both; }
.hero-slider .slide-media { display: flex; align-items: center; justify-content: center; animation: slideFadeUp 0.8s 0.2s cubic-bezier(0.4, 0, 0.2, 1) both; }
.hero-slider .slide-media .slide-thumb { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: #fff; position: relative; overflow: hidden; }
@keyframes slideFadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-slider .swiper-pagination { bottom: 30px; }
.hero-slider .swiper-pagination-bullet { width: 12px; height: 12px; background: rgba(29,131,193,0.3); opacity: 1; transition: all 0.3s; }
.hero-slider .swiper-pagination-bullet-active { background: var(--alma-blue); width: 32px; border-radius: 6px; }
.hero-slider .swiper-button-next, .hero-slider .swiper-button-prev { color: var(--alma-blue); width: 50px; height: 50px; background: #fff; border-radius: 50%; box-shadow: var(--shadow); transition: all 0.3s; }
.hero-slider .swiper-button-next:after, .hero-slider .swiper-button-prev:after { font-size: 1.2rem; font-weight: 700; }
.hero-slider .swiper-button-next:hover, .hero-slider .swiper-button-prev:hover { background: var(--alma-blue); color: #fff; }

/* --- FAQ Accordion --- */
.faq-accordion { max-width: 800px; margin: 40px auto 0; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: all 0.3s; }
.faq-item:hover { border-color: var(--alma-sky); }
.faq-item .faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; font-weight: 600; font-size: 1rem; cursor: pointer; background: none; border: none; width: 100%; text-align: left; font-family: var(--font-body); color: var(--text); transition: color 0.2s; }
.faq-item .faq-question:hover { color: var(--alma-blue); }
.faq-item .faq-question .faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; font-weight: 700; color: var(--alma-blue); }
.faq-item.open .faq-question .faq-icon { background: var(--alma-blue); color: #fff; transform: rotate(45deg); }
.faq-item .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-item .faq-answer p { font-size: 0.95rem; line-height: 1.7; color: var(--text-dim); margin: 0; }

/* --- Team Section --- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.team-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.35s; text-align: center; }
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); }
.team-card .team-photo { width: 100%; aspect-ratio: 1/1; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.team-card .team-photo .team-photo-placeholder { font-size: 5rem; }
.team-card .team-info { padding: 20px 24px 16px; }
.team-card .team-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.team-card .team-role { font-size: 0.85rem; color: var(--alma-blue); font-weight: 500; margin-bottom: 12px; }
.team-card .team-socials { display: flex; gap: 8px; justify-content: center; padding-bottom: 20px; }
.team-card .team-socials a { width: 34px; height: 34px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; color: var(--text-dim); transition: all 0.25s; }
.team-card .team-socials a:hover { background: var(--alma-blue); color: #fff; }

/* --- Blog / News --- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.35s; }
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); }
.blog-card .blog-thumb { width: 100%; aspect-ratio: 16/10; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card .blog-thumb .blog-cat { position: absolute; top: 14px; left: 14px; background: var(--alma-blue); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; }
.blog-card .blog-body { padding: 20px 22px 24px; }
.blog-card .blog-date { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px; }
.blog-card .blog-title { font-size: 1.05rem; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.blog-card .blog-excerpt { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 14px; }
.blog-card .blog-link { font-weight: 600; font-size: 0.88rem; color: var(--alma-blue); }

/* --- Testimonials --- */
.testi-slider { max-width: 800px; margin: 0 auto; text-align: center; }
.testi-quote { font-size: 1.2rem; line-height: 1.7; font-style: italic; color: var(--text); margin-bottom: 30px; position: relative; padding: 0 40px; }
.testi-quote::before { content: '\201C'; font-size: 6rem; color: var(--alma-sky); position: absolute; top: -30px; left: -10px; font-family: serif; opacity: 0.4; line-height: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; justify-content: center; }
.testi-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 1rem; text-align: left; }
.testi-company { font-size: 0.85rem; color: var(--text-muted); text-align: left; }
.testi-slider .swiper-pagination { position: static; margin-top: 30px; }

/* --- Enhanced Preloader --- */
#preloader .loader-logo { max-width: min(280px, 80vw); height: 64px; display: flex; align-items: center; justify-content: center; animation: preloaderPulse 1.2s ease-in-out infinite; }
#preloader .loader-logo img { height: 100% !important; width: auto !important; max-width: 100% !important; object-fit: contain !important; display: block; }
@keyframes preloaderPulse { 0%,100%{ transform:scale(1);opacity:1 } 50%{ transform:scale(0.9);opacity:0.7 } }

/* --- Stagger entrance --- */
.stagger-container .stagger-item { opacity: 0; transform: translateY(30px); transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.stagger-visible .stagger-item { opacity: 1; transform: translateY(0); }
.stagger-item:nth-child(1){ transition-delay:0s }
.stagger-item:nth-child(2){ transition-delay:0.1s }
.stagger-item:nth-child(3){ transition-delay:0.2s }
.stagger-item:nth-child(4){ transition-delay:0.3s }
.stagger-item:nth-child(5){ transition-delay:0.4s }
.stagger-item:nth-child(6){ transition-delay:0.5s }

/* --- Video Popup --- */
.video-popup { position: relative; display: inline-block; cursor: pointer; }
.video-popup .play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 72px; height: 72px; border-radius: 50%; background: var(--alma-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 0 0 12px rgba(29,131,193,0.2); transition: all 0.3s; animation: videoPulse 2s infinite; }
.video-popup .play-btn:hover { background: var(--alma-blue-dark); box-shadow: 0 0 0 20px rgba(29,131,193,0.3); transform: translate(-50%,-50%) scale(1.08); }
@keyframes videoPulse { 0%{ box-shadow:0 0 0 0 rgba(29,131,193,0.3) } 70%{ box-shadow:0 0 0 20px rgba(29,131,193,0) } 100%{ box-shadow:0 0 0 0 rgba(29,131,193,0) } }

/* --- Floating shapes --- */
.floating-shape { position: absolute; pointer-events: none; z-index: 0; animation: floatShape 8s ease-in-out infinite; }
@keyframes floatShape { 0%,100%{ transform:translateY(0) rotate(0deg) } 25%{ transform:translateY(-20px) rotate(5deg) } 75%{ transform:translateY(10px) rotate(-3deg) } }

/* ============================================================
   COUNTER STYLE 02 ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Exact Industrie match
   ============================================================ */
.cv2-cell {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.cv2-cell:nth-child(2n) { border-right: none; }
.cv2-cell:nth-child(n+3) { border-bottom: none; }
.cv2-cell:hover { background: rgba(29,131,193,0.02); }

.cv2-num {
  font-size: 3rem;
  font-weight: 800;
  color: #1E2023;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.cv2-num .plus,
.cv2-num .suffix {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--alma-blue);
}

.cv2-line {
  width: 45px;
  height: 3px;
  background: var(--alma-blue);
  margin: 16px auto;
  border-radius: 2px;
}

.cv2-lbl {
  font-size: 0.85rem;
  font-weight: 600;
  color: #475467;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* --- Counter text (left side) --- */
.counter-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}
.counter-text h2::after {
  width: 55px;
  height: 3px;
  background: var(--alma-blue);
  margin-top: 20px;
}

/* --- Environment counter stats --- */
.env-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1E2023;
  line-height: 1;
  letter-spacing: -0.02em;
}
.env-num .suffix,
.env-num .env-decimal {
  font-size: 1.2rem;
  font-weight: 400;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #6faeb1;
}
.env-stat.hi .env-num .suffix,
.env-stat.hi .env-num .env-decimal {
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #6faeb1;
}
.env-line {
  width: 45px;
  height: 3px;
  background: var(--alma-blue);
  margin: 14px auto;
}
.env-stat.hi .env-line { background: rgba(255,255,255,0.5); }
.env-lbl {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #475467;
}

/* ============================================================
   COUNTER STYLE 02 Ã¢â‚¬â€ Image left, Counters right (Industrie exact)
   ============================================================ */
.counter-section-v2 {
  padding: 90px 20px;
  background: var(--bg);
}
.counter-v2-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.counter-img-frame { position: relative; }
.counter-experience-badge {
  position: absolute;
  bottom: -16px;
  right: 24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.badge-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--alma-blue);
  line-height: 1;
}
.badge-lbl {
  display: block;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 4px;
}

.counter-stats-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.counter-stats-v2 .cv2-cell {
  padding: 36px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: background 0.3s;
}
.counter-stats-v2 .cv2-cell:nth-child(2n) { border-right: none; }
.counter-stats-v2 .cv2-cell:nth-child(n+3) { border-bottom: none; }
.counter-stats-v2 .cv2-cell:hover { background: rgba(29,131,193,0.02); }

.counter-v2-content h2 { margin-bottom: 14px; }
.counter-v2-content p { font-size: 1rem; line-height: 1.7; }

@media (max-width: 1024px) {
  .counter-v2-grid { grid-template-columns: 1fr; }
  .counter-img-frame { max-width: 500px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .counter-stats-v2 { grid-template-columns: 1fr; }
  .counter-stats-v2 .cv2-cell { border-right: none; }
  .counter-stats-v2 .cv2-cell:nth-child(n+3) { border-bottom: 1px solid var(--line); }
  .counter-stats-v2 .cv2-cell:last-child { border-bottom: none; }
}

/* --- Counter font fix — explicit Space Grotesk 800 --- */
.cv2-num, .cv2-num .count-up, .cv2-num .plus, .cv2-num .suffix {
  font-family: 'Space Grotesk', sans-serif;
}
.cv2-num .count-up { font-weight: 800; }
.cv2-lbl {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
}

/* ============================================================
   CERTIFICATIONS — Image seal style (ALMA React site)
   ============================================================ */
.certif-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.certif-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.35s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.certif-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--alma-sky);
}
.seal-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(29,131,193,0.08), rgba(115,198,240,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
}
.seal-placeholder {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--alma-blue);
}
.certif-text { text-align: center; }
.certif-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.certif-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================================
   REFERENCES CAROUSEL — ALMA React site style
   ============================================================ */
.block-ref-section {
  padding: 80px 20px;
}
.ref-section-head {
  text-align: center;
  margin-bottom: 48px;
}
.ref-section-head h2 { margin-bottom: 12px; }
.ref-section-head p { max-width: 600px; margin: 0 auto; color: var(--text-dim); }
.ref-carousel-outer {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  overflow: hidden;
}
.ref-track {
  display: flex;
  gap: 16px;
  animation: scrollRefs 30s linear infinite;
}
.ref-track.paused { animation-play-state: paused; }
.ref-slide {
  flex-shrink: 0;
  width: 200px;
  height: 110px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.ref-slide:hover {
  box-shadow: var(--shadow);
  border-color: var(--alma-sky);
}
.ref-slide-img {
  max-width: 80%;
  max-height: 60%;
  object-fit: contain;
}
.ref-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.ref-slide:hover .ref-slide-overlay { opacity: 1; }
.ref-slide-num {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--alma-blue);
}
.ref-fade-left, .ref-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ref-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.ref-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}
.ref-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.ref-dot {
  width: 8px; height: 8px;
  background: var(--alma-green);
  border-radius: 50%;
}
.ref-dot.paused { background: var(--alma-orange); }
.ref-status-lbl { font-size: 0.85rem; }
.ref-count { font-weight: 600; color: var(--alma-blue); }

@keyframes scrollRefs {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Cert grid fix --- */
.certif-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* --- Ref slide — logo-style cards --- */
.ref-slide {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 180px;
  height: 100px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--alma-blue-dark);
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.ref-slide:hover {
  box-shadow: var(--shadow);
  border-color: var(--alma-sky);
  transform: translateY(-3px);
}

/* --- Header Industrie Style --- */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-socials a {
  color: #616161;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.nav-socials a:hover { color: var(--alma-blue); }

/* Offcanvas grid icon toggle (Industrie style) */
.offcanvas-toggle {
  background: none; border: none;
  cursor: pointer; padding: 6px;
  display: flex; align-items: center;
  transition: opacity 0.2s;
}
.offcanvas-toggle:hover { opacity: 0.7; }
.offcanvas-toggle svg { display: block; }

@media (max-width: 1024px) {
  .nav-socials { display: none; }
}

/* --- Partner Logo Showcase (Industrie style) --- */
.ref-slide {
  width: 220px;
  height: 110px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.35s;
  flex-shrink: 0;
  position: relative;
}
.ref-slide:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--alma-sky);
}
.ref-slide .ref-slide-img {
  max-width: 70%;
  max-height: 50%;
  object-fit: contain;
  transition: transform 0.3s;
}
.ref-slide:hover .ref-slide-img {
  transform: scale(1.05);
}
.ref-slide::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--alma-blue);
  transform: scaleX(0);
  transition: transform 0.35s;
}
.ref-slide:hover::after { transform: scaleX(1); }

/* Remove old overlay styles */
.ref-slide-overlay { display: none; }
.ref-slide-num { display: none; }
.ref-fade-left, .ref-fade-right { width: 60px; }

/* ============================================================
   NAVIGATION — Industrie hfe-nav-menu exact match
   ============================================================ */

/* --- Desktop nav links --- */
.nav-links { display: flex; gap: 0; align-items: center; }
.nav-link {
  display: flex; align-items: center;
  padding: 40px 10px 40px 28px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text);
  white-space: nowrap;
  transition: color 0.25s;
  position: relative;
}
.nav-link:hover,
.nav-link.active { color: var(--alma-blue); }
.nav-link::after {
  display: none; /* Remove underline - Industrie uses clean style */
}
.nav-link .caret {
  margin-left: 4px;
  font-size: 0.6rem;
  transition: transform 0.25s;
  display: inline-flex;
  align-items: center;
}

/* --- Sub-menu dropdown (Industrie style) --- */
.nav-link.has-dropdown { position: relative; cursor: pointer; }
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  min-width: 240px;
  padding: 8px 0;
  z-index: 1001;
  list-style: none;
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  visibility: hidden;
}
.nav-link.has-dropdown:hover .sub-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.sub-menu li { margin: 0; padding: 0; list-style: none; }
.sub-menu li a {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.88rem;
  transition: all 0.2s;
  white-space: nowrap;
  border-left: 2px solid transparent;
}
.sub-menu li a:hover {
  background: rgba(29,131,193,0.04);
  color: var(--alma-blue);
  border-left-color: var(--alma-blue);
  padding-left: 30px;
}
.sub-dot { display: none; }

/* --- Remove old mega menu styles --- */
.v1-mega { display: none !important; }

/* --- Header nav area --- */
.alma-nav {
  gap: 0;
}
.nav-right { gap: 20px; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-right { display: none; }
  .offcanvas-toggle { display: flex; }
}
@media (min-width: 1025px) {
  .offcanvas-toggle { display: flex; }
}

/* ============================================================
   SERVICES PAGE — Grid listing (Industrie style)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
  transform: translateY(-6px);
  border-color: transparent;
}
.sc-thumb {
  position: relative;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.service-card:hover .sc-thumb { transform: scale(1.03); }
.sc-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,0.9);
  color: var(--alma-blue);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.sc-body { padding: 32px 28px; }
.sc-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.sc-desc { font-size: 0.95rem; line-height: 1.65; color: var(--text-dim); margin-bottom: 16px; }
.sc-features {
  list-style: none;
  padding: 0; margin: 0 0 20px 0;
}
.sc-features li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-dim);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sc-features li::before {
  content: '✓';
  color: var(--alma-blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   WORK PROCESS (steps + arrows)
   ============================================================ */
.work-process-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.wp-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  transition: all 0.3s;
}
.wp-step:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.wp-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(29,131,193,0.08);
  line-height: 1;
  margin-bottom: 8px;
}
.wp-icon { font-size: 2.2rem; margin-bottom: 12px; }
.wp-step h4 { font-size: 1rem; margin-bottom: 8px; }
.wp-step p { font-size: 0.85rem; margin: 0; color: var(--text-dim); }
.wp-arrow {
  font-size: 2rem;
  color: var(--alma-blue);
  padding: 0 12px;
  flex-shrink: 0;
}

/* ============================================================
   CTA FULL BAND (Industrie style)
   ============================================================ */
.cta-full-band { padding: 80px 20px; }
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  flex-wrap: wrap;
}
.cta-band-text h2 { margin-bottom: 8px; }
.cta-band-text p { margin: 0; }
.cta-band-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   SINGLE SERVICE PAGE — Layout 2/3 + 1/3 sidebar
   ============================================================ */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.service-main { min-width: 0; }
.service-sidebar { position: sticky; top: 110px; }

.svc-hero-img { overflow: hidden; }
.svc-list {
  list-style: none;
  padding: 0; margin: 12px 0 0 0;
}
.svc-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc-list li::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--alma-blue);
  border-radius: 1px;
  flex-shrink: 0;
}

/* --- Sidebar widgets --- */
.sidebar-widget { margin-bottom: 0; }
.sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--alma-blue);
}
.sidebar-services {
  list-style: none;
  padding: 0; margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.sidebar-services li { border-bottom: 1px solid var(--line); }
.sidebar-services li:last-child { border-bottom: none; }
.sidebar-services li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  font-weight: 500;
  font-size: 0.92rem;
  transition: all 0.2s;
  color: var(--text-dim);
}
.sidebar-services li a:hover { background: rgba(29,131,193,0.04); color: var(--alma-blue); padding-left: 24px; }
.sidebar-services li.active a { background: rgba(29,131,193,0.08); color: var(--alma-blue); font-weight: 600; }
.sidebar-contact { display: flex; flex-direction: column; gap: 14px; }
.sc-row { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }

/* ============================================================
   FAQ ACCORDION — Industrie style
   ============================================================ */
.faq-accordion { max-width: 800px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: all 0.3s; background: #fff; }
.faq-item:hover { border-color: var(--alma-sky); }
.faq-item.open { border-color: var(--alma-blue); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  color: var(--text);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--alma-blue); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--alma-blue);
}
.faq-item.open .faq-question { color: var(--alma-blue); }
.faq-item.open .faq-icon { background: var(--alma-blue); color: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }
.faq-answer p { font-size: 0.93rem; line-height: 1.7; color: var(--text-dim); margin: 0; }

/* ============================================================
   RELATED SERVICES GRID
   ============================================================ */
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-srv {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s;
  display: block;
}
.related-srv:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--alma-sky); }
.related-srv h4 { margin-bottom: 8px; }
.related-srv p { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 14px; }
.rs-link { font-weight: 600; font-size: 0.9rem; color: var(--alma-blue); }

/* ============================================================
   CONTACT PAGE — Layout + Form Card
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info-col {}
.contact-form-col {}
.contact-form-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--line);
}
.contact-details-list { display: flex; flex-direction: column; gap: 20px; }
.cd-item { display: flex; gap: 16px; align-items: flex-start; }
.cd-icon {
  width: 52px; height: 52px;
  background: rgba(29,131,193,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--alma-blue);
  flex-shrink: 0;
}
.cd-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 2px; }
.cd-value { font-weight: 600; font-size: 0.95rem; }
.cd-value a { color: var(--text); }
.cd-value a:hover { color: var(--alma-blue); }
.social-links { display: flex; gap: 10px; }
.social-link-item {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all 0.25s;
}
.social-link-item:hover { background: var(--alma-blue); color: #fff; border-color: var(--alma-blue); }

/* --- Form --- */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s;
  background: #fff;
  color: var(--text);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--alma-blue);
  box-shadow: 0 0 0 4px rgba(29,131,193,0.08);
}
.contact-form textarea { resize: vertical; min-height: 160px; }
.contact-form select { cursor: pointer; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475467' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.contact-cta-inner { flex-wrap: wrap; }
.map-section { overflow: hidden; }

/* ============================================================
   COUNTER V2 GRID (section, used in front-page & qui-sommes-nous)
   ============================================================ */
.counter-section-v2 { padding: 80px 20px; }
.counter-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.counter-v2-image { position: relative; }
.counter-img-frame { position: relative; }
.counter-experience-badge {
  position: absolute;
  bottom: 20px; right: -20px;
  background: var(--alma-blue);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.badge-num { font-size: 2.4rem; font-weight: 800; display: block; line-height: 1; }
.badge-lbl { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.85; }
.counter-v2-content { padding-left: 20px; }
.counter-stats-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ============================================================
   REF SECTION — logo carousel wrapper (clean Industrie style)
   ============================================================ */
.block-ref-section { padding: 100px 20px; }
.ref-section-head {
  text-align: center;
  margin-bottom: 60px;
}
.ref-section-head h2 { margin-bottom: 14px; }
.ref-section-head p { max-width: 640px; margin: 0 auto; font-size: 1.05rem; line-height: 1.65; }
.ref-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.ref-dot {
  width: 8px; height: 8px;
  background: var(--alma-green);
  border-radius: 50%;
  animation: refDotPulse 2s infinite;
}
.ref-dot.paused { background: var(--alma-orange); animation: none; }
@keyframes refDotPulse { 0%,100%{ opacity:1 } 50%{ opacity:0.5 } }
.ref-status-lbl { font-size: 0.82rem; }
.ref-count { font-weight: 600; font-size: 0.85rem; color: var(--text-dim); }

/* ============================================================
   RESPONSIVE — Updated breakpoints
   ============================================================ */
@media (max-width: 1024px) {
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .counter-v2-grid { grid-template-columns: 1fr; }
  .related-services-grid { grid-template-columns: 1fr 1fr; }
  .work-process-grid { gap: 16px; }
  .wp-arrow { display: none; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .related-services-grid { grid-template-columns: 1fr; }
  .svc-stats-grid { grid-template-columns: 1fr 1fr !important; }
  .contact-form-card { padding: 28px 24px; }
  .counter-v2-content { padding-left: 0; }
  .counter-experience-badge { right: 0; }
}
@media (max-width: 480px) {
  .svc-stats-grid { grid-template-columns: 1fr !important; }
}

/* --- Logo Showcase — Exact Industrie rsaddons-logo-showcase --- */
.rsaddons-logo-showcase {
  overflow: hidden;
  padding: 20px 0;
}
.rs-grid-figure {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 15px;
}
.logo-img {
  position: relative;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 25px 20px;
  background: #fff;
  transition: all 0.4s ease;
  overflow: hidden;
}
.logo-img:hover {
  border-color: var(--alma-sky);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.mains-logos.rs-grid-img {
  display: block;
  max-width: 100%;
  height: 70px;
  object-fit: contain;
  margin: 0 auto;
  transition: transform 0.4s;
}
.logo-img:hover .rs-grid-img {
  transform: scale(1.08);
}
.left-bottom-shape {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 30px 30px;
  border-color: transparent transparent var(--alma-blue) transparent;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.35s;
}
.rs-grid-figure:hover .left-bottom-shape {
  opacity: 0.08;
}

/* --- Fix logo image sizes --- */
.logo-slider .grid-item,
.logo-slider .rs-grid-figure,
.logo-slider .logo-img {
  width: 100% !important;
}
.logo-slider .mains-logos.rs-grid-img,
.logo-slider .logo-img img {
  max-width: 100% !important;
  width: auto !important;
  height: 65px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}
.logo-slider .logo-img {
  padding: 20px 15px !important;
}
.logo-slider .grid-item {
  padding: 10px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.grid-item img,
.mains-logos {
  background: transparent !important;
}

/* --- Aggressive image size constraint --- */
.rsaddons-logo-showcase img,
.logo-slider img,
.grid-item img,
.logo-img img,
.rs-grid-figure img,
.mains-logos,
.rs-grid-img {
  max-width: 160px !important;
  max-height: 75px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
/* --- Final logo image fix - uniform size like Industrie --- */
.logo-slider .logo-img {
  padding: 0 !important;
  border-radius: 8px;
  height: 100px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}
.logo-slider .logo-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 15px !important;
  max-width: 100% !important;
  max-height: 100% !important;
}

/* --- Force one-line layouts for certificates and logo showcase --- */
.certif-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 24px !important;
  overflow: visible !important;
  padding-top: 8px !important;
  padding-bottom: 12px !important;
}

.certif-card {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.certif-card:hover {
  z-index: 5;
}

.rsaddon-unique-slider.rsaddons-logo-showcase {
  overflow: hidden;
}

.rsaddon-unique-slider.rsaddons-logo-showcase .logo-slider {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 15px;
  overflow: hidden;
  width: max-content;
  animation: almaLogoMarquee 28s linear infinite;
}

.rsaddon-unique-slider.rsaddons-logo-showcase .grid-item {
  flex: 0 0 220px !important;
  max-width: 220px !important;
}

.rsaddon-unique-slider.rsaddons-logo-showcase:hover .logo-slider {
  animation-play-state: paused;
}

@keyframes almaLogoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 7.5px)); }
}

@media (max-width: 991px) {
  .rsaddon-unique-slider.rsaddons-logo-showcase .grid-item {
    flex-basis: 180px !important;
    max-width: 180px !important;
  }
}

@media (max-width: 575px) {
  .rsaddon-unique-slider.rsaddons-logo-showcase .grid-item {
    flex-basis: 150px !important;
    max-width: 150px !important;
  }
}

/* ============================================================
   Industrie 2025 inspired skin — ALMA colors preserved
   ============================================================ */
:root {
  --industrie-black: #0b0f14;
  --industrie-ink: #10141b;
  --industrie-soft: #f5f7f9;
  --industrie-border: rgba(16, 20, 27, 0.1);
}

body {
  font-family: var(--font-body);
  color: var(--industrie-ink);
  background: #fff;
}

h1,
h2,
h3,
h4,
.nav-link,
.btn {
  font-family: var(--font-heading);
}

.alma-topbar {
  background: var(--industrie-black) !important;
  color: rgba(255,255,255,0.78);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.alma-header {
  background: #fff;
  border-bottom: 1px solid var(--industrie-border);
  box-shadow: 0 8px 35px rgba(0,0,0,0.04);
}

.alma-nav {
  height: 92px;
}

.nav-link {
  padding: 36px 15px;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
  background: transparent;
  color: var(--alma-blue);
}

.sub-menu {
  border-top: 3px solid var(--alma-blue);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.btn {
  border-radius: 0;
  min-height: 46px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--alma-blue);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}

.btn-outline {
  border-color: var(--alma-blue);
}

.hero-slider {
  min-height: 720px;
  background:
    linear-gradient(90deg, rgba(11,15,20,0.90), rgba(11,15,20,0.62)),
    linear-gradient(135deg, var(--alma-blue), var(--alma-sky));
  color: #fff;
  overflow: hidden;
}

.hero-slider .slide-inner {
  min-height: 680px;
}

.hero-slider .slide-text h1 {
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: 0;
  max-width: 860px;
}

.hero-slider .slide-text p {
  color: rgba(255,255,255,0.82);
  max-width: 620px;
}

.hero-slider .slide-thumb {
  border-radius: 0 !important;
  min-height: 420px;
  box-shadow: 20px 20px 0 rgba(115,198,240,0.18);
}

.hero-slider .slide-thumb::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255,255,255,0.22);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--alma-blue);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hero-slider .eyebrow {
  color: var(--alma-sky);
}

.section,
.counter-section-v2,
.env-section,
.block-ref-section {
  padding-top: 112px;
  padding-bottom: 112px;
}

.section-head,
.ref-section-head {
  margin-bottom: 54px;
}

.section-head h2,
.ref-section-head h2,
.counter-v2-content h2,
.intro-text h2,
.alma-faq-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.intro-grid,
.counter-v2-grid,
.env-split,
.alma-faq-layout {
  gap: 70px;
}

.story-tab-nav {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-radius: 4px;
  background: #f5f5f5;
  border: 0;
  padding: 0;
  overflow: hidden;
}

.story-tab-btn {
  position: relative;
  min-height: 78px;
  border-radius: 0;
  padding: 18px 24px;
  background: transparent;
  color: #646464;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  border-right: 2px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .story-tab-btn {
    min-height: 62px;
    padding: 14px 10px;
    font-size: 15px;
  }
}

.story-tab-btn:last-child {
  border-right: 0;
}

.story-tab-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--alma-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.story-tab-btn.active {
  background: #f5f5f5;
  color: var(--alma-blue);
  box-shadow: none;
}

.story-tab-btn.active::before {
  transform: scaleX(1);
}

.story-tab-btn:hover {
  color: var(--alma-blue);
}

.activity-item,
.certif-card,
.why-card-v2,
.service-card,
.faq-item {
  border-radius: 0 !important;
  border-color: var(--industrie-border);
  box-shadow: none;
}

.activity-item {
  min-height: 310px;
  padding: 38px 30px 34px;
}

.activity-item::before {
  height: 5px;
}

.activity-item .act-num {
  top: auto;
  bottom: 22px;
  right: 26px;
  color: rgba(29,131,193,0.13);
}

.activity-item .act-ico {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(29,131,193,0.08);
  color: var(--alma-blue);
  font-size: 1.75rem;
}

.activity-item:hover,
.certif-card:hover,
.why-card-v2:hover,
.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 46px rgba(0,0,0,0.10);
}

.certif-card {
  min-height: 210px;
  justify-content: center;
}

.seal-img {
  border-radius: 0 !important;
  background: rgba(29,131,193,0.08) !important;
}

.industrie-split-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 46px;
}

.industrie-split-head h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.12;
  max-width: 720px;
}

.industrie-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.industrie-project-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--industrie-black);
  color: #fff;
}

.industrie-project-card .project-visual {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29,131,193,0.9), rgba(115,198,240,0.55));
}

.industrie-project-card .project-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,15,20,0.08), rgba(11,15,20,0.82)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 18px);
}

.industrie-project-card .project-visual span {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 1;
  font-size: 4.8rem;
  font-weight: 800;
  color: rgba(255,255,255,0.22);
}

.industrie-project-card .project-body {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}

.industrie-project-card .project-body span {
  color: var(--alma-sky);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.industrie-project-card h3 {
  color: #fff;
  margin: 8px 0 18px;
  font-size: 1.55rem;
}

.industrie-project-card a {
  color: #fff;
  font-weight: 800;
}

.alma-work-section {
  background: #fff;
}

.alma-faq-section {
  background: var(--industrie-soft);
}

.alma-faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.alma-faq-copy p {
  max-width: 480px;
  margin-bottom: 28px;
}

.faq-accordion {
  max-width: none;
}

.faq-question {
  padding: 24px 28px;
  font-size: 1rem;
}

.faq-answer {
  background: #fff;
}

.contact-grid,
.contact-layout {
  align-items: stretch;
}

.contact-form,
.contact-form-card,
.contact-info {
  border-radius: 0 !important;
}

.alma-footer {
  background: var(--industrie-black) !important;
}

@media (max-width: 1024px) {
  .hero-slider .slide-inner,
  .alma-faq-layout,
  .industrie-project-grid {
    grid-template-columns: 1fr;
  }

  .industrie-split-head {
    align-items: start;
    flex-direction: column;
  }

  .hero-slider .slide-inner {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    min-height: auto;
  }

  .hero-slider .slide-text h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }
}

/* ============================================================
   Closer RSTheme header, typography and motion pass
   ============================================================ */
:root {
  --font-body: 'Space Grotesk', Arial, sans-serif;
  --font-heading: 'Space Grotesk', Arial, sans-serif;
  --rs-dark: #010d14;
  --rs-heading: #0a0d14;
  --rs-muted: #5d666f;
}

body {
  font-family: 'Space Grotesk', Arial, sans-serif !important;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', Arial, sans-serif !important;
  font-weight: 700;
  color: var(--rs-heading);
  letter-spacing: 0;
}

.alma-topbar {
  min-height: 46px;
  font-size: 14px;
  font-weight: 500;
}

.alma-topbar .tb-inner {
  max-width: 1320px;
}

.alma-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: none;
}

.alma-nav {
  max-width: 1320px;
  height: 88px !important;
  padding: 0 20px;
  gap: 26px;
}

.alma-nav .logo img {
  height: 55px !important;
}

.industrie-nav-menu {
  gap: 0 !important;
  height: 100%;
}

.industrie-nav-menu .nav-link {
  height: 100%;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 0 18px !important;
  background: transparent !important;
  color: #101010 !important;
  font-size: 16px !important;
  line-height: 1;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  transition: color 0.25s ease;
}

.industrie-nav-menu .nav-link::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 3px;
  background: var(--alma-blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s ease;
}

.industrie-nav-menu .nav-link:hover,
.industrie-nav-menu .nav-link.active {
  color: var(--alma-blue) !important;
}

.industrie-nav-menu .nav-link:hover::before,
.industrie-nav-menu .nav-link.active::before {
  transform: scaleX(1);
}

.industrie-nav-menu .caret {
  margin-left: 7px;
  font-size: 16px;
  transform: translateY(-1px);
  display: inline-block;
  transition: transform 0.32s ease, color 0.25s ease;
}

.industrie-nav-menu .has-dropdown:hover .caret {
  transform: translateY(-1px) rotate(180deg);
  color: var(--alma-blue);
}

.industrie-nav-menu .sub-menu {
  display: block !important;
  top: 100%;
  left: 0;
  min-width: 260px;
  padding: 14px 0;
  border-radius: 0;
  border: 0;
  border-top: 4px solid var(--alma-blue);
  background: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: perspective(420px) rotateX(-12deg) translateY(12px);
  transform-origin: 50% 0;
  pointer-events: none;
  transition: opacity 0.42s ease, visibility 0.42s ease, transform 0.48s cubic-bezier(.16,.72,.24,1);
  will-change: opacity, transform;
}

.industrie-nav-menu .has-dropdown:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: perspective(420px) rotateX(0deg) translateY(0);
  pointer-events: auto;
}

.industrie-nav-menu .sub-menu li a {
  position: relative;
  min-height: 46px;
  padding: 13px 28px;
  color: #111111;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0;
  border-left: 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(9px);
  transition: color 0.26s ease, background-color 0.26s ease, padding-left 0.26s ease, opacity 0.38s ease, transform 0.38s cubic-bezier(.16,.72,.24,1);
}

.industrie-nav-menu .sub-menu li a::after {
  display: none;
}

.industrie-nav-menu .sub-menu li:last-child a {
  border-bottom: 0;
}

.industrie-nav-menu .has-dropdown:hover .sub-menu li a {
  opacity: 1;
  transform: translateY(0);
}

.industrie-nav-menu .has-dropdown:hover .sub-menu li:nth-child(1) a { transition-delay: 0.08s; }
.industrie-nav-menu .has-dropdown:hover .sub-menu li:nth-child(2) a { transition-delay: 0.13s; }
.industrie-nav-menu .has-dropdown:hover .sub-menu li:nth-child(3) a { transition-delay: 0.18s; }
.industrie-nav-menu .has-dropdown:hover .sub-menu li:nth-child(4) a { transition-delay: 0.23s; }
.industrie-nav-menu .has-dropdown:hover .sub-menu li:nth-child(5) a { transition-delay: 0.28s; }
.industrie-nav-menu .has-dropdown:hover .sub-menu li:nth-child(6) a { transition-delay: 0.33s; }

.industrie-nav-menu .sub-menu li a::before {
  display: none;
}

.industrie-nav-menu .sub-menu li a:hover {
  background: rgba(29,131,193,0.055);
  color: var(--alma-blue);
  padding-left: 32px;
}

/* Offcanvas nested services menu */
.offcanvas .oc-menu-group {
  border-bottom: 1px solid var(--line);
}

.offcanvas .oc-parent {
  width: 100%;
  min-height: 50px;
  padding: 13px 16px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text);
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.offcanvas .oc-parent:hover,
.offcanvas .oc-menu-group.open .oc-parent {
  background: rgba(29,131,193,0.06);
  color: var(--alma-blue);
}

.offcanvas .oc-caret {
  display: inline-block;
  transition: transform 0.28s ease;
}

.offcanvas .oc-menu-group.open .oc-caret {
  transform: rotate(180deg);
}

.offcanvas .oc-sub {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.42s ease, opacity 0.28s ease, transform 0.32s ease;
}

.offcanvas .oc-menu-group.open .oc-sub {
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
}

.offcanvas .oc-sub a {
  margin-left: 16px;
  padding: 10px 14px !important;
  font-size: 0.92rem !important;
  color: var(--text-dim);
  border-bottom: 0 !important;
}

.offcanvas .oc-sub a:hover {
  color: var(--alma-blue);
  padding-left: 20px !important;
}

/* Offcanvas final structure pass */
.offcanvas {
  width: min(390px, 92vw) !important;
  right: min(-390px, -92vw) !important;
  background: #fff;
  box-shadow: -18px 0 55px rgba(0,0,0,0.18);
  transition: right 0.46s cubic-bezier(.16,.72,.24,1) !important;
}

.offcanvas.open {
  right: 0 !important;
}

.offcanvas .oc-body {
  min-height: 100%;
  padding: 34px 30px 28px !important;
  display: flex;
  flex-direction: column;
}

.offcanvas .oc-logo {
  width: fit-content;
  margin-bottom: 34px !important;
  padding-right: 52px;
}

.offcanvas .oc-close {
  top: 26px !important;
  right: 26px !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 0 !important;
  background: var(--alma-blue) !important;
  color: #fff !important;
  font-size: 1.1rem !important;
}

.offcanvas .oc-close:hover {
  background: var(--alma-blue-dark) !important;
}

.offcanvas .oc-links {
  gap: 0 !important;
  margin: 0 0 30px !important;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.offcanvas .oc-links > a,
.offcanvas .oc-parent {
  min-height: 54px !important;
  padding: 0 !important;
  border-radius: 0 !important;
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
  background: transparent !important;
  color: #111 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

.offcanvas .oc-links > a {
  display: flex;
  align-items: center;
}

.offcanvas .oc-links > a:hover,
.offcanvas .oc-menu-group.open .oc-parent,
.offcanvas .oc-parent:hover {
  color: var(--alma-blue) !important;
  background: transparent !important;
}

.offcanvas .oc-caret {
  width: 30px;
  height: 30px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: var(--alma-blue);
  border: 1px solid rgba(29,131,193,0.18);
}

.offcanvas .oc-menu-group {
  border-bottom: 0 !important;
}

.offcanvas .oc-sub {
  background: #fff;
  margin: 0;
  padding: 0 0 0 18px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.offcanvas .oc-menu-group.open .oc-sub {
  padding-top: 8px;
  padding-bottom: 10px;
}

.offcanvas .oc-sub a {
  display: flex !important;
  align-items: center;
  width: 100%;
  margin-left: 0 !important;
  min-height: 42px;
  padding: 9px 0 9px 18px !important;
  color: #111 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  position: relative;
  white-space: normal;
}

.offcanvas .oc-sub a:hover {
  background: rgba(29,131,193,0.055);
  color: var(--alma-blue) !important;
  padding-left: 28px !important;
}

.offcanvas .oc-sub a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border: 1px solid var(--alma-blue);
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.65;
}


.offcanvas .oc-info {
  margin-top: auto !important;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.offcanvas .oc-info .oc-info-item {
  align-items: flex-start !important;
  padding: 9px 0 !important;
  color: #4c5661 !important;
  font-size: 14px !important;
  line-height: 1.55;
}

.offcanvas .oc-socials {
  margin-top: 18px !important;
  padding-top: 18px !important;
}

.offcanvas .oc-socials a {
  border-radius: 0 !important;
  background: #f3f6f8 !important;
}

.nav-right {
  height: 100%;
  gap: 18px !important;
}

.nav-socials {
  gap: 14px;
  padding-right: 18px;
  border-right: 1px solid rgba(0,0,0,0.12);
}

.nav-socials a,
.nav-search {
  color: #111;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-socials a:hover,
.nav-search:hover {
  color: var(--alma-blue);
  transform: translateY(-2px);
}

.nav-search {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-right .btn {
  min-height: 52px;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.nav-right .btn::after,
.slide-cta .btn::after,
.contact-form .btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.18);
  transform: translateX(-105%) skewX(-16deg);
  transition: transform 0.45s ease;
}

.nav-right .btn:hover::after,
.slide-cta .btn:hover::after,
.contact-form .btn:hover::after {
  transform: translateX(105%) skewX(-16deg);
}

.hero-slider .slide-text h1,
.section-head h2,
.ref-section-head h2,
.intro-text h2,
.counter-v2-content h2,
.industrie-split-head h2,
.alma-faq-copy h2 {
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

.hero-slider .slide-text h1 {
  line-height: 1.03 !important;
}

.eyebrow {
  font-size: 15px !important;
  font-weight: 700 !important;
  text-transform: capitalize !important;
  letter-spacing: 0 !important;
}

.reveal {
  opacity: 0;
  transform: translateY(46px);
  filter: blur(4px);
  transition: opacity 0.75s cubic-bezier(.22,.61,.36,1),
              transform 0.75s cubic-bezier(.22,.61,.36,1),
              filter 0.75s cubic-bezier(.22,.61,.36,1);
}

.reveal.active,
.reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
  filter: blur(0);
}

.split-char {
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(.22,.61,.36,1),
              transform 0.75s cubic-bezier(.22,.61,.36,1) !important;
}

.reveal.active .split-char,
.reveal.revealed .split-char {
  transform: translateY(0);
}

.activity-item,
.industrie-project-card,
.why-card-v2,
.certif-card,
.faq-item {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

@media (max-width: 1180px) {
  .industrie-nav-menu .nav-link {
    padding: 0 10px !important;
    font-size: 14px !important;
  }
}

/* ============================================================
   Unified type scale — keeps every component consistent
   ============================================================ */
:root {
  --type-xs: 12px;
  --type-sm: 14px;
  --type-base: 16px;
  --type-md: 18px;
  --type-lg: 22px;
  --type-h4: 24px;
  --type-h3: 30px;
  --type-h2: clamp(34px, 3.4vw, 48px);
  --type-h1: clamp(48px, 5.4vw, 76px);
}

body {
  font-size: var(--type-base) !important;
}

p,
li,
.story-tab-content,
.card-desc,
.sc-desc,
.faq-answer p,
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-size: var(--type-base) !important;
  line-height: 1.7;
}

h1,
.hero-slider .slide-text h1 {
  font-size: var(--type-h1) !important;
  line-height: 1.05 !important;
}

h2,
.section-head h2,
.ref-section-head h2,
.intro-text h2,
.counter-v2-content h2,
.industrie-split-head h2,
.alma-faq-copy h2 {
  font-size: var(--type-h2) !important;
  line-height: 1.16 !important;
}

h3,
.activity-item h3,
.industrie-project-card h3,
.sc-title {
  font-size: var(--type-h3) !important;
  line-height: 1.25 !important;
}

h4,
.why-card-v2 .card-title {
  font-size: var(--type-h4) !important;
  line-height: 1.3 !important;
}

h5,
.footer-widget h5,
.alma-footer h5 {
  font-size: var(--type-base) !important;
}

.eyebrow,
.card-cat,
.sc-badge,
.cd-label,
.ci-label,
.sidebar-title,
.oc-sub-label {
  font-size: var(--type-sm) !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}

.nav-link,
.industrie-nav-menu .nav-link,
.offcanvas .oc-links > a,
.offcanvas .oc-parent {
  font-size: var(--type-base) !important;
  line-height: 1.2 !important;
}

.sub-menu li a,
.industrie-nav-menu .sub-menu li a,
.offcanvas .oc-sub a {
  font-size: 15px !important;
  line-height: 1.35 !important;
}

.btn,
button,
.story-tab-btn,
.contact-form button {
  font-size: var(--type-base) !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}

.story-tab-btn {
  min-height: 70px;
}

.certif-title,
.cv2-lbl,
.env-lbl,
.certif-desc,
.ref-status,
.foot-about {
  font-size: var(--type-sm) !important;
  line-height: 1.45 !important;
}

@media (max-width: 768px) {
  :root {
    --type-h1: clamp(38px, 11vw, 52px);
    --type-h2: clamp(28px, 8vw, 38px);
    --type-h3: 24px;
    --type-h4: 20px;
    --type-base: 15px;
  }

  .story-tab-btn {
    min-height: 58px;
    font-size: 14px !important;
  }
}

/* ============================================================
   Unified color system — ALMA brand with RSTheme contrast
   ============================================================ */
:root {
  --color-primary: var(--alma-blue);
  --color-primary-light: var(--alma-sky);
  --color-primary-dark: var(--alma-blue-dark);
  --color-heading: #101014;
  --color-body: #4f5661;
  --color-muted: #7b838c;
  --color-dark: #010d14;
  --color-surface: #ffffff;
  --color-soft: #f5f7f9;
  --color-line: rgba(1, 13, 20, 0.1);
}

body {
  color: var(--color-body) !important;
  background: var(--color-surface) !important;
}

h1, h2, h3, h4, h5, h6,
.nav-link,
.certif-title,
.sc-title,
.card-title,
.faq-question,
.cd-value,
.ci-val {
  color: var(--color-heading) !important;
}

p,
.text-dim,
.card-desc,
.sc-desc,
.certif-desc,
.faq-answer p,
.foot-about,
.oc-info-item,
.contact-form input,
.contact-form select,
.contact-form textarea {
  color: var(--color-body) !important;
}

.text-muted,
.ref-status,
.cd-label,
.ci-label {
  color: var(--color-muted) !important;
}

.hi,
.eyebrow,
a:hover,
.nav-link:hover,
.nav-link.active,
.industrie-nav-menu .nav-link:hover,
.industrie-nav-menu .nav-link.active,
.industrie-nav-menu .sub-menu li a:hover,
.offcanvas .oc-links > a:hover,
.offcanvas .oc-parent:hover,
.offcanvas .oc-menu-group.open .oc-parent,
.offcanvas .oc-sub a:hover,
.story-tab-btn.active,
.story-tab-btn:hover,
.act-link,
.card-link,
.rs-link {
  color: var(--color-primary) !important;
}

.alma-topbar,
.alma-footer {
  background: var(--color-dark) !important;
}

.section[style*="background:var(--bg-alt)"],
.env-section,
.alma-faq-section,
.counter-section-v2,
.offcanvas .oc-sub {
  background-color: var(--color-soft) !important;
}

.activity-item,
.certif-card,
.why-card-v2,
.service-card,
.faq-item,
.contact-form-card,
.contact-info,
.story-tab-nav {
  background-color: var(--color-surface) !important;
  border-color: var(--color-line) !important;
}

.story-tab-nav {
  background-color: var(--color-soft) !important;
}

.btn-primary,
.nav-right .btn,
.offcanvas .oc-close,
.story-tab-btn.active::before,
.activity-item::before,
.industrie-nav-menu .nav-link::before,
.certif-grid .seal-placeholder,
.seal-placeholder {
  background-color: var(--color-primary) !important;
}

.btn-primary,
.nav-right .btn,
.offcanvas .oc-close {
  color: #fff !important;
}

.btn-outline {
  color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  background: transparent !important;
}

.btn-outline:hover {
  color: #fff !important;
  background: var(--color-primary) !important;
}

.sub-menu,
.industrie-nav-menu .sub-menu,
.offcanvas .oc-caret {
  border-color: var(--color-primary) !important;
}

.activity-item:hover,
.certif-card:hover,
.why-card-v2:hover,
.service-card:hover,
.faq-item.open,
.faq-item:hover {
  border-color: var(--color-primary-light) !important;
}

.hero-slider {
  background:
    linear-gradient(90deg, rgba(1,13,20,0.92), rgba(1,13,20,0.60)),
    linear-gradient(135deg, var(--color-primary), var(--color-primary-light)) !important;
}

.hero-slider .slide-text h1,
.hero-slider .slide-text p,
.hero-slider .slide-text .eyebrow {
  color: #fff !important;
}

.hero-slider .slide-text .eyebrow {
  color: var(--color-primary-light) !important;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 4px rgba(29,131,193,0.08) !important;
}

/* Section headline lock — match Industrie heading treatment */
.intro-text h2,
.counter-v2-content h2,
.section-head h2,
.ref-section-head h2,
.industrie-split-head h2,
.alma-faq-copy h2,
.contact-form-col h2,
.page-hero h1 {
  color: #0b3b60 !important;
  font-family: 'Space Grotesk', Arial, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1.28 !important;
  text-transform: none !important;
}

.intro-text h2 .hi,
.counter-v2-content h2 .hi,
.section-head h2 .hi,
.ref-section-head h2 .hi,
.industrie-split-head h2 .hi,
.alma-faq-copy h2 .hi,
.page-hero h1 .hi {
  color: var(--color-primary) !important;
  font-weight: inherit !important;
}

.intro-text h2 .hi::after,
.counter-v2-content h2 .hi::after,
.section-head h2 .hi::after,
.ref-section-head h2 .hi::after {
  display: none !important;
}

.section-head p,
.ref-section-head p,
.intro-text p,
.counter-v2-content p,
.alma-faq-copy p {
  color: var(--color-body) !important;
  font-size: var(--type-base) !important;
  line-height: 1.75 !important;
}

.intro-text h2 {
  font-size: 52px !important;
  line-height: 1.32 !important;
  max-width: 1180px;
}

@media (max-width: 1024px) {
  .intro-text h2 {
    font-size: 44px !important;
  }
}

@media (max-width: 768px) {
  .intro-text h2 {
    font-size: 34px !important;
    line-height: 1.25 !important;
  }
}

.section-head h2,
.ref-section-head h2 {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

/* About image alignment: photo starts at the same visual level as the tabs */
#about .intro-grid {
  align-items: start !important;
}

#about .intro-media {
  align-self: start;
  padding-top: clamp(170px, 13vw, 225px);
}

#about .media-frame {
  margin-top: 0;
}

@media (max-width: 1024px) {
  #about .intro-media {
    padding-top: 0;
  }
}

/* ALMA logo media panel, replacing missing photo fallbacks */
.media-img.alma-logo-backdrop {
  min-height: 420px;
  background:
    radial-gradient(circle at 22% 22%, rgba(255,255,255,0.24), transparent 30%),
    linear-gradient(135deg, var(--alma-blue), var(--alma-sky));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(44px, 7vw, 86px);
}

.media-img.alma-logo-backdrop.alt {
  background:
    radial-gradient(circle at 75% 20%, rgba(255,255,255,0.22), transparent 28%),
    linear-gradient(135deg, var(--alma-blue-dark), var(--alma-cyan));
}

.media-img.alma-logo-backdrop img {
  width: min(72%, 360px);
  height: auto;
  padding: clamp(18px, 3vw, 30px);
  border-radius: 8px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 24px 60px rgba(1,13,20,0.16);
  object-fit: contain;
}

@media (max-width: 768px) {
  .media-img.alma-logo-backdrop {
    min-height: 100px;
  }
}

/* Final tab/media alignment for home and Qui sommes-nous page */
.intro-grid > .intro-media {
  align-self: start !important;
  padding-top: clamp(485px, 33vw, 595px) !important;
}

.intro-grid > .intro-media .media-gallery,
.intro-grid > .intro-media .media-img.alma-logo-backdrop.active {
  margin-top: 0 !important;
}

@media (max-width: 1024px) {
  .intro-grid > .intro-media {
    padding-top: 0 !important;
  }
}

/* About heading centered like the certifications heading */
.about-section-head {
  text-align: center !important;
  max-width: 1180px;
  margin: 0 auto 52px !important;
}

.about-section-head .eyebrow {
  justify-content: center;
  text-align: center;
  color: var(--color-primary) !important;
}

.about-section-head h2 {
  color: #0b3b60 !important;
  font-family: 'Space Grotesk', Arial, sans-serif !important;
  font-size: clamp(40px, 4vw, 58px) !important;
  line-height: 1.22 !important;
  font-weight: 700 !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
}

.intro-grid > .intro-text > .eyebrow,
.intro-grid > .intro-text > h2 {
  display: none !important;
}

.intro-grid > .intro-media {
  padding-top: 0 !important;
}

@media (max-width: 768px) {
  .about-section-head h2 {
    font-size: 34px !important;
  }
}

/* Match Industrie tab block layout: media left, tabs/content right */
.intro-grid > .intro-media {
  order: 1 !important;
}

.intro-grid > .intro-text {
  order: 2 !important;
}

.intro-grid > .intro-text .story-tabs {
  width: 100%;
}

.intro-grid {
  align-items: start !important;
}

.intro-grid > .intro-media,
.intro-grid > .intro-text {
  align-self: start !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.intro-grid > .intro-media .media-frame,
.intro-grid > .intro-media .media-gallery,
.intro-grid > .intro-text .story-tabs,
.intro-grid > .intro-text .story-tab-nav {
  margin-top: 0 !important;
}

.intro-grid > .intro-media .media-frame {
  border-radius: 4px !important;
}

@media (max-width: 1024px) {
  .intro-grid > .intro-media,
  .intro-grid > .intro-text {
    order: initial !important;
  }
}

/* Industrie-style section label */
.eyebrow,
.section-head .eyebrow,
.ref-section-head .eyebrow,
.about-section-head .eyebrow,
.intro-text .eyebrow,
.counter-v2-content .eyebrow,
.industrie-split-head .eyebrow,
.alma-faq-copy .eyebrow {
  display: block !important;
  color: var(--color-primary) !important;
  font-family: 'Space Grotesk', Arial, sans-serif !important;
  font-size: 22px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  margin: 0 0 18px !important;
}

.section-head .eyebrow,
.ref-section-head .eyebrow,
.about-section-head .eyebrow {
  text-align: center !important;
}

.hero-slider .eyebrow,
.hero-slider .slide-text .eyebrow {
  color: #fff !important;
  font-size: 18px !important;
}

@media (max-width: 768px) {
  .eyebrow,
  .section-head .eyebrow,
  .ref-section-head .eyebrow,
  .about-section-head .eyebrow {
    font-size: 18px !important;
  }
}

/* Final RSTheme-like typography pass: restrained labels, titles, text and buttons */
:root {
  --industrie-label: 15px;
  --industrie-body: 17px;
  --industrie-h2: clamp(34px, 3.4vw, 52px);
  --industrie-h3: 24px;
}

.eyebrow,
.section-head .eyebrow,
.ref-section-head .eyebrow,
.about-section-head .eyebrow,
.intro-text .eyebrow,
.counter-v2-content .eyebrow,
.industrie-split-head .eyebrow,
.alma-faq-copy .eyebrow {
  font-family: 'Space Grotesk', Arial, sans-serif !important;
  font-size: var(--industrie-label) !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  color: var(--color-primary) !important;
  margin-bottom: 14px !important;
}

.section-head h2,
.ref-section-head h2,
.about-section-head h2,
.counter-v2-content h2,
.industrie-split-head h2,
.alma-faq-copy h2,
.contact-form-col h2 {
  font-family: 'Space Grotesk', Arial, sans-serif !important;
  font-size: var(--industrie-h2) !important;
  line-height: 1.24 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  color: #0b3b60 !important;
}

.section-head p,
.ref-section-head p,
.story-tab-content,
.story-tab-content p,
.counter-v2-content p,
.alma-faq-copy p,
.activity-item p,
.why-card-v2 .card-desc {
  font-family: 'Space Grotesk', Arial, sans-serif !important;
  font-size: var(--industrie-body) !important;
  line-height: 1.72 !important;
  color: #4f5661 !important;
}

.story-tab-btn {
  font-family: 'Space Grotesk', Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #555 !important;
}

.story-tab-btn.active,
.story-tab-btn:hover {
  color: var(--color-primary) !important;
}

.btn,
.nav-right .btn,
.slide-cta .btn,
.contact-form .btn,
.act-link,
.card-link,
.real-link {
  font-family: 'Space Grotesk', Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

.btn {
  border-radius: 3px !important;
  padding: 15px 30px !important;
}

@media (max-width: 768px) {
  :root {
    --industrie-label: 14px;
    --industrie-body: 16px;
  }

  .story-tab-btn {
    font-size: 15px !important;
  }
}

/* Remove leftover decorative symbols before section labels */
.eyebrow::before,
.section-head .eyebrow::before,
.ref-section-head .eyebrow::before,
.about-section-head .eyebrow::before,
.counter-section-head .eyebrow::before {
  display: none !important;
  content: none !important;
}

/* Counter section matches the centered heading + photo treatment */
.counter-section-head {
  text-align: center !important;
  max-width: 1180px;
  margin: 0 auto 52px !important;
}

.counter-section-head h2 {
  max-width: 1120px !important;
  margin: 0 auto !important;
}

.counter-section-head .counter-intro {
  max-width: 760px;
  margin: 18px auto 0 !important;
  text-align: center !important;
}

.counter-v2-content > .eyebrow,
.counter-v2-content > h2 {
  display: none !important;
}

.counter-logo-backdrop {
  min-height: 420px;
  aspect-ratio: 4 / 3;
  border-radius: 4px !important;
  background:
    radial-gradient(circle at 22% 22%, rgba(255,255,255,0.24), transparent 30%),
    linear-gradient(135deg, var(--alma-blue), var(--alma-sky));
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: clamp(44px, 7vw, 86px);
  position: relative;
  overflow: hidden;
}

.counter-logo-backdrop img {
  width: min(72%, 360px);
  height: auto;
  padding: clamp(18px, 3vw, 30px);
  border-radius: 8px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 24px 60px rgba(1,13,20,0.16);
  object-fit: contain;
}

@media (max-width: 768px) {
  .counter-logo-backdrop {
    min-height: 100px;
  }
}

.counter-v2-grid {
  align-items: start !important;
  --counter-stats-height: clamp(500px, 32vw, 610px);
}

.counter-v2-image,
.counter-img-frame {
  height: var(--counter-stats-height) !important;
}

.counter-v2-content {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}

.counter-logo-backdrop {
  height: var(--counter-stats-height) !important;
  min-height: var(--counter-stats-height) !important;
  aspect-ratio: auto !important;
}

.counter-stats-v2 {
  height: var(--counter-stats-height) !important;
  min-height: var(--counter-stats-height) !important;
}

.counter-stats-v2 .cv2-cell {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .counter-v2-grid {
    --counter-stats-height: 420px;
  }

  .counter-logo-backdrop {
    min-height: var(--counter-stats-height) !important;
    height: var(--counter-stats-height) !important;
  }
}

/* RSE section: same image/stat alignment as counter section */
.env-split {
  align-items: start !important;
  --env-stats-height: auto;
}

.env-photo,
.env-photo-frame,
.env-logo-backdrop,
.env-stats {
  height: var(--env-stats-height) !important;
  min-height: var(--env-stats-height) !important;
}

.env-logo-backdrop {
  border-radius: 4px !important;
  background:
    radial-gradient(circle at 22% 22%, rgba(255,255,255,0.24), transparent 30%),
    linear-gradient(135deg, rgba(29,131,193,0.18), rgba(115,198,240,0.20)) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: clamp(44px, 7vw, 86px);
  box-shadow: none !important;
}

.media-img.alma-logo-backdrop,
.counter-logo-backdrop {
  background:
    radial-gradient(circle at 22% 22%, rgba(255,255,255,0.24), transparent 30%),
    linear-gradient(135deg, rgba(29,131,193,0.18), rgba(115,198,240,0.20)) !important;
}

.media-img.alma-logo-backdrop.alt {
  background:
    radial-gradient(circle at 75% 20%, rgba(255,255,255,0.24), transparent 28%),
    linear-gradient(135deg, rgba(29,131,193,0.18), rgba(115,198,240,0.20)) !important;
}

.counter-experience-badge {
  background:
    radial-gradient(circle at 22% 22%, rgba(255,255,255,0.36), transparent 30%),
    linear-gradient(135deg, rgba(29,131,193,0.18), rgba(115,198,240,0.20)) !important;
  color: var(--alma-blue) !important;
  border: 1px solid rgba(29,131,193,0.16) !important;
}

.counter-experience-badge .badge-num,
.counter-experience-badge .badge-lbl {
  color: var(--alma-blue) !important;
}

.about-title-line {
  display: block !important;
  width: 100%;
  text-align: center;
}

.about-section-head h2 .hi {
  color: inherit !important;
}

.about-section-head p {
  max-width: 720px;
  margin: 18px auto 0 !important;
  text-align: center;
}

.env-logo-backdrop img {
  width: min(72%, 360px);
  height: auto;
  padding: clamp(18px, 3vw, 30px);
  border-radius: 8px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 24px 60px rgba(1,13,20,0.16);
  object-fit: contain;
}

.env-stats {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}

.env-stat,
.env-stat.hi {
  min-height: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  border-right: 1px solid var(--line) !important;
  border-bottom: 1px solid var(--line) !important;
  background: #fff !important;
  grid-column: auto !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.env-stat:nth-child(2n),
.env-stat.hi:nth-child(2n) {
  border-right: none !important;
}

.env-stat:nth-child(n+3),
.env-stat.hi:nth-child(n+3) {
  border-bottom: none !important;
}

.env-stat.hi .env-num,
.env-stat.hi .env-num .suffix,
.env-stat.hi .env-num .env-decimal {
  color: #6faeb1 !important;
}

.env-stat.hi .env-lbl {
  color: #4f5661 !important;
}

@media (max-width: 1024px) {
  .env-split {
    --env-stats-height: 420px;
  }
}

/* Featured why card spans the visual height of two regular cards */
.why-masonry {
  align-items: stretch !important;
}

.why-col {
  height: 100%;
}

.why-card-v2.featured {
  min-height: calc((280px * 2) + 20px) !important;
  height: 100%;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}

.why-card-v2.featured .card-desc {
  max-width: 92%;
}

@media (max-width: 1024px) {
  .why-card-v2.featured {
    min-height: 280px !important;
    height: auto;
  }
}

/* Logo-color topbar and footer */
.alma-topbar,
.alma-footer {
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.20), transparent 28%),
    linear-gradient(135deg, var(--alma-blue), var(--alma-sky)) !important;
  color: #fff !important;
}

.alma-topbar .item,
.alma-topbar .item svg,
.alma-topbar .socials a,
.alma-topbar .lang .opt,
.alma-topbar .lang .opt.active,
.alma-footer,
.alma-footer h5,
.alma-footer a,
.alma-footer p,
.alma-footer .foot-about,
.alma-footer .foot-bottom {
  color: #fff !important;
}

.alma-footer a,
.alma-footer .foot-about,
.alma-footer .foot-bottom,
.alma-footer p {
  opacity: 0.88;
}

.alma-footer a:hover,
.alma-topbar .socials a:hover {
  color: #fff !important;
  opacity: 1;
}

.alma-footer .foot-bottom {
  border-top-color: rgba(255,255,255,0.22) !important;
}

/* Certifications: restore seal icons */
.certif-card .seal-img,
.seal-img {
  display: flex !important;
  width: 80px !important;
  height: 80px !important;
  margin: 0 auto 12px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, rgba(29,131,193,0.08), rgba(115,198,240,0.12)) !important;
  align-items: center !important;
  justify-content: center !important;
}

.certif-card .seal-img img,
.seal-img img {
  max-width: 72px !important;
  max-height: 72px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

.seal-placeholder,
.certif-grid .seal-placeholder {
  display: flex !important;
}

.certif-card {
  gap: 16px !important;
}

/* ALMA Flow landing page inspired by provided reference */
.aflow-page {
  background: #f7fbff;
}

.aflow-landing-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 20px 68px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.86) 44%, rgba(255,255,255,0.12) 64%),
    radial-gradient(circle at 10% 88%, rgba(115,198,240,0.44), transparent 30%),
    linear-gradient(135deg, rgba(29,131,193,0.18), rgba(115,198,240,0.20));
}

.aflow-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.aflow-landing-hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -56px;
  height: 140px;
  background: rgba(255,255,255,0.72);
  border-radius: 50% 50% 0 0;
  transform: rotate(-2deg);
}

.aflow-landing-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.25fr);
  gap: 56px;
  align-items: center;
}

.aflow-landing-copy h1 {
  max-width: 680px;
  color: #0b3b60;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.12;
  font-weight: 700;
  margin: 0 0 18px;
}

.aflow-landing-copy h1 span {
  color: var(--alma-blue);
}

.aflow-landing-copy p {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.75;
  color: #4f5661;
}

.aflow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.aflow-landing-visual {
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(1,13,20,0.10);
}

.aflow-plant-scene {
  position: relative;
  height: 100%;
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(236,248,255,0.92), rgba(255,255,255,0.46)),
    linear-gradient(135deg, #bde5f8, #eef8fd);
}

.plant-sky {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.36), transparent 55%),
    repeating-linear-gradient(90deg, rgba(11,59,96,0.08) 0 2px, transparent 2px 56px);
}

.plant-tank {
  position: absolute;
  bottom: 120px;
  width: 116px;
  height: 190px;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(90deg, #d8e9f2, #8fb8ca 50%, #f5fbff);
  box-shadow: inset -18px 0 26px rgba(11,59,96,0.16), 0 18px 36px rgba(11,59,96,0.18);
}

.tank-a { right: 228px; }
.tank-b { right: 86px; height: 230px; bottom: 102px; }

.plant-rail {
  position: absolute;
  left: 8%;
  right: 4%;
  bottom: 175px;
  height: 52px;
  border-top: 8px solid rgba(29,131,193,0.72);
  border-bottom: 3px solid rgba(11,59,96,0.22);
  background: repeating-linear-gradient(90deg, transparent 0 38px, rgba(11,59,96,0.18) 38px 42px);
}

.plant-water {
  position: absolute;
  left: 9%;
  right: -6%;
  bottom: -36px;
  height: 190px;
  border-radius: 50% 0 0 0;
  background:
    radial-gradient(ellipse at 38% 0%, rgba(255,255,255,0.50), transparent 42%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.18) 0 2px, transparent 2px 12px),
    linear-gradient(135deg, #0f7fb5, #54b8df);
}

.aflow-kpis-clean {
  max-width: 920px;
  margin: -22px auto 0;
  position: relative;
  z-index: 2;
  padding: 34px 20px 48px !important;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(1,13,20,0.06);
}

.aflow-treatment-section {
  background: #fff;
}

.aflow-duo-clean,
.aflow-prods-clean {
  max-width: 980px;
  margin: 0 auto;
}

.aflow-card,
.aflow-prod {
  border-radius: 6px !important;
  box-shadow: 0 18px 50px rgba(1,13,20,0.07);
}

.aflow-card-photo,
.aflow-prod-img {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), transparent),
    linear-gradient(135deg, rgba(29,131,193,0.20), rgba(115,198,240,0.24));
}

.aflow-card-photo::before,
.aflow-prod-img::before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(11,59,96,0.16), transparent 70%),
    linear-gradient(135deg, rgba(255,255,255,0.60), rgba(255,255,255,0.08));
  box-shadow: inset 0 0 0 2px rgba(29,131,193,0.18);
}

.aflow-photo-bio::after,
.aflow-photo-industrial::after,
.aflow-prod-img::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 18%;
  height: 36%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(29,131,193,0.55), rgba(115,198,240,0.82));
}

.aflow-products-section {
  background: #f2f6f9 !important;
}

.aflow-prods-clean {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.aflow-prod-img {
  margin: 20px 20px 0;
  border-radius: 6px;
}

.aflow-study-band {
  position: relative;
  overflow: hidden;
  padding: 78px 20px 92px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(123,218,129,0.5), transparent 38%),
    radial-gradient(circle at 10% 60%, rgba(46,164,106,0.7), transparent 42%),
    linear-gradient(135deg, #42ad3f, #2ea46a);
}

.aflow-study-band::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -70px;
  height: 180px;
  background: rgba(255,255,255,0.32);
  border-radius: 50% 50% 0 0;
  transform: rotate(-3deg);
}

.aflow-study-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.aflow-study-band h2,
.aflow-study-band p {
  color: #fff !important;
}

.aflow-page .aflow-study-band .section-head h2,
.aflow-page .aflow-study-band .section-head h2 span {
  color: #fff !important;
}

.aflow-study-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 42px 0 30px;
}

.aflow-study-step {
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.36);
}

.aflow-study-step:last-child {
  border-right: 0;
}

.study-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 16px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.86), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,0.84), rgba(255,255,255,0.42));
  box-shadow: 0 18px 45px rgba(1,13,20,0.14);
}

.aflow-green-btn {
  background: #42ad3f !important;
}

@media (max-width: 1024px) {
  .aflow-landing-inner {
    grid-template-columns: 1fr;
  }

  .aflow-prods-clean {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .aflow-study-steps,
  .aflow-prods-clean {
    grid-template-columns: 1fr;
  }

  .aflow-study-step {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.28);
    padding: 22px 0;
  }

  .aflow-study-step:last-child {
    border-bottom: 0;
  }
}

/* ALMA Flow uses the same logo photo treatment as env-logo-backdrop */
.aflow-page .aflow-landing-visual,
.aflow-page .aflow-card-photo.env-logo-backdrop,
.aflow-page .aflow-prod-img.env-logo-backdrop {
  min-height: 260px;
  height: auto !important;
  aspect-ratio: 16 / 10;
  border-radius: 6px !important;
}

.aflow-page .aflow-landing-visual {
  min-height: 420px;
  aspect-ratio: auto;
}

.aflow-page .aflow-card-photo::before,
.aflow-page .aflow-card-photo::after,
.aflow-page .aflow-prod-img::before,
.aflow-page .aflow-prod-img::after {
  display: none !important;
  content: none !important;
}

.aflow-page .aflow-prod-img.env-logo-backdrop {
  margin: 20px 20px 0;
  min-height: 190px;
  aspect-ratio: 4 / 3;
}

.aflow-page .env-logo-backdrop img {
  width: min(82%, 380px) !important;
  min-width: 190px;
  padding: clamp(14px, 2.4vw, 24px) !important;
  background: #fff !important;
  border-radius: 8px !important;
}

.aflow-page .aflow-prod-img.env-logo-backdrop {
  padding: 24px !important;
}

.aflow-page .aflow-prod-img.env-logo-backdrop img {
  width: min(88%, 250px) !important;
  min-width: 170px;
}

/* ALMA Flow: clean separation before footer */
.aflow-page .aflow-study-band {
  margin-bottom: 0 !important;
  padding-bottom: 78px !important;
}

.aflow-page .aflow-study-band::after {
  display: none !important;
  content: none !important;
}

.aflow-page .aflow-study-band + * {
  margin-top: 0 !important;
}

/* Contact page: remove excessive whitespace and keep small text readable */
.contact-page .page-hero {
  padding: 58px 20px 46px !important;
  min-height: auto !important;
}

.contact-page .page-hero h1 {
  margin-bottom: 14px !important;
}

.contact-page .page-hero p {
  max-width: 660px !important;
}

.contact-page .contact-main-section {
  padding-top: 42px !important;
  padding-bottom: 58px !important;
}

.contact-page .contact-layout {
  align-items: start !important;
  gap: clamp(34px, 5vw, 68px) !important;
}

.contact-page .contact-info-col .eyebrow {
  margin-bottom: 12px !important;
}

.contact-page .contact-info-col h2 {
  margin-bottom: 14px !important;
}

.contact-page .contact-info-col > p {
  margin-bottom: 24px !important;
  max-width: 620px;
}

.contact-page .contact-details-list {
  gap: 14px !important;
}

.contact-page .cd-item {
  padding: 0 !important;
  min-height: auto !important;
}

.contact-page .cd-icon {
  flex: 0 0 46px !important;
  width: 46px !important;
  height: 46px !important;
}

.contact-page .contact-socials {
  margin-top: 24px !important;
}

.contact-page .contact-form-card {
  padding: clamp(28px, 3.5vw, 42px) !important;
}

.contact-page .contact-form-card h3 {
  margin-bottom: 8px !important;
}

.contact-page .contact-form-card p {
  margin-bottom: 22px !important;
}

.contact-page .map-section > div {
  height: 260px !important;
}

.contact-page .map-marker-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 92px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: transparent;
  color: var(--alma-blue);
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  padding: 18px 22px;
}

.contact-page .map-marker-text img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.contact-page .section:last-of-type {
  padding-top: 54px !important;
  padding-bottom: 58px !important;
}

.contact-page .contact-cta-inner {
  padding: 34px 42px !important;
  border-radius: 6px !important;
}


@media (max-width: 768px) {
  .contact-page .page-hero {
    padding: 52px 18px 40px !important;
  }

  .contact-page .contact-main-section {
    padding-top: 34px !important;
  }

  .contact-page .map-section > div {
    height: 220px !important;
  }

  .contact-page .contact-cta-inner {
    padding: 28px 24px !important;
  }
}

/* Contact representatives page inspired by sector directory pages */
.contact-reps-hero {
  padding: 82px 20px 62px;
  background:
    linear-gradient(135deg, rgba(11,58,96,0.92), rgba(29,131,193,0.82)),
    url("assets/alma_personnel_background.jpg") center/cover no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-reps-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -140px;
  width: 340px;
  height: 340px;
  border: 46px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.contact-reps-hero .container {
  position: relative;
  z-index: 1;
}

.contact-reps-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: #73c6f0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-reps-hero h1 {
  max-width: 780px;
  margin: 0 0 16px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
}

.contact-reps-hero p {
  max-width: 660px;
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
}

.contact-reps-section {
  padding: 62px 20px 34px;
  background: #fff;
}

.contact-reps-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 18px;
}

.contact-reps-head h2 {
  max-width: 720px;
  margin: 0;
  color: #0b3a60;
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.05;
}

.contact-reps-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-reps-tabs a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid #dbe8f0;
  border-radius: 8px;
  background: #f7fbfe;
  color: #0b3a60;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.contact-reps-tabs a:hover {
  background: #1D83C1;
  border-color: #1D83C1;
  color: #fff;
}

.contact-reps-intro {
  max-width: 920px;
  margin-bottom: 36px;
  padding: 18px 0 0;
  border-top: 1px solid #e6eef3;
}

.contact-reps-intro p {
  margin: 0;
  color: #5d6975;
  font-size: 1rem;
  line-height: 1.75;
}

.contact-reps-group {
  scroll-margin-top: 110px;
}

.contact-reps-group + .contact-reps-group {
  margin-top: 44px;
}

.contact-reps-group h3 {
  margin: 0 0 18px;
  color: #0b3a60;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
}

.contact-reps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-reps-grid-export {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-rep-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  min-height: 188px;
  padding: 18px;
  border: 1px solid #e2edf4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(1,13,20,0.06);
  opacity: 0;
  transform: translateY(18px);
  animation: contactRepIn 0.68s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.contact-rep-card:nth-child(2) {
  animation-delay: 0.08s;
}

.contact-rep-card:nth-child(3) {
  animation-delay: 0.16s;
}

.contact-rep-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29,131,193,0.38);
  box-shadow: 0 24px 58px rgba(1,13,20,0.12);
}

.contact-rep-photo {
  min-height: 152px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(29,131,193,0.92), rgba(115,198,240,0.86)),
    #1D83C1;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
}

.contact-rep-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-rep-sector {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(29,131,193,0.08);
  color: #1D83C1;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contact-rep-body h4 {
  margin: 0 0 6px;
  color: #0b3a60;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.22;
}

.contact-rep-body p {
  margin: 0 0 14px;
  color: #5d6975;
  font-size: 0.88rem;
  line-height: 1.55;
}

.contact-rep-links {
  display: grid;
  gap: 6px;
  margin-top: auto;
}

.contact-rep-links a {
  color: #0b6ea6;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  word-break: break-word;
}

.contact-rep-links a:hover {
  text-decoration: underline;
}

@keyframes contactRepIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .contact-reps-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-reps-grid,
  .contact-reps-grid-export {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .contact-reps-hero {
    padding: 64px 18px 50px;
  }

  .contact-reps-section {
    padding: 46px 18px 26px;
  }

  .contact-reps-grid,
  .contact-reps-grid-export {
    grid-template-columns: 1fr;
  }

  .contact-rep-card {
    grid-template-columns: 78px minmax(0, 1fr);
    min-height: 0;
    padding: 15px;
  }

  .contact-rep-photo {
    min-height: 126px;
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-rep-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Contact: Modern MCI-style representatives directory */
.contact-page .mci-reps-page {
  padding: 72px 0 46px;
  background: #fff;
  color: #2d3440;
  font-family: 'Poppins', 'Space Grotesk', sans-serif;
}

.mci-reps-title {
  margin-bottom: 36px;
}

.mci-reps-title h1 {
  margin: 0 0 18px;
  color: #1c2733;
  font-family: 'Poppins', 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.mci-title-line,
.mci-section-line {
  display: block;
  width: 100%;
  height: 1px;
  background: #dedede;
  position: relative;
}

.mci-title-line::before,
.mci-section-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 84px;
  height: 3px;
  background: #1D83C1;
  border-radius: 2px;
}

.mci-reps-find {
  margin-bottom: 24px;
}

.mci-reps-find h2 {
  margin: 0 0 14px;
  color: #1c2733;
  font-family: 'Poppins', 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.2;
}

/* Modern tab navigation - MCI style */
.mci-reps-tabs {
  display: flex;
  gap: 0;
  margin: 20px 0 18px;
  padding: 0;
  list-style: none;
  border-bottom: 2px solid #eef1f5;
}

.mci-reps-tabs li {
  list-style: none;
}

.mci-reps-tabs a {
  display: inline-block;
  color: #6b7785;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 20px 10px 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.mci-reps-tabs a::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  background: #d0d7de;
  margin-left: 20px;
  vertical-align: middle;
}

.mci-reps-tabs li:last-child a::after {
  display: none;
}

.mci-reps-tabs a:hover,
.mci-reps-tabs a.active {
  color: #1D83C1;
  border-bottom-color: #1D83C1;
}

.mci-reps-find p {
  max-width: 1040px;
  margin: 0;
  color: #313946;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
}

/* Accordion sections */
.mci-reps-category {
  margin-top: 8px;
  border-bottom: 1px solid #eef1f5;
}

.mci-category-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: opacity 0.2s;
}

.mci-category-toggle:hover {
  opacity: 0.75;
}

.mci-category-toggle h3 {
  margin: 0;
  color: #1c2733;
  font-family: 'Poppins', 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.2s;
}

.mci-category-toggle:hover h3 {
  color: #1D83C1;
}

.mci-toggle-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: #1D83C1;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  line-height: 1;
  transition: background 0.2s, transform 0.25s ease;
}

.mci-category-toggle[aria-expanded="false"] .mci-toggle-icon {
  background: #d0d7de;
  color: #57606a;
}

.mci-category-toggle[aria-expanded="false"] .mci-toggle-icon::before {
  content: "+";
}

.mci-category-toggle[aria-expanded="true"] .mci-toggle-icon::before {
  content: "\2212";
}

/* Accordion content */
.mci-category-content {
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              padding 0.25s ease;
  max-height: 2000px;
  opacity: 1;
  padding-bottom: 8px;
}

.mci-category-toggle[aria-expanded="false"] + .mci-category-content {
  max-height: 0;
  opacity: 0;
  padding-bottom: 0;
}

/* Focus visible */
.mci-category-toggle:focus-visible {
  outline: 2px solid #1D83C1;
  outline-offset: 4px;
  border-radius: 4px;
}

/* Rep cards grid - MCI modern style */
.mci-reps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
  gap: 20px 28px;
  padding: 4px 0 28px;
}

.mci-rep-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 22px;
  background: #fff;
  border: 1px solid #e8ecf0;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(1, 13, 20, 0.06);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  font-family: 'Poppins', 'Space Grotesk', sans-serif;
}

.mci-rep-card:hover {
  box-shadow: 0 10px 32px rgba(29, 131, 193, 0.14);
  border-color: #b8d6ea;
  transform: translateY(-3px);
}

.mci-rep-image {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1D83C1 0%, #73C6F0 100%);
  border-radius: 12px;
  color: #fff;
  font-family: 'Poppins', 'Space Grotesk', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 6px 18px rgba(29, 131, 193, 0.28);
  transition: box-shadow 0.3s ease;
}

.mci-rep-card:hover .mci-rep-image {
  box-shadow: 0 8px 24px rgba(29, 131, 193, 0.38);
}

.mci-rep-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 4px;
}

.mci-rep-info h4 {
  margin: 0 0 8px;
  color: #1b2733;
  font-family: 'Poppins', 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.25;
}

.mci-rep-info p {
  margin: 0 0 12px;
  color: #57606a;
  font-size: 0.88rem;
  font-family: 'Poppins', 'Space Grotesk', sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

.mci-rep-info a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #1D83C1;
  font-size: 0.88rem;
  font-family: 'Poppins', 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s;
  padding: 2px 0;
}

.mci-rep-info a:hover {
  color: #0e5a8e;
}

.mci-rep-info a[href^="tel:"]::before,
.mci-rep-info a[href^="mailto:"]::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.mci-rep-info a:hover[href^="tel:"]::before,
.mci-rep-info a:hover[href^="mailto:"]::before {
  opacity: 0.7;
}

.mci-rep-info a[href^="tel:"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D83C1' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2A19.79 19.79 0 0 1 11.19 18.85a19.5 19.5 0 0 1-5.94-5.65A19.79 19.79 0 0 1 2-2.18h3a2 2 0 0 1 2 1.72c.13.96.37 1.91.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.9.33 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.mci-rep-info a[href^="mailto:"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D83C1' stroke-width='2'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-10 7L2 7'/%3E%3C/svg%3E");
}

.contact-page .mci-reps-page + .contact-main-section {
  padding-top: 50px !important;
  border-top: 1px solid #e9eef2;
  background: #f7fafc;
}

@media (max-width: 900px) {
  .mci-reps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .contact-page .mci-reps-page {
    padding: 54px 18px 34px;
  }

  .mci-reps-tabs {
    gap: 0;
  }

  .mci-reps-tabs a {
    padding: 8px 14px 8px 0;
    font-size: 0.88rem;
  }

  .mci-reps-tabs a::after {
    margin-left: 14px;
  }

  .mci-rep-card {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
  }

  .mci-rep-image {
    width: 84px;
    height: 84px;
    font-size: 1.2rem;
    border-radius: 10px;
  }

  .mci-reps-find p {
    font-size: 1rem;
  }

  .mci-category-toggle h3 {
    font-size: 1.05rem;
  }

  .mci-reps-grid {
    gap: 14px 16px;
  }
}

/* ALMA Flow specific footer colors - fusion avec la section au-dessus */
.page-template-page-almaflow .alma-topbar {
  --alma-blue: #35a957;
  --alma-sky: #62c774;
  --alma-blue-dark: #248346;
  background:
    radial-gradient(circle at 16% 22%, rgba(255,255,255,0.22), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(106,219,126,0.26), transparent 34%),
    linear-gradient(135deg, #1f7b42 0%, #2fa65d 54%, #58cb76 100%) !important;
  color: #fff !important;
}

.page-template-page-almaflow .alma-topbar .item,
.page-template-page-almaflow .alma-topbar .item svg,
.page-template-page-almaflow .alma-topbar .socials a,
.page-template-page-almaflow .alma-topbar .lang .opt,
.page-template-page-almaflow .alma-topbar .lang .opt.active {
  color: #fff !important;
}

.page-template-page-almaflow .alma-topbar .socials a:hover,
.page-template-page-almaflow .alma-topbar .lang .opt:hover {
  color: rgba(255,255,255,0.82) !important;
}

.page-template-page-almaflow .alma-footer {
  --alma-blue: #46ad59;
  --alma-sky: #7bda81;
  --alma-blue-dark: #328a2f;
  background: #fff !important;
  color: #4f5661 !important;
  margin-top: -1px;
  padding-top: 60px; /* Add some padding to let the transition breathe */
}

.page-template-page-almaflow .alma-footer h5 {
  color: #0b3b60 !important;
}

.page-template-page-almaflow .alma-footer a,
.page-template-page-almaflow .alma-footer p,
.page-template-page-almaflow .alma-footer .foot-about,
.page-template-page-almaflow .alma-footer .foot-bottom {
  color: #4f5661 !important;
}

.page-template-page-almaflow .alma-footer a:hover {
  color: #248346 !important;
}

.page-template-page-almaflow .alma-footer .foot-bottom {
  border-top-color: var(--line) !important;
}

.page-template-page-almaflow .alma-footer .btn-primary {
  background: #fff !important;
  color: #248346 !important;
  border: 1px solid rgba(255,255,255,0.65) !important;
}
.page-template-page-almaflow .alma-footer .btn-primary:hover {
  background: #0B5394 !important;
}

/* ALMA Flow hover micro-animations */
.aflow-card,
.aflow-prod {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.aflow-card:hover,
.aflow-prod:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(1,13,20,0.12);
}
.study-icon svg {
  display: block;
  margin: 0 auto;
}

/* ALMA Flow color system: green treatment palette */
.aflow-page {
  --aflow-blue: #35a957;
  --aflow-blue-dark: #248346;
  --aflow-green: #35a957;
  --aflow-green-dark: #248346;
  --aflow-soft: #eef7fb;
}

.aflow-page .btn-primary {
  background: var(--aflow-green) !important;
  border-color: var(--aflow-green) !important;
  color: #fff !important;
}

.aflow-page .btn-primary:hover {
  background: var(--aflow-green-dark) !important;
  border-color: var(--aflow-green-dark) !important;
  color: #fff !important;
}

.aflow-page .btn-outline {
  background: #fff !important;
  border-color: rgba(53,169,87,0.34) !important;
  color: var(--aflow-green-dark) !important;
}

.aflow-page .btn-outline:hover {
  background: var(--aflow-green) !important;
  border-color: var(--aflow-green) !important;
  color: #fff !important;
}

.aflow-page .aflow-kpis-clean,
.aflow-page .aflow-card,
.aflow-page .aflow-prod {
  border: 1px solid rgba(29,131,193,0.12) !important;
  background: #fff !important;
  box-shadow: 0 18px 45px rgba(1,13,20,0.06) !important;
}

.aflow-page .aflow-card:hover,
.aflow-page .aflow-prod:hover {
  border-color: rgba(53,169,87,0.36) !important;
  box-shadow: 0 24px 60px rgba(29,131,193,0.10) !important;
}

.aflow-page .aflow-card-photo.env-logo-backdrop,
.aflow-page .aflow-prod-img.env-logo-backdrop,
.aflow-page .aflow-landing-visual.env-logo-backdrop {
  background:
    radial-gradient(circle at 22% 22%, rgba(255,255,255,0.38), transparent 30%),
    linear-gradient(135deg, rgba(29,131,193,0.13), rgba(53,169,87,0.13)) !important;
}

.aflow-page .aflow-study-band {
  background: #fff !important;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.aflow-page .aflow-study-band {
  background: #fff !important;
}

.aflow-page .aflow-study-band h2,
.aflow-page .aflow-study-band p,
.aflow-page .aflow-study-band .section-head h2,
.aflow-page .aflow-study-band .section-head h2 span {
  color: #0b3b60 !important;
}

.aflow-page .aflow-study-band .section-head p {
  color: #4f5661 !important;
}

.aflow-page .aflow-study-step {
  background: #f7fbff !important;
  border-color: rgba(29,131,193,0.12) !important;
  box-shadow: 0 18px 45px rgba(1,13,20,0.05) !important;
}

.aflow-page .aflow-study-step h4 {
  color: #0b3b60 !important;
}

.aflow-page .aflow-study-step p {
  color: #4f5661 !important;
}

.aflow-page .study-icon {
  background:
    radial-gradient(circle at 32% 30%, rgba(255,255,255,0.94), transparent 26%),
    linear-gradient(135deg, rgba(29,131,193,0.10), rgba(53,169,87,0.12)) !important;
  border-color: rgba(29,131,193,0.12) !important;
}

.aflow-page .aflow-green-btn {
  background: #35a957 !important;
  border-color: #35a957 !important;
  color: #fff !important;
  box-shadow: none !important;
}

/* ALMA Flow footer: same visual style as the site footer, in green */
.page-template-page-almaflow .alma-footer {
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.20), transparent 28%),
    linear-gradient(135deg, #248346 0%, #35a957 58%, #63c979 100%) !important;
  color: #fff !important;
}

.page-template-page-almaflow .alma-footer h5,
.page-template-page-almaflow .alma-footer a,
.page-template-page-almaflow .alma-footer p,
.page-template-page-almaflow .alma-footer .foot-about,
.page-template-page-almaflow .alma-footer .foot-bottom {
  color: #fff !important;
}

.page-template-page-almaflow .alma-footer a,
.page-template-page-almaflow .alma-footer p,
.page-template-page-almaflow .alma-footer .foot-about,
.page-template-page-almaflow .alma-footer .foot-bottom {
  opacity: 0.9;
}

.page-template-page-almaflow .alma-footer a:hover {
  color: #fff !important;
  opacity: 1;
}

.page-template-page-almaflow .alma-footer .foot-bottom {
  border-top-color: rgba(255,255,255,0.22) !important;
}

.page-template-page-almaflow .alma-footer .newsletter input {
  background: #fff !important;
  color: #0b3b60 !important;
  border-color: rgba(255,255,255,0.72) !important;
}

.page-template-page-almaflow .alma-footer .newsletter .btn-primary {
  background: #fff !important;
  border-color: #fff !important;
  color: #248346 !important;
}

.page-template-page-almaflow .alma-footer .newsletter .btn-primary:hover {
  background: #248346 !important;
  border-color: rgba(255,255,255,0.65) !important;
  color: #fff !important;
}

/* ALMA Flow nav: replace blue states with green */
.page-template-page-almaflow {
  --color-primary: #35a957;
  --color-primary-light: #63c979;
  --color-primary-dark: #248346;
}

.page-template-page-almaflow .industrie-nav-menu .nav-link::before,
.page-template-page-almaflow .industrie-nav-menu .nav-link::after,
.page-template-page-almaflow .nav-link::before,
.page-template-page-almaflow .nav-link::after {
  background: #35a957 !important;
  background-color: #35a957 !important;
}

.page-template-page-almaflow .industrie-nav-menu .nav-link:hover,
.page-template-page-almaflow .industrie-nav-menu .nav-link.active {
  color: #248346 !important;
}

.page-template-page-almaflow .alma-nav .nav-link:hover,
.page-template-page-almaflow .alma-nav .nav-link.active,
.page-template-page-almaflow .alma-nav .nav-link:hover .caret,
.page-template-page-almaflow .alma-nav .has-dropdown:hover,
.page-template-page-almaflow .alma-nav .has-dropdown:hover .caret {
  color: #248346 !important;
}

.page-template-page-almaflow .alma-nav .nav-link::after,
.page-template-page-almaflow .alma-nav .has-dropdown::after {
  background: #35a957 !important;
}

.page-template-page-almaflow .alma-nav .sub-menu {
  border-top-color: #35a957 !important;
}

.page-template-page-almaflow .alma-nav .sub-menu a:hover {
  color: #248346 !important;
  background: rgba(53,169,87,0.08) !important;
}

.page-template-page-almaflow .alma-nav .sub-menu .sub-dot {
  border-color: #35a957 !important;
}

.page-template-page-almaflow .alma-nav .sub-menu a:hover .sub-dot {
  background: #35a957 !important;
}

.page-template-page-almaflow .alma-nav .hamburger,
.page-template-page-almaflow .alma-nav .nav-toggle {
  color: #248346 !important;
}

.aflow-page .aflow-study-steps {
  gap: 18px !important;
}

.aflow-page .aflow-study-step {
  padding: 28px 24px !important;
  border-right: 0 !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  border-radius: 6px;
  background: rgba(255,255,255,0.10);
  box-shadow: 0 20px 50px rgba(1,13,20,0.08);
}

.aflow-page .aflow-study-step h4 {
  color: #fff !important;
  font-family: 'Space Grotesk', Arial, sans-serif !important;
  font-size: 22px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  margin: 0 0 10px !important;
}

.aflow-page .aflow-study-step p {
  color: rgba(255,255,255,0.86) !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.aflow-page .study-icon {
  background:
    radial-gradient(circle at 32% 30%, rgba(255,255,255,0.95), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,255,255,0.28)) !important;
  border: 1px solid rgba(255,255,255,0.30);
}

.aflow-page .aflow-green-btn {
  background: #fff !important;
  border-color: #fff !important;
  color: var(--aflow-green-dark) !important;
  box-shadow: 0 16px 34px rgba(1,13,20,0.14);
}

.aflow-page .aflow-green-btn:hover {
  background: var(--aflow-green-dark) !important;
  border-color: rgba(255,255,255,0.42) !important;
  color: #fff !important;
}

/* Remove remaining blue interactions on ALMA Flow */
.aflow-page .eyebrow,
.aflow-page .section-head .eyebrow,
.aflow-page .aflow-landing-copy .eyebrow {
  color: #248346 !important;
}

.aflow-page .aflow-landing-copy .eyebrow {
  display: inline-block !important;
  position: relative;
  padding-bottom: 7px;
}

.aflow-page .aflow-landing-copy .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #35a957;
}

.aflow-page .aflow-landing-copy h1 span,
.aflow-page .section-head h2 span,
.aflow-page .hi {
  color: #248346 !important;
}

.page-template-page-almaflow .nav-right .btn {
  background: #35a957 !important;
  border-color: #35a957 !important;
  color: #fff !important;
}

.page-template-page-almaflow .nav-right .btn:hover {
  background: #248346 !important;
  border-color: #248346 !important;
  color: #fff !important;
}

.page-template-page-almaflow .nav-right .btn::after,
.aflow-page .btn::before,
.page-template-page-almaflow .alma-footer .btn::before {
  background: rgba(36,131,70,0.20) !important;
}

.aflow-page .aflow-kpi .num,
.aflow-page .aflow-kpi .num span {
  color: #248346 !important;
}

.aflow-page .aflow-kpi .lbl {
  color: #4f5661 !important;
}

.page-template-page-almaflow .alma-footer .newsletter input:focus {
  border-color: rgba(255,255,255,0.72) !important;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.18) !important;
}

/* RSE stats: keep highlighted value visible after white-card styling */
.env-stat.hi .env-num .counter-value,
.env-stat.hi .env-num .suffix,
.env-stat.hi .env-num .env-decimal {
  color: #6faeb1 !important;
  -webkit-text-stroke-color: #6faeb1 !important;
}

.env-stat.hi .env-line {
  background: #6faeb1 !important;
}

/* ALMA Flow KPI slider */
.aflow-page #aflow-kpi-slider.aflow-kpis-clean {
  margin: 28px auto 0 !important;
  max-width: 1060px !important;
  padding: 0 0 34px !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  clip-path: none !important;
  background: #fff !important;
  border: 1px solid rgba(53,169,87,0.16) !important;
  box-shadow: 0 22px 60px rgba(1,13,20,0.07) !important;
}

.aflow-page #aflow-kpi-slider .swiper-wrapper {
  align-items: stretch;
}

.aflow-page #aflow-kpi-slider .aflow-kpi {
  height: auto !important;
  min-height: 138px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 18px 24px;
  border-left: 1px solid rgba(53,169,87,0.14);
}

.aflow-page #aflow-kpi-slider .aflow-kpi:first-child {
  border-left: 0;
}

.aflow-page #aflow-kpi-slider .aflow-kpi-pagination {
  bottom: 12px !important;
}

.aflow-page #aflow-kpi-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(36,131,70,0.28);
  opacity: 1;
}

.aflow-page #aflow-kpi-slider .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 99px;
  background: #35a957;
}

@media (max-width: 1023px) {
  .aflow-page #aflow-kpi-slider .aflow-kpi {
    border-left: 0;
  }
}

/* ALMA Flow: inclined KPI band, no hero/sidebar overlap */
.aflow-page .aflow-kpis-clean:not(#aflow-kpi-slider) {
  margin: 28px auto 0 !important;
  max-width: 1060px !important;
  padding: 34px 46px 40px !important;
  border-radius: 0 !important;
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(244,251,247,0.98)) !important;
  border: 1px solid rgba(53,169,87,0.16) !important;
  box-shadow: 0 22px 60px rgba(1,13,20,0.07) !important;
}

.aflow-page .aflow-kpis-clean:not(#aflow-kpi-slider) .aflow-kpi {
  position: relative;
  z-index: 1;
}

.aflow-page .aflow-kpis-clean:not(#aflow-kpi-slider) .aflow-kpi + .aflow-kpi {
  border-left: 1px solid rgba(53,169,87,0.14);
}

/* ALMA Flow footer: inclined top edge, same content layout */
.page-template-page-almaflow .alma-footer {
  margin-top: 0 !important;
  padding-top: 72px !important;
  clip-path: none !important;
}

@media (max-width: 768px) {
  .aflow-page .aflow-kpis-clean:not(#aflow-kpi-slider) {
    clip-path: none;
    padding: 28px 22px !important;
  }

  .aflow-page .aflow-kpis-clean:not(#aflow-kpi-slider) .aflow-kpi + .aflow-kpi {
    border-left: 0;
    border-top: 1px solid rgba(53,169,87,0.14);
    padding-top: 18px;
  }

  .page-template-page-almaflow .alma-footer {
    clip-path: none;
    padding-top: 62px !important;
  }
}

/* ALMA Flow hero slider */
.aflow-page .aflow-hero-slider {
  position: relative;
  padding: 0 !important;
}

.aflow-page .aflow-hero-slider .swiper-wrapper {
  position: relative;
  z-index: 2;
}

.aflow-page .aflow-hero-slider .swiper-slide {
  padding: 58px 20px 88px;
}

.aflow-page .aflow-hero-slider .aflow-landing-inner {
  min-height: 440px;
  align-items: flex-start !important;
  padding-top: 24px !important;
  position: relative;
  z-index: 2;
}

.aflow-page .aflow-hero-slider .aflow-landing-copy,
.aflow-page .aflow-hero-slider .aflow-landing-visual {
  transform: translateY(16px);
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.aflow-page .aflow-hero-slider .swiper-slide-active .aflow-landing-copy,
.aflow-page .aflow-hero-slider .swiper-slide-active .aflow-landing-visual {
  transform: translateY(0);
  opacity: 1;
}

.aflow-page .aflow-hero-slider .swiper-slide-active .aflow-landing-visual {
  transition-delay: 0.12s;
}

.aflow-page .aflow-slider-pagination {
  bottom: 28px !important;
}

.aflow-page .aflow-slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(36,131,70,0.28);
  opacity: 1;
  transition: width 0.25s ease, background-color 0.25s ease;
}

.aflow-page .aflow-slider-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 99px;
  background: #35a957;
}

.aflow-page .aflow-slider-prev,
.aflow-page .aflow-slider-next {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  color: #248346 !important;
  background: transparent !important;
  box-shadow: none !important;
  top: 55% !important;
}

.aflow-page .aflow-slider-prev::after,
.aflow-page .aflow-slider-next::after {
  font-size: 18px !important;
  font-weight: 700;
}

.aflow-page .aflow-slider-prev:hover,
.aflow-page .aflow-slider-next:hover {
  color: #35a957 !important;
  background: transparent !important;
}

@media (max-width: 900px) {
  .aflow-page .aflow-slider-prev,
  .aflow-page .aflow-slider-next {
    display: none !important;
  }

  .aflow-page .aflow-hero-slider .swiper-slide {
    padding: 58px 18px 62px;
  }
}

/* ALMA Flow product cards: align all buttons on one baseline */
.aflow-page .aflow-prods-clean {
  align-items: stretch !important;
}

.aflow-page .aflow-prod {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.aflow-page .aflow-prod h4 {
  min-height: 58px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.aflow-page .aflow-prod p {
  min-height: 58px !important;
}

.aflow-page .aflow-prod .btn {
  margin-top: auto !important;
  align-self: center !important;
}

/* ALMA Flow treatment cards: centered text and buttons */
.aflow-page .aflow-treatment-section .aflow-card {
  display: flex !important;
  flex-direction: column !important;
}

.aflow-page .aflow-treatment-section .aflow-card-body {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.aflow-page .aflow-treatment-section .aflow-card-body h3,
.aflow-page .aflow-treatment-section .aflow-card-body p {
  text-align: center !important;
}

.aflow-page .aflow-treatment-section .aflow-card-body p {
  max-width: 420px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.aflow-page .aflow-treatment-section .aflow-card-body .btn {
  margin-top: auto !important;
  align-self: center !important;
}

/* ALMA Flow study process proposal */
.aflow-page .aflow-study-process {
  background: #f2f6f9 !important;
  padding: 0 20px 86px !important;
  border: 0 !important;
}

.aflow-page .aflow-study-process .aflow-study-inner {
  max-width: 1120px !important;
  margin: 0 auto !important;
  padding-top: 74px !important;
  border-top: 1px solid rgba(29,131,193,0.12);
}

.aflow-page .aflow-study-process .section-head {
  margin-bottom: 42px !important;
}

.aflow-page .aflow-study-process .section-head .eyebrow {
  color: #248346 !important;
}

.aflow-page .aflow-study-process .section-head h2,
.aflow-page .aflow-study-process .section-head h2 span,
.aflow-page .aflow-study-process .section-head h2 .split-char {
  color: #248346 !important;
}

.aflow-page .aflow-study-process .section-head p {
  max-width: 620px;
  margin-left: auto !important;
  margin-right: auto !important;
  color: #4f5661 !important;
}

.aflow-page .aflow-study-process .aflow-study-steps {
  position: relative;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px !important;
  margin: 0 !important;
}

.aflow-page .aflow-study-process .aflow-study-steps::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 78px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(53,169,87,0.34), transparent);
  pointer-events: none;
}

.aflow-page .aflow-study-process .aflow-study-step {
  position: relative;
  min-height: 270px;
  padding: 34px 30px 30px !important;
  border: 1px solid rgba(29,131,193,0.12) !important;
  border-radius: 6px !important;
  background: #fff !important;
  box-shadow: 0 18px 45px rgba(1,13,20,0.05) !important;
  text-align: center;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.aflow-page .aflow-study-process .aflow-study-step:hover {
  transform: translateY(-4px);
  border-color: rgba(53,169,87,0.34) !important;
  box-shadow: 0 24px 60px rgba(1,13,20,0.08) !important;
}

.aflow-page .aflow-study-process .study-step-num {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(36,131,70,0.18);
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
}

.aflow-page .aflow-study-process .study-icon {
  position: relative;
  z-index: 1;
  width: 82px !important;
  height: 82px !important;
  margin: 0 auto 22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #248346 !important;
  border: 1px solid rgba(53,169,87,0.22) !important;
  background:
    radial-gradient(circle at 32% 30%, rgba(255,255,255,0.95), transparent 28%),
    linear-gradient(135deg, rgba(53,169,87,0.12), rgba(29,131,193,0.07)) !important;
  box-shadow: 0 18px 42px rgba(36,131,70,0.10);
}

.aflow-page .aflow-study-process .study-icon svg {
  stroke: currentColor !important;
  display: block !important;
  margin: auto !important;
  flex: 0 0 auto !important;
}

.aflow-page .aflow-study-process .aflow-study-step h4 {
  color: #0b3b60 !important;
  font-size: 22px !important;
  margin-bottom: 12px !important;
}

.aflow-page .aflow-study-process .aflow-study-step p {
  color: #4f5661 !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
  margin: 0 auto !important;
  max-width: 260px;
}

.aflow-page .aflow-study-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.aflow-page .aflow-study-process .aflow-green-btn {
  min-width: 260px;
  background: #35a957 !important;
  border-color: #35a957 !important;
  color: #fff !important;
  box-shadow: 0 16px 34px rgba(36,131,70,0.14) !important;
}

.aflow-page .aflow-study-process .aflow-green-btn:hover {
  background: #248346 !important;
  border-color: #248346 !important;
  color: #fff !important;
}

@media (max-width: 900px) {
  .aflow-page .aflow-study-process .aflow-study-steps {
    grid-template-columns: 1fr;
  }

  .aflow-page .aflow-study-process .aflow-study-steps::before {
    display: none;
  }
}

/* ALMA Flow loader uses the dedicated wide logo */
.disabled-loader-override {
  width: min(420px, 72vw) !important;
  height: 150px !important;
}

.disabled-loader-override-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block;
}

.page-template-page-almaflow .alma-nav .logo img {
  height: 54px !important;
  width: auto !important;
  max-width: min(270px, 28vw) !important;
  object-fit: contain !important;
}

.page-template-page-almaflow .offcanvas .oc-logo img {
  height: 42px !important;
  width: auto !important;
  max-width: 240px !important;
  object-fit: contain !important;
}

.page-template-page-almaflow .alma-footer .almaflow-foot-logo {
  height: 54px !important;
  width: auto !important;
  max-width: 280px !important;
  object-fit: contain !important;
  margin-bottom: 14px !important;
}

/* ALMA Flow: study block belongs visually to the products section */
.aflow-page .aflow-products-section .aflow-study-band {
  max-width: 980px !important;
  margin: 74px auto 0 !important;
  padding: 68px 0 0 !important;
  background: transparent !important;
  border-top: 1px solid rgba(29,131,193,0.12) !important;
  border-bottom: 0 !important;
  color: inherit !important;
}

.aflow-page .aflow-products-section .aflow-study-band .section-head {
  margin-bottom: 34px !important;
}

.aflow-page .aflow-products-section .aflow-study-band .section-head h2,
.aflow-page .aflow-products-section .aflow-study-band .section-head h2 span,
.aflow-page .aflow-products-section .aflow-study-band .section-head h2 .split-char {
  color: #248346 !important;
}

.aflow-page .aflow-products-section .aflow-study-band .section-head p {
  color: #4f5661 !important;
}

.aflow-page .aflow-products-section .aflow-study-step {
  background: #fff !important;
  border: 1px solid rgba(29,131,193,0.12) !important;
  box-shadow: 0 18px 45px rgba(1,13,20,0.05) !important;
}

.aflow-page .aflow-products-section .aflow-study-step h4 {
  color: #0b3b60 !important;
}

.aflow-page .aflow-products-section .aflow-study-step p {
  color: #4f5661 !important;
}

/* Final header alignment: logo far left, actions far right on every page */
.alma-header .alma-nav {
  max-width: none !important;
  width: 100% !important;
  padding-left: clamp(12px, 1.4vw, 24px) !important;
  padding-right: clamp(12px, 1.4vw, 24px) !important;
  justify-content: flex-start !important;
}

.alma-header .logo {
  flex: 0 0 auto !important;
  margin-right: auto !important;
}

.alma-header .nav-links {
  flex: 0 1 auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.alma-header .nav-right {
  flex: 0 0 auto !important;
  margin-left: auto !important;
}

.alma-header .offcanvas-toggle {
  flex: 0 0 auto !important;
  margin-left: 14px !important;
}

/* ALMA Flow: no blue hover on header action/button/menu icon */
.page-template-page-almaflow .alma-header .nav-right .btn,
.page-template-page-almaflow .alma-header .nav-right .btn:visited,
.page-template-page-almaflow .alma-header .nav-right .btn:hover,
.page-template-page-almaflow .alma-header .nav-right .btn:focus,
.page-template-page-almaflow .alma-header .nav-right .btn:active {
  background: #35a957 !important;
  background-color: #35a957 !important;
  border-color: #35a957 !important;
  color: #fff !important;
}

.page-template-page-almaflow .alma-header .nav-right .btn:hover,
.page-template-page-almaflow .alma-header .nav-right .btn:focus {
  background: #248346 !important;
  background-color: #248346 !important;
  border-color: #248346 !important;
}

.page-template-page-almaflow .alma-header .nav-right .btn::before,
.page-template-page-almaflow .alma-header .nav-right .btn::after {
  background: rgba(255,255,255,0.18) !important;
  background-color: rgba(255,255,255,0.18) !important;
}

.page-template-page-almaflow .alma-header .offcanvas-toggle svg path {
  fill: #248346 !important;
}

/* ALMA Flow hero: lighter background, closer to site colors */
.aflow-page #aflow-hero-slider.aflow-landing-hero,
.aflow-page .aflow-hero-slider {
  background: url("assets/aflow-hero-new-domestic.png") center / cover no-repeat !important;
}

.aflow-page #aflow-hero-slider .swiper-slide,
.aflow-page #aflow-hero-slider .swiper-slide-active,
.aflow-page #aflow-hero-slider .swiper-slide-visible {
  background: transparent !important;
}

.aflow-page #aflow-hero-slider .swiper-slide.aflow-image-slide {
  background-image: var(--aflow-slide-image) !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.aflow-page #aflow-hero-slider::after {
  background: transparent !important;
}

.aflow-page #aflow-hero-slider .aflow-landing-visual.env-logo-backdrop {
  background:
    radial-gradient(circle at 22% 22%, rgba(255,255,255,0.72), transparent 32%),
    linear-gradient(135deg, rgba(115,198,240,0.12), rgba(53,169,87,0.12)) !important;
  box-shadow: 0 24px 60px rgba(1,13,20,0.07) !important;
}

/* Accueil hero: same light treatment as ALMA Flow */
body.home #hero-slider.hero-slider,
body.front-page #hero-slider.hero-slider,
#hero-slider.hero-slider {
  background:
    radial-gradient(circle at 82% 24%, rgba(29,131,193,0.10), transparent 34%),
    radial-gradient(circle at 12% 78%, rgba(115,198,240,0.18), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 54%, #eef8fd 100%) !important;
  color: #0b3b60 !important;
}

#hero-slider .swiper-slide,
#hero-slider .swiper-slide-active,
#hero-slider .swiper-slide-visible {
  background: transparent !important;
}

#hero-slider .slide-inner {
  min-height: 580px !important;
}

#hero-slider .slide-text h1 {
  color: #0b3b60 !important;
}

#hero-slider .slide-text h1 .hi,
#hero-slider .slide-text .hi {
  color: var(--alma-blue) !important;
}

#hero-slider .slide-text p {
  color: #4f5661 !important;
}

#hero-slider .slide-text .eyebrow,
#hero-slider .eyebrow {
  color: var(--alma-blue) !important;
}

#hero-slider .slide-thumb {
  background:
    radial-gradient(circle at 22% 22%, rgba(255,255,255,0.72), transparent 32%),
    linear-gradient(135deg, rgba(115,198,240,0.14), rgba(29,131,193,0.10)) !important;
  border-radius: 8px !important;
  box-shadow: 0 24px 60px rgba(1,13,20,0.07) !important;
}

#hero-slider .slide-thumb::after {
  display: none !important;
  content: none !important;
}

#hero-slider .swiper-pagination-bullet {
  background: rgba(29,131,193,0.25) !important;
}

#hero-slider .swiper-pagination-bullet-active {
  background: var(--alma-blue) !important;
}

#hero-slider .swiper-button-next,
#hero-slider .swiper-button-prev {
  color: var(--alma-blue) !important;
  background: #fff !important;
  box-shadow: 0 18px 40px rgba(1,13,20,0.10) !important;
}

#hero-slider .swiper-button-next:hover,
#hero-slider .swiper-button-prev:hover {
  color: #fff !important;
  background: var(--alma-blue) !important;
}

/* Accueil realisations: same light visual language */
.alma-work-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(29,131,193,0.08), transparent 34%),
    radial-gradient(circle at 10% 82%, rgba(115,198,240,0.14), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 56%, #eef8fd 100%) !important;
}

.alma-work-section .industrie-split-head h2,
.alma-work-section .industrie-split-head h2 span,
.alma-work-section .industrie-split-head h2 .split-char {
  color: #0b3b60 !important;
}

.alma-work-section .industrie-split-head .hi {
  color: var(--alma-blue) !important;
}

.alma-work-section .industrie-project-card {
  min-height: 410px !important;
  border: 1px solid rgba(29,131,193,0.12);
  border-radius: 8px;
  background: #fff !important;
  color: #0b3b60 !important;
  box-shadow: 0 22px 60px rgba(1,13,20,0.06);
}

.alma-work-section .industrie-project-card .project-visual {
  inset: 20px 20px auto 20px !important;
  height: 210px;
  border-radius: 6px;
  background:
    radial-gradient(circle at 22% 22%, rgba(255,255,255,0.72), transparent 32%),
    linear-gradient(135deg, rgba(115,198,240,0.16), rgba(29,131,193,0.10)) !important;
}

.alma-work-section .industrie-project-card .project-visual::after {
  display: none !important;
  content: none !important;
}

.alma-work-section .industrie-project-card .project-visual span {
  color: rgba(29,131,193,0.16) !important;
  top: 18px !important;
  right: 22px !important;
}

.alma-work-section .industrie-project-card .project-body {
  left: 28px !important;
  right: 28px !important;
  bottom: 28px !important;
}

.alma-work-section .industrie-project-card .project-body span {
  color: var(--alma-blue) !important;
}

.alma-work-section .industrie-project-card h3 {
  color: #0b3b60 !important;
}

.alma-work-section .industrie-project-card a {
  color: var(--alma-blue) !important;
}

.alma-work-section .industrie-project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29,131,193,0.26);
  box-shadow: 0 28px 70px rgba(1,13,20,0.08);
}

/* Accueil realisations: RSTheme-like portfolio hover */
.alma-work-section .industrie-project-card {
  cursor: pointer;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.alma-work-section .industrie-project-card .project-visual {
  transition: transform 0.55s cubic-bezier(.16,.72,.24,1), filter 0.35s ease;
  transform-origin: center;
}

.alma-work-section .industrie-project-card .project-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(11,59,96,0.10) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.alma-work-section .industrie-project-card:hover .project-visual {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.alma-work-section .industrie-project-card:hover .project-visual::before {
  opacity: 1;
}

.alma-work-section .industrie-project-card .project-body {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(29,131,193,0.10);
  border-radius: 6px;
  padding: 22px 24px;
  box-shadow: 0 18px 42px rgba(1,13,20,0.06);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.alma-work-section .industrie-project-card:hover .project-body {
  transform: translateY(-10px);
  border-color: rgba(29,131,193,0.22);
  box-shadow: 0 24px 56px rgba(1,13,20,0.10);
}

.alma-work-section .industrie-project-card h3 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 0 !important;
}

.alma-work-section .industrie-project-card h3::after {
  content: "+";
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(29,131,193,0.08);
  color: #0b3b60;
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.alma-work-section .industrie-project-card:hover h3::after {
  transform: rotate(90deg);
  background: var(--alma-blue);
  color: #fff;
}

.alma-work-section .industrie-project-card .project-body > a {
  display: none !important;
}

.alma-work-section .industrie-project-card .project-card-link {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: block;
  text-indent: -9999px;
}

.alma-work-section .industrie-project-card .project-body,
.alma-work-section .industrie-project-card .project-visual span {
  pointer-events: none;
}

.alma-work-section .industrie-project-card h3::after {
  position: relative;
  z-index: 6;
}

/* Qui sommes-nous: realisations section like requested mockup */
.about-realisations-section {
  position: relative;
  padding: 18px 0 0 !important;
  background:
    radial-gradient(circle at 90% 4%, rgba(115,198,240,0.16), transparent 18%),
    radial-gradient(circle at 8% 88%, rgba(29,131,193,0.10), transparent 24%),
    linear-gradient(180deg, #f5fbff 0%, #e9f5fb 100%) !important;
  overflow: hidden;
}

.about-realisations-section .container {
  max-width: 1280px;
}

.about-realisations-section .industrie-split-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  margin-bottom: 58px;
}

.about-realisations-section .industrie-split-head .eyebrow {
  margin: 0 0 32px !important;
  color: var(--alma-blue) !important;
  font-size: clamp(2.2rem, 3.4vw, 3.2rem) !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
}

.about-realisations-section .industrie-split-head h2 {
  max-width: 620px;
  margin: 0 !important;
  color: #0b3b60 !important;
  font-size: clamp(2.15rem, 3.35vw, 3.18rem) !important;
  line-height: 1.18 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

.about-realisations-section .industrie-split-head h2 .hi {
  color: inherit !important;
}

.about-realisations-section .industrie-split-head .btn {
  min-width: 228px;
  min-height: 44px;
  justify-content: center;
  border: 1px solid var(--alma-blue) !important;
  border-radius: 3px !important;
  color: var(--alma-blue) !important;
  background: rgba(255,255,255,0.42) !important;
  box-shadow: none !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  text-transform: uppercase;
}

.about-realisations-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.about-realisations-tools {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: -28px auto 32px;
}

.realisations-nav-btn,
.realisations-page-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(29,131,193,0.34);
  border-radius: 3px;
  background: rgba(255,255,255,0.78);
  color: var(--alma-blue);
  box-shadow: 0 12px 28px rgba(29,131,193,0.1);
  transition: color 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.realisations-side-nav {
  position: absolute;
  top: 58%;
  z-index: 8;
  width: 58px;
  height: 92px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: rgba(255,255,255,0.56);
  color: rgba(29,131,193,0.72);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 0.24s ease, background-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.realisations-side-nav span {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 4.2rem;
  line-height: 0.7;
  font-weight: 300;
}

.realisations-side-prev {
  left: 10px;
  border-radius: 0 999px 999px 0;
}

.realisations-side-next {
  right: 10px;
  border-radius: 999px 0 0 999px;
}

.realisations-side-nav:hover,
.realisations-side-nav:focus {
  color: var(--alma-blue);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 18px 44px rgba(29,131,193,0.16);
}

.realisations-side-prev:hover,
.realisations-side-prev:focus {
  transform: translateY(-50%) translateX(4px);
}

.realisations-side-next:hover,
.realisations-side-next:focus {
  transform: translateY(-50%) translateX(-4px);
}

.realisations-nav-btn {
  padding: 0;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 900;
  cursor: pointer;
}

.realisations-page-icon {
  grid-template-columns: repeat(2, 8px);
  grid-template-rows: repeat(2, 8px);
  gap: 5px;
  text-decoration: none;
}

.realisations-page-icon span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 1px;
  background: currentColor;
}

.realisations-nav-btn:hover,
.realisations-nav-btn:focus,
.realisations-page-icon:hover,
.realisations-page-icon:focus {
  color: #fff;
  background: var(--alma-blue);
  border-color: var(--alma-blue);
  transform: translateY(-2px);
}

.about-realisations-section .industrie-project-grid {
  display: flex;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 4px 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  transform: translateY(-4px);
  scrollbar-width: thin;
  scrollbar-color: rgba(29,131,193,0.34) transparent;
}

.about-realisations-section .industrie-project-grid::-webkit-scrollbar {
  height: 8px;
}

.about-realisations-section .industrie-project-grid::-webkit-scrollbar-track {
  background: transparent;
}

.about-realisations-section .industrie-project-grid::-webkit-scrollbar-thumb {
  background: rgba(29,131,193,0.34);
  border-radius: 999px;
}

.about-realisations-section .industrie-project-card {
  flex: 0 0 min(340px, calc((100% - 56px) / 3));
  min-height: 338px !important;
  border-radius: 6px !important;
  border: 1px solid rgba(29,131,193,0.12) !important;
  box-shadow: 0 14px 36px rgba(29,131,193,0.08) !important;
  scroll-snap-align: start;
}

.about-realisations-section .industrie-project-card .project-visual {
  inset: 18px 18px auto 18px !important;
  height: 176px !important;
  border-radius: 5px !important;
  background:
    radial-gradient(circle at 22% 22%, rgba(255,255,255,0.82), transparent 31%),
    linear-gradient(135deg, rgba(115,198,240,0.12), rgba(29,131,193,0.08)) !important;
}

.about-realisations-section .industrie-project-card .project-visual span {
  top: 34px !important;
  right: 24px !important;
  color: rgba(29,131,193,0.16) !important;
  font-size: clamp(3.8rem, 6vw, 4.7rem) !important;
}

.about-realisations-section .industrie-project-card .project-body {
  left: 24px !important;
  right: 24px !important;
  bottom: 14px !important;
  padding: 22px 22px !important;
  border-radius: 5px !important;
  background: #fff !important;
}

.about-realisations-section .industrie-project-card .project-body span {
  margin-bottom: 14px !important;
  color: var(--alma-blue) !important;
  font-size: 0.74rem !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
}

.about-realisations-section .industrie-project-card h3 {
  color: #0b3b60 !important;
  font-size: clamp(1.5rem, 2.1vw, 1.78rem) !important;
  line-height: 1.22 !important;
  font-weight: 900 !important;
}

@media (max-width: 900px) {
  .about-realisations-section {
    padding: 34px 0 44px !important;
  }

  .about-realisations-section .industrie-split-head {
    grid-template-columns: 1fr;
    text-align: left;
    margin-bottom: 34px;
  }

  .about-realisations-section .industrie-project-grid {
    display: flex;
    transform: none;
  }

  .about-realisations-section .industrie-project-card {
    flex-basis: min(86vw, 360px);
  }

  .about-realisations-tools {
    margin-top: -12px;
  }

  .about-realisations-actions {
    justify-content: center;
  }

  .realisations-side-nav {
    width: 44px;
    height: 72px;
  }

  .realisations-side-nav span {
    font-size: 3.2rem;
  }
}

/* Qui sommes-nous: Blog Style 01 */
.alma-blog-style01 {
  padding: 76px 20px 88px;
  background: #fff;
}

.alma-blog-style01 .container {
  max-width: 1200px;
}

.alma-blog-style-head {
  margin-bottom: 44px;
}

.alma-blog-style-head h2 {
  max-width: 640px;
  margin: 0;
  color: var(--alma-blue) !important;
  font-size: clamp(2.35rem, 4vw, 3.4rem) !important;
  line-height: 1.12 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

.alma-insights-head {
  text-align: center;
}

.alma-insights-head h2 {
  max-width: none;
  margin: 0 auto !important;
  color: #0b3b60 !important;
  font-size: clamp(2.65rem, 4.5vw, 4.15rem) !important;
}

.alma-insights-head::after {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  margin: 16px auto 0;
  background: var(--alma-blue);
}

.alma-blog-news-title {
  margin-top: 18px;
  color: #0b3b60;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: 0;
}

.alma-news-style01 {
  padding-top: 0;
}

.alma-news-main-title {
  margin: 0 0 20px;
  color: var(--alma-blue);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.alma-news-style-head {
  margin: 0 auto 40px;
  text-align: center;
}

.alma-news-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--alma-blue);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.alma-news-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--alma-blue);
}

.alma-news-style-head h2 {
  margin: 0 auto;
  color: #0b3b60 !important;
  font-size: clamp(1.75rem, 3vw, 2.55rem) !important;
  line-height: 1.18 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

.about-contact-band {
  padding: 74px 20px;
  background:
    radial-gradient(circle at 12% 18%, rgba(115,198,240,0.24), transparent 30%),
    radial-gradient(circle at 86% 82%, rgba(229,101,26,0.13), transparent 26%),
    linear-gradient(135deg, #062f4f 0%, #0b3b60 42%, #1d83c1 100%);
  color: #fff;
}

.about-contact-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 56px;
  align-items: start;
}

.about-contact-eyebrow {
  margin-bottom: 8px;
  color: rgba(255,255,255,0.82);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-contact-copy h2 {
  max-width: 520px;
  margin: 0 0 18px;
  color: #fff !important;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.6vw, 3.15rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

.about-contact-copy p {
  max-width: 690px;
  margin: 0 0 34px;
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.72;
}

.about-contact-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 42px;
  max-width: 760px;
}

.about-contact-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.about-contact-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.56);
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 900;
}

.about-contact-item strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 900;
}

.about-contact-item span:not(.about-contact-icon) {
  display: block;
  color: rgba(255,255,255,0.76);
  font-size: 0.92rem;
  line-height: 1.5;
}

.about-contact-form {
  padding: 34px 32px 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,250,255,0.96));
  border: 1px solid rgba(115,198,240,0.32);
  box-shadow: 0 24px 64px rgba(1,13,20,0.2);
}

/* --- Commercial contact directory --- */
.about-commercial-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.commercial-team-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(1,13,20,0.16);
  opacity: 0;
  transform: translateY(18px);
  animation: commercialCardIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.commercial-team-card:nth-child(2) {
  animation-delay: 0.12s;
}

.commercial-team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(115,198,240,0.7);
  box-shadow: 0 22px 48px rgba(1,13,20,0.22);
}

.commercial-team-head {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 14px 12px;
  background: linear-gradient(180deg, #ffffff, #eef7fb);
  border-bottom: 1px solid rgba(29,131,193,0.13);
}

.commercial-team-code {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #0b3a60;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  animation: commercialCodePulse 2.8s ease-in-out infinite;
}

.commercial-team-head strong {
  display: block;
  color: #0b3a60;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.25;
}

.commercial-team-head span:not(.commercial-team-code) {
  display: block;
  margin-top: 3px;
  color: #64748b;
  font-size: 0.76rem;
  line-height: 1.35;
}

.commercial-team-list {
  display: grid;
}

.commercial-person {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 13px 14px;
  transition: background-color 0.24s ease;
}

.commercial-person:hover {
  background: rgba(29,131,193,0.055);
}

.commercial-person + .commercial-person {
  border-top: 1px solid #edf3f7;
}

.commercial-contact-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1D83C1, #6faeb1);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 900;
  flex-shrink: 0;
}

.commercial-person-main strong {
  display: block;
  color: #0b3a60;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.25;
}

.commercial-person-main span {
  display: block;
  margin-top: 2px;
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.32;
}

.commercial-call {
  min-width: 66px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(29,131,193,0.24);
  border-radius: 8px;
  background: rgba(29,131,193,0.08);
  color: #0b6ea6;
  font-size: 0.76rem;
  font-weight: 900;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.commercial-call:hover {
  background: #1D83C1;
  border-color: #1D83C1;
  color: #fff;
  transform: translateY(-1px);
}

@keyframes commercialCardIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes commercialCodePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(29,131,193,0);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(29,131,193,0.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  .commercial-team-card,
  .commercial-team-code {
    animation: none;
  }

  .commercial-team-card {
    opacity: 1;
    transform: none;
  }
}

.about-contact-form h3 {
  margin: 0 0 8px;
  color: #0b3b60;
  font-family: var(--font-heading);
  font-size: 1.22rem;
  line-height: 1.2;
  font-weight: 900;
}

.about-contact-form p {
  margin: 0 0 18px;
  color: #536474;
  font-size: 0.88rem;
  line-height: 1.55;
}

.about-contact-form input,
.about-contact-form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(29,131,193,0.16);
  border-radius: 0;
  background: #fff;
  color: #0b3b60;
  font: inherit;
  outline: none;
}

.about-contact-form input::placeholder,
.about-contact-form textarea::placeholder {
  color: #7a8795;
}

.about-contact-form input:focus,
.about-contact-form textarea:focus {
  border-color: var(--alma-blue);
  background: #f8fcff;
  box-shadow: 0 0 0 3px rgba(29,131,193,0.12);
}

.about-contact-form button {
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--alma-blue);
  background: var(--alma-blue);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.about-contact-form button:hover,
.about-contact-form button:focus {
  background: var(--alma-orange);
  border-color: var(--alma-orange);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .about-contact-inner,
  .about-contact-info {
    grid-template-columns: 1fr;
  }

  .about-contact-inner {
    gap: 34px;
  }
}

.alma-blog-style-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 24px;
}

.alma-blog-featured,
.alma-blog-mini {
  position: relative;
  overflow: hidden;
  background: #f5f7f9;
  clip-path: polygon(0 0, calc(100% - 46px) 0, 100% 46px, 100% 100%, 0 100%);
}

.alma-blog-featured {
  min-height: 500px;
}

.blog-style-link {
  position: absolute;
  inset: 0;
  z-index: 6;
  text-indent: -9999px;
}

.alma-blog-featured img,
.alma-blog-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.alma-blog-featured img {
  position: absolute;
  inset: 0;
}

.blog-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,18,48,0.12) 0%, rgba(7,18,48,0.82) 100%);
  z-index: 1;
}

.blog-feature-content {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 4vw, 42px);
  right: clamp(28px, 4vw, 42px);
  bottom: 36px;
  color: #fff;
}

.blog-meta {
  margin-bottom: 14px;
  color: inherit;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 800;
  opacity: 0.9;
}

.blog-meta span {
  margin: 0 10px;
  opacity: 0.62;
}

.blog-feature-content h3,
.alma-blog-mini h3 {
  margin: 0;
  letter-spacing: 0 !important;
  font-weight: 900 !important;
}

.blog-feature-content h3 {
  max-width: 560px;
  color: #fff !important;
  font-size: clamp(1.8rem, 3vw, 2.35rem) !important;
  line-height: 1.22 !important;
}

.blog-feature-content p {
  max-width: 560px;
  margin: 18px 0 20px;
  color: rgba(255,255,255,0.84);
  font-size: 1rem;
  line-height: 1.65;
}

.blog-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 8px 15px;
  border: 1px solid transparent;
  border-radius: 2px;
  background: var(--alma-blue);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(1,13,20,0.12);
  transition: color 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.blog-chip:hover,
.blog-chip:focus {
  color: #fff;
  transform: translateY(-2px);
}

.chip-industrie {
  background: var(--alma-blue);
  border-color: var(--alma-blue);
}

.chip-reseaux {
  background: var(--alma-blue);
  border-color: var(--alma-blue);
}

.chip-innovation {
  background: var(--alma-blue);
  border-color: var(--alma-blue);
}

.chip-company {
  background: var(--alma-blue);
  border-color: var(--alma-blue);
}

.chip-oil {
  background: var(--alma-blue);
  border-color: var(--alma-blue);
}

.chip-manufacture {
  background: var(--alma-blue);
  border-color: var(--alma-blue);
}

.chip-aep {
  background: var(--alma-blue);
  border-color: var(--alma-blue);
}

.chip-assainissement {
  background: #bf5a16;
  border-color: #bf5a16;
}

.chip-eaux-usees {
  background: #2f7d3c;
  border-color: #2f7d3c;
}

.chip-industrie:hover,
.chip-reseaux:hover,
.chip-innovation:hover,
.chip-company:hover,
.chip-oil:hover,
.chip-manufacture:hover,
.chip-aep:hover,
.chip-assainissement:hover,
.chip-eaux-usees:hover,
.chip-industrie:focus,
.chip-reseaux:focus,
.chip-innovation:focus,
.chip-company:focus,
.chip-oil:focus,
.chip-manufacture:focus,
.chip-aep:focus,
.chip-assainissement:focus,
.chip-eaux-usees:focus {
  background: #010d14;
  border-color: #010d14;
}

.alma-blog-side {
  display: grid;
  gap: 24px;
}

.alma-blog-mini {
  min-height: 238px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(190px, 0.92fr);
}

.blog-mini-copy {
  padding: 30px 30px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.blog-mini-copy .blog-meta {
  color: #596477;
  margin-bottom: 12px;
}

.alma-blog-mini h3 {
  color: #111827 !important;
  font-size: clamp(1.25rem, 2vw, 1.62rem) !important;
  line-height: 1.28 !important;
}

.alma-blog-mini p {
  margin: 18px 0 22px;
  color: #6a7280;
  font-size: 0.96rem;
  line-height: 1.58;
}

.alma-blog-mini .blog-chip {
  margin-top: auto;
}

@media (max-width: 980px) {
  .alma-blog-style-grid {
    grid-template-columns: 1fr;
  }

  .alma-blog-featured {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .alma-blog-style01 {
    padding: 54px 16px 64px;
  }

  .alma-blog-style-head h2 {
    font-size: 2.1rem !important;
  }

  .alma-blog-mini {
    grid-template-columns: 1fr;
  }

  .alma-blog-mini img {
    height: 190px;
    order: -1;
  }
}

/* Qui sommes-nous: Blog & Insights matched to ALMA reference layout */
.alma-insights-section {
  padding: 62px 20px 72px !important;
  background: #fff !important;
}

.alma-insights-section .container {
  width: min(1510px, calc(100vw - 54px)) !important;
  max-width: 1510px !important;
}

.alma-insights-section .alma-blog-style-head {
  margin-bottom: 26px !important;
}

.alma-insights-section .alma-insights-head h2 {
  color: #07345e !important;
  font-size: clamp(2.65rem, 4.25vw, 4.65rem) !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.alma-insights-section .alma-insights-head::after {
  width: 74px !important;
  height: 4px !important;
  margin-top: 18px !important;
  background: #1D83C1 !important;
}

.alma-insights-section .alma-blog-style-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(510px, 0.84fr) !important;
  gap: 22px !important;
  align-items: stretch !important;
}

.alma-insights-section .alma-blog-featured,
.alma-insights-section .alma-blog-mini {
  border-radius: 14px !important;
  clip-path: polygon(0 0, calc(100% - 54px) 0, 100% 54px, 100% 100%, 0 100%) !important;
  box-shadow: none !important;
}

.alma-insights-section .alma-blog-featured {
  min-height: 630px !important;
  background: #eaf4fb !important;
}

.alma-insights-section .alma-blog-featured img {
  object-fit: contain !important;
  object-position: center top !important;
  background: #eaf4fb !important;
}

.alma-insights-section .blog-feature-overlay {
  background:
    linear-gradient(180deg, rgba(2,29,55,0.02) 0%, rgba(3,47,86,0.18) 43%, rgba(0,72,132,0.88) 100%),
    linear-gradient(90deg, rgba(0,72,132,0.22), rgba(0,72,132,0.04) 48%, rgba(0,72,132,0.12)) !important;
}

.alma-insights-section .blog-feature-content {
  left: clamp(28px, 3.4vw, 54px) !important;
  right: clamp(28px, 4vw, 62px) !important;
  bottom: 32px !important;
}

.alma-insights-section .blog-feature-content .blog-meta {
  margin-bottom: 20px !important;
  color: rgba(255,255,255,0.86) !important;
  font-size: 1.02rem !important;
  font-weight: 800 !important;
}

.alma-insights-section .blog-feature-content h3 {
  max-width: 735px !important;
  color: #fff !important;
  font-size: clamp(2.08rem, 2.9vw, 3.2rem) !important;
  line-height: 1.14 !important;
  font-weight: 900 !important;
}

.alma-insights-section .blog-feature-content p {
  max-width: 720px !important;
  margin: 22px 0 20px !important;
  color: rgba(255,255,255,0.9) !important;
  font-size: clamp(1rem, 1.05vw, 1.22rem) !important;
  line-height: 1.48 !important;
}

.alma-insights-section .alma-blog-side {
  display: grid !important;
  grid-template-rows: 1fr 1fr !important;
  gap: 22px !important;
}

.alma-insights-section .alma-blog-mini {
  min-height: 304px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.93fr) minmax(260px, 1.07fr) !important;
  background: #f8fafc !important;
}

.alma-insights-section .alma-blog-mini img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #eef7fc !important;
}

.alma-insights-section .blog-mini-copy {
  padding: 30px 28px 28px !important;
  justify-content: flex-start !important;
}

.alma-insights-section .blog-mini-copy .blog-meta {
  margin-bottom: 14px !important;
  color: #1e2f43 !important;
  font-size: 0.92rem !important;
  line-height: 1 !important;
  font-weight: 600 !important;
}

.alma-insights-section .alma-blog-mini h3 {
  color: #07345e !important;
  font-size: clamp(1.36rem, 1.45vw, 1.78rem) !important;
  line-height: 1.22 !important;
  font-weight: 900 !important;
}

.alma-insights-section .alma-blog-mini p {
  margin: 18px 0 18px !important;
  color: #263446 !important;
  font-size: clamp(0.92rem, 0.9vw, 1.04rem) !important;
  line-height: 1.47 !important;
}

.alma-insights-section .blog-chip {
  min-height: 34px !important;
  padding: 9px 18px !important;
  border-radius: 5px !important;
  font-size: 0.88rem !important;
  box-shadow: none !important;
}

.alma-insights-section .chip-aep {
  background: #1474d4 !important;
  border-color: #1474d4 !important;
}

.alma-insights-section .chip-assainissement {
  background: #c45512 !important;
  border-color: #c45512 !important;
}

.alma-insights-section .chip-eaux-usees {
  background: #3f7f3f !important;
  border-color: #3f7f3f !important;
}

@media (max-width: 1180px) {
  .alma-insights-section .alma-blog-style-grid {
    grid-template-columns: 1fr !important;
  }

  .alma-insights-section .alma-blog-featured {
    min-height: 560px !important;
  }

  .alma-insights-section .alma-blog-side {
    grid-template-rows: auto !important;
  }
}

@media (max-width: 700px) {
  .alma-insights-section {
    padding: 50px 16px 60px !important;
  }

  .alma-insights-section .container {
    width: min(100%, calc(100vw - 32px)) !important;
  }

  .alma-insights-section .alma-blog-featured {
    min-height: 560px !important;
  }

  .alma-insights-section .alma-blog-mini {
    grid-template-columns: 1fr !important;
  }

  .alma-insights-section .alma-blog-mini img {
    min-height: 220px !important;
    order: -1 !important;
  }
}

/* Blog & Insights exact visual cards from the approved reference */
.alma-insights-section .alma-blog-style-grid {
  width: min(1479px, 100%) !important;
  margin: 0 auto !important;
  grid-template-columns: minmax(0, 836fr) minmax(0, 621fr) !important;
  gap: 22px !important;
}

.alma-insights-section .alma-blog-side {
  gap: 22px !important;
  align-content: start !important;
}

.alma-insights-section .alma-insight-shot-card {
  min-height: 0 !important;
  display: block !important;
  overflow: visible !important;
  clip-path: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.alma-insights-section .alma-insight-card-image {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.alma-insights-section .blog-style-link {
  z-index: 3 !important;
}

@media (max-width: 1180px) {
  .alma-insights-section .alma-blog-style-grid {
    grid-template-columns: 1fr !important;
    width: min(836px, 100%) !important;
  }
}

/* Blog & Insights final: real HTML text/buttons with reference styling */
.alma-insights-section .alma-blog-style-grid {
  width: min(1479px, 100%) !important;
  margin: 0 auto !important;
  grid-template-columns: minmax(0, 836fr) minmax(0, 621fr) !important;
  gap: 22px !important;
  align-items: stretch !important;
}

.alma-insights-section .alma-blog-featured,
.alma-insights-section .alma-blog-mini {
  overflow: hidden !important;
  border-radius: 14px !important;
  clip-path: polygon(0 0, calc(100% - 54px) 0, 100% 54px, 100% 100%, 0 100%) !important;
  background: #f7f9fb !important;
  box-shadow: none !important;
}

.alma-insights-section .alma-blog-featured {
  min-height: 730px !important;
}

.alma-insights-section .alma-blog-featured img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.alma-insights-section .blog-feature-overlay {
  background:
    linear-gradient(180deg, rgba(3,34,63,0) 0%, rgba(3,50,89,0.22) 42%, rgba(0,72,132,0.9) 100%),
    linear-gradient(90deg, rgba(0,72,132,0.12), rgba(0,72,132,0.04) 50%, rgba(0,72,132,0.12)) !important;
}

.alma-insights-section .blog-feature-content {
  left: clamp(30px, 3.55vw, 58px) !important;
  right: clamp(30px, 4vw, 66px) !important;
  bottom: 28px !important;
}

.alma-insights-section .blog-feature-content .blog-meta {
  margin-bottom: 20px !important;
  color: rgba(255,255,255,0.86) !important;
  font-size: 1.02rem !important;
  line-height: 1 !important;
  font-weight: 700 !important;
}

.alma-insights-section .blog-feature-content h3 {
  max-width: 720px !important;
  color: #fff !important;
  font-size: clamp(2.05rem, 2.65vw, 3rem) !important;
  line-height: 1.12 !important;
  font-weight: 900 !important;
}

.alma-insights-section .blog-feature-content p {
  max-width: 720px !important;
  margin: 24px 0 20px !important;
  color: rgba(255,255,255,0.9) !important;
  font-size: clamp(1rem, 1.04vw, 1.2rem) !important;
  line-height: 1.48 !important;
}

.alma-insights-section .alma-blog-side {
  display: grid !important;
  grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

.alma-insights-section .alma-blog-mini {
  min-height: 354px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 301fr) minmax(0, 320fr) !important;
}

.alma-insights-section .alma-blog-mini img {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  order: 0 !important;
}

.alma-insights-section .blog-mini-copy {
  min-width: 0 !important;
  padding: 28px 24px 26px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  background: #f8fafc !important;
}

.alma-insights-section .blog-mini-copy .blog-meta {
  margin-bottom: 16px !important;
  color: #243549 !important;
  font-size: 0.91rem !important;
  line-height: 1 !important;
  font-weight: 600 !important;
}

.alma-insights-section .alma-blog-mini h3 {
  color: #07345e !important;
  font-size: clamp(1.28rem, 1.32vw, 1.68rem) !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
}

.alma-insights-section .alma-blog-mini p {
  margin: 18px 0 18px !important;
  color: #243549 !important;
  font-size: clamp(0.88rem, 0.82vw, 1rem) !important;
  line-height: 1.46 !important;
}

.alma-insights-section .blog-chip {
  min-height: 34px !important;
  margin-top: auto !important;
  padding: 9px 18px !important;
  border-radius: 5px !important;
  color: #fff !important;
  font-size: 0.86rem !important;
  box-shadow: none !important;
}

@media (max-width: 1180px) {
  .alma-insights-section .alma-blog-style-grid {
    width: min(836px, 100%) !important;
    grid-template-columns: 1fr !important;
  }

  .alma-insights-section .alma-blog-mini {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr) !important;
  }
}

@media (max-width: 700px) {
  .alma-insights-section .alma-blog-featured {
    min-height: 570px !important;
  }

  .alma-insights-section .alma-blog-mini {
    grid-template-columns: 1fr !important;
  }

  .alma-insights-section .alma-blog-mini img {
    height: 230px !important;
    order: -1 !important;
  }
}

/* ============================================================
   EXPORT PAGE - refined layout
   ============================================================ */
.export-page .export-hero {
  padding: 66px 20px 46px;
  background:
    linear-gradient(180deg, rgba(29,131,193,0.07), rgba(255,255,255,0.98) 72%),
    #fff;
}

.export-page .export-hero h1 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(3.2rem, 5.1vw, 5.4rem);
  line-height: 1.05;
  color: var(--alma-blue-dark);
}

.export-page .export-hero p {
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.9;
}

.export-map-section {
  padding-top: 64px;
  padding-bottom: 82px;
}

.export-split-head {
  display: block;
  text-align: center;
  margin-bottom: 34px;
}

.export-split-head h2 {
  max-width: 600px;
  margin: 0 auto;
}

.export-split-head > p {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.export-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: stretch;
}

.export-map-card,
.export-summary-card {
  background: #fff;
  border: 1px solid rgba(10,43,73,0.08);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(10,43,73,0.08);
}

.export-map-card {
  overflow: hidden;
  padding: 24px;
}

.export-intervention-zone {
  margin-bottom: 22px;
  padding: 20px;
  border: 1px solid rgba(29,131,193,0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, #f3faff, #fff);
}

.export-intervention-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.export-intervention-title span {
  color: var(--alma-blue-dark);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
}

.export-intervention-title strong {
  flex: 0 0 auto;
  color: var(--alma-blue);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.export-country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.export-country-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid rgba(29,131,193,0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.export-map-card .export-map-wrap {
  position: relative;
  max-width: none;
  width: 100%;
  aspect-ratio: 5 / 3;
  margin: 0;
  border: 1px solid rgba(121, 215, 255, 0.18);
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 44%, rgba(41, 169, 232, 0.24), transparent 32%),
    linear-gradient(135deg, #062b4a 0%, #0a3e66 52%, #071f36 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 42px rgba(6, 43, 74, 0.18);
  isolation: isolate;
}

.export-map-card .export-map-wrap::before,
.export-map-card .export-map-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.export-map-card .export-map-wrap::before {
  z-index: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 44px 44px;
}

.export-map-card .export-map-wrap::after {
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  box-shadow: inset 0 -70px 90px rgba(3, 20, 35, 0.2);
}

.export-map-panel-head {
  position: absolute;
  z-index: 5;
  top: 16px;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.export-map-panel-head span,
.export-map-panel-head strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.export-map-panel-head strong {
  color: #ffcf8d;
}

.export-map-panel-head i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #59d5ff;
  box-shadow: 0 0 0 5px rgba(89, 213, 255, 0.13), 0 0 18px rgba(89, 213, 255, 0.7);
  animation: exportMapStatus 1.8s ease-in-out infinite;
}

@keyframes exportMapStatus {
  50% { opacity: 0.55; transform: scale(0.8); }
}

.export-network-map {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.export-map-land {
  opacity: 0.23;
  filter: brightness(0) invert(1);
}

.export-map-routes {
  pointer-events: none;
}

.export-map-routes path {
  fill: none;
  stroke: rgba(121, 215, 255, 0.42);
  stroke-width: 1.15;
  stroke-dasharray: 3.2 2.4;
  vector-effect: non-scaling-stroke;
  animation: exportRouteFlow 5s linear infinite;
  animation-delay: var(--route-delay, 0s);
}

@keyframes exportRouteFlow {
  to { stroke-dashoffset: -22; }
}

.export-map-node {
  color: var(--color, #29a9e8);
  cursor: pointer;
  outline: none;
}

.export-map-node-pulse {
  fill: var(--color, #29a9e8);
  opacity: 0.18;
  transform-box: fill-box;
  transform-origin: center;
  animation: exportNodePulse 2.4s ease-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes exportNodePulse {
  0% { opacity: 0.32; transform: scale(0.55); }
  75%, 100% { opacity: 0; transform: scale(1.55); }
}

.export-map-node-core {
  fill: var(--color, #29a9e8);
  stroke: #fff;
  stroke-width: 2.2;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 5px var(--color, #29a9e8));
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.2s ease;
}

.export-map-node.is-hq .export-map-node-core {
  stroke-width: 2.8;
  filter: drop-shadow(0 0 8px rgba(255, 173, 66, 0.95));
}

.export-map-node:hover .export-map-node-core,
.export-map-node:focus-visible .export-map-node-core {
  transform: scale(1.38);
}

.export-map-node:focus-visible .export-map-node-core {
  stroke: #ffda9e;
  stroke-width: 4;
}

.export-map-node-tooltip {
  opacity: 0;
  pointer-events: none;
  transform-box: fill-box;
  transform-origin: center bottom;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.export-map-node-tooltip rect {
  fill: rgba(255, 255, 255, 0.97);
  stroke: rgba(121, 215, 255, 0.4);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 5px 8px rgba(2, 18, 31, 0.34));
}

.export-map-node-tooltip text {
  fill: #0b2f58;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
}

.export-map-node:hover .export-map-node-tooltip,
.export-map-node:focus-visible .export-map-node-tooltip {
  opacity: 1;
}

.export-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  padding-top: 18px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
}

.export-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.export-map-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--legend);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--legend) 14%, transparent);
}

.export-page .export-regions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.export-summary-card {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  height: 100%;
  min-height: 0;
}

.export-summary-card .summary-kicker {
  color: var(--alma-blue);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.export-summary-card h3 {
  margin: 10px 0 12px;
  color: var(--alma-blue-dark);
  font-size: 1.48rem;
  line-height: 1.24;
}

.export-summary-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.62;
  font-size: 0.9rem;
}

.export-summary-card .export-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  border: 1px solid rgba(10,43,73,0.08);
  border-radius: 8px;
  overflow: hidden;
}

.export-summary-card .exp-stat {
  min-height: 88px;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-right: 1px solid rgba(10,43,73,0.08);
}

.export-summary-card .exp-stat:last-child {
  border-right: 0;
}

.export-summary-card .exp-num {
  font-family: var(--font-heading);
  font-size: 1.78rem;
  line-height: 1;
  color: var(--alma-blue);
}

.export-summary-card .exp-lbl {
  margin-top: 7px;
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.35;
}

.export-regions-section {
  background: var(--bg-alt);
  padding-top: 84px;
  padding-bottom: 84px;
}

.export-regions-section .section-head {
  margin-bottom: 34px;
}

.export-regions {
  gap: 28px;
}

.export-regions .region-card {
  min-height: 360px;
  padding: 34px 30px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.96)),
    var(--rc);
  border: 1px solid rgba(10,43,73,0.08);
  box-shadow: 0 16px 42px rgba(10,43,73,0.06);
  position: relative;
  overflow: hidden;
}

.export-regions .region-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent, var(--alma-blue));
}

.export-regions .region-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(10,43,73,0.12);
}

.export-regions .region-ico {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent, var(--alma-blue));
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--accent, var(--alma-blue)) 22%, transparent);
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 900;
}

.export-regions .region-title {
  margin-bottom: 16px;
  color: var(--alma-blue-dark);
  font-size: 1.38rem;
}

.export-regions .region-pays {
  gap: 8px;
  margin-bottom: 18px;
}

.export-regions .region-pays span {
  border-radius: 6px;
  background: #fff;
  color: var(--accent, var(--alma-blue));
  border: 1px solid color-mix(in srgb, var(--accent, var(--alma-blue)) 18%, transparent);
  font-size: 0.77rem;
  padding: 7px 10px;
}

.export-regions .region-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.export-page .export-cta {
  padding: 70px 20px;
  background: #fff;
}

.export-page .export-cta-inner {
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(10,43,73,0.08);
  box-shadow: 0 18px 55px rgba(10,43,73,0.08);
}

.export-page .export-cta-inner h2 {
  color: var(--alma-blue-dark) !important;
  font-size: 2.05rem;
}

.export-page .export-cta-inner p {
  color: var(--text-muted) !important;
  font-size: 0.98rem;
}

.export-page .export-cta-inner .btn {
  min-width: 190px;
  justify-content: center;
  background: var(--alma-blue);
  color: #fff;
  border-color: var(--alma-blue);
}

.export-page .export-cta-inner .btn:hover {
  background: var(--alma-blue-dark);
  border-color: var(--alma-blue-dark);
  color: #fff;
}

@media (max-width: 1024px) {
  .export-map-layout {
    grid-template-columns: 1fr;
  }

  .export-summary-card {
    padding: 28px;
  }

  .export-regions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .export-page .export-hero {
    padding: 48px 18px 34px;
  }

  .export-page .export-hero h1 {
    font-size: 2.65rem;
  }

  .export-map-section,
  .export-regions-section {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .export-split-head {
    gap: 14px;
  }

  .export-map-card {
    padding: 14px;
  }

  .export-intervention-zone {
    padding: 16px;
  }

  .export-intervention-title {
    align-items: flex-start;
  }

  .export-country-list {
    gap: 7px;
  }

  .export-country-list span {
    font-size: 0.74rem;
  }

  .export-map-card .export-map-wrap {
    aspect-ratio: 4 / 3;
  }

  .export-summary-card .export-stats-strip {
    grid-template-columns: 1fr;
  }

  .export-summary-card .exp-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(10,43,73,0.08);
  }

  .export-summary-card .exp-stat:last-child {
    border-bottom: 0;
  }

  .export-page .export-cta-inner {
    padding: 34px 24px;
    align-items: flex-start;
  }
}

.export-page .crumbs {
  display: none !important;
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 22px;
  z-index: 9998;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}

.cookie-consent.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  border: 1px solid rgba(10,43,73,0.1);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(10,43,73,0.18);
}

.cookie-consent-copy {
  max-width: 720px;
}

.cookie-consent-copy h3 {
  margin: 0 0 6px;
  color: var(--alma-blue-dark);
  font-size: 1.15rem;
  line-height: 1.25;
}

.cookie-consent-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-consent-actions .btn {
  min-width: 110px;
  justify-content: center;
}

.cookie-consent-actions .cookie-reject {
  background: #fff;
}

@media (max-width: 720px) {
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-consent-inner {
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
  }

  .cookie-consent-actions {
    width: 100%;
  }

.cookie-consent-actions .btn {
    flex: 1;
  }
}

/* ============================================================
   SERVICES PAGE - activities showcase
   ============================================================ */
.services-page {
  background:
    radial-gradient(circle at 8% 24%, rgba(29,131,193,0.08), transparent 26%),
    linear-gradient(180deg, #fff 0%, #F7FAFD 100%);
}

.services-showcase-section {
  padding: 72px 20px 78px;
}

.services-showcase-wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 294px minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.services-showcase-intro {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  padding: 44px 28px 32px;
  border-radius: 8px 0 0 8px;
  background:
    radial-gradient(circle at 9% 82%, rgba(29,131,193,0.18), transparent 24%),
    linear-gradient(180deg, #FFFFFF 0%, #F2F9FE 100%);
  border: 1px solid rgba(10,43,73,0.08);
  box-shadow: 0 18px 55px rgba(10,43,73,0.08);
}

.services-showcase-intro .eyebrow {
  color: var(--alma-blue);
  margin-bottom: 14px;
}

.services-page .services-showcase-intro h1 {
  margin: 0;
  color: #071230;
  font-size: clamp(1.68rem, 2.05vw, 2.12rem) !important;
  line-height: 1.16 !important;
  letter-spacing: 0;
  font-weight: 800;
  max-width: 238px;
  overflow-wrap: normal;
}

.services-intro-line {
  display: block;
  width: 44px;
  height: 3px;
  margin: 28px 0 24px;
  background: var(--alma-blue);
  border-radius: 999px;
}

.services-showcase-intro p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.8;
}

.services-intro-btn {
  margin-top: 34px;
  width: 100%;
  max-width: 242px;
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(29,131,193,0.22);
}

.services-water-visual {
  position: absolute;
  left: -62px;
  bottom: -50px;
  width: 245px;
  height: 190px;
  pointer-events: none;
  opacity: 0.72;
}

.services-water-visual::before {
  content: "";
  position: absolute;
  left: 70px;
  top: 10px;
  width: 18px;
  height: 18px;
  border-radius: 0 50% 50% 50%;
  transform: rotate(45deg);
  background: radial-gradient(circle at 32% 30%, #fff 0 18%, rgba(29,131,193,0.45) 48%, rgba(29,131,193,0.12) 100%);
  box-shadow: 0 20px 0 rgba(29,131,193,0.18), 0 42px 0 rgba(29,131,193,0.08);
}

.services-water-visual span {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(29,131,193,0.14);
  transform: rotateX(68deg);
}

.services-water-visual span:nth-child(1) {
  width: 130px;
  height: 78px;
  left: 8px;
  top: 74px;
}

.services-water-visual span:nth-child(2) {
  width: 190px;
  height: 112px;
  left: -22px;
  top: 56px;
}

.services-water-visual span:nth-child(3) {
  width: 250px;
  height: 148px;
  left: -54px;
  top: 36px;
}

.services-activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.svc-activity-card {
  position: relative;
  overflow: hidden;
  min-height: 252px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(10,43,73,0.08);
  box-shadow: 0 16px 45px rgba(10,43,73,0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.svc-activity-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--svc-color) 38%, rgba(10,43,73,0.08));
  box-shadow: 0 25px 65px rgba(10,43,73,0.15);
}

.svc-card-link {
  position: absolute;
  inset: 0;
  z-index: 8;
  text-indent: -9999px;
}

.svc-activity-photo {
  position: relative;
  min-height: 138px;
  background:
    linear-gradient(180deg, rgba(7,18,48,0.04), rgba(7,18,48,0.22)),
    var(--svc-image) center / cover no-repeat;
  overflow: hidden;
}

.svc-activity-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--svc-color) 24%, transparent), transparent 58%),
    linear-gradient(180deg, transparent 46%, rgba(255,255,255,0.18));
  mix-blend-mode: screen;
}

.svc-activity-icon {
  position: absolute;
  z-index: 2;
  left: 18px;
  top: 18px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--svc-color);
  border: 2px solid rgba(255,255,255,0.86);
  border-radius: 13px;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--svc-color) 30%, transparent);
}

.svc-activity-body {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.svc-color-line {
  width: 34px;
  height: 3px;
  margin-bottom: 13px;
  background: var(--svc-color);
  border-radius: 999px;
}

.svc-activity-body h3 {
  margin: 0 0 8px;
  color: #071230;
  font-size: 1.11rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.svc-activity-body p {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.svc-discover {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--svc-color);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
}

.svc-discover span {
  transition: transform 0.25s ease;
}

.svc-activity-card:hover .svc-discover span {
  transform: translateX(4px);
}

.services-page .work-process-grid .wp-icon {
  display: none;
}

@media (max-width: 1100px) {
  .services-showcase-wrap {
    grid-template-columns: 1fr;
  }

  .services-showcase-intro {
    min-height: auto;
    border-radius: 8px;
  }

  .services-activity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .services-showcase-section {
    padding: 46px 16px 56px;
  }

  .services-showcase-intro {
    padding: 32px 22px 120px;
  }

  .services-activity-grid {
    grid-template-columns: 1fr;
  }

  .svc-activity-card {
    min-height: 0;
  }
}

/* ============================================================
   WATER DROP CURSOR
   ============================================================ */
@media (pointer: fine) {
  body.water-cursor-enabled,
  body.water-cursor-enabled a,
  body.water-cursor-enabled button,
  body.water-cursor-enabled input,
  body.water-cursor-enabled textarea,
  body.water-cursor-enabled select {
    cursor: none !important;
  }
}

.water-drop-cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 0 56% 56% 56%;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 999999;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.92) 0 14%, rgba(255,255,255,0.28) 15% 32%, transparent 34%),
    linear-gradient(135deg, rgba(31,168,224,0.82), rgba(29,131,193,0.18));
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 8px 22px rgba(29,131,193,0.22), inset 0 0 12px rgba(255,255,255,0.26);
  backdrop-filter: blur(1px);
  transition: width 0.22s ease, height 0.22s ease, opacity 0.18s ease, box-shadow 0.22s ease;
}

.water-drop-cursor.visible {
  opacity: 1;
}

.water-drop-cursor.hover {
  width: 34px;
  height: 34px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.9) 0 12%, transparent 34%),
    linear-gradient(135deg, rgba(31,168,224,0.32), rgba(29,131,193,0.08));
  box-shadow: 0 12px 30px rgba(29,131,193,0.26), inset 0 0 0 2px rgba(29,131,193,0.22);
}

.water-ripple {
  position: fixed;
  width: 10px;
  height: 10px;
  left: 0;
  top: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%) scale(0);
  border: 1.5px solid rgba(29,131,193,0.28);
  background: radial-gradient(circle, rgba(31,168,224,0.18) 0%, rgba(31,168,224,0.08) 42%, transparent 72%);
  animation: almaWaterRipple 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes almaWaterRipple {
  0% { opacity: 0.9; transform: translate(-50%, -50%) scale(0.2); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(13); }
}

/* ============================================================
   MOBILE RESPONSIVE ADJUSTMENTS (ALMA Flow & Header)
   ============================================================ */
@media (max-width: 768px) {
  /* Prevent header crowding by hiding the contact button on mobile */
  .alma-header .nav-right {
    display: none !important;
  }
  
  /* Prevent hero slider heading overflow */
  .aflow-landing-copy h1 {
    font-size: 30px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    margin-bottom: 14px !important;
  }
  
  /* Center-align text content on mobile for stacked layout */
  .aflow-landing-copy p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
  
  .aflow-actions {
    justify-content: center !important;
    margin-top: 20px !important;
  }
  
  /* Shrink hero visual container to avoid massive empty space */
  .aflow-page .aflow-landing-visual {
    min-height: 240px !important;
    height: auto !important;
    aspect-ratio: 16 / 10 !important;
    margin-top: 24px !important;
  }
  
  /* Add breathing room to the KPI block on mobile edges */
  .aflow-page #aflow-kpi-slider.aflow-kpis-clean {
    margin: 28px 16px 0 !important;
    width: calc(100% - 32px) !important;
  }
  
  /* Tighten paddings in study section on mobile */
  .aflow-page .aflow-study-process .aflow-study-inner {
    padding-top: 48px !important;
  }
  
  .aflow-page .aflow-study-process {
    padding-bottom: 54px !important;
  }
}

@media (max-width: 480px) {
  /* Stack hero actions on small screens */
  .aflow-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 320px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .aflow-actions .btn {
    width: 100% !important;
    text-align: center !important;
  }
}

/* ============================================================
   SERVICES MEGA MENU - visual activities dropdown
   ============================================================ */
.alma-header .alma-nav {
  position: relative !important;
}

.industrie-nav-menu .service-mega-trigger {
  height: 100%;
  display: flex;
  align-items: center;
}

.industrie-nav-menu .service-mega-trigger > .nav-link {
  text-decoration: none;
}

.industrie-nav-menu .service-mega-trigger:hover > .nav-link,
.industrie-nav-menu .service-mega-trigger:focus-within > .nav-link {
  color: var(--alma-blue) !important;
}

.industrie-nav-menu .service-mega-trigger:hover > .nav-link::before,
.industrie-nav-menu .service-mega-trigger:focus-within > .nav-link::before {
  transform: scaleX(1);
}

.industrie-nav-menu .service-mega-trigger:hover .caret,
.industrie-nav-menu .service-mega-trigger:focus-within .caret {
  transform: translateY(-1px) rotate(180deg);
  color: var(--alma-blue);
}

.services-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: min(1180px, calc(100vw - 32px));
  min-height: 500px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(7,18,48,0.08);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(7,18,48,0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 18px) scale(0.985);
  transform-origin: top center;
  transition: opacity 0.36s ease, visibility 0.36s ease, transform 0.42s cubic-bezier(.16,.72,.24,1);
  z-index: 1200;
}

.service-mega-trigger:hover .services-mega-menu,
.service-mega-trigger:focus-within .services-mega-menu,
.service-mega-trigger.is-open .services-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.services-mega-intro {
  position: relative;
  min-height: 456px;
  padding: 28px 24px 152px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 78%, rgba(29,131,193,0.17), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
  border-right: 1px solid rgba(7,18,48,0.08);
}

.services-mega-intro .eyebrow {
  margin-bottom: 12px;
  color: var(--alma-blue);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.services-mega-intro h3 {
  max-width: 250px;
  margin: 0;
  color: #071230;
  font-size: 1.58rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
}

.services-mega-intro .services-intro-line {
  display: block;
  width: 42px;
  height: 3px;
  margin: 26px 0 24px;
  background: var(--alma-blue);
  border-radius: 999px;
}

.services-mega-intro p {
  max-width: 245px;
  margin: 0 0 28px;
  color: #4f5d70;
  font-size: 0.93rem;
  line-height: 1.75;
}

.services-mega-intro .btn {
  position: relative;
  z-index: 2;
  border-radius: 999px;
  padding: 13px 22px !important;
  font-size: 0.82rem;
  box-shadow: 0 16px 32px rgba(29,131,193,0.22);
}

.services-mega-intro .services-water-visual {
  left: -54px;
  bottom: -58px;
  width: 230px;
  height: 185px;
  opacity: 0.7;
}

.services-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 22px;
  align-content: start;
}

.svc-mega-card {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(7,18,48,0.08);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(7,18,48,0.11);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.34s ease, opacity 0.34s ease, box-shadow 0.34s ease;
}

.service-mega-trigger:hover .svc-mega-card,
.service-mega-trigger:focus-within .svc-mega-card {
  opacity: 1;
  transform: translateY(0);
}

.service-mega-trigger:hover .svc-mega-card:nth-child(1) { transition-delay: 0.05s; }
.service-mega-trigger:hover .svc-mega-card:nth-child(2) { transition-delay: 0.09s; }
.service-mega-trigger:hover .svc-mega-card:nth-child(3) { transition-delay: 0.13s; }
.service-mega-trigger:hover .svc-mega-card:nth-child(4) { transition-delay: 0.17s; }
.service-mega-trigger:hover .svc-mega-card:nth-child(5) { transition-delay: 0.21s; }

.svc-mega-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 46px rgba(7,18,48,0.16);
}

.svc-mega-photo {
  position: relative;
  min-height: 110px;
  background: var(--svc-image) center / cover no-repeat;
  overflow: hidden;
}

.svc-mega-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--svc-color) 24%, transparent), transparent 62%);
}

.svc-mega-icon {
  position: absolute;
  z-index: 2;
  left: 16px;
  top: 14px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--svc-color);
  border: 2px solid rgba(255,255,255,0.82);
  border-radius: 13px;
  box-shadow: 0 12px 24px color-mix(in srgb, var(--svc-color) 32%, transparent);
}

.svc-mega-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 18px 18px;
}

.svc-mega-body h4 {
  margin: 0 0 7px;
  color: #071230;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
}

.svc-mega-body p {
  margin: 0 0 12px;
  color: #566174;
  font-size: 0.82rem;
  line-height: 1.5;
}

.svc-mega-body .svc-discover {
  margin-top: auto;
  font-size: 0.81rem;
}

.page-template-page-almaflow .service-mega-trigger:hover > .nav-link,
.page-template-page-almaflow .service-mega-trigger:focus-within > .nav-link,
.page-template-page-almaflow .service-mega-trigger:hover .caret,
.page-template-page-almaflow .service-mega-trigger:focus-within .caret {
  color: #248346 !important;
}

.page-template-page-almaflow .service-mega-trigger:hover > .nav-link::before,
.page-template-page-almaflow .service-mega-trigger:focus-within > .nav-link::before {
  background: #35a957 !important;
}

/* ALMAflow refinements: header, hero actions, product arrow, contact and stats */
.page-template-page-almaflow .alma-nav .logo img {
  height: 62px !important;
  max-width: min(310px, 32vw) !important;
}

.page-template-page-almaflow .offcanvas .oc-logo img {
  height: 48px !important;
  max-width: 270px !important;
}

.aflow-page .aflow-actions {
  margin-top: 42px !important;
}

.aflow-page .aflow-model-product-card a {
  color: #fff !important;
  font-size: 0 !important;
  text-decoration: none !important;
}

.aflow-page .aflow-model-product-card a::before {
  content: "";
  width: 14px;
  height: 14px;
  display: block;
  background-color: #fff;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 17 17 7M9 7h8v8' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 17 17 7M9 7h8v8' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-inner {
  transform: translateX(clamp(18px, 3vw, 48px));
}

.aflow-page .aflow-model-stats {
  overflow: hidden;
}

.aflow-page .aflow-model-stat {
  opacity: 0;
  transform: translateY(18px);
  animation: aflowStatRise 0.68s ease forwards;
}

.aflow-page .aflow-model-stat:nth-child(2) {
  animation-delay: 0.12s;
}

.aflow-page .aflow-model-stat:nth-child(3) {
  animation-delay: 0.24s;
}

.aflow-page .aflow-model-stat > span {
  transition: transform 0.28s ease, color 0.28s ease;
}

.aflow-page .aflow-model-stat:hover > span {
  color: #35a957;
  transform: scale(1.08) rotate(-3deg);
}

@keyframes aflowStatRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .aflow-page .aflow-almaflow-contact .aflow-contact-inner {
    transform: none;
  }
}

@media (max-width: 768px) {
  .page-template-page-almaflow .alma-nav .logo img {
    height: 54px !important;
    max-width: min(260px, 58vw) !important;
  }

  .aflow-page .aflow-actions {
    margin-top: 28px !important;
  }
}

@media (max-width: 1180px) {
  .services-mega-menu {
    grid-template-columns: 270px 1fr;
  }

  .services-mega-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .services-mega-menu {
    display: none;
  }
}

/* Make the water cursor lighter and more transparent */
.water-drop-cursor {
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.78) 0 14%, rgba(255,255,255,0.2) 15% 32%, transparent 34%),
    linear-gradient(135deg, rgba(31,168,224,0.46), rgba(29,131,193,0.1));
  border-color: rgba(255,255,255,0.54);
  box-shadow: 0 8px 22px rgba(29,131,193,0.14), inset 0 0 12px rgba(255,255,255,0.18);
}

.water-drop-cursor.visible {
  opacity: 0.62;
}

.water-drop-cursor.hover {
  opacity: 0.48;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.72) 0 12%, transparent 34%),
    linear-gradient(135deg, rgba(31,168,224,0.22), rgba(29,131,193,0.06));
}

/* Final cursor tuning: softer and no hover enlargement */
.water-drop-cursor.visible {
  opacity: 0.34 !important;
}

.water-drop-cursor.hover {
  width: 22px !important;
  height: 22px !important;
  opacity: 0.28 !important;
  box-shadow: 0 6px 16px rgba(29,131,193,0.1), inset 0 0 10px rgba(255,255,255,0.14) !important;
}

/* Services page without intro column */
.services-page .services-showcase-wrap {
  grid-template-columns: 1fr !important;
}

.services-page .services-activity-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .services-page .services-activity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-page .services-activity-grid {
    grid-template-columns: 1fr;
  }
}

/* About page video hero */
.about-video-hero {
  position: relative;
  min-height: clamp(420px, 64vh, 680px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #071230;
  border-bottom: 1px solid rgba(7,18,48,0.08);
}

.about-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-video-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,18,48,0.72) 0%, rgba(7,18,48,0.36) 42%, rgba(7,18,48,0.1) 100%),
    linear-gradient(180deg, rgba(7,18,48,0.12) 0%, rgba(7,18,48,0.58) 100%);
}

.about-video-content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 clamp(46px, 7vw, 92px);
  color: #fff;
}

.about-video-content .eyebrow {
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 8px 22px rgba(0,0,0,0.28);
}

.about-video-content h1 {
  max-width: 830px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 82px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 14px 34px rgba(0,0,0,0.32);
}

.about-video-content p {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255,255,255,0.86);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.65;
  text-shadow: 0 10px 24px rgba(0,0,0,0.28);
}

.about-video-toggle {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 42px);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.about-video-toggle:hover {
  background: rgba(255,255,255,0.24);
  transform: translateY(-2px);
}

/* Qui sommes-nous: activities directly under video */
.about-under-video {
  padding: 28px 20px 76px;
  background: #fff;
}

.about-activities-head {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

.about-activities-head .eyebrow {
  color: var(--alma-blue) !important;
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  line-height: 1.2;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 800;
  margin-bottom: 14px;
}

.about-activities-head h2 {
  margin: 0 0 12px;
  color: #020817;
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
}

.about-activities-head p {
  max-width: 980px;
  margin: 0 auto;
  color: #1b1f2a;
  font-size: clamp(1rem, 1.6vw, 1.34rem);
  line-height: 1.25;
}

.about-activities-grid {
  max-width: 1160px;
  margin: 0 auto;
}

@media (min-width: 901px) {
  .about-activities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

.about-inline-stats {
  max-width: 1160px;
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 5vw, 76px);
  align-items: start;
}

.about-stat {
  text-align: left;
}

.about-stat-num {
  display: inline-flex;
  align-items: baseline;
  color: transparent;
  -webkit-text-stroke: 2px #69a6ff;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  font-family: var(--font-heading);
  font-size: clamp(3.1rem, 6vw, 4.55rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.about-stat-line {
  width: 78px;
  height: 1px;
  margin: 16px 0 14px;
  background: rgba(7,18,48,0.12);
}

.about-stat-label {
  color: #6f7788;
  font-family: var(--font-heading);
  font-size: 0.94rem;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .about-inline-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .about-under-video {
    padding: 24px 16px 56px;
  }

  .about-inline-stats {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-stat {
    text-align: center;
  }

  .about-stat-line {
    margin-right: auto;
    margin-left: auto;
  }
}

.about-video-toggle .play-icon {
  display: none;
  font-size: 16px;
  transform: translateX(1px);
}

.about-video-toggle.is-paused .pause-icon {
  display: none;
}

.about-video-toggle.is-paused .play-icon {
  display: block;
}

@media (max-width: 720px) {
  .about-video-hero {
    min-height: 440px;
  }

  .about-video-content {
    width: min(100% - 28px, 560px);
  }

  .about-video-toggle {
    width: 46px;
    height: 46px;
  }
}

/* Services page: slightly larger cards after removing the intro column */
.services-page .svc-activity-card {
  min-height: 372px !important;
}

.services-page .svc-activity-photo {
  min-height: 170px !important;
}

.services-page .svc-activity-body {
  padding: 28px 28px 30px !important;
}

.services-page .svc-activity-body h3 {
  font-size: 1.32rem !important;
}

.services-page .svc-activity-body p {
  font-size: 1.03rem !important;
  line-height: 1.7 !important;
}

.services-page .svc-activity-icon {
  width: 62px !important;
  height: 62px !important;
}

.services-page .svc-activity-icon svg {
  width: 34px !important;
  height: 34px !important;
}

/* Services page final structure: title + clean 6-product grid */
.services-page .services-page-hero {
  padding: 72px 20px 28px !important;
  background:
    linear-gradient(180deg, rgba(244,250,255,0.92), rgba(255,255,255,1)),
    radial-gradient(circle at 8% 15%, rgba(29,131,193,0.08), transparent 28%);
}

.services-page .services-page-head {
  max-width: 960px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.services-page .services-page-head .eyebrow {
  color: var(--alma-blue) !important;
}

.services-page .services-page-head h1 {
  margin: 0 !important;
  color: #071230 !important;
  font-size: clamp(42px, 5vw, 72px) !important;
  line-height: 1.08 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.services-page .services-page-head p {
  max-width: 760px !important;
  margin: 22px auto 0 !important;
  color: #556070 !important;
  font-size: 1.08rem !important;
  line-height: 1.72 !important;
}

.services-page .services-showcase-section {
  padding: 42px 22px 86px !important;
  background: #fff !important;
}

.services-page .services-products-layout {
  width: min(1320px, 100%) !important;
  max-width: 1320px !important;
  margin: 0 auto !important;
  display: block !important;
}

.services-page .services-activity-grid {
  width: 100% !important;
  max-width: none !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 30px !important;
  align-items: stretch !important;
}

.services-page .svc-activity-card {
  min-height: 410px !important;
  border-radius: 8px !important;
  box-shadow: 0 18px 48px rgba(7,18,48,0.1) !important;
}

.services-page .svc-activity-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 26px 60px rgba(7,18,48,0.16) !important;
}

.services-page .svc-activity-photo {
  min-height: 190px !important;
}

.services-page .svc-activity-body {
  padding: 28px 30px 30px !important;
}

.services-page .svc-activity-body h3 {
  font-size: 1.36rem !important;
  line-height: 1.2 !important;
}

.services-page .svc-activity-body p {
  font-size: 1.02rem !important;
  line-height: 1.62 !important;
}

.services-page .svc-discover {
  font-size: 0.94rem !important;
}

.services-page .section[style*="background:var(--bg-alt)"] {
  padding-top: 76px !important;
}

.services-page .work-process-grid {
  margin-top: 46px !important;
}

.services-page .wp-icon {
  display: none !important;
}

@media (max-width: 1100px) {
  .services-page .services-activity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .services-page .services-page-hero {
    padding: 48px 16px 20px !important;
  }

  .services-page .services-activity-grid {
    grid-template-columns: 1fr !important;
  }

  .services-page .svc-activity-card {
    min-height: 0 !important;
  }
}

/* Final services dropdown correction: compact visible menu + water background */
.services-mega-menu {
  min-height: 0 !important;
  max-height: calc(100vh - 112px) !important;
  overflow-y: auto !important;
  grid-template-columns: 285px 1fr !important;
  gap: 22px !important;
  padding: 18px !important;
}

.services-mega-menu::-webkit-scrollbar {
  width: 6px;
}

.services-mega-menu::-webkit-scrollbar-thumb {
  background: rgba(29,131,193,0.28);
  border-radius: 999px;
}

.services-mega-intro {
  min-height: 398px !important;
  padding: 26px 24px 138px !important;
  background:
    radial-gradient(circle at 18% 78%, rgba(29,131,193,0.2), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f4faff 62%, #eef8ff 100%) !important;
}

.services-mega-intro::before {
  content: "";
  position: absolute;
  left: -58px;
  bottom: -48px;
  width: 260px;
  height: 180px;
  opacity: 0.82;
  background:
    radial-gradient(ellipse at 42% 72%, transparent 0 12%, rgba(29,131,193,0.17) 13% 14%, transparent 16% 25%, rgba(29,131,193,0.13) 26% 27%, transparent 29% 38%, rgba(29,131,193,0.1) 39% 40%, transparent 42%),
    radial-gradient(circle at 44% 38%, rgba(255,255,255,0.98) 0 10px, rgba(154,211,239,0.72) 11px 19px, rgba(29,131,193,0.22) 20px 21px, transparent 22px),
    radial-gradient(circle at 30% 55%, rgba(255,255,255,0.94) 0 7px, rgba(154,211,239,0.58) 8px 13px, transparent 14px);
  filter: blur(0.1px);
  pointer-events: none;
}

.services-mega-intro::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 18px;
  width: 82px;
  height: 82px;
  opacity: 0.28;
  background-image: radial-gradient(rgba(29,131,193,0.38) 1px, transparent 1px);
  background-size: 8px 8px;
  pointer-events: none;
}

.services-mega-intro .services-water-visual {
  display: none !important;
}

.services-mega-intro h3 {
  font-size: 1.44rem !important;
}

.services-mega-intro p {
  font-size: 0.88rem !important;
  line-height: 1.66 !important;
}

.services-mega-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.svc-mega-card {
  min-height: 182px !important;
}

.svc-mega-photo {
  min-height: 82px !important;
}

.svc-mega-icon {
  width: 42px !important;
  height: 42px !important;
  left: 13px !important;
  top: 12px !important;
}

.svc-mega-body {
  padding: 12px 15px 14px !important;
}

.svc-mega-body h4 {
  font-size: 0.91rem !important;
  margin-bottom: 5px !important;
}

.svc-mega-body p {
  font-size: 0.75rem !important;
  line-height: 1.42 !important;
  margin-bottom: 8px !important;
}

.svc-mega-body .svc-discover {
  font-size: 0.76rem !important;
}

@media (max-width: 1180px) {
  .services-mega-menu {
    grid-template-columns: 255px 1fr !important;
    width: calc(100vw - 24px) !important;
  }

  .services-mega-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* Services dropdown: no internal scroll, compact layout, closer water-ripple artwork */
.services-mega-menu {
  width: min(1260px, calc(100vw - 28px)) !important;
  max-height: none !important;
  overflow: visible !important;
  grid-template-columns: 290px 1fr !important;
  gap: 16px !important;
  padding: 14px !important;
}

.services-mega-menu::-webkit-scrollbar {
  display: none !important;
}

.services-mega-intro {
  min-height: 344px !important;
  padding: 20px 22px 116px !important;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 55%, #eff8ff 100%) !important;
}

.services-mega-intro h3 {
  max-width: 236px !important;
  font-size: 1.28rem !important;
  line-height: 1.22 !important;
}

.services-mega-intro .services-intro-line {
  margin: 18px 0 18px !important;
}

.services-mega-intro p {
  max-width: 238px !important;
  margin-bottom: 18px !important;
  font-size: 0.8rem !important;
  line-height: 1.56 !important;
}

.services-mega-intro .btn {
  padding: 11px 18px !important;
  font-size: 0.72rem !important;
}

.services-mega-intro::before {
  left: -76px !important;
  bottom: -68px !important;
  width: 360px !important;
  height: 230px !important;
  opacity: 0.78 !important;
  background:
    radial-gradient(ellipse at 45% 72%, transparent 0 14%, rgba(103,177,219,0.2) 15% 16%, transparent 18% 27%, rgba(103,177,219,0.16) 28% 29%, transparent 31% 40%, rgba(103,177,219,0.11) 41% 42%, transparent 44% 54%, rgba(103,177,219,0.07) 55% 56%, transparent 58%),
    radial-gradient(ellipse at 45% 72%, rgba(175,219,243,0.22), transparent 54%),
    radial-gradient(circle at 43% 36%, rgba(255,255,255,0.98) 0 9px, rgba(187,224,244,0.88) 10px 18px, rgba(103,177,219,0.2) 19px 20px, transparent 21px),
    radial-gradient(ellipse at 43% 51%, rgba(107,183,224,0.26) 0 2px, transparent 3px),
    linear-gradient(180deg, transparent 0 38%, rgba(143,201,232,0.2) 39% 41%, transparent 43%),
    linear-gradient(180deg, rgba(235,247,254,0.36), rgba(235,247,254,0.04)) !important;
  filter: blur(0.35px) !important;
}

.services-mega-intro::after {
  right: 12px !important;
  bottom: 24px !important;
  width: 96px !important;
  height: 112px !important;
  opacity: 0.16 !important;
  background-image: radial-gradient(rgba(29,131,193,0.46) 1px, transparent 1.4px) !important;
  background-size: 8px 8px !important;
}

.services-mega-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.svc-mega-card {
  min-height: 154px !important;
}

.svc-mega-photo {
  min-height: 62px !important;
}

.svc-mega-icon {
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px !important;
  left: 12px !important;
  top: 10px !important;
}

.svc-mega-icon svg {
  width: 21px !important;
  height: 21px !important;
}

.svc-mega-body {
  padding: 9px 14px 11px !important;
}

.svc-mega-body .svc-color-line {
  width: 30px !important;
  height: 3px !important;
  margin-bottom: 7px !important;
}

.svc-mega-body h4 {
  font-size: 0.82rem !important;
  line-height: 1.18 !important;
  margin-bottom: 4px !important;
}

.svc-mega-body p {
  font-size: 0.68rem !important;
  line-height: 1.34 !important;
  margin-bottom: 6px !important;
}

.svc-mega-body .svc-discover {
  font-size: 0.68rem !important;
}

/* Services mega-menu: larger cards to fill the dropdown height */
.services-mega-menu {
  grid-template-columns: 300px 1fr !important;
  gap: 22px !important;
  padding: 18px !important;
}

.services-mega-intro {
  min-height: 492px !important;
  padding: 28px 26px 150px !important;
}

.services-mega-intro h3 {
  font-size: 1.46rem !important;
  line-height: 1.2 !important;
}

.services-mega-intro p {
  font-size: 0.92rem !important;
  line-height: 1.7 !important;
}

.services-mega-intro .btn {
  padding: 13px 24px !important;
  font-size: 0.82rem !important;
}

.services-mega-grid {
  gap: 22px !important;
}

.svc-mega-card {
  min-height: 235px !important;
}

.svc-mega-photo {
  min-height: 104px !important;
}

.svc-mega-icon {
  width: 48px !important;
  height: 48px !important;
  border-radius: 13px !important;
  left: 16px !important;
  top: 14px !important;
}

.svc-mega-icon svg {
  width: 26px !important;
  height: 26px !important;
}

.svc-mega-body {
  padding: 16px 18px 18px !important;
}

.svc-mega-body .svc-color-line {
  width: 38px !important;
  margin-bottom: 12px !important;
}

.svc-mega-body h4 {
  font-size: 1.02rem !important;
  line-height: 1.24 !important;
  margin-bottom: 7px !important;
}

.svc-mega-body p {
  font-size: 0.86rem !important;
  line-height: 1.48 !important;
  margin-bottom: 12px !important;
}

.svc-mega-body .svc-discover {
  font-size: 0.82rem !important;
}

/* Header layout like ALMA reference: logo/actions top, menu centered below */
.alma-topbar {
  display: none !important;
}

.alma-header {
  background: #fff !important;
  border-top: 0 !important;
  box-shadow: none !important;
}

.alma-header .alma-nav {
  min-height: 190px !important;
  height: auto !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-content: flex-start !important;
  align-items: flex-start !important;
  gap: 0 !important;
  padding: 30px clamp(24px, 4vw, 62px) 0 !important;
}

.alma-header .logo {
  order: 1 !important;
  flex: 0 0 42% !important;
  margin: 0 !important;
  align-self: flex-start !important;
}

.alma-header .logo img {
  height: 56px !important;
}

.alma-header .nav-right {
  order: 2 !important;
  flex: 0 0 58% !important;
  margin: 0 !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 10px !important;
  padding-top: 0 !important;
}

.nav-utility-icons {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: 14px;
  color: #8b8b8b;
}

.nav-utility-icons a {
  min-width: 14px;
  min-height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8b8b8b !important;
  font-size: 13px;
  line-height: 1;
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-decoration: none !important;
  text-transform: none;
  transition: color 0.22s ease;
}

.nav-utility-icons a:hover {
  color: var(--alma-blue) !important;
}

.alma-header .nav-right .btn {
  min-height: 40px !important;
  border-radius: 2px !important;
  padding: 11px 17px !important;
  font-size: 14px !important;
  line-height: 18px !important;
  font-weight: 700 !important;
  box-shadow: none !important;
  text-transform: none !important;
}

.alma-header .nav-right .btn::before,
.alma-header .nav-right .btn::after {
  display: none !important;
}

.nav-catalog-btn,
.nav-catalog-btn:hover,
.nav-catalog-btn:focus {
  background: var(--alma-blue) !important;
  border-color: var(--alma-blue) !important;
  color: #fff !important;
}

.nav-claim-btn,
.nav-claim-btn:hover,
.nav-claim-btn:focus {
  background: #f15b4c !important;
  border-color: #f15b4c !important;
  color: #fff !important;
}

.alma-header .nav-links {
  order: 3 !important;
  flex: 0 0 100% !important;
  width: 100% !important;
  height: 108px !important;
  margin: 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  gap: 34px !important;
  padding-top: 66px !important;
}

.industrie-nav-menu .nav-link {
  height: auto !important;
  padding: 0 !important;
  color: #111 !important;
  font-size: 18px !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.industrie-nav-menu .nav-link::before {
  left: 0 !important;
  right: 0 !important;
  bottom: -12px !important;
  height: 3px !important;
}

.industrie-nav-menu .service-mega-trigger {
  height: auto !important;
  display: block !important;
}

.industrie-nav-menu .caret {
  margin-left: 6px !important;
}

.nav-news {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.nav-news-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8px;
  gap: 5px;
  font-family: var(--font-heading);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 700;
}

.nav-news-mini a {
  color: #111 !important;
  text-decoration: none !important;
}

.nav-news-mini a::before {
  content: "- ";
}

.nav-news-mini a:hover {
  color: var(--alma-blue) !important;
}

.alma-header .offcanvas-toggle {
  display: none !important;
}

.services-mega-menu {
  top: calc(100% - 2px) !important;
}

@media (max-width: 1180px) {
  .alma-header .nav-links {
    gap: 22px !important;
  }

  .industrie-nav-menu .nav-link {
    font-size: 16px !important;
  }
}

@media (max-width: 1024px) {
  .alma-header .alma-nav {
    min-height: 86px !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    padding: 0 18px !important;
  }

  .alma-header .logo {
    flex: 1 1 auto !important;
  }

  .alma-header .nav-links,
  .alma-header .nav-right {
    display: none !important;
  }

  .alma-header .offcanvas-toggle {
    order: 4 !important;
    display: flex !important;
    margin-left: auto !important;
  }
}

/* Restore ALMA original menubar after product-page edits */
.alma-topbar {
  display: block !important;
}

.alma-topbar .tb-right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  margin-left: auto !important;
}

.alma-topbar .tb-right .lang {
  order: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 3px !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.12) !important;
  backdrop-filter: blur(8px);
}

.alma-topbar .tb-right .lang .opt {
  min-height: 30px !important;
  padding: 0 10px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: rgba(255,255,255,0.82) !important;
  opacity: 1 !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease !important;
}

.alma-topbar .tb-right .lang .opt svg {
  width: 17px !important;
  height: 12px !important;
  border-radius: 2px !important;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08) !important;
}

.alma-topbar .tb-right .lang .opt.active,
.alma-topbar .tb-right .lang .opt:hover {
  background: #fff !important;
  color: var(--alma-blue) !important;
  transform: translateY(-1px) !important;
}

.alma-topbar .tb-right .socials {
  order: 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
}

.alma-topbar .tb-right .socials a {
  width: 32px !important;
  height: 32px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  opacity: 1 !important;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease !important;
}

.alma-topbar .tb-right .socials a svg {
  width: 16px !important;
  height: 16px !important;
}

.alma-topbar .tb-right .socials a:hover {
  color: var(--alma-blue) !important;
  background: #fff !important;
  border-color: #fff !important;
  transform: translateY(-2px) !important;
}

.alma-topbar .tb-right .socials a[title="WhatsApp"]:hover {
  color: #25D366 !important;
}

.industrie-nav-menu .service-mega-trigger.is-open .caret {
  transform: translateY(-1px) rotate(180deg);
  color: var(--alma-blue);
}

/* Social icons: white glyphs everywhere except YouTube, which keeps its current treatment. */
.alma-topbar .socials a:not([title="YouTube"]),
.alma-topbar .tb-right .socials a:not([title="YouTube"]),
.header-socials-almaflow .header-social-link-af:not([title="YouTube"]),
.footer-socials a:not([title="YouTube"]),
.offcanvas .oc-socials a:not([title="YouTube"]),
.social-links .social-link-item:not([title="YouTube"]),
.team-card .team-socials a:not([title="YouTube"]),
.nav-socials a:not([title="YouTube"]) {
  color: #fff !important;
  background: var(--alma-blue) !important;
  border-color: var(--alma-blue) !important;
}

.alma-topbar .socials a:not([title="YouTube"]) svg,
.alma-topbar .tb-right .socials a:not([title="YouTube"]) svg,
.header-socials-almaflow .header-social-link-af:not([title="YouTube"]) svg,
.footer-socials a:not([title="YouTube"]) svg,
.offcanvas .oc-socials a:not([title="YouTube"]) svg,
.social-links .social-link-item:not([title="YouTube"]) svg,
.team-card .team-socials a:not([title="YouTube"]) svg,
.nav-socials a:not([title="YouTube"]) svg {
  color: #fff !important;
  fill: currentColor !important;
}

.alma-topbar .socials a:not([title="YouTube"]):hover,
.alma-topbar .tb-right .socials a:not([title="YouTube"]):hover,
.header-socials-almaflow .header-social-link-af:not([title="YouTube"]):hover,
.footer-socials a:not([title="YouTube"]):hover,
.offcanvas .oc-socials a:not([title="YouTube"]):hover,
.social-links .social-link-item:not([title="YouTube"]):hover,
.team-card .team-socials a:not([title="YouTube"]):hover,
.nav-socials a:not([title="YouTube"]):hover {
  color: #fff !important;
  background: var(--alma-blue-dark) !important;
  border-color: var(--alma-blue-dark) !important;
}

.alma-header {
  background: #fff !important;
  border-top: 0 !important;
}

.alma-header .alma-nav {
  max-width: none !important;
  width: 100% !important;
  min-height: 0 !important;
  height: 88px !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-content: center !important;
  align-items: center !important;
  gap: 26px !important;
  padding: 0 clamp(12px, 1.4vw, 24px) !important;
  justify-content: flex-start !important;
}

.alma-header .logo {
  order: 0 !important;
  flex: 0 0 auto !important;
  margin-right: auto !important;
  align-self: center !important;
}

.alma-header .logo img {
  height: 55px !important;
}

.alma-header .nav-links {
  order: 0 !important;
  flex: 0 1 auto !important;
  width: auto !important;
  height: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0 !important;
  padding-top: 0 !important;
}

.industrie-nav-menu .nav-link {
  height: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 18px !important;
  color: #101010 !important;
  font-size: 16px !important;
  line-height: 1 !important;
  font-weight: 600 !important;
  white-space: nowrap;
}

.industrie-nav-menu .nav-link::before {
  left: 18px !important;
  right: 18px !important;
  bottom: 0 !important;
  height: 3px !important;
}

.industrie-nav-menu .service-mega-trigger {
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
}

.alma-header .nav-right {
  order: 0 !important;
  flex: 0 0 auto !important;
  margin-left: auto !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 20px !important;
}

.alma-header .nav-right .btn {
  min-height: 54px !important;
  border-radius: 3px !important;
  padding: 0 28px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  background: var(--alma-blue) !important;
  border-color: var(--alma-blue) !important;
  color: #fff !important;
}

.alma-header .offcanvas-toggle {
  order: 0 !important;
  flex: 0 0 auto !important;
  display: flex !important;
  margin-left: 14px !important;
}

.services-mega-menu {
  top: 100% !important;
}

.nav-utility-icons,
.nav-news,
.nav-news-mini {
  display: none !important;
}

@media (max-width: 1024px) {
  .alma-header .nav-links,
  .alma-header .nav-right {
    display: none !important;
  }

  .alma-header .offcanvas-toggle {
    display: flex !important;
    margin-left: auto !important;
  }
}

/* Final requested nav: news dropdown visible, no export/home-old item */
.industrie-nav-menu .nav-news {
  position: relative !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  flex-direction: row !important;
}

.industrie-nav-menu .news-sub-menu {
  position: absolute;
  top: 100%;
  left: 18px;
  min-width: 200px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: #fff;
  border-top: 3px solid var(--alma-blue);
  box-shadow: 0 18px 44px rgba(7,18,48,0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.32s ease;
  z-index: 1300;
}

.industrie-nav-menu .nav-news:hover .news-sub-menu,
.industrie-nav-menu .nav-news:focus-within .news-sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.industrie-nav-menu .news-sub-menu a {
  display: block;
  padding: 10px 22px;
  color: #111 !important;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  transition: color 0.24s ease, background 0.24s ease, padding-left 0.24s ease;
}

.industrie-nav-menu .news-sub-menu a:hover {
  color: var(--alma-blue) !important;
  background: rgba(29,131,193,0.06);
  padding-left: 28px;
}

.industrie-nav-menu .nav-news:hover .caret {
  transform: translateY(-1px) rotate(180deg);
  color: var(--alma-blue);
}

/* About hero video only */
.about-video-hero {
  min-height: clamp(420px, 66vh, 740px) !important;
  align-items: stretch !important;
  background: #000 !important;
}

.about-video-shade,
.about-video-content,
.about-video-toggle {
  display: none !important;
}

/* Services mega-menu: visible water drop artwork */
.services-mega-intro .services-water-visual {
  display: block !important;
  left: -58px !important;
  bottom: -54px !important;
  width: 292px !important;
  height: 218px !important;
  opacity: 0.88 !important;
  z-index: 1 !important;
}

.services-mega-intro .services-water-visual::before {
  left: 112px !important;
  top: 22px !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 0 58% 58% 58% !important;
  transform: rotate(45deg) !important;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.96) 0 16%, rgba(255,255,255,0.44) 17% 32%, transparent 34%),
    linear-gradient(135deg, rgba(154,211,239,0.72), rgba(29,131,193,0.14)) !important;
  border: 1px solid rgba(255,255,255,0.82) !important;
  box-shadow:
    0 26px 0 -10px rgba(154,211,239,0.7),
    0 48px 0 -15px rgba(29,131,193,0.17),
    0 12px 26px rgba(29,131,193,0.12) !important;
}

.services-mega-intro .services-water-visual span {
  border-width: 2px !important;
  border-color: rgba(103,177,219,0.16) !important;
  box-shadow: 0 0 22px rgba(154,211,239,0.16) inset !important;
}

.services-mega-intro .services-water-visual span:nth-child(1) {
  width: 140px !important;
  height: 82px !important;
  left: 34px !important;
  top: 88px !important;
}

.services-mega-intro .services-water-visual span:nth-child(2) {
  width: 210px !important;
  height: 124px !important;
  left: -2px !important;
  top: 68px !important;
}

.services-mega-intro .services-water-visual span:nth-child(3) {
  width: 284px !important;
  height: 166px !important;
  left: -42px !important;
  top: 48px !important;
}

/* Services page cleanup: compact, readable product page */
.services-page {
  background: #f6f9fc !important;
}

.services-page .services-page-hero {
  padding: clamp(320px, 25vw, 400px) 20px 22px !important;
  background:
    linear-gradient(180deg, #f6fbff 0%, #fff 100%) !important;
}

.services-page .services-page-head {
  max-width: 1100px !important;
  text-align: center !important;
}

.services-page .services-page-head .eyebrow {
  margin-bottom: 12px !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.12em !important;
}

.services-page .services-page-head h1 {
  max-width: 790px !important;
  margin: 0 auto !important;
  font-size: clamp(34px, 3.8vw, 54px) !important;
  line-height: 1.12 !important;
}

.services-page .services-page-head p {
  max-width: 680px !important;
  margin-top: 18px !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
}

.services-page .services-showcase-section {
  padding: 34px 24px 72px !important;
  background: #fff !important;
}

.services-page .services-products-layout {
  width: min(1240px, 100%) !important;
}

.services-page .services-activity-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

.services-page .svc-activity-card {
  min-height: 342px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(7,18,48,0.08) !important;
  box-shadow: 0 14px 36px rgba(7,18,48,0.08) !important;
}

.services-page .svc-activity-photo {
  min-height: 150px !important;
}

.services-page .svc-activity-icon {
  width: 52px !important;
  height: 52px !important;
}

.services-page .svc-activity-icon svg {
  width: 28px !important;
  height: 28px !important;
}

.services-page .svc-activity-body {
  padding: 22px 24px 24px !important;
}

.services-page .svc-color-line {
  margin-bottom: 12px !important;
}

.services-page .svc-activity-body h3 {
  font-size: 1.18rem !important;
  line-height: 1.24 !important;
  margin-bottom: 8px !important;
}

.services-page .svc-activity-body p {
  font-size: 0.94rem !important;
  line-height: 1.58 !important;
}

.services-page .svc-discover {
  font-size: 0.86rem !important;
}

.services-page .section[style*="background:var(--bg-alt)"] {
  padding: 72px 22px !important;
  background: #f6f9fc !important;
}

.services-page .work-process-grid {
  max-width: 1180px !important;
  margin: 36px auto 0 !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
  align-items: stretch !important;
}

.services-page .work-process-grid .wp-arrow {
  display: none !important;
}

.services-page .work-process-grid .wp-step {
  min-height: 230px !important;
  margin: 0 !important;
  padding: 30px 24px !important;
  background: #fff !important;
  border: 1px solid rgba(7,18,48,0.08) !important;
  border-radius: 8px !important;
  box-shadow: 0 12px 34px rgba(7,18,48,0.07) !important;
}

.services-page .work-process-grid .wp-num {
  margin-bottom: 18px !important;
}

.services-page .work-process-grid .wp-step h4 {
  font-size: 1.08rem !important;
  line-height: 1.28 !important;
}

.services-page .work-process-grid .wp-step p {
  font-size: 0.93rem !important;
  line-height: 1.62 !important;
}

.services-page .cta-full-band {
  margin-top: 0 !important;
}

@media (max-width: 1100px) {
  .services-page .services-activity-grid,
  .services-page .work-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .services-page .services-showcase-section {
    padding: 28px 16px 54px !important;
  }

  .services-page .services-activity-grid,
  .services-page .work-process-grid {
    grid-template-columns: 1fr !important;
  }

  .services-page .svc-activity-card {
    min-height: 0 !important;
  }
}

/* Services method cards: remove broken icons and tighten text layout */
.services-page .work-process-grid .wp-icon {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  overflow: hidden !important;
}

.services-page .work-process-grid .wp-step {
  min-height: 210px !important;
  padding: 28px 26px !important;
  text-align: left !important;
}

.services-page .work-process-grid .wp-num {
  margin-bottom: 16px !important;
  text-align: left !important;
  font-size: 1.18rem !important;
  color: var(--alma-blue) !important;
}

.services-page .work-process-grid .wp-step h4 {
  margin: 0 0 12px !important;
  text-align: left !important;
}

.services-page .work-process-grid .wp-step p {
  text-align: left !important;
  margin: 0 !important;
}

/* Qui sommes-nous video: larger standalone hero */
.about-video-hero {
  min-height: calc(100vh - 126px) !important;
  height: calc(100vh - 126px) !important;
  max-height: none !important;
}

.about-hero-video {
  object-fit: cover !important;
  object-position: center center !important;
}

@media (max-width: 1024px) {
  .about-video-hero {
    min-height: 72vh !important;
    height: 72vh !important;
  }
}

@media (max-width: 640px) {
  .about-video-hero {
    min-height: 62vh !important;
    height: 62vh !important;
  }
}

/* Final polish: centered RSE heading, matching realisations titles, button hovers */
.env-section-head {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.env-section-head .eyebrow {
  width: auto !important;
  align-self: center !important;
  text-align: center !important;
}

.env-section-head h2,
.env-section-head p {
  text-align: center !important;
}

.about-realisations-section .industrie-split-head .eyebrow,
.about-realisations-section .industrie-split-head h2 {
  color: var(--alma-blue) !important;
  font-size: clamp(2.35rem, 3.5vw, 3.25rem) !important;
  line-height: 1.12 !important;
  font-weight: 900 !important;
}

.about-realisations-section .industrie-split-head h2 .hi,
.about-realisations-section .industrie-split-head h2 span {
  color: var(--alma-blue) !important;
}

.about-realisations-section .industrie-split-head .btn {
  position: relative;
  overflow: hidden;
  transition: color 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, transform 0.28s ease !important;
}

.about-realisations-section .industrie-split-head .btn:hover,
.about-realisations-section .industrie-split-head .btn:focus {
  color: #fff !important;
  background: var(--alma-blue) !important;
  border-color: var(--alma-blue) !important;
  transform: translateY(-2px);
}

.alma-header .nav-right .btn,
.alma-header .nav-right .btn:visited {
  min-width: 170px !important;
  min-height: 44px !important;
  justify-content: center !important;
  border: 1px solid var(--alma-blue) !important;
  border-radius: 3px !important;
  color: var(--alma-blue) !important;
  background: rgba(255,255,255,0.42) !important;
  box-shadow: none !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  overflow: hidden !important;
  transition: color 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, transform 0.28s ease !important;
}

.alma-header .nav-right .btn:hover,
.alma-header .nav-right .btn:focus {
  color: #fff !important;
  background: var(--alma-blue) !important;
  border-color: var(--alma-blue) !important;
  transform: translateY(-2px);
  box-shadow: none !important;
}

/* Qui sommes-nous: center realisations heading and keep title animation centered */
.about-realisations-section .industrie-split-head {
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  text-align: center !important;
  gap: 22px !important;
}

.about-realisations-section .industrie-split-head > div {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.about-realisations-section .industrie-split-head .eyebrow,
.about-realisations-section .industrie-split-head h2 {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.about-realisations-section .industrie-split-head .btn {
  margin: 0 auto !important;
}

.about-realisations-section .realisations-title-animate::after {
  left: 50% !important;
  transform: translateX(-50%) scaleX(0) !important;
  transform-origin: center !important;
}

.about-realisations-section .realisations-title-animate.active::after,
.about-realisations-section .realisations-title-animate.in-view::after,
.about-realisations-section .realisations-title-animate.is-visible::after {
  transform: translateX(-50%) scaleX(1) !important;
}

/* Qui sommes-nous: align RSE/Realisations typography with the Activities heading */
.env-section-head .eyebrow,
.about-realisations-section .industrie-split-head .eyebrow {
  width: auto !important;
  margin: 0 0 14px !important;
  color: #1D83C1 !important;
  font-family: var(--font-heading) !important;
  font-size: 1.35rem !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-transform: none !important;
}

.env-section-head .eyebrow::before {
  display: none !important;
}

.env-section-head h2,
.about-realisations-section .industrie-split-head h2 {
  max-width: 980px !important;
  margin: 0 auto !important;
  color: #010d14 !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(1.75rem, 2.5vw, 2.3rem) !important;
  line-height: 1.22 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

.env-section-head h2 .hi,
.about-realisations-section .industrie-split-head h2 .hi,
.about-realisations-section .industrie-split-head h2 span {
  color: inherit !important;
}

/* Final override: high-contrast water drop cursor */
@media (pointer: fine) {
  body.water-cursor-enabled,
  body.water-cursor-enabled a,
  body.water-cursor-enabled button,
  body.water-cursor-enabled input,
  body.water-cursor-enabled textarea,
  body.water-cursor-enabled select {
    cursor: none !important;
  }
}

.water-drop-cursor {
  width: 24px !important;
  height: 24px !important;
  opacity: 0 !important;
  background:
    radial-gradient(circle at 31% 28%, rgba(255,255,255,0.96) 0 13%, rgba(255,255,255,0.42) 14% 31%, transparent 33%),
    linear-gradient(135deg, rgba(115,198,240,0.96), rgba(29,131,193,0.94)) !important;
  border: 2px solid rgba(255,255,255,0.96) !important;
  box-shadow:
    0 0 0 1px rgba(11,59,96,0.34),
    0 10px 26px rgba(11,59,96,0.34),
    inset 0 0 14px rgba(255,255,255,0.28) !important;
  mix-blend-mode: normal !important;
}

.water-drop-cursor.visible {
  opacity: 0.78 !important;
}

.water-drop-cursor.hover {
  width: 24px !important;
  height: 24px !important;
  opacity: 1 !important;
  background:
    radial-gradient(circle at 31% 28%, #fff 0 12%, rgba(255,255,255,0.38) 13% 31%, transparent 34%),
    linear-gradient(135deg, var(--alma-sky), var(--alma-blue)) !important;
  border-color: #fff !important;
  box-shadow:
    0 0 0 2px rgba(29,131,193,0.42),
    0 14px 34px rgba(11,59,96,0.42),
    inset 0 0 16px rgba(255,255,255,0.32) !important;
}

/* Cursor goutte: visible on images/text while staying in ALMA blue palette */
@media (pointer: fine) {
  body.water-cursor-enabled,
  body.water-cursor-enabled a,
  body.water-cursor-enabled button,
  body.water-cursor-enabled input,
  body.water-cursor-enabled textarea,
  body.water-cursor-enabled select {
    cursor: none !important;
  }
}

.water-drop-cursor {
  width: 24px !important;
  height: 24px !important;
  opacity: 0 !important;
  background:
    radial-gradient(circle at 31% 28%, rgba(255,255,255,0.96) 0 13%, rgba(255,255,255,0.42) 14% 31%, transparent 33%),
    linear-gradient(135deg, rgba(115,198,240,0.96), rgba(29,131,193,0.94)) !important;
  border: 2px solid rgba(255,255,255,0.96) !important;
  box-shadow:
    0 0 0 1px rgba(11,59,96,0.34),
    0 10px 26px rgba(11,59,96,0.34),
    inset 0 0 14px rgba(255,255,255,0.28) !important;
  mix-blend-mode: normal !important;
}

.water-drop-cursor.visible {
  opacity: 0.78 !important;
}

.water-drop-cursor.hover {
  width: 34px !important;
  height: 34px !important;
  opacity: 1 !important;
  background:
    radial-gradient(circle at 31% 28%, #fff 0 12%, rgba(255,255,255,0.38) 13% 31%, transparent 34%),
    linear-gradient(135deg, var(--alma-sky), var(--alma-blue)) !important;
  border-color: #fff !important;
  box-shadow:
    0 0 0 2px rgba(29,131,193,0.42),
    0 14px 34px rgba(11,59,96,0.42),
    inset 0 0 16px rgba(255,255,255,0.32) !important;
}

.water-ripple {
  border-color: rgba(29,131,193,0.52) !important;
  background: radial-gradient(circle, rgba(115,198,240,0.26) 0%, rgba(29,131,193,0.12) 44%, transparent 72%) !important;
}

/* Qui sommes-nous: exact title hierarchy requested */
.env-section-head h2,
.about-realisations-section .industrie-split-head h2 {
  max-width: 980px !important;
  margin: 0 auto !important;
  color: #0b3b60 !important;
  font-family: 'Space Grotesk', Arial, sans-serif !important;
  font-size: var(--industrie-h2) !important;
  line-height: 1.24 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

.env-section-head h2 .hi,
.about-realisations-section .industrie-split-head h2 .hi,
.about-realisations-section .industrie-split-head h2 span {
  color: inherit !important;
}

.env-section-head .eyebrow,
.about-realisations-section .industrie-split-head .eyebrow {
  display: inline-block !important;
  width: auto !important;
  align-self: center !important;
  margin: 0 0 14px !important;
  color: var(--alma-blue) !important;
  font-family: var(--font-heading) !important;
  font-size: 0.78rem !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  letter-spacing: 0.15em !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

.env-section-head .eyebrow::before,
.about-realisations-section .industrie-split-head .eyebrow::before {
  content: "" !important;
  display: inline-block !important;
  width: 12px !important;
  height: 2px !important;
  margin-right: 8px !important;
  vertical-align: middle !important;
  background: var(--alma-blue) !important;
}

/* Qui sommes-nous: exact title hierarchy requested */
.env-section-head h2,
.about-realisations-section .industrie-split-head h2 {
  max-width: 980px !important;
  margin: 0 auto !important;
  color: #0b3b60 !important;
  font-family: 'Space Grotesk', Arial, sans-serif !important;
  font-size: var(--industrie-h2) !important;
  line-height: 1.24 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

.env-section-head h2 .hi,
.about-realisations-section .industrie-split-head h2 .hi,
.about-realisations-section .industrie-split-head h2 span {
  color: inherit !important;
}

.env-section-head .eyebrow,
.about-realisations-section .industrie-split-head .eyebrow {
  display: inline-block !important;
  width: auto !important;
  align-self: center !important;
  margin: 0 0 14px !important;
  color: var(--alma-blue) !important;
  font-family: var(--font-heading) !important;
  font-size: 0.78rem !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  letter-spacing: 0.15em !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

.env-section-head .eyebrow::before,
.about-realisations-section .industrie-split-head .eyebrow::before {
  content: "" !important;
  display: inline-block !important;
  width: 12px !important;
  height: 2px !important;
  margin-right: 8px !important;
  vertical-align: middle !important;
  background: var(--alma-blue) !important;
}

/* Qui sommes-nous: RSE panel matching requested composition */
.env-section {
  padding: 0 !important;
  background:
    linear-gradient(180deg, #f7fbff 0%, #eef6fb 100%) !important;
  scroll-margin-top: 96px;
}

.env-panel {
  width: min(1236px, calc(100% - 72px));
  margin: 0 auto;
  padding: 5px 15px 8px;
  background:
    radial-gradient(circle at 42% 3%, rgba(204,230,246,0.48) 0 12px, transparent 13px),
    linear-gradient(180deg, #fbfcff 0%, #f4f7fb 100%);
  box-shadow: 0 26px 80px rgba(3,34,79,0.15);
}

.env-section-head {
  max-width: 920px !important;
  margin: 0 auto 10px !important;
  text-align: center !important;
}

.env-section-head .eyebrow {
  color: #0f75ff !important;
  font-size: 0.78rem !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  margin: 0 0 14px !important;
}

.env-section-head .eyebrow::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 2px;
  margin-right: 8px;
  vertical-align: middle;
  background: #0f75ff;
}

.env-section-head h2 {
  max-width: 780px !important;
  margin: 0 auto !important;
  color: #111827 !important;
  font-size: clamp(1.75rem, 3.1vw, 2.35rem) !important;
  line-height: 1.18 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

.env-section-head h2 .hi {
  color: #0f75ff !important;
}

.env-section-head p {
  max-width: 620px !important;
  margin: 18px auto 0 !important;
  color: #38445b !important;
  font-size: 1rem !important;
  font-style: italic;
  line-height: 1.5 !important;
}

.rse-leaf {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 26px;
  margin-right: 18px;
  vertical-align: middle;
}

.rse-leaf::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  width: 4px;
  height: 16px;
  background: #8c5b38;
  border-radius: 4px;
}

.rse-leaf::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 1px;
  width: 18px;
  height: 10px;
  background: #62bc3f;
  border-radius: 16px 16px 2px 16px;
  transform: rotate(10deg);
  box-shadow: 4px 8px 0 -2px #7fcb48;
}

.env-split {
  max-width: 1120px !important;
  margin: 4px auto 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.25fr) !important;
  gap: 16px !important;
  align-items: center !important;
  --env-stats-height: auto !important;
}

.env-photo,
.env-stats {
  min-height: 0 !important;
  height: auto !important;
}

.env-art {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  padding: 8px 12px 8px 16px;
  background:
    radial-gradient(circle at 32% 56%, rgba(255,255,255,0.95), rgba(255,255,255,0.38) 32%, transparent 54%),
    linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.64) 56%, rgba(255,255,255,0) 100%);
}

.env-mini-label {
  margin-bottom: 18px;
  color: #4e91df;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.env-mini-label::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 12px;
  margin-right: 8px;
  vertical-align: -1px;
  background: linear-gradient(180deg, #70a9ff, #0f75ff);
  clip-path: polygon(55% 0, 100% 0, 56% 45%, 100% 45%, 30% 100%, 45% 55%, 0 55%);
}

.env-art h3 {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin: 0;
  color: #0c3656 !important;
  font-size: clamp(1.2rem, 2vw, 1.6rem) !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
}

.solar-tree {
  position: absolute;
  left: 56px;
  bottom: 66px;
  width: 210px;
  height: 170px;
  transform: skewX(7deg);
}

.solar-tree .panel {
  position: absolute;
  width: 58px;
  height: 48px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), transparent 34%),
    linear-gradient(135deg, #279242, #9ed631);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.42), 0 12px 28px rgba(75,150,54,0.22);
}

.solar-tree .panel-1 { left: 0; top: 0; }
.solar-tree .panel-2 { left: 66px; top: 0; }
.solar-tree .panel-3 { left: 132px; top: 0; }
.solar-tree .panel-4 { left: 28px; top: 56px; }
.solar-tree .panel-5 { left: 94px; top: 56px; }
.solar-tree .panel-6 { left: 160px; top: 56px; }

.solar-glow {
  position: absolute;
  left: 98px;
  top: 40px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,196,0.96) 0 18%, rgba(255,255,196,0.55) 40%, transparent 72%);
  filter: blur(1px);
}

.solar-trunk {
  position: absolute;
  left: 93px;
  top: 104px;
  width: 46px;
  height: 66px;
  background: #256821;
  clip-path: polygon(33% 0, 67% 0, 67% 72%, 100% 72%, 100% 100%, 0 100%, 0 72%, 33% 72%);
}

.wind-turbine {
  position: absolute;
  right: -24px;
  bottom: 14px;
  width: 260px;
  height: 320px;
  opacity: 0.62;
}

.wind-turbine .tower {
  position: absolute;
  left: 122px;
  bottom: 0;
  width: 7px;
  height: 246px;
  background: linear-gradient(180deg, rgba(210,219,230,0.9), rgba(180,194,210,0.36));
  transform: skewX(-4deg);
}

.wind-turbine .hub {
  position: absolute;
  left: 112px;
  top: 58px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(205,216,228,0.95);
  z-index: 2;
}

.wind-turbine .blade {
  position: absolute;
  left: 124px;
  top: 69px;
  width: 110px;
  height: 7px;
  background: linear-gradient(90deg, rgba(190,203,218,0.94), rgba(190,203,218,0));
  border-radius: 999px;
  transform-origin: 0 50%;
}

.wind-turbine .blade-1 { transform: rotate(24deg); }
.wind-turbine .blade-2 { transform: rotate(144deg); }
.wind-turbine .blade-3 { transform: rotate(264deg); }

.env-section {
  background: linear-gradient(180deg, #f8fbfd 0%, #eef7fc 100%) !important;
}

.env-panel {
  border: 1px solid rgba(29,131,193,0.08) !important;
  box-shadow: 0 24px 64px rgba(29,131,193,0.1) !important;
}

.env-section-head .eyebrow,
.env-section-head h2 .hi,
.env-mini-label {
  color: var(--alma-blue) !important;
}

.env-section-head .eyebrow::before {
  background: var(--alma-blue) !important;
}

.env-mini-label::before {
  background: linear-gradient(180deg, var(--alma-sky), var(--alma-blue)) !important;
}

.env-art {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  min-height: 300px !important;
  padding: 28px 30px 24px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.82) 100%) !important;
  border: 1px solid rgba(29,131,193,0.08);
}

.env-art h3 {
  max-width: 460px !important;
}

.rse-title-animate {
  position: relative;
  overflow: hidden;
  transform: translateY(34px) scale(0.985) !important;
  transition:
    opacity 0.9s cubic-bezier(.2,.72,.2,1),
    transform 0.9s cubic-bezier(.2,.72,.2,1),
    filter 0.9s cubic-bezier(.2,.72,.2,1) !important;
}

.rse-title-animate::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: min(360px, 72%);
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--alma-sky), var(--alma-blue), transparent);
  border-radius: 999px;
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: opacity 0.6s ease 0.32s, transform 0.9s cubic-bezier(.2,.72,.2,1) 0.32s;
}

.rse-title-animate.active,
.rse-title-animate.revealed {
  transform: translateY(0) scale(1) !important;
}

.rse-title-animate.active::after,
.rse-title-animate.revealed::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.rse-card-title-animate {
  transition-delay: 0.16s !important;
}

.rse-card-title-animate.active,
.rse-card-title-animate.revealed {
  text-shadow: 0 10px 28px rgba(29,131,193,0.12);
}

.alma-grand-title-animate {
  position: relative;
  overflow: hidden;
  transform: translateY(34px) scale(0.985) !important;
  transition:
    opacity 0.9s cubic-bezier(.2,.72,.2,1),
    transform 0.9s cubic-bezier(.2,.72,.2,1),
    filter 0.9s cubic-bezier(.2,.72,.2,1) !important;
}

.alma-grand-title-animate::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: min(320px, 70%);
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--alma-sky), var(--alma-blue), transparent);
  border-radius: 999px;
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: opacity 0.6s ease 0.28s, transform 0.85s cubic-bezier(.2,.72,.2,1) 0.28s;
}

.alma-grand-title-animate.active,
.alma-grand-title-animate.revealed {
  transform: translateY(0) scale(1) !important;
}

.alma-grand-title-animate.active::after,
.alma-grand-title-animate.revealed::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.alma-eyebrow-animate {
  display: inline-block !important;
  transition-delay: 0.04s !important;
}

.realisations-title-animate::after {
  left: 0;
  width: min(360px, 76%);
  transform: scaleX(0);
  transform-origin: left center;
}

.realisations-title-animate.active::after,
.realisations-title-animate.revealed::after {
  transform: scaleX(1);
}

.env-energy-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-height: 120px;
  height: auto;
  margin-top: 14px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 4px;
  box-shadow: 0 20px 46px rgba(12,54,86,0.13);
}

.solar-tree,
.wind-turbine {
  display: none !important;
}

.env-stats {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px 24px !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  background: transparent !important;
}

.env-stat,
.env-stat.hi {
  display: block !important;
  min-height: 50px !important;
  padding: 0 !important;
  text-align: left !important;
  background: transparent !important;
  border: 0 !important;
}

.env-num,
.env-stat.hi .env-num {
  display: inline-flex !important;
  align-items: baseline !important;
  justify-content: flex-start !important;
  gap: 4px !important;
  color: transparent !important;
  -webkit-text-stroke: 2px #5d9dff;
  -webkit-text-fill-color: transparent;
  text-shadow: none !important;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
  line-height: 0.92 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
}

.env-stat.hi .env-num {
  -webkit-text-stroke-color: #66c89a;
  text-shadow: none !important;
}

.env-num .suffix,
.env-num .env-decimal,
.env-stat.hi .env-num .suffix,
.env-stat.hi .env-num .env-decimal {
  display: inline-block !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-text-stroke: 1px #6faeb1 !important;
  font-size: 0.58em !important;
  line-height: 1 !important;
  font-weight: 400 !important;
}

.env-stat.hi .env-num .suffix,
.env-stat.hi .env-num .env-decimal {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-text-stroke: 1px #6faeb1 !important;
}

.env-num .counter-value,
.env-stat.hi .env-num .counter-value {
  display: inline-block !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-text-stroke: 2px #6faeb1 !important;
}

.env-line,
.env-stat.hi .env-line {
  width: 72px !important;
  height: 1px !important;
  margin: 19px 0 15px !important;
  background: rgba(107,119,139,0.18) !important;
}

.env-lbl,
.env-stat.hi .env-lbl {
  color: #737d91 !important;
  font-family: var(--font-heading);
  font-size: 0.86rem !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .env-panel {
    width: min(100% - 32px, 940px);
    padding: 8px 14px 10px;
  }

  .env-split {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .env-art {
    min-height: 120px;
  }
}

@media (max-width: 680px) {
  .env-section {
    padding: 8px 0 12px !important;
  }

  .env-panel {
    width: calc(100% - 24px);
    padding: 8px 10px 10px;
  }

  .env-section-head h2 {
    font-size: 1.72rem !important;
  }

  .env-section-head p br {
    display: none;
  }

  .env-art {
    min-height: 100px;
    padding: 10px 10px 10px 16px;
  }

  .env-art h3 {
    font-size: 1.3rem !important;
  }

  .solar-tree {
    left: 24px;
    bottom: 30px;
    transform: scale(0.68) skewX(7deg);
    transform-origin: left bottom;
  }

  .wind-turbine {
    right: -92px;
    bottom: 4px;
    transform: scale(0.62);
    transform-origin: right bottom;
  }

  .env-stats {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .env-lbl,
  .env-stat.hi .env-lbl {
    white-space: normal;
  }

  .env-stat,
  .env-stat.hi {
    text-align: center !important;
  }

  .env-num,
  .env-stat.hi .env-num {
    justify-content: center !important;
  }

  .env-line,
  .env-stat.hi .env-line {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}

/* Qui sommes-nous: final title typography unification */
.env-section-head .eyebrow,
.about-realisations-section .industrie-split-head .eyebrow {
  display: inline-block !important;
  width: auto !important;
  align-self: center !important;
  margin: 0 0 14px !important;
  color: var(--alma-blue) !important;
  font-family: var(--font-heading) !important;
  font-size: 0.78rem !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  letter-spacing: 0.15em !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

.env-section-head .eyebrow::before,
.about-realisations-section .industrie-split-head .eyebrow::before {
  content: "" !important;
  display: inline-block !important;
  width: 12px !important;
  height: 2px !important;
  margin-right: 8px !important;
  vertical-align: middle !important;
  background: var(--alma-blue) !important;
}

.env-section-head h2,
.about-realisations-section .industrie-split-head h2 {
  max-width: 980px !important;
  margin: 0 auto !important;
  color: #0b3b60 !important;
  font-family: 'Space Grotesk', Arial, sans-serif !important;
  font-size: var(--industrie-h2) !important;
  line-height: 1.24 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

.env-section-head h2 .hi,
.about-realisations-section .industrie-split-head h2 .hi,
.about-realisations-section .industrie-split-head h2 span {
  color: inherit !important;
}

/* Final cursor size lock: no enlargement on hover */
.water-drop-cursor.hover {
  width: 24px !important;
  height: 24px !important;
}

/* Header action buttons: catalogue and reclamation */
.alma-header .nav-right {
  gap: 12px !important;
}

.alma-header .nav-right .header-action-btn,
.alma-header .nav-right .header-action-btn:visited {
  min-height: 44px !important;
  min-width: 150px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 20px !important;
  border-radius: 3px !important;
  color: #fff !important;
  font-family: var(--font-heading) !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  box-shadow: 0 12px 26px rgba(1,13,20,0.08) !important;
  transition: transform 0.26s ease, box-shadow 0.26s ease, background-color 0.26s ease, border-color 0.26s ease !important;
}

.alma-header .nav-right .header-catalogue-btn {
  border: 1px solid var(--alma-blue) !important;
  background: var(--alma-blue) !important;
}

.alma-header .nav-right .header-claim-btn {
  border: 1px solid #ef3f35 !important;
  background: linear-gradient(90deg, #ef3f35 0%, #ff7a3a 100%) !important;
}

.alma-header .nav-right .header-catalogue-btn:hover,
.alma-header .nav-right .header-catalogue-btn:focus {
  background: #0b3b60 !important;
  border-color: #0b3b60 !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(29,131,193,0.18) !important;
}

.alma-header .nav-right .header-claim-btn:hover,
.alma-header .nav-right .header-claim-btn:focus {
  background: linear-gradient(90deg, #d93028 0%, #e5651a 100%) !important;
  border-color: #d93028 !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(229,101,26,0.2) !important;
}

@media (max-width: 1220px) {
  .alma-header .nav-right .header-action-btn {
    min-width: 128px !important;
    padding: 0 14px !important;
    font-size: 0.8rem !important;
  }
}

/* Qui sommes-nous: RSE section matching the reference composition */
.env-section {
  position: relative !important;
  overflow: hidden !important;
  padding: 8px 0 12px !important;
  background: url("assets/rse-background-panel-cropped.jpeg") center / cover no-repeat !important;
}

.env-section::before {
  display: none !important;
}

.env-panel {
  position: relative !important;
  z-index: 1 !important;
  width: min(1280px, calc(100% - 72px)) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.env-section-head {
  max-width: 920px !important;
  margin: 0 auto 32px !important;
  text-align: center !important;
}

.env-section-head .eyebrow,
.env-section-head p,
.env-section-head h2::after {
  display: none !important;
}

.env-section-head h2 {
  max-width: 920px !important;
  margin: 0 auto !important;
  color: #245f79 !important;
  font-family: 'Space Grotesk', Arial, sans-serif !important;
  font-size: clamp(1.75rem, 2.5vw, 2.7rem) !important;
  line-height: 1.18 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

.env-split {
  width: min(1120px, 100%) !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr) !important;
  gap: 14px !important;
  align-items: center !important;
  --env-stats-height: auto !important;
}

.env-photo,
.env-art {
  min-height: 0 !important;
}

.env-art {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  padding: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.env-art::before,
.env-art::after,
.env-mini-label {
  display: none !important;
}

.env-art h3 {
  position: static !important;
  z-index: 2 !important;
  transform: none !important;
  max-width: 430px !important;
  margin: 0 0 32px !important;
  color: #245f79 !important;
  font-family: 'Space Grotesk', Arial, sans-serif !important;
  font-size: clamp(1.55rem, 2.15vw, 2.25rem) !important;
  line-height: 1.08 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}

.env-art h3 > .env-cert-line {
  display: block !important;
  margin-top: 4px !important;
}

.env-art h3 span:not(.env-cert-line) {
  display: inline !important;
  margin: 0 !important;
}

.env-energy-photo {
  display: block !important;
  width: min(330px, 88%) !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.env-stats {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px 18px !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.env-stat,
.env-stat.hi {
  min-height: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-align: left !important;
}

.env-num,
.env-stat.hi .env-num {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-text-stroke: 2px #6faeb1 !important;
  font-family: 'Space Grotesk', Arial, sans-serif !important;
  font-size: clamp(1.55rem, 2.35vw, 2.05rem) !important;
  line-height: 0.95 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 10px 26px rgba(36,95,121,0.08) !important;
}

.env-num .suffix,
.env-num .env-decimal {
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-text-stroke: 1px #6faeb1 !important;
  font-size: 0.58em !important;
  font-weight: 400 !important;
}

.env-line,
.env-stat.hi .env-line {
  width: 58px !important;
  height: 1px !important;
  margin: 10px 0 8px !important;
  background: rgba(111,174,177,0.3) !important;
}

.env-lbl,
.env-stat.hi .env-lbl {
  color: #697b84 !important;
  font-family: 'Space Grotesk', Arial, sans-serif !important;
  font-size: 0.72rem !important;
  line-height: 1.35 !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-align: left !important;
  text-transform: uppercase !important;
}

.env-section .ref-section-head {
  margin-bottom: 28px !important;
}

.env-section .ref-section-head h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.7rem) !important;
  line-height: 1.18 !important;
}

.env-section .ref-section-head p {
  max-width: 560px !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
}

@media (max-width: 900px) {
  .env-section {
    padding: 8px 0 10px !important;
  }

  .env-panel {
    width: min(100% - 34px, 680px) !important;
  }

  .env-section-head {
    margin-bottom: 24px !important;
  }

  .env-split {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .env-art h3,
  .env-lbl,
  .env-stat,
  .env-stat.hi {
    text-align: left !important;
  }

  .env-art h3 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .env-energy-photo {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .env-stats {
    gap: 24px 22px !important;
  }

  .env-line,
  .env-stat.hi .env-line {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}

@media (max-width: 560px) {
  .env-section-head h2 {
    font-size: 1.8rem !important;
  }

  .env-stats {
    grid-template-columns: 1fr !important;
  }
}

/* Qui sommes-nous: water-ripple background for the activities section */
.about-under-video {
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 11% 17%, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.74) 24%, rgba(255,255,255,0) 50%),
    linear-gradient(180deg, #ffffff 0%, #f4fbff 56%, #eef8ff 100%) !important;
}

.about-under-video::before {
  content: "" !important;
  position: absolute !important;
  left: max(-170px, -9vw) !important;
  bottom: -118px !important;
  width: min(650px, 54vw) !important;
  height: min(360px, 32vw) !important;
  background: none !important;
  filter: none !important;
  opacity: 1 !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

.about-under-video::after {
  content: "" !important;
  position: absolute !important;
  right: max(22px, 9vw) !important;
  bottom: 84px !important;
  width: 190px !important;
  height: 210px !important;
  background:
    radial-gradient(circle at 16px 16px, rgba(29,131,193,0.16) 0 1.7px, transparent 2.2px) 0 0 / 18px 18px,
    radial-gradient(circle at 54% 18%, rgba(255,255,255,0.92) 0 12%, rgba(154,211,239,0.36) 13% 38%, rgba(29,131,193,0.08) 39% 100%) !important;
  mask-image: linear-gradient(135deg, transparent 0%, #000 28%, #000 78%, transparent 100%) !important;
  opacity: 0.5 !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

.about-activities-head,
.about-activities-grid,
.about-inline-stats {
  position: relative !important;
  z-index: 1 !important;
}

@media (max-width: 760px) {
  .about-under-video::before {
    left: -95px !important;
    bottom: -64px !important;
    width: 360px !important;
    height: 230px !important;
  }

  .about-under-video::after {
    right: -44px !important;
    bottom: 118px !important;
    width: 148px !important;
    height: 180px !important;
    opacity: 0.38 !important;
  }
}

/* Final responsive guard: prevent page-level horizontal scroll */
html,
body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

.site,
main {
  max-width: 100% !important;
  overflow-x: clip !important;
}

.offcanvas {
  right: 0 !important;
  max-width: min(390px, 100vw) !important;
  transform: translateX(105%) !important;
  transition: transform 0.35s ease !important;
}

.offcanvas.open {
  transform: translateX(0) !important;
}

.offcanvas .oc-body {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.realisations-side-nav {
  max-width: calc(100vw - 18px) !important;
}

@media (max-width: 760px) {
  .realisations-side-nav {
    display: none !important;
  }
}

/* Final desktop header fit: keep the full navbar visible on common PC widths */
@media (min-width: 1025px) {
  .alma-header .alma-nav {
    height: 82px !important;
    gap: clamp(10px, 1vw, 18px) !important;
    padding-right: clamp(10px, 1vw, 18px) !important;
    padding-left: clamp(10px, 1vw, 18px) !important;
  }

  .alma-header .logo {
    flex: 0 1 clamp(154px, 12vw, 220px) !important;
    min-width: 154px !important;
    margin-right: clamp(6px, 0.8vw, 14px) !important;
  }

  .alma-header .logo img {
    width: clamp(148px, 12vw, 214px) !important;
    height: auto !important;
    max-height: 58px !important;
    object-fit: contain !important;
  }

  .alma-header .nav-links {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    margin-right: clamp(6px, 0.8vw, 14px) !important;
    margin-left: 0 !important;
  }

  .industrie-nav-menu .nav-link {
    padding-right: clamp(7px, 0.74vw, 14px) !important;
    padding-left: clamp(7px, 0.74vw, 14px) !important;
    font-size: clamp(13.5px, 0.92vw, 16px) !important;
    font-weight: 700 !important;
  }

  .industrie-nav-menu .nav-link::before {
    right: clamp(7px, 0.74vw, 14px) !important;
    left: clamp(7px, 0.74vw, 14px) !important;
  }

  .alma-header .nav-right {
    flex: 0 0 auto !important;
    gap: clamp(6px, 0.65vw, 10px) !important;
    margin-left: 0 !important;
  }

  .alma-header .nav-right .header-action-btn,
  .alma-header .nav-right .header-action-btn:visited,
  .alma-header .nav-right .btn,
  .alma-header .nav-right .btn:visited {
    min-width: clamp(112px, 7.8vw, 145px) !important;
    min-height: 44px !important;
    padding: 0 clamp(10px, 0.9vw, 16px) !important;
    font-size: clamp(12.5px, 0.86vw, 14px) !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 1380px) {
  .alma-header .nav-links,
  .alma-header .nav-right {
    display: none !important;
  }

  .alma-header .offcanvas-toggle {
    display: flex !important;
    margin-left: auto !important;
  }
}

/* 13-inch laptops: keep the complete desktop navbar visible */
@media (min-width: 1181px) and (max-width: 1380px) {
  .alma-header .alma-nav {
    height: 72px !important;
    gap: 5px !important;
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .alma-header .logo {
    display: block !important;
    flex: 0 0 118px !important;
    min-width: 118px !important;
    margin-right: 2px !important;
  }

  .alma-header .logo img {
    width: 116px !important;
    height: auto !important;
    max-height: 46px !important;
  }

  .alma-header .nav-links {
    display: flex !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .industrie-nav-menu .nav-link {
    padding-right: 5px !important;
    padding-left: 5px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
  }

  .industrie-nav-menu .nav-link::before {
    right: 5px !important;
    left: 5px !important;
  }

  .alma-header .nav-right {
    display: flex !important;
    flex: 0 0 auto !important;
    gap: 5px !important;
    margin-left: 2px !important;
  }

  .alma-header .nav-right .header-action-btn,
  .alma-header .nav-right .header-action-btn:visited,
  .alma-header .nav-right .btn,
  .alma-header .nav-right .btn:visited {
    min-width: 88px !important;
    min-height: 38px !important;
    padding-right: 7px !important;
    padding-left: 7px !important;
    font-size: 11px !important;
  }

  .alma-header .offcanvas-toggle {
    display: none !important;
  }
}

@media (max-width: 1180px) {
  .alma-header .nav-links,
  .alma-header .nav-right {
    display: none !important;
  }

  .alma-header .offcanvas-toggle {
    display: flex !important;
    margin-left: auto !important;
  }
}

/* Qui sommes-nous: contact band aligned with ALMA blue theme */
.about-contact-band {
  background:
    radial-gradient(circle at 14% 18%, rgba(115,198,240,0.28) 0%, rgba(115,198,240,0) 30%),
    radial-gradient(circle at 88% 78%, rgba(29,131,193,0.26) 0%, rgba(29,131,193,0) 32%),
    linear-gradient(135deg, #063a5f 0%, #0b4f7c 46%, #1d83c1 100%) !important;
  color: #fff !important;
}

.about-contact-band::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.06), transparent 42%, rgba(255,255,255,0.08)),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.12), transparent 36%) !important;
  pointer-events: none !important;
}

.about-contact-band {
  position: relative !important;
  overflow: hidden !important;
}

.about-contact-inner {
  position: relative !important;
  z-index: 1 !important;
}

.about-contact-eyebrow {
  color: #bfe9ff !important;
}

.about-contact-copy p,
.about-contact-item span:not(.about-contact-icon) {
  color: rgba(238,248,255,0.82) !important;
}

.about-contact-icon {
  border-color: rgba(191,233,255,0.58) !important;
  background: rgba(255,255,255,0.08) !important;
  color: #fff !important;
}

.about-contact-form {
  background: linear-gradient(180deg, rgba(7,61,99,0.98), rgba(5,47,79,0.98)) !important;
  border: 1px solid rgba(191,233,255,0.22) !important;
  box-shadow: 0 24px 62px rgba(1,13,20,0.22) !important;
}

.about-contact-form h3 {
  color: #fff !important;
}

.about-contact-form p {
  color: rgba(238,248,255,0.74) !important;
}

.about-contact-form input,
.about-contact-form textarea {
  border-color: rgba(191,233,255,0.18) !important;
  background: rgba(255,255,255,0.08) !important;
  color: #fff !important;
}

.about-contact-form input::placeholder,
.about-contact-form textarea::placeholder {
  color: rgba(238,248,255,0.58) !important;
}

.about-contact-form input:focus,
.about-contact-form textarea:focus {
  border-color: #73c6f0 !important;
  background: rgba(255,255,255,0.12) !important;
  box-shadow: 0 0 0 3px rgba(115,198,240,0.18) !important;
}

.about-contact-form button {
  border-color: #73c6f0 !important;
  background: #1d83c1 !important;
  color: #fff !important;
}

.about-contact-form button:hover,
.about-contact-form button:focus {
  border-color: #bfe9ff !important;
  background: #0b5f93 !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}

/* Qui sommes-nous: red-tinted telecom service photo */
.about-activities-grid .svc-card-signal .svc-activity-photo {
  background:
    linear-gradient(180deg, rgba(70,8,12,0.1), rgba(70,8,12,0.24)),
    var(--svc-image) center / cover no-repeat !important;
}

.about-activities-grid .svc-card-signal .svc-activity-photo::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background:
    linear-gradient(135deg, rgba(217,48,40,0.82), rgba(120,14,22,0.5)),
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.34), transparent 30%) !important;
  mix-blend-mode: color !important;
  pointer-events: none !important;
}

.about-activities-grid .svc-card-signal .svc-activity-photo::after {
  z-index: 1 !important;
  background:
    linear-gradient(135deg, rgba(217,48,40,0.28), transparent 58%),
    linear-gradient(180deg, transparent 44%, rgba(80,0,8,0.18)) !important;
  mix-blend-mode: screen !important;
}

.services-page .svc-card-signal .svc-activity-photo {
  background:
    linear-gradient(180deg, rgba(70,8,12,0.1), rgba(70,8,12,0.24)),
    var(--svc-image) center / cover no-repeat !important;
}

.services-page .svc-card-signal .svc-activity-photo::before,
.services-mega-grid .svc-card-signal .svc-mega-photo::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background:
    linear-gradient(135deg, rgba(217,48,40,0.82), rgba(120,14,22,0.5)),
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.34), transparent 30%) !important;
  mix-blend-mode: color !important;
  pointer-events: none !important;
}

.services-page .svc-card-signal .svc-activity-photo::after,
.services-mega-grid .svc-card-signal .svc-mega-photo::after {
  z-index: 1 !important;
  background:
    linear-gradient(135deg, rgba(217,48,40,0.28), transparent 58%),
    linear-gradient(180deg, transparent 44%, rgba(80,0,8,0.18)) !important;
  mix-blend-mode: screen !important;
}

.services-mega-grid .svc-card-signal .svc-mega-photo {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(180deg, rgba(70,8,12,0.1), rgba(70,8,12,0.24)),
    var(--svc-image) center / cover no-repeat !important;
}

.services-mega-grid .svc-card-signal .svc-mega-icon {
  z-index: 2 !important;
}

/* Qui sommes-nous: realisations cards with project photos */
.about-realisations-section .industrie-project-card .project-visual {
  overflow: hidden !important;
  background:
    linear-gradient(135deg, rgba(6,58,95,0.18), rgba(29,131,193,0.08)),
    var(--project-image) center / cover no-repeat !important;
}

.about-realisations-section .industrie-project-card .project-visual::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(6,58,95,0.18)),
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.48), transparent 34%) !important;
  opacity: 1 !important;
  pointer-events: none !important;
}

.about-realisations-section .industrie-project-card .project-visual span {
  z-index: 1 !important;
  color: rgba(255,255,255,0.78) !important;
  text-shadow: 0 10px 28px rgba(6,58,95,0.28) !important;
}

.about-realisations-section .industrie-project-card .project-body span {
  display: inline-flex !important;
  width: 34px !important;
  height: 24px !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 12px !important;
  color: #fff !important;
  background: var(--alma-blue) !important;
  border-radius: 2px !important;
}

.about-realisations-section .industrie-project-card h3 {
  font-size: clamp(1.28rem, 1.8vw, 1.62rem) !important;
}

/* Qui sommes-nous: Projects Style 05 hover reveal */
.about-realisations-section .industrie-project-grid {
  gap: 28px !important;
  padding: 0 4px 22px !important;
}

.about-realisations-section .industrie-project-card {
  flex: 0 0 min(360px, calc((100% - 56px) / 3)) !important;
  min-height: 430px !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: #061522 !important;
  box-shadow: 0 22px 54px rgba(1,13,20,0.14) !important;
  color: #fff !important;
}

.about-realisations-section .industrie-project-card .project-visual {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
  transform: scale(1) !important;
  transition: transform 0.75s cubic-bezier(.16,.72,.24,1), filter 0.45s ease !important;
}

.about-realisations-section .industrie-project-card .project-visual::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background:
    linear-gradient(180deg, rgba(1,13,20,0.02) 0%, rgba(1,13,20,0.16) 46%, rgba(1,13,20,0.82) 100%),
    linear-gradient(135deg, rgba(29,131,193,0.48), rgba(6,58,95,0.10) 45%, rgba(1,13,20,0.28)) !important;
  opacity: 0 !important;
  transition: opacity 0.42s ease !important;
}

.about-realisations-section .industrie-project-card .project-visual span {
  top: 24px !important;
  right: 28px !important;
  z-index: 2 !important;
  color: rgba(255,255,255,0.78) !important;
  font-size: clamp(3.8rem, 6vw, 5rem) !important;
  transform: translateY(-12px) !important;
  opacity: 0 !important;
  transition: opacity 0.38s ease, transform 0.48s cubic-bezier(.16,.72,.24,1) !important;
}

.about-realisations-section .industrie-project-card .project-body {
  left: 24px !important;
  right: 24px !important;
  bottom: 24px !important;
  z-index: 3 !important;
  padding: 24px 24px 22px !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  border-radius: 5px !important;
  background: rgba(255,255,255,0.96) !important;
  box-shadow: 0 18px 45px rgba(1,13,20,0.18) !important;
  transform: translateY(28px) !important;
  opacity: 0 !important;
  transition:
    opacity 0.36s ease,
    transform 0.5s cubic-bezier(.16,.72,.24,1),
    background-color 0.36s ease !important;
}

.about-realisations-section .industrie-project-card .project-body span {
  width: 34px !important;
  height: 24px !important;
  margin-bottom: 12px !important;
  color: #fff !important;
  background: var(--alma-blue) !important;
  border-radius: 2px !important;
  font-size: 0.72rem !important;
}

.about-realisations-section .industrie-project-card h3 {
  display: block !important;
  margin: 0 !important;
  color: #0b3b60 !important;
  font-size: clamp(1.28rem, 1.85vw, 1.72rem) !important;
  line-height: 1.16 !important;
  font-weight: 900 !important;
}

.about-realisations-section .industrie-project-card h3::after {
  content: none !important;
  display: none !important;
}

.about-realisations-section .industrie-project-card:hover,
.about-realisations-section .industrie-project-card:focus-within {
  transform: translateY(-7px) !important;
  box-shadow: 0 30px 72px rgba(1,13,20,0.22) !important;
}

.about-realisations-section .industrie-project-card:hover .project-visual,
.about-realisations-section .industrie-project-card:focus-within .project-visual {
  transform: scale(1.08) !important;
  filter: saturate(1.08) contrast(1.04) !important;
}

.about-realisations-section .industrie-project-card:hover .project-visual::before,
.about-realisations-section .industrie-project-card:focus-within .project-visual::before,
.about-realisations-section .industrie-project-card:hover .project-visual span,
.about-realisations-section .industrie-project-card:focus-within .project-visual span,
.about-realisations-section .industrie-project-card:hover .project-body,
.about-realisations-section .industrie-project-card:focus-within .project-body {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (max-width: 900px) {
  .about-realisations-section .industrie-project-card {
    flex-basis: min(320px, 84vw) !important;
    min-height: 390px !important;
  }

  .about-realisations-section .industrie-project-card .project-body {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .about-realisations-section .industrie-project-card .project-visual::before {
    opacity: 0.78 !important;
  }
}

/* Qui sommes-nous: benefit band after trusted references */
.about-benefits-section {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
  background: #0b67b7;
}

.about-benefits-blue {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 8% 14%, rgba(115,198,240,0.16), transparent 30%),
    radial-gradient(circle at 42% 88%, rgba(255,255,255,0.08), transparent 34%),
    linear-gradient(135deg, #075aab 0%, #0b6fc4 54%, #1d83c1 100%);
}

.about-benefits-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background:
    repeating-linear-gradient(135deg, transparent 0 42px, rgba(255,255,255,0.14) 43px 44px),
    radial-gradient(ellipse at 18% 32%, transparent 0 32%, rgba(255,255,255,0.25) 33% 34%, transparent 35%);
  pointer-events: none;
}

.about-benefits-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 70px));
  margin-left: auto;
  padding: 76px 28px 76px 0;
  color: #fff;
}

.about-benefits-eyebrow {
  margin-bottom: 12px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-benefits-content h2 {
  max-width: 610px;
  margin: 0 0 32px;
  color: #fff !important;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 3.05rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.about-benefits-content h2 span {
  color: #083b65;
}

.about-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(760px, 100%);
}

.about-benefit-card {
  position: relative;
  min-height: 112px;
  padding: 22px 18px 18px 66px;
  background: #fff;
  color: #0b3b60;
  border-radius: 3px;
  box-shadow: 0 20px 44px rgba(1,13,20,0.12);
  transition: transform 0.34s ease, box-shadow 0.34s ease;
}

.about-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 58px rgba(1,13,20,0.18);
}

.about-benefit-icon {
  position: absolute;
  left: 18px;
  top: 20px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--alma-blue);
  background: #eef8ff;
  border: 1px solid rgba(29,131,193,0.12);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 900;
}

.about-benefit-card h3 {
  margin: 0 0 8px;
  color: #0b3b60;
  font-size: 1rem;
  line-height: 1.22;
  font-weight: 900;
}

.about-benefit-card p {
  margin: 0;
  color: #667586;
  font-size: 0.78rem;
  line-height: 1.55;
}

.about-benefit-card::after {
  content: attr(data-num);
  position: absolute;
  left: 20px;
  bottom: 12px;
  color: rgba(11,59,96,0.07);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
}

.about-benefits-photo {
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(1,13,20,0.18), rgba(1,13,20,0.02)),
    url("assets/svc-alma2.jpeg") center / cover no-repeat;
}

@media (max-width: 1100px) {
  .about-benefits-section {
    grid-template-columns: 1fr;
  }

  .about-benefits-content {
    width: min(920px, calc(100% - 40px));
    margin: 0 auto;
    padding: 58px 0;
  }

  .about-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-benefits-photo {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .about-benefits-grid {
    grid-template-columns: 1fr;
  }

  .about-benefit-card {
    padding-left: 64px;
  }
}

/* Final ALMA charter color lock: logo blues only */
:root {
  --alma-orange: #1D83C1 !important;
}

.alma-header .nav-right .header-claim-btn,
.alma-header .nav-right .header-claim-btn:visited,
.nav-claim-btn,
.nav-claim-btn:visited {
  border-color: #0B5F93 !important;
  background: linear-gradient(90deg, #0B5F93 0%, #1D83C1 100%) !important;
  color: #fff !important;
}

.alma-header .nav-right .header-claim-btn:hover,
.alma-header .nav-right .header-claim-btn:focus,
.nav-claim-btn:hover,
.nav-claim-btn:focus {
  border-color: #0B3B60 !important;
  background: linear-gradient(90deg, #0B3B60 0%, #0B5F93 100%) !important;
  color: #fff !important;
}

.about-activities-grid .svc-card-signal .svc-activity-photo,
.services-page .svc-card-signal .svc-activity-photo,
.services-mega-grid .svc-card-signal .svc-mega-photo {
  background:
    linear-gradient(180deg, rgba(6,58,95,0.08), rgba(6,58,95,0.2)),
    var(--svc-image) center / cover no-repeat !important;
}

.about-activities-grid .svc-card-signal .svc-activity-photo::before,
.services-page .svc-card-signal .svc-activity-photo::before,
.services-mega-grid .svc-card-signal .svc-mega-photo::before {
  background:
    linear-gradient(135deg, rgba(29,131,193,0.66), rgba(11,59,96,0.36)),
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.34), transparent 30%) !important;
  mix-blend-mode: color !important;
}

.about-activities-grid .svc-card-signal .svc-activity-photo::after,
.services-page .svc-card-signal .svc-activity-photo::after,
.services-mega-grid .svc-card-signal .svc-mega-photo::after {
  background:
    linear-gradient(135deg, rgba(115,198,240,0.22), transparent 58%),
    linear-gradient(180deg, transparent 44%, rgba(11,59,96,0.16)) !important;
  mix-blend-mode: screen !important;
}

.about-contact-form button:hover,
.about-contact-form button:focus {
  border-color: #73C6F0 !important;
  background: #0B5F93 !important;
}

.ref-dot.paused,
.why-card-v2 .card-cat.red,
.why-card-v2 .card-cat.orange {
  color: #1D83C1 !important;
  background-color: #1D83C1 !important;
}

/* Qui sommes-nous: quality certifications section */
.about-quality-section {
  position: relative;
  overflow: hidden;
  padding: 72px 20px 78px;
  background:
    radial-gradient(circle at 12% 20%, rgba(115,198,240,0.18), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(29,131,193,0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.about-quality-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29,131,193,0.05), transparent 32%, rgba(115,198,240,0.07)),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.92), transparent 36%);
  pointer-events: none;
}

.about-quality-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.about-quality-head {
  max-width: 840px;
  margin: 0 auto 38px;
  text-align: center;
}

.about-quality-head .eyebrow {
  color: var(--alma-blue) !important;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-quality-head h2 {
  margin: 10px 0 14px;
  color: #0b3b60 !important;
  font-family: var(--font-heading);
  font-size: var(--industrie-h2);
  line-height: 1.2;
  font-weight: 900;
}

.about-quality-head p {
  max-width: 780px;
  margin: 0 auto;
  color: #536474;
  font-size: 1.05rem;
  line-height: 1.72;
}

.about-cert-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.about-cert-card {
  min-height: 212px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px 18px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(29,131,193,0.12);
  border-radius: 6px;
  box-shadow: 0 16px 42px rgba(1,13,20,0.06);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.about-cert-card:hover {
  transform: translateY(-6px);
  border-color: rgba(29,131,193,0.28);
  box-shadow: 0 24px 58px rgba(1,13,20,0.1);
}

.about-cert-card img {
  width: auto;
  max-width: 86px;
  height: 64px;
  margin-bottom: 18px;
  object-fit: contain;
}

.about-cert-card h3 {
  margin: 0 0 8px;
  color: #0b3b60;
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 900;
}

.about-cert-card p {
  margin: 0;
  color: #667586;
  font-size: 0.82rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .about-cert-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-quality-section {
    padding: 52px 16px 58px;
  }

  .about-cert-grid {
    grid-template-columns: 1fr;
  }
}

/* Final restore: services keep their distinct activity colors */
.about-activities-grid .svc-card-signal .svc-activity-photo,
.services-page .svc-card-signal .svc-activity-photo,
.services-mega-grid .svc-card-signal .svc-mega-photo {
  background:
    linear-gradient(180deg, rgba(70,8,12,0.1), rgba(70,8,12,0.24)),
    var(--svc-image) center / cover no-repeat !important;
}

.about-activities-grid .svc-card-signal .svc-activity-photo::before,
.services-page .svc-card-signal .svc-activity-photo::before,
.services-mega-grid .svc-card-signal .svc-mega-photo::before {
  background:
    linear-gradient(135deg, rgba(217,48,40,0.82), rgba(120,14,22,0.5)),
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.34), transparent 30%) !important;
  mix-blend-mode: color !important;
}

.about-activities-grid .svc-card-signal .svc-activity-photo::after,
.services-page .svc-card-signal .svc-activity-photo::after,
.services-mega-grid .svc-card-signal .svc-mega-photo::after {
  background:
    linear-gradient(135deg, rgba(217,48,40,0.28), transparent 58%),
    linear-gradient(180deg, transparent 44%, rgba(80,0,8,0.18)) !important;
  mix-blend-mode: screen !important;
}

/* Services images: full-bleed framed photos without empty side gaps */
.about-activities-grid .svc-activity-photo,
.services-page .svc-activity-photo {
  min-height: 230px !important;
  background:
    linear-gradient(180deg, rgba(7,18,48,0.02), rgba(7,18,48,0.12)),
    var(--svc-image) center / cover no-repeat !important;
  background-color: #eef7fc !important;
}

.services-mega-grid .svc-mega-photo {
  background:
    linear-gradient(180deg, rgba(7,18,48,0.02), rgba(7,18,48,0.12)),
    var(--svc-image) center / cover no-repeat !important;
  background-color: #eef7fc !important;
}

@media (max-width: 680px) {
  .about-activities-grid .svc-activity-photo,
  .services-page .svc-activity-photo {
    min-height: 210px !important;
  }
}


/* ============================================================ 
   QUI SOMMES NOUS - PROJECTS STYLE 05 
   ============================================================ */
#rs-proj5-slider { margin-bottom: 24px; padding-bottom: 50px; overflow: hidden; position: relative; }
.rs-proj5-card { position: relative; height: 500px; display: block; overflow: hidden; }
.rs-proj5-visual { position: absolute; inset: 0; background-position: center; background-size: cover; transition: transform 0.6s ease; }


/* ============================================================ 
   QUI SOMMES NOUS - PROJECTS STYLE 05 
   ============================================================ */
#rs-proj5-slider { margin-bottom: 24px; padding-bottom: 50px; overflow: hidden; position: relative; }
.rs-proj5-card { position: relative; height: 500px; display: block; overflow: hidden; }
.rs-proj5-visual { position: absolute; inset: 0; background-position: center; background-size: cover; transition: transform 0.6s ease; }
.rs-proj5-card:hover .rs-proj5-visual { transform: scale(1.08); }
.rs-proj5-pagination { bottom: 0 !important; }
.rs-proj5-pagination .swiper-pagination-bullet { width: 12px; height: 12px; background: #c3c3c3; opacity: 1; margin: 0 6px !important; }
.rs-proj5-pagination .swiper-pagination-bullet-active { background: #1d83c1; }
.rs-proj5-nav .swiper-button-prev, .rs-proj5-nav .swiper-button-next { position: static; width: 44px; height: 44px; border: 1px solid #e0e0e0; border-radius: 50%; color: #0b3b60; display: flex; align-items: center; justify-content: center; margin: 0; background: #fff; transition: all 0.3s; }
.rs-proj5-nav .swiper-button-prev::after, .rs-proj5-nav .swiper-button-next::after { font-size: 16px; font-weight: bold; }
.rs-proj5-nav .swiper-button-prev:hover, .rs-proj5-nav .swiper-button-next:hover { background: #1d83c1; color: #fff; border-color: #1d83c1; }
@media (max-width: 768px) { .rs-proj5-card { height: 350px; } .industrie-split-head { flex-direction: column; text-align: center; gap: 20px; } }

/* =================================================================
   SECTION RÉALISATIONS — Projects Style 05 — version unique
   ================================================================= */

/* Card */
.rs-proj5-card {
  position: relative;
  overflow: hidden;
  height: 500px;
  border-radius: 3px;
  cursor: pointer;
  display: block;
  background: #0b1e31;
}

/* Image layer */
.rs-proj5-card .portfolio-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.rs-proj5-card .portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.rs-proj5-card:hover .portfolio-img img {
  transform: scale(1.07);
}

/* Overlay — soft descending curtain effect */
.rs-proj5-card .portfolio-img .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 34, 59, 0.82) 0%,
    rgba(11, 34, 59, 0.45) 45%,
    rgba(11, 34, 59, 0.20) 70%,
    rgba(11, 34, 59, 0.55) 100%
  );
  z-index: 2;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform .65s cubic-bezier(0.25, 1, 0.5, 1), opacity .55s ease;
}
.rs-proj5-card:hover .portfolio-img .img-overlay {
  transform: translateY(0);
  opacity: 1;
}

/* Portfolio content — slides in from left */
.rs-proj5-card .portfolio-content {
  position: absolute !important;
  top: 30px !important;
  left: -250px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: left .5s ease .05s, opacity .5s ease .05s, visibility .5s ease .05s !important;
  z-index: 6 !important;
  pointer-events: none;
  padding: 0 20px;
}
.rs-proj5-card:hover .portfolio-content {
  left: 20px !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.rs-proj5-card .portfolio-content .p-title,
.rs-proj5-card .portfolio-content h4.p-title {
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  color: #fff !important;
  margin: 0 0 6px !important;
  text-transform: capitalize;
}
.rs-proj5-card .portfolio-content .p-category,
.rs-proj5-card .portfolio-content p.p-category {
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  color: rgba(255,255,255,.85) !important;
  margin: 0 !important;
}

/* Arrow button bottom-right — hidden, rises on hover */
.rs-proj5-card .p-icon {
  position: absolute !important;
  right: 15px !important;
  bottom: -70px !important;
  opacity: 0 !important;
  z-index: 6 !important;
  transition: bottom .5s ease .1s, opacity .5s ease .1s !important;
}
.rs-proj5-card:hover .p-icon {
  bottom: 15px !important;
  opacity: 1 !important;
}
.rs-proj5-card .p-icon a.prs_btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  background-color: #1d83c1 !important;
  border: none !important;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: background-color .3s ease, transform .3s ease !important;
}
.rs-proj5-card .p-icon a.prs_btn:hover {
  background-color: #0b67b7 !important;
  transform: scale(1.08);
}
.rs-proj5-card .p-icon a.prs_btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
/* btn_icon_1: exits right on button hover */
.rs-proj5-card .p-icon a.prs_btn .btn_icon_1 {
  display: inline-flex;
  align-items: center;
  width: 19px; height: 12px;
  overflow: hidden;
  position: relative;
  transition: transform .4s ease, opacity .4s ease;
}
.rs-proj5-card .p-icon a.prs_btn:hover .btn_icon_1 {
  transform: translateX(30px);
  opacity: 0;
}
/* btn_icon_2: enters from left on button hover */
.rs-proj5-card .p-icon a.prs_btn .btn_icon_2 {
  display: inline-flex;
  align-items: center;
  width: 19px; height: 12px;
  overflow: hidden;
  position: absolute;
  transform: translateX(-30px);
  transition: transform .4s ease;
}
.rs-proj5-card .p-icon a.prs_btn:hover .btn_icon_2 {
  transform: translateX(0);
}
.rs-proj5-card .p-icon svg { fill: #fff !important; }

/* Full-card link on top */
.project-card-link { position: absolute; inset: 0; z-index: 10; }

@media (max-width: 768px) {
  .rs-proj5-card { height: 340px; }
}

 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
       R e f e r e n c e   S e c t i o n   /   L o g o   S h o w c a s e   ( P r e m i u m   S t y l e ) 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 . b l o c k - r e f - s e c t i o n   { 
     p a d d i n g :   1 0 0 p x   0 ; 
     b a c k g r o u n d - c o l o r :   # f 6 f 8 f b ; 
 } 
 . r e f - s e c t i o n - h e a d   { 
     t e x t - a l i g n :   c e n t e r ; 
     m a x - w i d t h :   8 0 0 p x ; 
     m a r g i n :   0   a u t o   5 0 p x ; 
 } 
 . r e f - s e c t i o n - h e a d   p   { 
     c o l o r :   # 6 6 6 ; 
     f o n t - s i z e :   1 . 1 r e m ; 
 } 
 . r s a d d o n s - l o g o - s h o w c a s e   { 
     m a x - w i d t h :   1 2 0 0 p x ; 
     m a r g i n :   0   a u t o ; 
     o v e r f l o w :   h i d d e n ; 
 } 
 . r s a d d o n s - l o g o - s h o w c a s e   . g r i d - i t e m   { 
     p a d d i n g :   1 5 p x ; 
 } 
 . r s - g r i d - f i g u r e   { 
     b a c k g r o u n d :   # f f f ; 
     b o r d e r - r a d i u s :   8 p x ; 
     p a d d i n g :   3 0 p x ; 
     t e x t - a l i g n :   c e n t e r ; 
     b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 0 , 0 , 0 , 0 . 0 3 ) ; 
     t r a n s i t i o n :   a l l   0 . 3 s   c u b i c - b e z i e r ( 0 . 2 5 ,   0 . 8 ,   0 . 2 5 ,   1 ) ; 
     h e i g h t :   1 4 0 p x ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     b o r d e r :   1 p x   s o l i d   # e e f 1 f 6 ; 
 } 
 . r s - g r i d - f i g u r e : h o v e r   { 
     b o x - s h a d o w :   0   1 5 p x   3 0 p x   r g b a ( 0 , 0 , 0 , 0 . 0 8 ) ; 
     t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ; 
     b o r d e r - c o l o r :   t r a n s p a r e n t ; 
 } 
 . r s - g r i d - f i g u r e   i m g . m a i n s - l o g o s   { 
     m a x - w i d t h :   1 0 0 % ; 
     m a x - h e i g h t :   8 0 p x ; 
     o p a c i t y :   0 . 5 ; 
     f i l t e r :   g r a y s c a l e ( 1 0 0 % ) ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 . r s - g r i d - f i g u r e : h o v e r   i m g . m a i n s - l o g o s   { 
     o p a c i t y :   1 ; 
     f i l t e r :   g r a y s c a l e ( 0 % ) ; 
 } 
 . r e f - s t a t u s   { 
     t e x t - a l i g n :   c e n t e r ; 
     m a r g i n - t o p :   4 0 p x ; 
     f o n t - s i z e :   0 . 9 r e m ; 
     c o l o r :   # 8 8 8 ; 
     d i s p l a y :   f l e x ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     a l i g n - i t e m s :   c e n t e r ; 
     g a p :   1 0 p x ; 
 } 
 . r e f - d o t   { 
     w i d t h :   8 p x ; 
     h e i g h t :   8 p x ; 
     b a c k g r o u n d - c o l o r :   # 1 d 8 3 c 1 ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     d i s p l a y :   i n l i n e - b l o c k ; 
     a n i m a t i o n :   p u l s e - d o t   1 . 5 s   i n f i n i t e ; 
 } 
 @ k e y f r a m e s   p u l s e - d o t   { 
     0 %   {   b o x - s h a d o w :   0   0   0   0   r g b a ( 2 9 ,   1 3 1 ,   1 9 3 ,   0 . 4 ) ;   } 
     7 0 %   {   b o x - s h a d o w :   0   0   0   1 0 p x   r g b a ( 2 9 ,   1 3 1 ,   1 9 3 ,   0 ) ;   } 
     1 0 0 %   {   b o x - s h a d o w :   0   0   0   0   r g b a ( 2 9 ,   1 3 1 ,   1 9 3 ,   0 ) ;   } 
 } 
 
 
 
/* Premium Service Cards - rs-addon-services style7 */
.rs-addon-services.style7 .services-inner {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.rs-addon-services.style7 .services-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--alma-primary-blue, #0d3b66);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rs-addon-services.style7:hover .services-inner::before {
    transform: scaleY(1);
    transform-origin: top;
}

.rs-addon-services.style7:hover .services-inner {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(13, 59, 102, 0.15);
}

.rs-addon-services.style7 .numbering {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(13, 59, 102, 0.05);
    line-height: 1;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.rs-addon-services.style7:hover .numbering {
    color: rgba(255, 255, 255, 0.15);
}

.rs-addon-services.style7 .media_wrap {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.rs-addon-services.style7 .icon_style svg {
    fill: var(--alma-accent-orange, #f47920);
    width: 55px;
    height: 55px;
    transition: all 0.4s ease;
}

.rs-addon-services.style7:hover .icon_style svg {
    fill: #ffffff;
    transform: scale(1.1);
}

.rs-addon-services.style7 .content_part {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.rs-addon-services.style7 .title {
    font-size: 20px;
    font-weight: 700;
    color: var(--alma-primary-blue, #0d3b66);
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.rs-addon-services.style7:hover .title {
    color: #ffffff;
}

.rs-addon-services.style7 .desc-text {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
    transition: all 0.4s ease;
}

.rs-addon-services.style7:hover .desc-text {
    color: rgba(255, 255, 255, 0.8);
}


/* ==============================
   SECTION NOS AVANTAGES (avq)
   FULLY ISOLATED & RESET STYLE
   ============================== */

.avq-hero * {
  box-sizing: border-box !important;
}

.avq-hero {
  width: 100% !important;
  min-height: 100vh !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  overflow: hidden !important;
  background: #eaf0f6 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.avq-slide {
  width: 1241px !important;
  height: 672px !important;
  position: relative !important;
  overflow: hidden !important;
  background: #005aa8 !important;
  margin: 0 !important;
  padding: 0 !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.avq-bg-photo {
  position: absolute !important;
  inset: 0 !important;
  background: url("assets/avq-water-drop.jpeg?v=20260615-1558") center center/cover no-repeat !important;
  z-index: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.avq-left-overlay {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 62% !important;
  height: 100% !important;
  background: linear-gradient(90deg, rgba(0,85,165,.82) 0%, rgba(0,105,190,.68) 52%, rgba(0,105,190,.08) 100%) !important;
  z-index: 2 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.avq-content {
  position: absolute !important;
  z-index: 5 !important;
  left: 72px !important;
  top: 78px !important;
  width: 841px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.avq-subtitle {
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  margin: 0 0 20px 86px !important;
  padding: 0 !important;
  line-height: 1.2 !important;
  letter-spacing: 1px !important;
}

.avq-title-row {
  display: flex !important;
  align-items: center !important;
  gap: 34px !important;
  margin: 0 0 24px 0 !important;
  padding: 0 !important;
}

.avq-circle {
  width: 41px !important;
  height: 41px !important;
  border: 4px solid #fff !important;
  border-radius: 50% !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}

.avq-title-row h1 {
  color: #fff !important;
  font-size: 45px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: -2px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.avq-cards {
  display: grid !important;
  grid-template-columns: repeat(3, 290px) !important;
  grid-template-rows: 155px 155px !important;
  gap: 15px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.avq-card {
  background: #fff !important;
  border-radius: 6px !important;
  height: 155px !important;
  width: 290px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 22px rgba(0,0,0,.12) !important;
  display: grid !important;
  grid-template-columns: 54px 1fr !important;
  padding: 16px 16px 14px 16px !important;
  margin: 0 !important;
}

.avq-icon-col {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

.avq-icon {
  width: 40px !important;
  height: 40px !important;
  color: #0064bf !important;
  margin: 0 0 18px 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}

.avq-number {
  color: #d3d3d3 !important;
  font-size: 40px !important;
  line-height: .8 !important;
  font-weight: 900 !important;
  writing-mode: vertical-rl !important;
  transform: rotate(180deg) !important;
  margin: 0 !important;
  padding: 0 !important;
}

.avq-card div {
  margin: 0 !important;
  padding: 0 !important;
}

.avq-card h3 {
  color: #0054a6 !important;
  font-size: 14px !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
  margin: 0 0 12px 0 !important;
  padding: 0 !important;
}

.avq-card p {
  color: #111 !important;
  font-size: 11.5px !important;
  line-height: 1.42 !important;
  font-weight: 600 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* --- avq animations --- */
@keyframes avqFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.avq-anim {
  animation: avqFadeInUp 0.6s ease-out both;
}

.avq-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
  border: 1px solid transparent !important;
}

.avq-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 14px 32px rgba(0,90,168,0.14) !important;
  border-color: rgba(0,100,191,0.15) !important;
}

.avq-card:hover .avq-icon {
  transform: scale(1.15);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.avq-icon {
  transition: transform 0.35s ease, color 0.3s ease !important;
}

@media(max-width:900px){
  .avq-slide {
  width: 1241px !important;
  height: 672px !important;
  position: relative !important;
  overflow: hidden !important;
  background: #005aa8 !important;
  margin: 0 !important;
  padding: 0 !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

  .avq-content {
  position: absolute !important;
  z-index: 5 !important;
  left: 72px !important;
  top: 78px !important;
  width: 841px !important;
  margin: 0 !important;
  padding: 0 !important;
}

  .avq-subtitle {
    margin-left: 0 !important;
  }

  .avq-title-row h1 {
    font-size: 38px !important;
  }

  .avq-cards {
  display: grid !important;
  grid-template-columns: repeat(3, 275px) !important;
  grid-template-rows: 155px 155px !important;
  gap: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
}

  .avq-card {
  background: #fff !important;
  border-radius: 6px !important;
  height: 155px !important;
  width: 275px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 22px rgba(0,0,0,.12) !important;
  display: grid !important;
  grid-template-columns: 54px 1fr !important;
  padding: 16px 16px 14px 16px !important;
  margin: 0 !important;
}
}


/* ==============================
   SECTION BLOG STYLE 02 (abs)
   ============================== */

.abs-section {
  padding: 80px 0 !important;
  background-color: #fafbfc !important;
}

.abs-header {
  text-align: center !important;
  margin-bottom: 50px !important;
}

.abs-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #0064bf !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 12px !important;
}

.abs-eyebrow-icon {
  width: 14px !important;
  height: 14px !important;
  color: #0064bf !important;
}

.abs-title {
  font-size: 38px !important;
  font-weight: 900 !important;
  color: #0b3a60 !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.abs-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
  margin-top: 30px !important;
}

.abs-card {
  background: #ffffff !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  text-decoration: none !important;
  color: inherit !important;
}

.abs-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
}

.abs-img-wrap {
  position: relative !important;
  width: 100% !important;
  height: 220px !important;
  overflow: hidden !important;
}

.abs-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s ease !important;
}

.abs-card:hover .abs-img-wrap img {
  transform: scale(1.05) !important;
}

.abs-badge {
  position: absolute !important;
  left: 24px !important;
  bottom: 0 !important;
  background-color: #005aa8 !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 6px 14px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  border-radius: 3px 3px 0 0 !important;
  z-index: 3 !important;
}

.abs-body {
  padding: 24px 24px 20px 24px !important;
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

.abs-post-title {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #0b3a60 !important;
  line-height: 1.4 !important;
  margin: 0 0 12px 0 !important;
  text-transform: uppercase !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  height: 44px !important;
}

.abs-meta {
  font-size: 12px !important;
  color: #777777 !important;
  margin-bottom: 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.abs-meta span {
  color: #ccc !important;
}

.abs-divider {
  border: 0 !important;
  border-top: 1px solid #eaeaea !important;
  margin: 0 0 16px 0 !important;
}

.abs-footer {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-top: auto !important;
}

.abs-read-time {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #777777 !important;
}

.abs-arrow-btn {
  width: 32px !important;
  height: 32px !important;
  background-color: #f0f2f5 !important;
  border-radius: 4px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background-color 0.3s ease, color 0.3s ease !important;
  color: #555555 !important;
}

.abs-arrow-btn svg {
  width: 14px !important;
  height: 14px !important;
  stroke-width: 2.5 !important;
}

.abs-card:hover .abs-arrow-btn {
  background-color: #0064bf !important;
  color: #ffffff !important;
}

@media (max-width: 991px) {
  .abs-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 767px) {
  .abs-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .abs-title {
    font-size: 30px !important;
  }
}




/* ==============================
   UNIFIED ALMA SECTION HEADERS
   ============================== */

.alma-section-header {
  text-align: center !important;
  margin-bottom: 50px !important;
  width: 100% !important;
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.alma-section-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #1D83C1 !important; /* Exact blue color of Réalisations */
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  margin-bottom: 15px !important;
  line-height: 1.2 !important;
}

.alma-section-title {
  font-family: "Outfit", sans-serif !important;
  font-size: clamp(28px, 3.2vw, 38px) !important;
  font-weight: 800 !important;
  color: #0b3a60 !important; /* Theme dark blue */
  line-height: 1.25 !important;
  margin: 0 !important;
  padding: 0 !important;
  letter-spacing: -0.5px !important;
  text-transform: none !important;
}

.alma-section-header .alma-section-title {
  text-align: center !important;
}

.alma-section-title span.hi,
.alma-section-title span.green-text {
  color: #2EA46A !important; /* Theme green */
}

.alma-section-desc {
  font-family: "Inter", sans-serif !important;
  font-size: 15px !important;
  color: #536474 !important;
  line-height: 1.6 !important;
  margin: 15px auto 0 auto !important;
  max-width: 750px !important;
  text-align: center !important;
}


/* ==============================
   SECTION CERTIFICATIONS & AGREMENTS (aqc)
   ============================== */

.aqc-section {
  padding: 100px 0 !important;
  background-color: #ffffff !important;
  position: relative !important;
  overflow: hidden !important;
}

.aqc-wave {
  position: absolute !important;
  bottom: 0 !important;
  height: 180px !important;
  width: 380px !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.aqc-wave-left {
  left: 0 !important;
}

.aqc-wave-right {
  right: 0 !important;
}

.aqc-wave svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

.aqc-container {
  position: relative !important;
  z-index: 2 !important;
}

.aqc-underline {
  width: 50px !important;
  height: 3px !important;
  background-color: #0b3a60 !important;
  margin: 15px auto 0 auto !important;
  border-radius: 2px !important;
}

.aqc-grid {
  display: grid !important;
  grid-template-columns: repeat(7, 1fr) !important;
  gap: 12px !important;
  margin-bottom: 50px !important;
  position: relative !important;
  z-index: 2 !important;
}

.aqc-card {
  background: #ffffff !important;
  border-radius: 12px !important;
  padding: clamp(20px, 2.5vw, 32px) clamp(8px, 1.2vw, 16px) !important;
  text-align: center !important;
  box-shadow: 0 10px 25px rgba(0, 85, 165, 0.03), 0 2px 6px rgba(0, 0, 0, 0.02) !important;
  border: 1px solid #f0f4f8 !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  min-height: clamp(230px, 28vw, 340px) !important;
}

.aqc-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 35px rgba(0, 85, 165, 0.08) !important;
}

.aqc-logo-wrap {
  height: clamp(100px, 11vw, 160px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 18px !important;
  width: 100% !important;
}

.aqc-logo-wrap img {
  max-height: 100% !important;
  max-width: 90% !important;
  object-fit: contain !important;
}

.aqc-card-line {
  width: 25px !important;
  height: 3px !important;
  background-color: #2EA46A !important;
  margin: 0 auto 15px auto !important;
  border-radius: 1px !important;
}

.aqc-card-text {
  font-family: "Outfit", sans-serif !important;
  font-size: clamp(11px, 1.1vw, 15px) !important;
  font-weight: 700 !important;
  color: #0b3a60 !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}

.aqc-footer-pill {
  background: #ffffff !important;
  border-radius: 12px !important;
  padding: 20px 30px !important;
  box-shadow: 0 10px 30px rgba(0, 85, 165, 0.03) !important;
  border: 1px solid #f0f4f8 !important;
  display: flex !important;
  justify-content: space-around !important;
  align-items: center !important;
  max-width: 900px !important;
  margin: 0 auto !important;
  position: relative !important;
  z-index: 2 !important;
}

.aqc-pill-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  position: relative !important;
}

.aqc-pill-item:not(:last-child)::after {
  content: "" !important;
  position: absolute !important;
  right: -40px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 1px !important;
  height: 24px !important;
  background-color: #cbd5e1 !important;
}

.aqc-pill-icon {
  width: 20px !important;
  height: 20px !important;
  display: block !important;
}

.aqc-pill-icon.blue { color: #1D83C1 !important; }
.aqc-pill-icon.green { color: #2EA46A !important; }
.aqc-pill-icon.navy { color: #0b3a60 !important; }

.aqc-pill-text {
  font-family: "Outfit", sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #334155 !important;
}

@media (max-width: 1200px) {
  .aqc-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px !important;
  }
}

@media (max-width: 991px) {
  .aqc-footer-pill {
    flex-wrap: wrap !important;
    border-radius: 12px !important;
    padding: 20px !important;
    gap: 20px !important;
  }
  .aqc-pill-item:not(:last-child)::after {
    display: none !important;
  }
  .aqc-wave {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .aqc-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .aqc-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Custom Eyebrow styling for Certifications & Agréments */
.aqc-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  margin-bottom: 15px !important;
  text-transform: uppercase !important;
}

.aqc-eyebrow::before,
.aqc-eyebrow::after {
  content: "—" !important;
  color: #2EA46A !important;
  font-weight: 800 !important;
}

.aqc-eyebrow .blue-text {
  color: #1D83C1 !important; /* Matches Réalisations eyebrow blue */
}

.aqc-eyebrow .green-text {
  color: #2EA46A !important; /* Green */
}

/* Activity product catalogue pages */
.activity-product-page {
  background: #f7fafc;
  color: #0b2f4f;
}

.activity-product-hero {
  padding: 54px 20px 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(238,247,252,0.92)),
    radial-gradient(circle at 88% 18%, color-mix(in srgb, var(--activity-color) 16%, transparent), transparent 26%);
}

.activity-product-hero-inner,
.activity-product-container,
.activity-product-detail-inner,
.activity-product-related {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.activity-product-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.86fr);
  gap: 42px;
  align-items: center;
}

.activity-product-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: #6a7b88;
  font-size: 0.84rem;
  font-weight: 700;
}

.activity-product-crumbs a {
  color: #1D83C1;
  text-decoration: none;
}

.activity-product-eyebrow,
.activity-section-head span,
.activity-side-label {
  display: inline-flex;
  align-items: center;
  color: var(--activity-color);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.activity-product-copy h1 {
  max-width: 760px;
  margin: 14px 0 18px;
  color: #07345e;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 1.02;
  font-weight: 900;
}

.activity-product-copy p {
  max-width: 680px;
  margin: 0;
  color: #536474;
  font-size: 1.04rem;
  line-height: 1.72;
}

.activity-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.activity-product-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(10,43,73,0.11);
}

.activity-product-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.activity-product-standard-list {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.activity-product-standard-list span,
.activity-product-tags span,
.activity-product-tabs span {
  border: 1px solid color-mix(in srgb, var(--activity-color) 28%, #dbe7ee);
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #16405f;
  padding: 7px 11px;
  font-size: 0.76rem;
  font-weight: 800;
}

.activity-product-section,
.activity-product-detail,
.activity-product-related {
  padding: 56px 0;
}

.activity-product-container {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.activity-product-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid #e4edf3;
  border-radius: 8px;
  background: #fff;
}

.activity-side-label {
  margin-bottom: 8px;
}

.activity-product-side a {
  display: block;
  border-radius: 6px;
  padding: 12px 14px;
  color: #375164;
  text-decoration: none;
  font-weight: 800;
}

.activity-product-side a:hover,
.activity-product-side a.active {
  background: color-mix(in srgb, var(--activity-color) 10%, #fff);
  color: var(--activity-color);
}

.activity-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.activity-section-head h2 {
  margin: 10px 0 10px;
  color: #07345e;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: 1.12;
  font-weight: 900;
}

.activity-section-head p {
  color: #5d6f7c;
  line-height: 1.68;
}

.activity-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.activity-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid #e4edf3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(10,43,73,0.05);
}

.activity-product-card.active {
  border-color: color-mix(in srgb, var(--activity-color) 54%, #e4edf3);
  box-shadow: 0 16px 42px color-mix(in srgb, var(--activity-color) 16%, transparent);
}

.activity-product-card-img {
  height: 220px;
  background: #eef6fa;
}

.activity-product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.activity-product-card h3 {
  margin: 0 0 10px;
  color: #07345e;
  font-size: 1.12rem;
  line-height: 1.25;
  font-weight: 900;
}

.activity-product-card p {
  margin: 0 0 16px;
  color: #5d6f7c;
  line-height: 1.58;
}

.activity-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.activity-product-link {
  margin-top: 18px;
  color: var(--activity-color);
  text-decoration: none;
  font-weight: 900;
}

/* --- Family landing page --- */
.family-landing-hero {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.family-landing-hero-content {
  max-width: 700px;
}
.family-landing-eyebrow {
  display: inline-block;
  background: #1D83C1;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.family-landing-hero-content h1 {
  color: #07345e;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin: 0 0 12px;
  text-shadow: 0 1px 4px rgba(255,255,255,0.6);
}
.family-landing-hero-content p {
  color: #40586a;
  font-size: 1.1rem;
  margin: 0;
}

.family-landing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 60px auto;
  padding: 0 20px;
}

.family-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.family-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}
.family-card-img {
  height: 160px;
  overflow: hidden;
  background: #e8f4fb;
}
.family-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.family-card:hover .family-card-img img {
  transform: scale(1.05);
}
.family-card-body {
  padding: 20px;
  text-align: center;
}
.family-card-line {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--fam-color);
  margin: 0 auto 12px;
  border-radius: 2px;
}
.family-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0b3a60;
  margin: 0 0 8px;
}
.family-card p {
  font-size: 0.85rem;
  color: #536474;
  line-height: 1.5;
  margin: 0 0 14px;
}
.family-card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--fam-color);
}
.family-card-link span { transition: margin 0.3s; }
.family-card:hover .family-card-link span { margin-left: 4px; }

@media (max-width: 900px) {
  .family-landing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .family-landing-grid {
    grid-template-columns: 1fr;
  }
}

.activity-template-chooser {
  padding: 16px 0;
  background: #fff;
  border-top: 1px solid #e4edf3;
  border-bottom: 1px solid #e4edf3;
  margin-top: 40px;
}

.activity-template-chooser-inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.activity-template-chooser h2 {
  margin: 6px 0 0;
  color: #07345e;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.15;
  font-weight: 900;
}

.activity-template-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.activity-template-options a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfeaf1;
  border-radius: 6px;
  padding: 0 14px;
  background: #fff;
  color: #31536a;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 900;
}

.activity-template-options a.active,
.activity-template-options a:hover {
  border-color: var(--activity-color);
  background: color-mix(in srgb, var(--activity-color) 10%, #fff);
  color: var(--activity-color);
}

.activity-product-detail {
  background: #fff;
}

.activity-product-detail-inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.activity-detail-gallery {
  overflow: hidden;
  border: 1px solid #e4edf3;
  border-radius: 8px;
  background: #eef6fa;
}

.activity-detail-gallery img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.activity-detail-info {
  padding: 6px 0;
}

.activity-detail-info h2 {
  margin: 12px 0;
  color: #07345e;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.1;
  font-weight: 900;
}

.activity-detail-info p {
  color: #536474;
  line-height: 1.72;
}

.activity-product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.activity-tech-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid #dfeaf1;
  border-radius: 8px;
}

.activity-tech-table th,
.activity-tech-table td {
  padding: 15px 16px;
  border-bottom: 1px solid #dfeaf1;
  text-align: left;
  vertical-align: top;
}

.activity-tech-table th {
  width: 34%;
  background: #f4f8fb;
  color: #07345e;
  font-weight: 900;
}

.activity-tech-table td {
  color: #526674;
}

.activity-tech-table tr:last-child th,
.activity-tech-table tr:last-child td {
  border-bottom: 0;
}

.activity-related-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.activity-related-row article {
  overflow: hidden;
  border: 1px solid #e4edf3;
  border-radius: 8px;
  background: #fff;
}

.activity-related-row img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.activity-related-row h3 {
  margin: 0;
  padding: 16px;
  color: #07345e;
  font-size: 1rem;
  font-weight: 900;
}

.activity-layout-fiche .activity-product-hero {
  padding-bottom: 18px;
}

.activity-layout-fiche .activity-product-section {
  padding-bottom: 28px;
}

.activity-layout-fiche .activity-product-grid {
  grid-template-columns: 1fr;
}

.activity-layout-fiche .activity-product-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 190px;
}

.activity-layout-fiche .activity-product-card-img {
  height: 100%;
}

.activity-layout-fiche .activity-product-detail {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--activity-color) 8%, #fff), #fff 44%);
}

.activity-layout-fiche .activity-product-detail-inner {
  grid-template-columns: minmax(460px, 0.92fr) minmax(0, 1fr);
}

.activity-layout-fiche .activity-detail-gallery img {
  height: 620px;
}

.activity-layout-compact .activity-product-hero {
  padding: 34px 20px 24px;
}

.activity-layout-compact .activity-product-hero-inner {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
}

.activity-layout-compact .activity-product-copy h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.activity-layout-compact .activity-product-copy p {
  font-size: 0.98rem;
  line-height: 1.58;
}

.activity-layout-compact .activity-product-visual,
.activity-layout-compact .activity-product-visual img {
  min-height: 300px;
}

.activity-layout-compact .activity-product-section,
.activity-layout-compact .activity-product-detail,
.activity-layout-compact .activity-product-related {
  padding: 36px 0;
}

.activity-layout-compact .activity-product-card-img {
  height: 160px;
}

.activity-layout-compact .activity-detail-gallery img {
  height: 390px;
}

@media (max-width: 1100px) {
  .activity-product-hero-inner,
  .activity-product-container,
  .activity-product-detail-inner {
    grid-template-columns: 1fr;
  }

  .activity-product-side {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .activity-product-grid,
  .activity-related-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .activity-product-hero {
    padding-top: 34px;
  }

  .activity-product-hero-inner,
  .activity-product-container,
  .activity-product-detail-inner,
  .activity-product-related {
    width: min(100% - 28px, 1240px);
  }

  .activity-product-visual,
  .activity-product-visual img {
    min-height: 300px;
  }

  .activity-product-side,
  .activity-product-grid,
  .activity-related-row,
  .activity-layout-fiche .activity-product-card {
    grid-template-columns: 1fr;
  }

  .activity-template-chooser-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .activity-template-options {
    justify-content: flex-start;
  }

  .activity-detail-gallery img {
    height: 330px;
  }

  .activity-tech-table th,
  .activity-tech-table td {
    display: block;
    width: 100%;
  }
}

/* --- List layout --- */
.activity-layout-liste .activity-product-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}
.activity-layout-liste .activity-product-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 24px !important;
  padding: 20px !important;
}
.activity-layout-liste .activity-product-card-img {
  width: 180px !important;
  height: 130px !important;
  flex-shrink: 0 !important;
}
.activity-layout-liste .activity-product-card-body {
  flex: 1 !important;
}

/* --- Tableau layout --- */
.activity-layout-tableau .activity-product-grid {
  display: block !important;
  overflow-x: auto !important;
}
.activity-layout-tableau .activity-product-card {
  display: grid !important;
  grid-template-columns: 200px 1fr 1fr 1fr 120px !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 16px 20px !important;
  border-bottom: 1px solid #eef2f6 !important;
}
.activity-layout-tableau .activity-product-card:first-child {
  background: #f0f7fc !important;
  font-weight: 800 !important;
  border-radius: 8px 8px 0 0 !important;
}
.activity-layout-tableau .activity-product-card-img {
  width: 180px !important;
  height: 110px !important;
}

/* --- Accordeon layout --- */
.activity-layout-accordeon .activity-product-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}
.activity-layout-accordeon .activity-product-card {
  border: 1px solid #eef2f6 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}
.activity-layout-accordeon .activity-product-card-body {
  padding: 16px 20px !important;
  cursor: pointer !important;
}
.activity-layout-accordeon .activity-product-card-body h3::after {
  content: " +" !important;
  float: right !important;
  font-size: 1.3rem !important;
  color: #1D83C1 !important;
}
.activity-layout-accordeon .activity-product-card-img {
  display: none !important;
}

/* --- Masonry layout --- */
.activity-layout-masonry .activity-product-grid {
  column-count: 3 !important;
  column-gap: 16px !important;
  display: block !important;
}
.activity-layout-masonry .activity-product-card {
  break-inside: avoid !important;
  margin-bottom: 16px !important;
  display: block !important;
}
.activity-layout-masonry .activity-product-card-img {
  height: auto !important;
  max-height: 260px !important;
}

/* --- Carrousel layout --- */
.activity-layout-carrousel .activity-product-grid {
  display: flex !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  gap: 16px !important;
  padding-bottom: 16px !important;
  -webkit-overflow-scrolling: touch !important;
}
.activity-layout-carrousel .activity-product-card {
  flex: 0 0 300px !important;
  scroll-snap-align: start !important;
}
.activity-layout-carrousel .activity-product-card-img {
  height: 200px !important;
}

/* --- Magazine layout --- */
.activity-layout-magazine .activity-product-grid {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr !important;
  grid-template-rows: auto auto !important;
  gap: 16px !important;
}
.activity-layout-magazine .activity-product-card:first-child {
  grid-column: 1 !important;
  grid-row: 1 / 3 !important;
}
.activity-layout-magazine .activity-product-card:first-child .activity-product-card-img {
  height: 100% !important;
  min-height: 340px !important;
}

/* --- Mini cartes layout --- */
.activity-layout-mini .activity-product-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
  gap: 12px !important;
}
.activity-layout-mini .activity-product-card {
  text-align: center !important;
  padding: 16px 12px !important;
}
.activity-layout-mini .activity-product-card-img {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50% !important;
  margin: 0 auto 10px !important;
}
.activity-layout-mini .activity-product-card-body h3 {
  font-size: 14px !important;
}
.activity-layout-mini .activity-product-card-body p,
.activity-layout-mini .activity-product-tags {
  display: none !important;
}

/* --- Timeline layout --- */
.activity-layout-timeline .activity-product-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  position: relative !important;
  padding-left: 40px !important;
}
.activity-layout-timeline .activity-product-grid::before {
  content: "" !important;
  position: absolute !important;
  left: 18px !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 3px !important;
  background: linear-gradient(to bottom, #1D83C1, #6faeb1) !important;
  border-radius: 2px !important;
}
.activity-layout-timeline .activity-product-card {
  position: relative !important;
  margin-bottom: 32px !important;
}
.activity-layout-timeline .activity-product-card::before {
  content: "" !important;
  position: absolute !important;
  left: -29px !important;
  top: 24px !important;
  width: 14px !important;
  height: 14px !important;
  background: #1D83C1 !important;
  border: 3px solid #fff !important;
  border-radius: 50% !important;
  box-shadow: 0 0 0 3px #1D83C1 !important;
}
.activity-layout-timeline .activity-product-card-img {
  width: 100% !important;
  max-height: 200px !important;
}

/* --- Fullwidth layout --- */
.activity-layout-fullwidth .activity-product-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 48px !important;
}
.activity-layout-fullwidth .activity-product-card {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 32px !important;
  align-items: center !important;
}
.activity-layout-fullwidth .activity-product-card:nth-child(even) .activity-product-card-img {
  order: 2 !important;
}
.activity-layout-fullwidth .activity-product-card:nth-child(even) .activity-product-card-body {
  order: 1 !important;
}
.activity-layout-fullwidth .activity-product-card-img {
  height: 280px !important;
}

/* --- Gestion catalogue layout --- */
.catalog-management-panel {
  margin: 0 0 24px !important;
  padding: 22px !important;
  border: 1px solid rgba(29,131,193,0.16) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(135deg, rgba(11,58,96,0.96), rgba(29,131,193,0.9)),
    #0b3a60 !important;
  color: #fff !important;
  box-shadow: 0 22px 54px rgba(1,13,20,0.18) !important;
  overflow: hidden !important;
  position: relative !important;
}

.catalog-management-panel::after {
  content: "" !important;
  position: absolute !important;
  inset: auto -90px -120px auto !important;
  width: 240px !important;
  height: 240px !important;
  border-radius: 50% !important;
  border: 34px solid rgba(255,255,255,0.08) !important;
  pointer-events: none !important;
}

.catalog-management-top {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 18px !important;
  position: relative !important;
  z-index: 1 !important;
}

.catalog-management-label {
  display: inline-flex !important;
  margin-bottom: 8px !important;
  color: rgba(255,255,255,0.74) !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  letter-spacing: 1.8px !important;
  text-transform: uppercase !important;
}

.catalog-management-top h3 {
  margin: 0 !important;
  color: #fff !important;
  font-family: "Outfit", sans-serif !important;
  font-size: clamp(20px, 2.2vw, 28px) !important;
  line-height: 1.16 !important;
}

.catalog-management-action {
  min-height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 16px !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: #0b3a60 !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.catalog-management-search {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  margin-top: 18px !important;
  padding: 13px 14px !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  border-radius: 8px !important;
  background: rgba(255,255,255,0.1) !important;
  position: relative !important;
  z-index: 1 !important;
}

.catalog-management-search span {
  color: rgba(255,255,255,0.78) !important;
  font-size: 0.9rem !important;
}

.catalog-management-search strong {
  color: #fff !important;
  font-size: 0.84rem !important;
  white-space: nowrap !important;
}

.catalog-management-kpis {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin-top: 14px !important;
  position: relative !important;
  z-index: 1 !important;
}

.catalog-management-kpis div {
  padding: 13px 12px !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  border-radius: 8px !important;
  background: rgba(255,255,255,0.1) !important;
}

.catalog-management-kpis strong,
.catalog-management-kpis span {
  display: block !important;
}

.catalog-management-kpis strong {
  color: #fff !important;
  font-size: 1.25rem !important;
  font-weight: 900 !important;
}

.catalog-management-kpis span {
  margin-top: 3px !important;
  color: rgba(255,255,255,0.72) !important;
  font-size: 0.74rem !important;
  line-height: 1.3 !important;
}

.activity-layout-gestion .activity-product-grid {
  grid-template-columns: 1fr !important;
  gap: 10px !important;
}

.activity-layout-gestion .activity-product-card {
  display: grid !important;
  grid-template-columns: 116px minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 18px !important;
  padding: 14px !important;
}

.activity-layout-gestion .activity-product-card::after {
  content: "En catalogue" !important;
  align-self: start !important;
  justify-self: end !important;
  padding: 7px 10px !important;
  border-radius: 8px !important;
  background: rgba(46,164,106,0.1) !important;
  color: #16784a !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

.activity-layout-gestion .activity-product-card-img {
  width: 116px !important;
  height: 86px !important;
  border-radius: 8px !important;
}

.activity-layout-gestion .activity-product-card-body {
  padding: 0 !important;
}

.activity-layout-gestion .activity-product-card h3 {
  margin-bottom: 5px !important;
  font-size: 1rem !important;
}

.activity-layout-gestion .activity-product-card p {
  margin-bottom: 8px !important;
  font-size: 0.84rem !important;
}

.activity-layout-gestion .activity-product-link {
  margin-top: 8px !important;
}

@media (max-width: 760px) {
  .catalog-management-top,
  .catalog-management-search {
    align-items: stretch !important;
    flex-direction: column !important;
  }

  .catalog-management-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .activity-layout-gestion .activity-product-card {
    grid-template-columns: 92px minmax(0, 1fr) !important;
  }

  .activity-layout-gestion .activity-product-card::after {
    grid-column: 2 !important;
    justify-self: start !important;
  }

  .activity-layout-gestion .activity-product-card-img {
    width: 92px !important;
    height: 76px !important;
  }
}

@media (max-width: 460px) {
  .catalog-management-kpis {
    grid-template-columns: 1fr !important;
  }
}

/* ALMA activity pages: align titles and product cards with the main theme language. */
.activity-product-page {
  background: #fff !important;
}

.activity-product-hero {
  padding: 58px 20px 46px !important;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%) !important;
  border-bottom: 1px solid #e9f0f5 !important;
}

.activity-product-hero-inner {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr) !important;
  gap: 54px !important;
}

.activity-product-eyebrow,
.activity-section-head span,
.activity-side-label {
  color: #1D83C1 !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  line-height: 1.2 !important;
}

.activity-product-copy h1 {
  max-width: 720px !important;
  margin: 16px 0 22px !important;
  color: #0b3a60 !important;
  font-family: "Outfit", sans-serif !important;
  font-size: clamp(36px, 4.4vw, 64px) !important;
  line-height: 1.04 !important;
  font-weight: 900 !important;
  letter-spacing: -0.5px !important;
  text-transform: none !important;
}

.activity-product-copy h1::after {
  content: "" !important;
  display: block !important;
  width: 58px !important;
  height: 4px !important;
  margin-top: 22px !important;
  border-radius: 3px !important;
  background: #1D83C1 !important;
}

.activity-product-copy p,
.activity-section-head p {
  color: #536474 !important;
  font-family: "Inter", sans-serif !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

.activity-product-visual {
  min-height: 340px !important;
  border: 1px solid #e6eef4 !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}

.activity-product-visual img {
  min-height: 340px !important;
}

.activity-product-standard-list span,
.activity-product-tags span,
.activity-product-tabs span {
  border-radius: 3px !important;
  border-color: #dfeaf1 !important;
  background: #f6fbff !important;
  color: #0b3a60 !important;
}

.activity-product-section {
  background: #fff !important;
}

.activity-product-container {
  grid-template-columns: 230px minmax(0, 1fr) !important;
  gap: 34px !important;
}

.activity-product-side {
  border-radius: 6px !important;
  box-shadow: none !important;
}

.activity-section-head h2 {
  color: #0b3a60 !important;
  font-family: "Outfit", sans-serif !important;
  font-size: clamp(30px, 3.2vw, 46px) !important;
  line-height: 1.14 !important;
  font-weight: 900 !important;
}

.activity-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

.activity-product-card {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 42% minmax(0, 1fr) !important;
  min-height: 250px !important;
  overflow: hidden !important;
  border: 1px solid #e6eef4 !important;
  border-radius: 6px !important;
  background: #fff !important;
  box-shadow: none !important;
  transition: border-color 0.25s ease, transform 0.25s ease !important;
}

.activity-product-card::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 3px !important;
  background: var(--activity-color) !important;
  opacity: 0.9 !important;
}

.activity-product-card:hover,
.activity-product-card.active {
  border-color: color-mix(in srgb, var(--activity-color) 46%, #e6eef4) !important;
  transform: translateY(-2px) !important;
  box-shadow: none !important;
}

.activity-product-card-img {
  height: 100% !important;
  min-height: 250px !important;
  background: #f4f8fb !important;
}

.activity-product-card-img img {
  object-fit: cover !important;
}

.activity-product-card-body {
  padding: 24px 24px 22px !important;
}

.activity-product-card h3 {
  color: #0b3a60 !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 1.24rem !important;
  line-height: 1.24 !important;
  font-weight: 900 !important;
}

.activity-product-card p {
  color: #536474 !important;
  font-size: 0.94rem !important;
  line-height: 1.55 !important;
}

.activity-product-link {
  display: inline-flex !important;
  width: fit-content !important;
  align-items: center !important;
  min-height: 36px !important;
  margin-top: 18px !important;
  border-bottom: 2px solid var(--activity-color) !important;
  color: #0b3a60 !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 0.84rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}

.family-landing {
  background: #fff !important;
}

.family-landing-hero {
  min-height: 340px !important;
  justify-content: flex-start !important;
  text-align: left !important;
  padding: 58px 20px !important;
  background-color: #f6fbff !important;
  border-bottom: 1px solid #e9f0f5 !important;
}


.family-landing-hero-content {
  position: relative !important;
  z-index: 1 !important;
  width: min(1120px, calc(100% - 40px)) !important;
  max-width: none !important;
  margin: 0 auto !important;
}

.family-landing-hero-content h1 {
  max-width: 760px !important;
  margin: 0 0 22px !important;
  color: #0b3a60 !important;
  font-family: "Outfit", sans-serif !important;
  font-size: clamp(36px, 4.4vw, 64px) !important;
  line-height: 1.04 !important;
  font-weight: 900 !important;
  letter-spacing: -0.5px !important;
  text-align: center !important;
  text-shadow: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.family-landing-hero-content h1::after {
  content: "" !important;
  display: block !important;
  width: 58px !important;
  height: 4px !important;
  margin-top: 22px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: 3px !important;
  background: #1D83C1 !important;
}

.family-landing-hero-content p {
  max-width: 620px !important;
  color: #536474 !important;
  font-family: "Inter", sans-serif !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.family-landing-grid {
  width: min(1120px, calc(100% - 40px)) !important;
  max-width: 1120px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 20px !important;
  margin: 54px auto !important;
  padding: 0 !important;
}

.family-card {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 42% minmax(0, 1fr) !important;
  min-height: 245px !important;
  overflow: hidden !important;
  border: 1px solid #e6eef4 !important;
  border-radius: 6px !important;
  background: #fff !important;
  box-shadow: none !important;
  transition: border-color 0.25s ease, transform 0.25s ease !important;
}

.family-card::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 3px !important;
  background: var(--fam-color) !important;
}

.family-card:hover {
  transform: translateY(-2px) !important;
  border-color: color-mix(in srgb, var(--fam-color) 46%, #e6eef4) !important;
  box-shadow: none !important;
}

.family-card-img {
  width: 100% !important;
  height: 100% !important;
  min-height: 245px !important;
  background: #f4f8fb !important;
}

.family-card-img img {
  object-fit: cover !important;
}

.family-card-body {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  padding: 24px !important;
  text-align: left !important;
}

.family-card-line {
  width: 42px !important;
  height: 3px !important;
  margin: 0 0 16px !important;
  background: var(--fam-color) !important;
}

.family-card h3 {
  color: #0b3a60 !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 1.28rem !important;
  line-height: 1.22 !important;
  font-weight: 900 !important;
  text-align: left !important;
}

.family-card p {
  color: #536474 !important;
  font-size: 0.94rem !important;
  line-height: 1.55 !important;
  text-align: left !important;
}

.family-card-link {
  margin-top: auto !important;
  border-bottom: 2px solid var(--fam-color) !important;
  color: #0b3a60 !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 0.84rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}

@media (max-width: 860px) {
  .family-landing-grid,
  .family-card {
    grid-template-columns: 1fr !important;
  }

  .family-card-img {
    height: 220px !important;
    min-height: 220px !important;
  }
}

.activity-template-chooser {
  background: #f7fbfe !important;
  margin-top: 18px !important;
}

.activity-product-detail {
  border-top: 1px solid #e9f0f5 !important;
  background: #fff !important;
}

@media (max-width: 980px) {
  .activity-product-card,
  .activity-product-grid {
    grid-template-columns: 1fr !important;
  }

  .activity-product-card-img {
    height: 220px !important;
    min-height: 220px !important;
  }
}

/* Compact vertical rhythm on Qui sommes-nous; Nos Activites keeps its current spacing. */
.aqc-section {
  padding-top: 46px !important;
  padding-bottom: 58px !important;
}

.aqc-section .alma-section-header,
.block-ref-section .alma-section-header,
.abs-section .alma-section-header,
.alma-insights-section .alma-section-header {
  margin-bottom: 34px !important;
}

.aqc-grid {
  margin-bottom: 34px !important;
}

.about-realisations-section {
  padding-bottom: 42px !important;
}

.about-realisations-section .container > div:last-child {
  margin-top: 24px !important;
}

.block-ref-section {
  padding-top: 46px !important;
  padding-bottom: 58px !important;
}

.alma-insights-section {
  padding-top: 44px !important;
  padding-bottom: 56px !important;
}

.abs-section {
  padding-top: 44px !important;
  padding-bottom: 58px !important;
}

.abs-grid {
  margin-top: 22px !important;
}

@media (max-width: 768px) {
  .aqc-section,
  .block-ref-section,
  .alma-insights-section,
  .abs-section {
    padding-top: 34px !important;
    padding-bottom: 44px !important;
  }

  .aqc-section .alma-section-header,
  .block-ref-section .alma-section-header,
  .abs-section .alma-section-header,
  .alma-insights-section .alma-section-header {
    margin-bottom: 26px !important;
  }
}

/* RSE: remove the side gutters so only the panel background remains visible. */
.env-section {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-top: 42px !important;
  padding-bottom: 42px !important;
  background: url("assets/rse-background-panel-cropped.jpeg") center center / cover no-repeat !important;
}

.env-section::before,
.env-panel::before,
.env-panel::after {
  display: none !important;
  content: none !important;
}

.env-panel {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.env-split {
  width: min(1280px, calc(100% - 80px)) !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
}

@media (max-width: 900px) {
  .env-split {
    width: min(680px, calc(100% - 34px)) !important;
  }
}

/* Avantages: make the slide fill and adapt to the hero container. */
.avq-hero {
  width: 100vw !important;
  max-width: 100vw !important;
  min-height: clamp(720px, 100vh, 920px) !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 0 !important;
  align-items: stretch !important;
}

.avq-slide {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  min-height: inherit !important;
  box-shadow: none !important;
}

.avq-bg-photo {
  inset: 0 !important;
  background-size: cover !important;
  background-position: center center !important;
}

.avq-content {
  left: clamp(28px, 4.5vw, 72px) !important;
  top: clamp(62px, 9vh, 104px) !important;
  width: min(1080px, calc(100% - 84px)) !important;
}

.avq-cards {
  --avq-card-w: clamp(290px, 19vw, 330px);
  --avq-card-h: clamp(155px, 10.5vw, 178px);
  --avq-card-gap: clamp(15px, 1.1vw, 22px);
  grid-template-columns: repeat(3, var(--avq-card-w)) !important;
  grid-template-rows: repeat(2, var(--avq-card-h)) !important;
  gap: var(--avq-card-gap) !important;
}

.avq-card {
  width: var(--avq-card-w) !important;
  height: var(--avq-card-h) !important;
  grid-template-columns: clamp(54px, 3.4vw, 64px) 1fr !important;
  padding: clamp(16px, 1vw, 20px) 16px 14px 16px !important;
}

/* References logo ticker: dark partner strip style. */
.rsaddon-unique-slider.rsaddons-logo-showcase {
  position: relative !important;
  margin: 42px auto 0 !important;
  padding: 46px 0 !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  background: linear-gradient(180deg, #f9fcff 0%, #f4f8fb 100%) !important;
  box-shadow: none !important;
}

.rsaddon-unique-slider.rsaddons-logo-showcase::before,
.rsaddon-unique-slider.rsaddons-logo-showcase::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 110px !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

.rsaddon-unique-slider.rsaddons-logo-showcase::before {
  left: 0 !important;
  background: linear-gradient(90deg, #f9fcff, rgba(249,252,255,0)) !important;
}

.rsaddon-unique-slider.rsaddons-logo-showcase::after {
  right: 0 !important;
  background: linear-gradient(270deg, #f9fcff, rgba(249,252,255,0)) !important;
}

.rsaddon-unique-slider.rsaddons-logo-showcase .logo-slider {
  gap: clamp(72px, 7vw, 132px) !important;
  padding: 0 clamp(90px, 8vw, 150px) !important;
}

.rsaddon-unique-slider.rsaddons-logo-showcase .grid-item {
  flex: 0 0 clamp(230px, 16vw, 300px) !important;
  max-width: clamp(230px, 16vw, 300px) !important;
  height: 136px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 4px !important;
  background: transparent !important;
  box-shadow: none !important;
  transition: transform 0.25s ease !important;
}

.rsaddon-unique-slider.rsaddons-logo-showcase .rs-grid-figure,
.rsaddon-unique-slider.rsaddons-logo-showcase .grid-item {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.rsaddon-unique-slider.rsaddons-logo-showcase .rs-grid-figure {
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 4px !important;
  background: transparent !important;
  box-shadow: none !important;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease !important;
}

.rsaddon-unique-slider.rsaddons-logo-showcase .grid-item:hover {
  transform: translateY(-3px) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.rsaddon-unique-slider.rsaddons-logo-showcase .mains-logos,
.rsaddon-unique-slider.rsaddons-logo-showcase img {
  max-width: clamp(210px, 15vw, 280px) !important;
  max-height: 112px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 0.62 !important;
  filter: grayscale(1) saturate(0) contrast(0.98) brightness(0.92) !important;
  mix-blend-mode: multiply !important;
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease !important;
}

.rsaddon-unique-slider.rsaddons-logo-showcase .grid-item:hover .mains-logos,
.rsaddon-unique-slider.rsaddons-logo-showcase .grid-item:hover img {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: multiply !important;
  transform: scale(1.03) !important;
}

.rsaddon-unique-slider.rsaddons-logo-showcase .left-bottom-shape {
  display: none !important;
}

.block-ref-section .alma-section-desc,
.ref-section-head > p {
  display: none !important;
}

@media (min-width: 1450px) {
  .avq-content {
    width: min(1120px, calc(100% - 84px)) !important;
  }

  .avq-cards {
    --avq-card-w: 330px;
    --avq-card-h: 178px;
    --avq-card-gap: 20px;
  }

  .avq-card h3 {
    font-size: 15px !important;
  }

  .avq-card p {
    font-size: 12.2px !important;
  }
}

@media (min-width: 1750px) {
  .avq-cards {
    --avq-card-w: 350px;
    --avq-card-h: 188px;
    --avq-card-gap: 22px;
  }
}

@media (max-width: 900px) {
  .avq-hero {
    min-height: auto !important;
  }

  .avq-slide {
    min-height: 920px !important;
  }

  .avq-content {
    left: 22px !important;
    top: 42px !important;
    width: calc(100% - 44px) !important;
  }

  .avq-cards {
    --avq-card-w: 275px;
    --avq-card-h: 155px;
    --avq-card-gap: 14px;
  }
}

/* About contact: visible commercial directory instead of hidden accordions. */
.about-commercial-directory {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

@media (max-width: 820px) {
  .about-commercial-directory {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 520px) {
  .commercial-person {
    grid-template-columns: 38px minmax(0, 1fr) !important;
  }

  .commercial-call {
    grid-column: 2;
    width: fit-content;
    margin-top: 2px;
  }
}

/* Hero image-only slide */
#hero-slider.hero-slider {
  background: #eef5f8 !important;
  min-height: calc(100vh - var(--header-height) - 38px) !important;
}

#hero-slider .swiper-slide {
  padding: 0 !important;
}

#hero-slider .slide-inner.slide-inner-image-only {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: calc(100vh - var(--header-height) - 38px) !important;
  margin: 0 !important;
}

#hero-slider .slide-full-image {
  display: block !important;
  width: 100% !important;
  height: calc(100vh - var(--header-height) - 38px) !important;
  min-height: 580px !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* About section: Industrie-style composition */
#about {
  background: #fff !important;
  padding: clamp(64px, 7vw, 108px) 0 !important;
  overflow: hidden !important;
}

#about .about-industrie-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr) !important;
  gap: clamp(96px, 8vw, 132px) !important;
  align-items: start !important;
}

#about .about-industrie-left,
#about .about-industrie-right {
  min-width: 0 !important;
}

#about .about-industrie-kicker {
  margin-bottom: 18px !important;
  color: var(--alma-blue) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

#about .about-industrie-title {
  max-width: 690px !important;
  margin: 0 0 66px !important;
  color: #103f63 !important;
  font-size: clamp(42px, 4.3vw, 64px) !important;
  line-height: 1.13 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

#about .about-industrie-main-photo {
  position: relative !important;
  width: min(520px, 100%) !important;
  min-height: 520px !important;
}

#about .about-industrie-main-photo > img {
  display: block !important;
  width: 100% !important;
  height: 520px !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 6px !important;
}

#about .about-industrie-badge {
  position: absolute !important;
  right: -84px !important;
  bottom: -28px !important;
  width: 292px !important;
  min-height: 264px !important;
  padding: 34px 30px !important;
  display: grid !important;
  align-content: center !important;
  gap: 34px !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--alma-blue), var(--alma-blue-dark)) !important;
  border-radius: 6px !important;
  box-shadow: 0 26px 54px rgba(11, 83, 148, 0.22) !important;
  overflow: hidden !important;
  z-index: 2 !important;
}

#about .about-industrie-badge::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(circle at 92% 12%, rgba(255,255,255,0.95) 0 4px, transparent 5px),
    repeating-radial-gradient(circle at 100% 10%, transparent 0 40px, rgba(255,255,255,0.18) 41px 42px) !important;
  pointer-events: none !important;
}

#about .about-industrie-badge div {
  position: relative !important;
  z-index: 1 !important;
}

#about .about-industrie-badge strong {
  display: block !important;
  margin-bottom: 4px !important;
  font-size: 48px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
}

#about .about-industrie-badge span {
  display: block !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
}

#about .about-industrie-top-photo {
  width: 100% !important;
  height: 260px !important;
  margin: 0 0 44px !important;
  border-radius: 6px !important;
  overflow: hidden !important;
}

#about .about-industrie-top-photo img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

#about .about-industrie-tabs {
  max-width: 520px !important;
}

#about .story-tab-nav {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin: 0 0 32px !important;
  padding: 0 !important;
  background: #f3f3f3 !important;
  border: 0 !important;
  border-radius: 2px !important;
  box-shadow: none !important;
}

#about .story-tab-btn {
  position: relative !important;
  min-height: 52px !important;
  padding: 0 18px !important;
  border: 0 !important;
  border-right: 1px solid #e1e1e1 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #4f5661 !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  box-shadow: none !important;
}

#about .story-tab-btn:last-child {
  border-right: 0 !important;
}

#about .story-tab-btn::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 3px !important;
  background: transparent !important;
}

#about .story-tab-btn.active {
  color: var(--alma-blue) !important;
  background: #f5f5f5 !important;
}

#about .story-tab-btn.active::before {
  background: var(--alma-blue) !important;
}

#about .story-tab-content {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#about .story-tab-content p {
  max-width: 560px !important;
  margin: 0 0 20px !important;
  color: #5b6470 !important;
  font-size: 18px !important;
  line-height: 1.68 !important;
}

#about .tab-pane.active p {
  animation: aboutTabTextIn 0.48s cubic-bezier(0.4, 0, 0.2, 1) both !important;
}

#about .tab-pane.active .about-industrie-list li {
  animation: aboutTabTextIn 0.48s cubic-bezier(0.4, 0, 0.2, 1) both !important;
}

#about .tab-pane.active .about-industrie-list li:nth-child(1) {
  animation-delay: 0.08s !important;
}

#about .tab-pane.active .about-industrie-list li:nth-child(2) {
  animation-delay: 0.15s !important;
}

#about .tab-pane.active .about-industrie-list li:nth-child(3) {
  animation-delay: 0.22s !important;
}

@keyframes aboutTabTextIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#about .about-industrie-list {
  display: grid !important;
  gap: 18px !important;
  margin: 24px 0 30px !important;
  padding: 0 !important;
  list-style: none !important;
}

#about .about-industrie-list li {
  position: relative !important;
  padding-left: 30px !important;
  color: #565d66 !important;
  font-size: 17px !important;
  line-height: 1.4 !important;
}

#about .about-industrie-list li::before {
  content: "\2713" !important;
  position: absolute !important;
  left: 0 !important;
  top: 1px !important;
  width: 18px !important;
  height: 18px !important;
  display: grid !important;
  place-items: center !important;
  border: 2px solid var(--alma-blue) !important;
  border-radius: 50% !important;
  color: var(--alma-blue) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

#about .about-industrie-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  min-width: 168px !important;
  height: 52px !important;
  padding: 0 26px !important;
  color: #fff !important;
  background: var(--alma-blue) !important;
  border-radius: 2px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

#about .about-industrie-btn:hover {
  background: var(--alma-blue-dark) !important;
  transform: translateY(-1px) !important;
}

@media (max-width: 1180px) {
  #about .about-industrie-grid {
    grid-template-columns: 1fr !important;
    gap: 56px !important;
  }

  #about .about-industrie-main-photo {
    width: min(680px, 100%) !important;
  }

  #about .about-industrie-badge {
    right: 24px !important;
  }

  #about .about-industrie-tabs {
    max-width: none !important;
  }
}

@media (max-width: 760px) {
  #about {
    padding: 52px 0 72px !important;
  }

  #about .about-industrie-title {
    margin-bottom: 34px !important;
    font-size: clamp(34px, 11vw, 46px) !important;
  }

  #about .about-industrie-main-photo,
  #about .about-industrie-main-photo > img {
    min-height: 0 !important;
    height: 390px !important;
  }

  #about .about-industrie-badge {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    min-height: 0 !important;
    margin-top: 18px !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    padding: 24px !important;
  }

  #about .about-industrie-badge strong {
    font-size: 36px !important;
  }

  #about .about-industrie-badge span {
    font-size: 15px !important;
  }

  #about .about-industrie-top-photo {
    height: 220px !important;
    margin-bottom: 36px !important;
  }

  #about .story-tab-nav {
    grid-template-columns: 1fr !important;
  }

  #about .story-tab-btn {
    border-right: 0 !important;
    border-bottom: 1px solid #e1e1e1 !important;
    font-size: 16px !important;
  }

  #about .story-tab-btn:last-child {
    border-bottom: 0 !important;
  }
}

/* Mot du President */
.president-word-section {
  position: relative !important;
  padding: clamp(66px, 7vw, 104px) 0 !important;
  background:
    radial-gradient(circle at 92% 12%, rgba(115,198,240,0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 58%, #eef8fd 100%) !important;
  overflow: hidden !important;
}

.president-word-grid {
  display: grid !important;
  grid-template-columns: minmax(420px, 0.94fr) minmax(0, 1.06fr) !important;
  gap: clamp(42px, 5vw, 72px) !important;
  align-items: center !important;
}

.president-word-media {
  position: relative !important;
  order: 2 !important;
  min-height: 440px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  box-shadow: 0 26px 60px rgba(10,43,73,0.12) !important;
}

.president-word-media img {
  display: block !important;
  width: 100% !important;
  height: 440px !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.president-word-media::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(90deg, rgba(11,83,148,0.20), transparent 58%) !important;
  pointer-events: none !important;
}

.president-word-year {
  position: absolute !important;
  left: 28px !important;
  bottom: 28px !important;
  z-index: 1 !important;
  padding: 12px 18px !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--alma-blue), var(--alma-blue-dark)) !important;
  border-radius: 4px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  box-shadow: 0 16px 34px rgba(11,83,148,0.24) !important;
}

.president-word-card {
  position: relative !important;
  order: 1 !important;
  padding: clamp(34px, 4vw, 54px) !important;
  background: rgba(255,255,255,0.86) !important;
  border: 1px solid rgba(29,131,193,0.12) !important;
  border-radius: 8px !important;
  box-shadow: 0 20px 52px rgba(10,43,73,0.08) !important;
  overflow: hidden !important;
}

.president-word-card::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 5px !important;
  height: 100% !important;
  background: linear-gradient(180deg, var(--alma-sky), var(--alma-blue)) !important;
}

.president-word-kicker {
  margin-bottom: 14px !important;
  color: var(--alma-blue) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0 !important;
}

.president-word-title {
  max-width: 760px !important;
  margin: 0 0 24px !important;
  color: #103f63 !important;
  font-size: clamp(32px, 3.4vw, 48px) !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.president-word-quote {
  position: absolute !important;
  right: 34px !important;
  top: 22px !important;
  color: rgba(29,131,193,0.12) !important;
  font-family: Georgia, serif !important;
  font-size: 128px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
}

.president-word-card p {
  position: relative !important;
  max-width: 720px !important;
  margin: 0 !important;
  color: #4f5661 !important;
  font-size: 18px !important;
  line-height: 1.78 !important;
}

.president-word-signature {
  margin-top: 28px !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(29,131,193,0.16) !important;
}

.president-word-signature strong,
.president-word-signature span {
  display: block !important;
}

.president-word-signature strong {
  color: #103f63 !important;
  font-size: 18px !important;
  font-weight: 800 !important;
}

.president-word-signature span {
  margin-top: 4px !important;
  color: var(--alma-blue) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

/* Chiffres cles: same inline stats style as Accueil */
.about-key-figures-section {
  padding: clamp(64px, 7vw, 104px) 20px !important;
  background: #fff !important;
}

.about-key-figures-head {
  margin-bottom: 0 !important;
}

.about-key-figures-head .counter-intro {
  max-width: 760px !important;
  margin: 16px auto 0 !important;
  color: #5b6470 !important;
}

.about-key-figures-stats {
  margin-top: 52px !important;
}

.about-key-figures-stats .about-stat-num {
  -webkit-text-stroke-color: color-mix(in srgb, var(--alma-blue) 58%, #ffffff) !important;
}

/* Qui sommes-nous: testimonials like Industrie reference */
.about-testimonials-section {
  padding: clamp(68px, 7vw, 108px) 0 !important;
  background:
    radial-gradient(circle at 12% 20%, rgba(115,198,240,0.10), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%) !important;
  overflow: hidden !important;
}

.about-testimonials-head {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 28px !important;
  align-items: end !important;
  margin-bottom: 44px !important;
}

.about-testimonials-head .eyebrow {
  margin-bottom: 14px !important;
  color: var(--alma-blue) !important;
  font-size: 0.78rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
}

.about-testimonials-head h2 {
  max-width: 720px !important;
  margin: 0 !important;
  color: #103f63 !important;
  font-size: clamp(34px, 4vw, 54px) !important;
  line-height: 1.12 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.about-testimonials-more {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  min-width: 190px !important;
  height: 54px !important;
  padding: 0 24px !important;
  color: #fff !important;
  background: var(--alma-blue) !important;
  border-radius: 4px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.about-testimonials-more:hover {
  background: var(--alma-blue-dark) !important;
  transform: translateY(-1px) !important;
}

.about-testimonials-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(22px, 2.5vw, 34px) !important;
}

.about-testimonial-card {
  min-height: 360px !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 34px 32px 30px !important;
  background: #fff !important;
  border: 1px solid rgba(29,131,193,0.13) !important;
  border-radius: 8px !important;
  box-shadow: 0 22px 54px rgba(10,43,73,0.08) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.about-testimonial-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(29,131,193,0.28) !important;
  box-shadow: 0 28px 64px rgba(10,43,73,0.13) !important;
}

.about-testimonial-top {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin-bottom: 30px !important;
}

.about-testimonial-quote {
  color: #1f1f1f !important;
  opacity: 0.9 !important;
}

.about-testimonial-rating {
  color: #f7c600 !important;
  font-size: 14px !important;
  line-height: 1 !important;
  letter-spacing: 0.08em !important;
  text-shadow: 0 1px 0 rgba(10,43,73,0.08) !important;
}

.about-testimonial-card p {
  margin: 0 !important;
  color: #4f5661 !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
}

.about-testimonial-author {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-top: auto !important;
  padding-top: 28px !important;
}

.page-template-page-almaflow .about-testimonials-grid,
.page-template-page-qui-sommes-nous .about-testimonials-grid {
  align-items: stretch !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.page-template-page-almaflow .about-testimonial-card,
.page-template-page-qui-sommes-nous .about-testimonial-card {
  height: 100% !important;
}

.page-template-page-almaflow .about-testimonial-inner,
.page-template-page-qui-sommes-nous .about-testimonial-inner {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.page-template-page-almaflow .about-testimonial-text,
.page-template-page-qui-sommes-nous .about-testimonial-text {
  flex: 1 1 auto !important;
}

.page-template-page-almaflow .about-testimonial-author.testi-card-bottom,
.page-template-page-qui-sommes-nous .about-testimonial-author.testi-card-bottom {
  margin-top: auto !important;
}

.about-testimonial-author > span {
  width: 54px !important;
  height: 54px !important;
  display: grid !important;
  place-items: center !important;
  flex: 0 0 54px !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--alma-blue), var(--alma-blue-dark)) !important;
  border-radius: 50% !important;
  font-size: 15px !important;
  font-weight: 900 !important;
}

.about-testimonial-author strong,
.about-testimonial-author small {
  display: block !important;
}

.about-testimonial-author strong {
  color: #103f63 !important;
  font-size: 17px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}

.about-testimonial-author small {
  margin-top: 4px !important;
  color: #6f7788 !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
}

/* Activites: Autre page */
.activities-other-page .activities-other-hero {
  min-height: 360px !important;
  display: flex !important;
  align-items: center !important;
  padding: clamp(86px, 9vw, 132px) 20px clamp(64px, 7vw, 96px) !important;
  text-align: left !important;
  background:
    linear-gradient(90deg, rgba(11,83,148,0.88), rgba(29,131,193,0.42)),
    url("assets/alma_personnel_background.jpg") center/cover no-repeat !important;
  color: #fff !important;
}

.activities-other-page .activities-other-hero .container {
  width: min(1160px, 100%) !important;
}

.activities-other-page .activities-other-hero .eyebrow {
  margin-bottom: 16px !important;
  color: #fff !important;
  opacity: 0.9 !important;
}

.activities-other-page .activities-other-hero h1 {
  margin: 0 0 16px !important;
  color: #fff !important;
  font-size: clamp(48px, 7vw, 82px) !important;
  line-height: 1 !important;
  font-weight: 800 !important;
}

.activities-other-page .activities-other-hero p {
  max-width: 680px !important;
  margin: 0 !important;
  color: rgba(255,255,255,0.88) !important;
  font-size: 18px !important;
  line-height: 1.65 !important;
}

@media (max-width: 980px) {
  .about-testimonials-head {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .about-testimonials-grid {
    grid-template-columns: 1fr !important;
  }

  .about-testimonial-card {
    min-height: 0 !important;
  }

  .page-template-page-almaflow .about-testimonials-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 980px) {
  .president-word-grid {
    grid-template-columns: 1fr !important;
  }

  .president-word-media,
  .president-word-media img {
    min-height: 0 !important;
    height: 360px !important;
  }
}

@media (max-width: 620px) {
  .president-word-section {
    padding: 54px 0 64px !important;
  }

  .president-word-card {
    padding: 32px 24px !important;
  }

  .president-word-title {
    font-size: clamp(28px, 9vw, 36px) !important;
  }

  .president-word-card p {
    font-size: 16px !important;
  }

  .president-word-media,
  .president-word-media img {
    height: 300px !important;
  }
}

.alma-wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99999;
  animation: alma-wa-pulse 2s ease infinite;
}

.alma-wa-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  text-decoration: none !important;
  transition: transform 0.2s, box-shadow 0.2s;
}

.alma-wa-float svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.alma-wa-float a:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.75);
}

@keyframes alma-wa-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.07);
  }
}

@media (max-width: 480px) {
  .alma-wa-float {
    bottom: 18px;
    right: 14px;
  }

  .alma-wa-float a {
    width: 50px;
    height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .alma-wa-float {
    animation: none;
  }
}

/* ALMAflow restored video block */
.aflow-video-section {
  padding: clamp(42px, 5vw, 72px) 20px;
  background: #f2f6f9;
}

.aflow-video-full {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 32px);
  border: 1px solid rgba(47, 166, 93, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 12%, rgba(47, 166, 93, 0.16), transparent 26%),
    radial-gradient(circle at 92% 88%, rgba(34, 137, 204, 0.12), transparent 28%),
    linear-gradient(180deg, #f1fbf4 0%, #ffffff 100%);
  box-shadow: 0 22px 52px rgba(47, 166, 93, 0.14);
}

.aflow-video-full .aflow-video {
  display: block;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(1, 13, 20, 0.12);
}

/* ALMAflow restored contact section */
.aflow-almaflow-contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(56px, 6vw, 88px) 20px;
  background:
    linear-gradient(120deg, rgba(246, 253, 248, 0.96), rgba(255, 255, 255, 0.9)),
    url("assets/aflow-solution-domestic.jpeg") center / cover no-repeat;
}

.aflow-almaflow-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 15%, rgba(47, 166, 93, 0.16), transparent 26%),
    radial-gradient(circle at 88% 75%, rgba(15, 143, 111, 0.14), transparent 30%);
}

.aflow-almaflow-contact .aflow-contact-bg {
  display: none;
}

.aflow-almaflow-contact .aflow-contact-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  grid-template-areas:
    "copy form"
    "brand form";
  gap: 22px;
  align-items: stretch;
}

.aflow-almaflow-contact .aflow-contact-copy,
.aflow-almaflow-contact .aflow-contact-form,
.aflow-almaflow-contact .aflow-contact-brand {
  border: 1px solid rgba(47, 166, 93, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(10, 43, 33, 0.08);
}

.aflow-almaflow-contact .aflow-contact-copy {
  grid-area: copy;
  padding: clamp(26px, 4vw, 44px);
}

.aflow-almaflow-contact .aflow-contact-form {
  grid-area: form;
  padding: clamp(24px, 3vw, 34px);
}

.aflow-almaflow-contact .aflow-contact-brand {
  grid-area: brand;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px;
}

.aflow-almaflow-contact .aflow-contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #2fa65d;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aflow-almaflow-contact .aflow-contact-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.aflow-almaflow-contact h2 {
  margin: 0 0 16px;
  color: #062d25;
  font-size: clamp(30px, 3.5vw, 50px);
  line-height: 1.05;
  letter-spacing: 0;
}

.aflow-almaflow-contact .aflow-contact-copy p,
.aflow-almaflow-contact .aflow-contact-brand p {
  color: #52645f;
  line-height: 1.68;
}

.aflow-almaflow-contact .aflow-contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.aflow-almaflow-contact .aflow-contact-list a,
.aflow-almaflow-contact .aflow-contact-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #103f35;
  font-weight: 800;
  text-decoration: none;
}

.aflow-almaflow-contact .aflow-contact-list span {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  color: #2fa65d;
  background: #edf8f1;
}

.aflow-almaflow-contact .aflow-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.aflow-almaflow-contact label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: #103f35;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.aflow-almaflow-contact input,
.aflow-almaflow-contact textarea {
  width: 100%;
  border: 1px solid rgba(47, 166, 93, 0.35);
  border-radius: 10px;
  background: #f8fbf9;
  color: #103f35;
  font: inherit;
  font-size: 15px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.aflow-almaflow-contact input::placeholder,
.aflow-almaflow-contact textarea::placeholder {
  color: #8a9e96;
  opacity: 1;
}

.aflow-almaflow-contact input:focus,
.aflow-almaflow-contact textarea:focus {
  border-color: #2fa65d;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(47, 166, 93, 0.12);
}

.aflow-almaflow-contact button,
.aflow-almaflow-contact .aflow-contact-brand a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  border-radius: 10px;
  color: #fff !important;
  background: linear-gradient(135deg, #2fa65d, #0d8d6d);
  box-shadow: 0 12px 26px rgba(47, 166, 93, 0.22);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.aflow-almaflow-contact button {
  width: 100%;
}

.aflow-almaflow-contact .aflow-contact-brand img {
  width: 150px;
  max-width: 100%;
}

.aflow-almaflow-contact .aflow-contact-brand strong {
  display: block;
  color: #063f33;
  font-size: 20px;
}

.aflow-almaflow-contact .aflow-contact-brand a {
  width: max-content;
  min-height: 44px;
  margin-top: 8px;
  padding: 0 18px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .aflow-almaflow-contact .aflow-contact-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "form"
      "brand";
  }
}

@media (max-width: 620px) {
  .aflow-video-section,
  .aflow-almaflow-contact {
    padding-inline: 14px;
  }

  .aflow-almaflow-contact .aflow-form-row,
  .aflow-almaflow-contact .aflow-contact-brand {
    grid-template-columns: 1fr;
  }

  .aflow-almaflow-contact .aflow-contact-brand {
    text-align: center;
  }

  .aflow-almaflow-contact .aflow-contact-brand img,
  .aflow-almaflow-contact .aflow-contact-brand a {
    margin-inline: auto;
  }
}

/* ALMAflow contact section: match supplied visual model */
.aflow-page .aflow-almaflow-contact {
  min-height: 500px;
  padding: clamp(46px, 5.2vw, 76px) 20px clamp(52px, 5vw, 72px) !important;
  color: #fff !important;
  background: url("assets/aflow-contact-bg-green.jpeg") center bottom / cover no-repeat !important;
}

.aflow-page .aflow-almaflow-contact::before {
  display: none !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-inner {
  width: min(1380px, 100%) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: grid !important;
  grid-template-columns: 320px 360px minmax(420px, 1fr) !important;
  grid-template-areas: "copy form team" !important;
  gap: clamp(34px, 4vw, 78px) !important;
  align-items: center !important;
  justify-content: center !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-copy,
.aflow-page .aflow-almaflow-contact .aflow-contact-form,
.aflow-page .aflow-almaflow-contact .aflow-contact-team {
  position: relative !important;
  z-index: 1 !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-copy {
  grid-area: copy !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-copy::after,
.aflow-page .aflow-almaflow-contact .aflow-contact-form::after {
  display: none !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-kicker {
  margin-bottom: 14px !important;
  display: block !important;
  color: #fff !important;
  font-size: clamp(1.45rem, 2.1vw, 2rem) !important;
  font-weight: 900 !important;
  line-height: 1.12 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-kicker::before {
  display: none !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-kicker::after {
  content: "" !important;
  display: block !important;
  width: 54px !important;
  height: 3px !important;
  margin-top: 16px !important;
  border-radius: 3px !important;
  background: #2fbe7a !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-copy p {
  max-width: 320px !important;
  margin: 0 0 28px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.94rem !important;
  line-height: 1.65 !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-list {
  gap: 24px !important;
  margin-top: 0 !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-list a,
.aflow-page .aflow-almaflow-contact .aflow-contact-list div {
  display: grid !important;
  grid-template-columns: 48px 1fr !important;
  grid-template-areas:
    "icon label"
    "icon value" !important;
  gap: 4px 14px !important;
  color: #fff !important;
  text-decoration: none !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-list span {
  grid-area: icon !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  color: #fff !important;
  background: rgba(48, 188, 119, 0.8) !important;
  border: 0 !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-list strong {
  grid-area: label !important;
  color: #fff !important;
  font-size: 0.9rem !important;
  line-height: 1.2 !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-list small {
  grid-area: value !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 0.84rem !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-form {
  grid-area: form !important;
  display: grid !important;
  gap: 16px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: translateX(-24px) !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-form input,
.aflow-page .aflow-almaflow-contact .aflow-contact-form textarea {
  width: 100% !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 7px !important;
  background: rgba(3, 40, 33, 0.45) !important;
  color: #fff !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  padding: 14px 16px !important;
  box-shadow: none !important;
  backdrop-filter: blur(4px) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-form input::placeholder,
.aflow-page .aflow-almaflow-contact .aflow-contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.72) !important;
  opacity: 1 !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-form input:focus,
.aflow-page .aflow-almaflow-contact .aflow-contact-form textarea:focus {
  outline: none !important;
  border-color: rgba(47, 190, 122, 0.72) !important;
  background: rgba(3, 40, 33, 0.58) !important;
  box-shadow: 0 0 0 3px rgba(47, 190, 122, 0.12) !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-form textarea {
  min-height: 126px !important;
  resize: vertical !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-form button {
  width: 100% !important;
  min-height: 52px !important;
  border-radius: 7px !important;
  background: linear-gradient(135deg, #2fbe7a, #0d9d6d) !important;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(47, 190, 122, 0.3) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-form button:hover {
  background: linear-gradient(135deg, #3cd68a, #0eb07a) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 24px rgba(47, 190, 122, 0.4) !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-team {
  grid-area: team !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(170px, 210px)) !important;
  justify-content: start !important;
  gap: clamp(34px, 4vw, 72px) !important;
  align-items: start !important;
  transform: translateX(clamp(-96px, -5.4vw, -46px)) !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-person {
  width: 100% !important;
  text-align: center !important;
  color: #fff !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-person img {
  width: clamp(124px, 10vw, 164px) !important;
  height: clamp(124px, 10vw, 164px) !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  border: 4px solid rgba(255, 255, 255, 0.95) !important;
  outline: 3px solid rgba(255, 255, 255, 0.45) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18) !important;
  display: block !important;
  margin: 0 auto !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-person h3 {
  margin: 14px 0 4px !important;
  color: #fff !important;
  font-size: 1rem !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
}

.aflow-page .aflow-almaflow-contact .aflow-contact-person p {
  min-height: 34px !important;
  margin: 0 0 16px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.78rem !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
}

.aflow-page .aflow-almaflow-contact .aflow-person-actions {
  display: inline-flex !important;
  gap: 12px !important;
}

.aflow-page .aflow-almaflow-contact .aflow-person-actions a {
  width: 42px !important;
  height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  color: #fff !important;
  background: rgba(48, 188, 119, 0.8) !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, background 0.2s ease !important;
}

.aflow-page .aflow-almaflow-contact .aflow-person-actions a:hover {
  transform: translateY(-2px) !important;
  background: #2fbe7a !important;
}

@media (max-width: 1180px) {
  .aflow-page .aflow-almaflow-contact .aflow-contact-inner {
    grid-template-columns: 280px 340px 1fr !important;
    gap: 32px !important;
  }

  .aflow-page .aflow-almaflow-contact .aflow-contact-copy::after,
  .aflow-page .aflow-almaflow-contact .aflow-contact-form::after {
    right: -8px !important;
  }

  .aflow-page .aflow-almaflow-contact .aflow-contact-team {
    gap: 28px !important;
    transform: translateX(-34px) !important;
  }
}

@media (max-width: 980px) {
  .aflow-page .aflow-almaflow-contact .aflow-contact-inner {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "copy"
      "form"
      "team" !important;
  }

  .aflow-page .aflow-almaflow-contact .aflow-contact-copy::after,
  .aflow-page .aflow-almaflow-contact .aflow-contact-form::after {
    display: none !important;
  }

  .aflow-page .aflow-almaflow-contact .aflow-contact-form {
    transform: none !important;
  }

  .aflow-page .aflow-almaflow-contact .aflow-contact-copy p {
    max-width: 620px !important;
  }

  .aflow-page .aflow-almaflow-contact .aflow-contact-team {
    max-width: 620px !important;
    margin: 0 auto !important;
    transform: none !important;
  }
}

@media (max-width: 560px) {
  .aflow-page .aflow-almaflow-contact .aflow-contact-team {
    grid-template-columns: 1fr !important;
  }

.aflow-page .aflow-almaflow-contact .aflow-contact-form button {
  width: 100% !important;
}

}

/* Certifications page restored layout */
.activities-other-page {
  background: #f6f9fc;
  color: #0b2f58;
}

.activities-other-page .activities-other-hero {
  position: relative;
  min-height: 560px !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  padding: clamp(96px, 9vw, 146px) 20px clamp(70px, 7vw, 104px) !important;
  color: #fff !important;
  background: transparent !important;
}

.activities-other-page .cert-hero-slider {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
}

.activities-other-page .cert-hero-slider .swiper-wrapper {
  height: 100% !important;
}

.activities-other-page .cert-hero-slider .swiper-slide {
  height: 100% !important;
}

.activities-other-page .cert-hero-cover-image {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
}

.activities-other-page .activities-other-hero::after {
  display: none !important;
}

.activities-other-page .activities-other-hero-content {
  position: relative !important;
  z-index: 3 !important;
  width: 100% !important;
  pointer-events: none !important;
}

.activities-other-page .activities-other-hero .container {
  width: 100% !important;
  max-width: var(--max-width, 1200px) !important;
  margin: 0 !important;
  padding-left: clamp(20px, 5vw, 80px) !important;
}

.activities-other-page .activities-other-hero h1 {
  max-width: 640px !important;
  margin: 0 0 24px !important;
  color: #fff !important;
  font-size: clamp(42px, 5vw, 76px) !important;
  line-height: 1.02 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

.activities-other-page .activities-other-hero-intro {
  max-width: 560px !important;
  border-left: 4px solid #fff !important;
  padding-left: 24px !important;
}

.activities-other-page .activities-other-hero-intro p {
  margin: 0 0 10px !important;
  color: rgba(255, 255, 255, 0.94) !important;
  font-size: 17px !important;
  line-height: 1.62 !important;
}

.activities-other-page .cert-hero-slider .swiper-button-prev,
.activities-other-page .cert-hero-slider .swiper-button-next {
  z-index: 4 !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: #0b3a60 !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14) !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.activities-other-page .cert-hero-slider .swiper-button-prev::after,
.activities-other-page .cert-hero-slider .swiper-button-next::after {
  font-size: 18px !important;
  font-weight: 700 !important;
}

.activities-other-page .cert-hero-slider .swiper-button-prev:hover,
.activities-other-page .cert-hero-slider .swiper-button-next:hover {
  background: #fff !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.2) !important;
}

.activities-other-page .cert-hero-slider .swiper-pagination {
  z-index: 4 !important;
  color: #fff !important;
}

.cert-quality-band,
.cert-regulatory-band,
.cert-labs-band,
.cert-products-band {
  padding: clamp(42px, 5vw, 72px) 20px !important;
}

.cert-quality-inner,
.cert-regulatory-inner,
.cert-labs-inner,
.cert-products-inner {
  width: min(1180px, 100%) !important;
  margin: 0 auto !important;
}

.cert-quality-band {
  background: #fff !important;
}

.cert-quality-inner {
  display: grid !important;
  grid-template-columns: 0.9fr 1.25fr !important;
  gap: clamp(34px, 5vw, 78px) !important;
  align-items: center !important;
}

.cert-quality-copy {
  display: grid !important;
  grid-template-columns: 82px 1fr !important;
  gap: 24px !important;
  align-items: start !important;
}

.cert-quality-icon {
  color: #126bb4 !important;
}

.cert-quality-band h2,
.cert-quality-band h3,
.cert-regulatory-band h2,
.cert-regulatory-band h3,
.cert-lab-card h2,
.cert-lab-card h3,
.cert-products-title h2,
.cert-products-title h3,
.cert-guarantees-band h2 {
  margin: 0 !important;
  color: #0b2f58 !important;
  font-size: 20px !important;
  line-height: 1.12 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.cert-quality-line {
  display: block !important;
  width: 38px !important;
  height: 3px !important;
  margin: 16px 0 22px !important;
  background: #1784ca !important;
}

.cert-quality-copy p,
.cert-regulatory-copy p {
  margin: 0 0 16px !important;
  color: #173758 !important;
  font-size: 15px !important;
  line-height: 1.66 !important;
}

/* ============================================================
   ACN Download Buttons — Direct PDF download
   ============================================================ */
.acn-downloads {
  margin-top: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.acn-download-btn {
  width: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 14px !important;
  border: 1px solid rgba(11, 47, 88, 0.12) !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: #0b2f58 !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 2px 8px rgba(11, 47, 88, 0.04) !important;
}

.acn-download-btn:hover {
  border-color: rgba(29, 131, 193, 0.4) !important;
  background: #1D83C1 !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(29, 131, 193, 0.2) !important;
  transform: translateY(-1px) !important;
}

.acn-download-btn:hover .acn-pdf-icon {
  transform: scale(1.05) !important;
}

.acn-pdf-icon {
  width: 30px !important;
  height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 3px !important;
  background: #e53935 !important;
  color: #fff !important;
  font-size: 0.58rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
  flex-shrink: 0 !important;
  transition: transform 0.25s ease !important;
}

.acn-btn-text {
  flex: 1 !important;
  text-align: left !important;
}

/* ============================================================
   ACN Download Modal
   ============================================================ */
.acn-modal-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(1, 13, 25, 0.62) !important;
  backdrop-filter: blur(4px) !important;
}

.acn-modal-overlay[hidden] {
  display: none !important;
}

.acn-modal {
  position: relative !important;
  width: min(420px, 92vw) !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  padding: 32px 28px !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: 0 24px 64px rgba(1, 13, 25, 0.24) !important;
  animation: acnModalIn 0.3s ease !important;
}

@keyframes acnModalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.acn-modal-close {
  position: absolute !important;
  top: 12px !important;
  right: 14px !important;
  width: 36px !important;
  height: 36px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: rgba(0,0,0,0.04) !important;
  color: #5f7080 !important;
  font-size: 1.3rem !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
}

.acn-modal-close:hover {
  background: rgba(0,0,0,0.08) !important;
  color: #0b2f58 !important;
}

.acn-modal-icon {
  width: 56px !important;
  height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 16px !important;
  border-radius: 12px !important;
  background: rgba(11, 47, 88, 0.06) !important;
  color: #0b2f58 !important;
}

.acn-pdf-icon--lg {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 52px !important;
  height: 60px !important;
  margin: 0 auto 16px !important;
  border-radius: 4px !important;
  background: #e53935 !important;
  color: #fff !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
}

.acn-pdf-icon--sm {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 24px !important;
  height: 28px !important;
  border-radius: 3px !important;
  background: #e53935 !important;
  color: #fff !important;
  font-size: 0.5rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
  flex-shrink: 0 !important;
}

.acn-modal h3 {
  text-align: center !important;
  margin: 0 0 22px !important;
  color: #0b2f58 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
}

.acn-modal-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.acn-modal-form input {
  width: 100% !important;
  padding: 12px 14px !important;
  border: 1px solid rgba(11, 47, 88, 0.15) !important;
  border-radius: 7px !important;
  background: #f8fafc !important;
  color: #0b2f58 !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  outline: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.acn-modal-form input:focus {
  border-color: #0b6fb3 !important;
  box-shadow: 0 0 0 3px rgba(11, 111, 179, 0.1) !important;
  background: #fff !important;
}

.acn-modal-form input::placeholder {
  color: #8a9ba8 !important;
}

.acn-modal-dl {
  width: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  margin-top: 4px !important;
  padding: 13px 20px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: #1D83C1 !important;
  color: #fff !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.03em !important;
  cursor: pointer !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.acn-modal-dl:hover {
  background: #0d6fa8 !important;
  transform: translateY(-1px) !important;
}

.cert-management h3 {
  margin: 0 !important;
  color: #0b2f58 !important;
  font-size: 20px !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.cert-management-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 28px !important;
}

.cert-management-card {
  min-height: 220px !important;
  padding: 28px 22px 26px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px !important;
  border: 1px solid rgba(13, 64, 111, 0.12) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 18px 44px rgba(13, 64, 111, 0.1) !important;
  cursor: pointer !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease !important;
}

.cert-management-card:hover,
.cert-management-card:focus-visible {
  transform: translateY(-5px) !important;
  border-color: rgba(29, 131, 193, 0.34) !important;
  box-shadow: 0 24px 54px rgba(13, 64, 111, 0.16) !important;
  outline: none !important;
}

.cert-management-card img {
  width: 112px !important;
  height: 112px !important;
  object-fit: contain !important;
}

.cert-management-card p {
  margin: 0 !important;
  color: #0b2f58 !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
  text-align: center !important;
}

.cert-management-card--blue {
  border-bottom: 4px solid #1784ca !important;
}

.cert-management-card--green {
  border-bottom: 4px solid #199650 !important;
}

.cert-management-card--orange {
  border-bottom: 4px solid #f06a22 !important;
}

.cert-management-download {
  margin-top: 24px !important;
}

.cert-management-download-btn,
.cert-products-download a {
  min-height: 46px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 10px 20px !important;
  border: 1px solid rgba(11, 47, 88, 0.12) !important;
  border-radius: 8px !important;
  color: #0b2f58 !important;
  background: #fff !important;
  box-shadow: 0 2px 8px rgba(11, 47, 88, 0.04) !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

.cert-management-download-btn:hover,
.cert-products-download a:hover {
  border-color: rgba(29, 131, 193, 0.4) !important;
  background: #1D83C1 !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(29, 131, 193, 0.2) !important;
  transform: translateY(-1px) !important;
}

.cert-management-download-btn img,
.cert-products-download a img {
  width: 20px !important;
  height: 20px !important;
}

.cert-regulatory-band,
.cert-labs-band,
.cert-products-band {
  background: #f4f9fd !important;
}

.cert-regulatory-inner {
  display: grid !important;
  grid-template-columns: 1.05fr 0.9fr 1fr !important;
  gap: clamp(28px, 4vw, 56px) !important;
  align-items: center !important;
  padding: clamp(24px, 3vw, 36px) !important;
  border: 1px solid rgba(23, 132, 202, 0.18) !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #f7fbff, #ffffff) !important;
}

.cert-regulatory-points {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  margin-top: 12px !important;
}

.cert-regulatory-point {
  min-height: 116px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  text-align: center !important;
  color: #0b2f58 !important;
}

.cert-regulatory-point + .cert-regulatory-point {
  border-left: 1px solid rgba(13, 64, 111, 0.16) !important;
}

.cert-regulatory-point img {
  width: 76px !important;
  height: 58px !important;
  object-fit: contain !important;
}

.cert-regulatory-point svg,
.cert-flag {
  color: #126bb4 !important;
  font-size: 42px !important;
  line-height: 1 !important;
}

.cert-regulatory-point strong {
  color: #0b2f58 !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
}

.cert-regulatory-visual {
  position: relative !important;
  min-height: 240px !important;
}

.cert-regulatory-photo {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  object-fit: cover !important;
}

.cert-regulatory-nf {
  position: absolute !important;
  right: 2% !important;
  bottom: 0 !important;
  width: 102px !important;
  height: 102px !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  background: #fff !important;
  box-shadow: 0 16px 34px rgba(13, 64, 111, 0.16) !important;
}

.cert-regulatory-nf img {
  width: 74px !important;
  height: 74px !important;
  object-fit: contain !important;
}

.cert-labs-inner {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 22px !important;
}

.cert-lab-card {
  min-height: 310px !important;
  display: grid !important;
  grid-template-columns: 1.05fr 1fr !important;
  gap: 20px !important;
  padding: 24px !important;
  border: 1px solid rgba(23, 132, 202, 0.22) !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #f5fbff, #ffffff) !important;
  overflow: hidden !important;
}

.cert-lab-card--green {
  border-color: rgba(25, 150, 80, 0.24) !important;
  background: linear-gradient(135deg, #f5fff8, #ffffff) !important;
}

.cert-lab-card > img {
  width: 100% !important;
  height: 100% !important;
  min-height: 250px !important;
  border-radius: 8px !important;
  object-fit: cover !important;
}

.cert-lab-photo--labo {
  object-position: 75% center !important;
}

.cert-lab-header {
  display: grid !important;
  grid-template-columns: 1fr 100px !important;
  gap: 14px !important;
  align-items: start !important;
}

.cert-lab-semac {
  width: 95px !important;
  height: 95px !important;
  object-fit: contain !important;
}

.cert-lab-features {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px 18px !important;
}

.cert-lab-features--stack {
  grid-template-columns: 1fr !important;
  max-width: 240px !important;
}

.cert-lab-download {
  width: min(100%, 340px) !important;
  margin-top: 20px !important;
}

.cert-lab-download--below-card {
  grid-column: 2 !important;
  width: 100% !important;
  max-width: none !important;
  margin-top: -6px !important;
  display: flex !important;
  justify-content: flex-start !important;
}

.cert-lab-download--below-card .acn-download-btn {
  width: min(100%, 390px) !important;
}

.cert-lab-card--green .cert-lab-download .acn-download-btn {
  border-color: rgba(25, 150, 80, 0.32) !important;
}

.cert-lab-card--green .cert-lab-download .acn-download-btn:hover,
.cert-lab-card--green .cert-lab-download .acn-download-btn:focus-visible {
  background: #199650 !important;
  border-color: #199650 !important;
}

.cert-lab-download--below-card .acn-download-btn {
  border-color: rgba(25, 150, 80, 0.32) !important;
}

.cert-lab-download--below-card .acn-download-btn:hover,
.cert-lab-download--below-card .acn-download-btn:focus-visible {
  background: #199650 !important;
  border-color: #199650 !important;
  color: #fff !important;
}

@media (max-width: 980px) {
  .cert-lab-download--below-card {
    grid-column: 1 !important;
    margin-top: -4px !important;
  }
}

.cert-lab-features span {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #0b2f58 !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}

.cert-lab-icon {
  width: 34px !important;
  height: 34px !important;
  border: 1px solid currentColor !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 34px !important;
  color: #126bb4 !important;
}

.cert-lab-card--green .cert-lab-icon {
  color: #fff !important;
  background: #199650 !important;
  border-color: #199650 !important;
}

.cert-lab-card--green .cert-quality-line {
  color: #199650 !important;
  background: #199650 !important;
}

.cert-lab-icon svg {
  width: 19px !important;
  height: 19px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 1.8 !important;
}

.cert-products-inner {
  display: grid !important;
  grid-template-columns: 0.9fr 1.45fr 1fr !important;
  gap: 28px !important;
  align-items: center !important;
  padding: 24px !important;
  border: 1px solid rgba(23, 132, 202, 0.2) !important;
  border-radius: 10px !important;
  background: #fff !important;
}

.cert-products-list {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px !important;
}

.cert-products-list article {
  position: relative !important;
  min-height: 160px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 12px !important;
  border: 1px solid rgba(13, 64, 111, 0.13) !important;
  border-radius: 8px !important;
  background: #fff !important;
  overflow: hidden !important;
}

.cert-products-list img {
  width: 100% !important;
  height: 100px !important;
  object-fit: contain !important;
  mix-blend-mode: multiply !important;
  filter: brightness(1.05) !important;
}

.cert-products-list strong {
  color: #0b2f58 !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
  text-align: center !important;
}

.cert-products-list .cert-product-pdf-overlay {
  display: none !important;
}

.cert-products-list .cert-product-pdf-overlay span {
  min-height: 48px !important;
  padding: 10px 14px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  background: #fff !important;
  color: #0b2f58 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  text-align: center !important;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18) !important;
}

.cert-products-list .cert-product-pdf-overlay img {
  width: 28px !important;
  height: 28px !important;
  object-fit: contain !important;
  mix-blend-mode: normal !important;
}

.cert-products-download {
  border-left: 1px solid rgba(13, 64, 111, 0.16) !important;
  padding-left: 28px !important;
}

.cert-products-download h3 {
  margin: 0 0 10px !important;
  color: #0b2f58 !important;
  font-size: 20px !important;
  line-height: 1.18 !important;
  font-weight: 900 !important;
}

.cert-products-download p {
  margin: 0 0 16px !important;
  color: #173758 !important;
  line-height: 1.55 !important;
}

.cert-guarantees-band {
  padding: 24px 20px 28px !important;
  color: #fff !important;
  background: linear-gradient(135deg, #004b92, #0073bf) !important;
  text-align: center !important;
}

.cert-guarantees-band h2,
.cert-guarantees-band > h3 {
  color: #fff !important;
  font-size: 20px !important;
}

.cert-guarantees-line {
  display: block !important;
  width: 44px !important;
  height: 3px !important;
  margin: 10px auto 20px !important;
  background: #fff !important;
}

.cert-guarantees-grid {
  width: min(1180px, 100%) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
}

.cert-guarantees-grid article {
  display: grid !important;
  grid-template-columns: 58px 1fr !important;
  gap: 14px !important;
  align-items: center !important;
  padding: 14px 20px !important;
  text-align: left !important;
  border-left: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.cert-guarantees-grid article:first-child {
  border-left: 0 !important;
}

.cert-guarantees-grid span {
  width: 50px !important;
  height: 50px !important;
  display: grid !important;
  place-items: center !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.75) !important;
  border-radius: 50% !important;
  font-size: 22px !important;
}

.cert-guarantees-grid h3 {
  margin: 0 0 4px !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}

.cert-guarantees-grid p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

@media (max-width: 1080px) {
  .cert-quality-inner,
  .cert-regulatory-inner,
  .cert-labs-inner,
  .cert-products-inner {
    grid-template-columns: 1fr !important;
  }

  .cert-guarantees-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .cert-guarantees-grid article:nth-child(odd) {
    border-left: 0 !important;
  }
}

@media (max-width: 700px) {
  .activities-other-page .activities-other-hero {
    min-height: 460px !important;
  }

  .activities-other-page .activities-other-hero-intro,
  .cert-quality-copy,
  .cert-lab-card,
  .cert-lab-header,
  .cert-products-list,
  .cert-regulatory-points,
  .cert-guarantees-grid {
    grid-template-columns: 1fr !important;
  }

  .cert-quality-copy {
    gap: 14px !important;
  }

  .cert-products-download {
    border-left: 0 !important;
    padding-left: 0 !important;
  }

  .cert-products-list .cert-product-pdf-overlay {
    opacity: 1 !important;
    transform: none !important;
    align-items: flex-end !important;
    background: linear-gradient(180deg, transparent 0%, rgba(11, 47, 88, 0.82) 100%) !important;
  }

  .cert-guarantees-grid article {
    border-left: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.22) !important;
  }
}

/* Product search panel: modern global search */
body.alma-search-open {
  overflow: hidden !important;
}

.alma-product-search-panel {
  position: fixed !important;
  inset: 0 !important;
  z-index: 100000 !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
  padding: clamp(76px, 10vh, 118px) 18px 32px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.22s ease, visibility 0.22s ease !important;
}

.alma-product-search-panel.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.alma-product-search-backdrop {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(6, 24, 38, 0.58) !important;
  backdrop-filter: blur(10px) !important;
}

.alma-product-search-dialog {
  position: relative !important;
  width: min(920px, 100%) !important;
  max-height: min(760px, calc(100vh - 120px)) !important;
  overflow: auto !important;
  padding: clamp(24px, 4vw, 42px) !important;
  border: 1px solid rgba(29, 131, 193, 0.16) !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(115, 198, 240, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%) !important;
  box-shadow: 0 34px 90px rgba(0, 34, 64, 0.28) !important;
  transform: translateY(18px) scale(0.98) !important;
  transition: transform 0.26s ease !important;
}

.alma-product-search-panel.is-open .alma-product-search-dialog {
  transform: translateY(0) scale(1) !important;
}

.alma-product-search-close {
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  width: 42px !important;
  height: 42px !important;
  border: 0 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #12324a !important;
  background: #eef6fb !important;
  font-size: 28px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease !important;
}

.alma-product-search-close:hover {
  color: #fff !important;
  background: var(--alma-blue) !important;
  transform: rotate(90deg) !important;
}

.alma-product-search-head {
  max-width: 680px !important;
  margin-bottom: 24px !important;
  padding-right: 54px !important;
}

.alma-product-search-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 12px !important;
  color: var(--alma-blue) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

.alma-product-search-eyebrow::before {
  content: "" !important;
  width: 34px !important;
  height: 3px !important;
  background: currentColor !important;
}

.alma-product-search-head h2 {
  margin: 0 0 8px !important;
  color: #071d31 !important;
  font-size: clamp(28px, 4vw, 46px) !important;
  line-height: 1.06 !important;
  font-weight: 900 !important;
}

.alma-product-search-head p {
  margin: 0 !important;
  color: #5f7182 !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
}

.alma-product-search-field,
.activity-catalog-search-field {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  min-height: 60px !important;
  padding: 0 18px !important;
  border: 1px solid rgba(29, 131, 193, 0.18) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: 0 16px 42px rgba(15, 63, 99, 0.1) !important;
}

.alma-product-search-field svg,
.activity-catalog-search-field svg {
  color: var(--alma-blue) !important;
  flex: 0 0 auto !important;
}

.alma-product-search-field input,
.activity-catalog-search-field input {
  width: 100% !important;
  min-height: 58px !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  color: #102b43 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}

.alma-product-search-field:focus-within,
.activity-catalog-search-field:focus-within {
  border-color: rgba(29, 131, 193, 0.55) !important;
  box-shadow: 0 0 0 4px rgba(29, 131, 193, 0.1), 0 18px 46px rgba(15, 63, 99, 0.13) !important;
}

.alma-search-results {
  margin-top: 14px !important;
  border: 1px solid rgba(29, 131, 193, 0.14) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  background: #fff !important;
  box-shadow: 0 18px 46px rgba(15, 63, 99, 0.12) !important;
}

.alma-search-results[hidden] {
  display: none !important;
}

.alma-search-empty {
  padding: 18px 20px !important;
  color: #66798a !important;
  font-weight: 700 !important;
}

.alma-search-results-list {
  margin: 0 !important;
  padding: 8px !important;
  list-style: none !important;
  display: grid !important;
  gap: 6px !important;
}

.alma-search-result {
  display: grid !important;
  grid-template-columns: 72px 1fr !important;
  gap: 14px !important;
  align-items: center !important;
  padding: 10px !important;
  border-radius: 12px !important;
  color: #102b43 !important;
  text-decoration: none !important;
  transition: background 0.18s ease, transform 0.18s ease !important;
}

.alma-search-result:hover,
.alma-search-results-list li[aria-selected="true"] .alma-search-result {
  background: #eef7fd !important;
  transform: translateY(-1px) !important;
}

.alma-search-result-thumb {
  width: 72px !important;
  height: 60px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 10px !important;
  background: #f5f9fc !important;
  overflow: hidden !important;
}

.alma-search-result-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.alma-search-result-body {
  min-width: 0 !important;
  display: grid !important;
  gap: 4px !important;
}

.alma-search-result-body strong {
  color: #071d31 !important;
  font-size: 15px !important;
  line-height: 1.25 !important;
}

.alma-search-result-meta,
.alma-search-result-desc {
  color: #657789 !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

.alma-search-result mark {
  color: inherit !important;
  background: rgba(115, 198, 240, 0.36) !important;
  border-radius: 4px !important;
  padding: 0 2px !important;
}

.alma-search-footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  padding: 14px 18px !important;
  border-top: 1px solid rgba(29, 131, 193, 0.12) !important;
  color: #66798a !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

.alma-search-footer a {
  color: var(--alma-blue) !important;
  text-decoration: none !important;
}

.activity-catalog-search {
  border: 1px solid rgba(29, 131, 193, 0.13) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  background:
    radial-gradient(circle at 8% 0%, rgba(115, 198, 240, 0.14), transparent 32%),
    #fff !important;
  box-shadow: 0 18px 46px rgba(15, 63, 99, 0.08) !important;
}

.activity-catalog-search-top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin-bottom: 12px !important;
}

.activity-catalog-search-kicker,
.activity-catalog-search-count {
  color: var(--alma-blue) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.activity-catalog-search-count {
  color: #66798a !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* Light overlay removed — clean slides */
.activities-other-page .activities-other-hero::after,
.page-template-page-activites-autre .activities-other-hero::after {
  display: none !important;
}

.family-landing-hero::before,
.family-landing-hero::after,
.aflow-hero-slider .swiper-slide::before,
.aflow-hero-slider .swiper-slide::after,
.real-hero::before,
.real-hero::after,
.blog2-hero::before,
.blog2-hero::after {
  background: transparent !important;
}

.hero-slider .slide-thumb::after {
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: transparent !important;
}

@media (max-width: 620px) {
  .alma-product-search-panel {
    padding: 74px 12px 20px !important;
  }

  .alma-product-search-dialog {
    max-height: calc(100vh - 96px) !important;
    border-radius: 14px !important;
  }

  .alma-search-result {
    grid-template-columns: 56px 1fr !important;
  }

  .alma-search-result-thumb {
    width: 56px !important;
    height: 52px !important;
  }
}

/* ALMAflow restored model sections */
.aflow-page .aflow-model-head {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto clamp(26px, 3vw, 42px);
  text-align: center;
}

.aflow-page .aflow-model-head span,
.aflow-page .aflow-model-kicker {
  display: block;
  margin-bottom: 10px;
  color: #15944e;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aflow-page .aflow-model-head h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

.aflow-page .aflow-model-solutions {
  padding: clamp(56px, 7vw, 92px) 20px clamp(50px, 6vw, 76px);
  background: #fff;
}

.aflow-page .aflow-model-solutions-grid {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.aflow-page .aflow-model-solution-card {
  overflow: hidden;
  border: 1px solid rgba(16, 75, 43, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.09);
}

.aflow-page .aflow-model-solution-card > img {
  width: 100%;
  height: 250px;
  display: block;
  object-fit: cover;
}

.aflow-page .aflow-model-solution-card:nth-child(4) > img {
  object-position: right center;
}

.aflow-page .aflow-model-solution-body {
  position: relative;
  padding: 46px 28px 28px;
}

.aflow-page .aflow-model-solution-icon {
  position: absolute;
  top: -34px;
  left: 28px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #079548;
  box-shadow: 0 12px 26px rgba(7, 149, 72, 0.24);
}

.aflow-page .aflow-model-solution-icon svg,
.aflow-page .aflow-model-why-icon svg,
.aflow-page .aflow-model-stat svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aflow-page .aflow-model-solution-card h3 {
  margin: 0 0 16px;
  color: #161b22;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 900;
}

.aflow-page .aflow-model-solution-card p {
  margin: 0 0 26px;
  color: #374151;
  font-size: 16px;
  line-height: 1.58;
}

.aflow-page .aflow-model-solution-card a,
.aflow-page .aflow-model-products-all,
.aflow-page .aflow-model-why-list a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border-radius: 4px;
  color: #fff !important;
  background: #079548;
  box-shadow: 0 12px 26px rgba(7, 149, 72, 0.2);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none !important;
}

.aflow-page .aflow-model-products {
  padding: clamp(64px, 8vw, 102px) 20px clamp(62px, 7vw, 94px);
  background: #fff;
  text-align: center;
}

.aflow-page .aflow-model-products .aflow-model-head h2 {
  color: #167b3e;
}

.aflow-page .aflow-model-product-grid {
  width: min(1120px, 100%);
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.aflow-page .aflow-model-product-card {
  min-height: 320px;
  padding: 28px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  border: 1px solid rgba(16, 75, 43, 0.13);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.aflow-page .aflow-model-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.12);
}

.aflow-page .aflow-model-product-card img {
  width: 100%;
  height: 150px;
  margin-bottom: auto;
  object-fit: cover;
  border-radius: 6px;
}

.aflow-page .aflow-model-product-card h3 {
  min-height: 48px;
  margin: 18px 0 8px;
  color: #1b1f24;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 900;
}

.aflow-page .aflow-model-product-card p {
  margin: 0 0 18px;
  color: #5d6873;
  font-size: 15px;
  font-weight: 800;
}

.aflow-page .aflow-model-product-card a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff !important;
  background: #079548;
  box-shadow: 0 12px 28px rgba(7, 149, 72, 0.28);
  font-size: 20px;
  line-height: 1;
  text-decoration: none !important;
}

.aflow-page .aflow-model-why {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 6vw, 78px) 20px;
  background:
    linear-gradient(90deg, rgba(246, 252, 247, 0.28), rgba(246, 252, 247, 0.2)),
    url("assets/aflow-why-bg.jpeg") center / cover no-repeat;
}

.aflow-page .aflow-model-why::after {
  content: "";
  position: absolute;
  right: clamp(16px, 3vw, 58px);
  top: clamp(76px, 10vw, 132px);
  width: clamp(86px, 9vw, 138px);
  aspect-ratio: 1 / 1;
  background: url("assets/aflow-why-leaf-real.png") center / contain no-repeat;
  opacity: 0.9;
  pointer-events: none;
  animation: aflow-leaf-float 4.8s ease-in-out infinite;
}

@keyframes aflow-leaf-float {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateY(-14px) rotate(3deg);
  }
}

.aflow-page .aflow-model-why-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.aflow-page .aflow-model-why h2 {
  margin: 0 0 clamp(38px, 5vw, 68px);
  color: #101418;
  text-align: center;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  font-weight: 900;
}

.aflow-page .aflow-model-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
}

.aflow-page .aflow-model-why-copy {
  position: relative;
  padding-left: 0;
}

.aflow-page .aflow-model-why-copy h3 {
  margin: 0 0 24px;
  color: #111827;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.25;
  font-weight: 900;
}

.aflow-page .aflow-model-why-copy p {
  max-width: 680px;
  margin: 0;
  color: #59636f;
  font-size: 19px;
  line-height: 1.75;
  font-weight: 700;
}

.aflow-page .aflow-model-why-list ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 20px;
}

.aflow-page .aflow-model-why-list li {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding-left: 58px;
  color: #27313d;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
}

.aflow-page .aflow-model-why-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #079548;
  font-weight: 900;
}

.aflow-page .aflow-model-why-list a {
  min-width: 270px;
  min-height: 58px;
  font-size: 16px;
  text-transform: uppercase;
}

.aflow-page .aflow-model-stats {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: transparent !important;
}

.aflow-page .aflow-model-stat {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  padding: 10px 36px;
  border-left: 1px solid rgba(7, 149, 72, 0.10);
}

.aflow-page .aflow-model-stat:first-child {
  border-left: 0;
}

.aflow-page .aflow-model-stat span {
  color: #079548;
  opacity: 0.78;
}

.aflow-page .aflow-model-stat strong {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px #079548;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  font-weight: 900;
}

.aflow-page .aflow-model-stat strong .counter-value {
  color: transparent;
  -webkit-text-stroke: 1.5px #079548;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.aflow-page .aflow-model-stat p {
  grid-column: 2;
  margin: -8px 0 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
}

@media (max-width: 980px) {
  .aflow-page .aflow-model-solutions-grid,
  .aflow-page .aflow-model-why-grid {
    grid-template-columns: 1fr;
  }

  .aflow-page .aflow-model-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aflow-page .aflow-model-stats {
    grid-template-columns: 1fr;
  }

  .aflow-page .aflow-model-stat {
    border-left: 0;
    border-top: 1px solid rgba(7, 149, 72, 0.10);
  }

  .aflow-page .aflow-model-stat:first-child {
    border-top: 0;
  }
}

@media (max-width: 620px) {
  .aflow-page .aflow-model-product-grid {
    grid-template-columns: 1fr;
  }

  .aflow-page .aflow-model-why-copy {
    padding-top: 0;
  }

  .aflow-page .aflow-model-solution-card > img {
    height: 210px;
  }
}

/* ALMAflow simplified header: logo + socials + green catalogue */
.page-template-page-almaflow .alma-topbar {
  position: absolute !important;
  top: 0 !important;
  right: auto !important;
  left: clamp(260px, 22vw, 340px) !important;
  z-index: 1002 !important;
  width: auto !important;
  height: 92px !important;
  min-height: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.page-template-page-almaflow .alma-topbar .tb-inner {
  width: auto !important;
  height: 100% !important;
  max-width: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  padding: 0 !important;
  margin: 0 !important;
}

.page-template-page-almaflow .alma-topbar .tb-left,
.page-template-page-almaflow .alma-topbar .lang {
  display: none !important;
}

.page-template-page-almaflow .alma-topbar .tb-right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 0 !important;
  margin: 0 !important;
}

.page-template-page-almaflow .alma-topbar .tb-right .socials {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  margin: 0 !important;
}

.page-template-page-almaflow .alma-topbar .tb-right .socials a {
  width: 40px !important;
  height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #248346 !important;
  background: rgba(36, 131, 70, 0.08) !important;
  border: 1px solid rgba(36, 131, 70, 0.18) !important;
  border-radius: 50% !important;
  opacity: 1 !important;
}

.page-template-page-almaflow .alma-topbar .tb-right .socials a:hover {
  color: #fff !important;
  background: #248346 !important;
  border-color: #248346 !important;
}

.page-template-page-almaflow .alma-topbar .tb-right .socials a svg {
  width: 17px !important;
  height: 17px !important;
}

.page-template-page-almaflow .alma-header {
  min-height: 92px !important;
}


/* Header blanc en état scrollé — géré par les règles overlay en bas du CSS */

.page-template-page-almaflow .alma-header .alma-nav {
  height: 92px !important;
  min-height: 92px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 clamp(18px, 3vw, 46px) !important;
}

.page-template-page-almaflow .alma-header .logo {
  flex: 0 0 auto !important;
  margin: 0 !important;
}

.page-template-page-almaflow .alma-header .logo img,
.page-template-page-almaflow .alma-nav .logo img {
  height: 82px !important;
  width: auto !important;
  max-width: min(340px, 42vw) !important;
  object-fit: contain !important;
}

/* Header social icons next to catalog button (ALMAflow) */
.header-socials {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 8px !important;
}

.header-socials a {
  width: 34px !important;
  height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  color: #248346 !important;
  background: rgba(36, 131, 70, 0.08) !important;
  border: 1px solid rgba(36, 131, 70, 0.18) !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.header-socials a:hover {
  color: #fff !important;
  background: #248346 !important;
  border-color: #248346 !important;
  transform: translateY(-1px) !important;
}

.header-socials svg {
  width: 15px !important;
  height: 15px !important;
}

.page-template-page-almaflow .alma-header .nav-links,
.page-template-page-almaflow .alma-header .nav-search,
.page-template-page-almaflow .alma-header .header-claim-btn,
.page-template-page-almaflow .alma-header .nav-right .btn,
.page-template-page-almaflow .alma-header .offcanvas-toggle {
  display: none !important;
}

.page-template-page-almaflow .alma-header .nav-right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 0 !important;
  margin-left: auto !important;
  padding: 0 !important;
}

.page-template-page-almaflow .alma-header .nav-right .header-catalogue-btn,
.page-template-page-almaflow .alma-header .nav-right .header-catalogue-btn:visited {
  min-width: 152px !important;
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 22px !important;
  border: 1px solid #248346 !important;
  border-radius: 8px !important;
  color: #fff !important;
  background: #248346 !important;
  box-shadow: 0 12px 26px rgba(36, 131, 70, 0.22) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  text-transform: none !important;
}

.page-template-page-almaflow .alma-header .nav-right .header-catalogue-btn:hover,
.page-template-page-almaflow .alma-header .nav-right .header-catalogue-btn:focus {
  background: #1d6f3b !important;
  border-color: #1d6f3b !important;
  transform: translateY(-1px) !important;
}

@media (max-width: 760px) {
  .page-template-page-almaflow .alma-topbar {
    left: auto !important;
    right: 14px !important;
    top: 86px !important;
    height: 48px !important;
  }

  .page-template-page-almaflow .alma-header {
    min-height: 140px !important;
  }

  .page-template-page-almaflow .alma-header .alma-nav {
    height: 86px !important;
    min-height: 86px !important;
    padding: 0 14px !important;
  }

  .page-template-page-almaflow .alma-header .logo img,
  .page-template-page-almaflow .alma-nav .logo img {
    height: 60px !important;
    max-width: 52vw !important;
  }

  .page-template-page-almaflow .alma-header .nav-right .header-catalogue-btn {
    min-width: 126px !important;
    min-height: 42px !important;
    padding: 0 14px !important;
    font-size: 12px !important;
  }

  .page-template-page-almaflow .alma-topbar .tb-right .socials a {
    width: 34px !important;
    height: 34px !important;
  }
}

@media (max-width: 980px) {
  .aflow-page .aflow-model-why::after {
    opacity: 0.32;
    right: 4px;
    top: 24px;
    width: 92px;
  }
}

/* ALMAflow transparent header — position fixed géré par les règles overlay en bas du CSS */
.page-template-page-almaflow .alma-header:not(.is-scrolled) .alma-nav {
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.admin-bar.page-template-page-almaflow .alma-header {
  top: 32px !important;
}

@media (max-width: 782px) {
  .admin-bar.page-template-page-almaflow .alma-header {
    top: 46px !important;
  }
}

/* Home: transparent topbar and header over the main slider */
.home .alma-topbar {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 1002 !important;
  width: 100% !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.home .alma-header {
  position: absolute !important;
  top: 58px !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 1001 !important;
  width: 100% !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.home .alma-header .alma-nav {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.home .alma-topbar .tb-left,
.home .alma-topbar .tb-right,
.home .alma-header .nav-links,
.home .alma-header .nav-search,
.home .alma-header .offcanvas-toggle {
  visibility: visible !important;
  opacity: 1 !important;
}

.home .alma-header .nav-link,
.home .alma-header .has-dropdown,
.home .alma-header .caret,
.home .alma-header .nav-search,
.home .alma-header .offcanvas-toggle {
  color: #fff !important;
  text-shadow: 0 1px 8px rgba(0, 28, 48, 0.72);
}

.home .alma-header .logo img {
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.72));
}

.home .alma-topbar a,
.home .alma-topbar span {
  text-shadow: 0 1px 7px rgba(0, 28, 48, 0.65);
}

.admin-bar.home .alma-topbar {
  top: 32px !important;
}

.admin-bar.home .alma-header {
  top: 90px !important;
}

@media (max-width: 782px) {
  .admin-bar.home .alma-topbar {
    top: 46px !important;
  }

  .admin-bar.home .alma-header {
    top: 104px !important;
  }
}

/* Certifications hero: Swiper handles slides natively */

/* Home layout restoration and visual polish */
.home .about-video-hero {
  height: clamp(640px, 75vh, 760px) !important;
  min-height: 640px !important;
}

.home .about-video-hero .about-hero-video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.home .env-stats {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-template-rows: repeat(2, minmax(180px, 1fr)) !important;
  gap: 18px 24px !important;
  align-items: stretch !important;
  margin-left: -120px !important;
  width: 68% !important;
}

.home .env-stat {
  position: relative !important;
  min-width: 0 !important;
  min-height: 180px !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

.home .env-stat .env-leaf-spacer {
  flex: 0 0 72px !important;
  width: 100% !important;
  height: 72px !important;
}

.home .env-stat .env-leaf-top {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 64px !important;
  height: 64px !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.home .env-stat .env-leaf-top img {
  width: 64px !important;
  height: 64px !important;
  object-fit: contain !important;
}

.home .env-stat .env-num {
  min-height: 34px !important;
  display: inline-flex !important;
  align-items: baseline !important;
  justify-content: flex-start !important;
  white-space: nowrap !important;
}

.home .env-stat .env-line {
  flex: 0 0 1px !important;
}

.home .env-stat .env-lbl {
  min-height: 34px !important;
  max-width: 220px !important;
}

.home .aqc-grid.aqc-grid--logo-only {
  height: auto !important;
  min-height: 0 !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  grid-auto-rows: 190px !important;
  align-items: stretch !important;
  gap: 18px !important;
}

.home .aqc-grid--logo-only .aqc-card--logo-only {
  height: 190px !important;
  min-height: 0 !important;
  padding: 18px 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.home .aqc-grid--logo-only .aqc-card--logo-only > a,
.home .aqc-grid--logo-only .aqc-logo-wrap {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.home .aqc-grid--logo-only .aqc-logo-wrap img {
  width: min(145px, 100%) !important;
  height: min(145px, 100%) !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

.svc-discover-row {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  flex-wrap: nowrap !important;
}

.svc-discover-row .svc-brand-logo {
  width: 172px !important;
  max-width: 50% !important;
  height: auto !important;
  max-height: 52px !important;
  margin: 0 0 0 auto !important;
  object-fit: contain !important;
  object-position: right center !important;
  flex-shrink: 1 !important;
}

/* Home contact block restored from the original visual direction */
.home .about-contact-band {
  min-height: 0 !important;
  height: auto !important;
  padding: clamp(58px, 6vw, 82px) 24px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 86% 18%, rgba(115, 198, 240, 0.24), transparent 32%),
    linear-gradient(118deg, #063a5f 0%, #0b4f7c 52%, #1d83c1 100%) !important;
}

.home .about-contact-band > svg,
.home .about-contact-band > .about-contact-bg {
  pointer-events: none !important;
}

.home .about-contact-band > .about-contact-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

.home .about-contact-band > .about-contact-bg .about-contact-bg-image {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  opacity: 0.2 !important;
}

.home .about-contact-band::before {
  z-index: 1 !important;
}

.home .about-contact-inner {
  width: min(1160px, 100%) !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 330px !important;
  gap: 28px !important;
  align-items: start !important;
  position: relative !important;
  z-index: 2 !important;
}

.home .about-contact-copy,
.home .join-contact-embedded {
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
}

.home .about-contact-band .join-contact-head {
  max-width: 780px !important;
  height: auto !important;
  margin: 0 0 24px !important;
}

.home .about-contact-band .join-contact-eyebrow {
  margin-bottom: 8px !important;
  color: #73c6f0 !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 0 !important;
}

.home .about-contact-band .join-contact-head h2 {
  margin: 0 0 12px !important;
  color: #fff !important;
  font-size: clamp(30px, 3.2vw, 46px) !important;
  line-height: 1.04 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

.home .about-contact-band .join-contact-head h2 span {
  color: #35b8ef !important;
}

.home .about-contact-band .join-contact-head p {
  max-width: 760px !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

.home .about-contact-band .join-contact-grid {
  height: auto !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.home .about-contact-band .join-contact-card {
  position: relative !important;
  min-width: 0 !important;
  min-height: 330px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 24px !important;
  overflow: hidden !important;
  border: 1px solid rgba(53, 184, 239, 0.72) !important;
  border-radius: 8px !important;
  background: rgba(2, 37, 70, 0.64) !important;
  box-shadow: 0 18px 44px rgba(0, 19, 40, 0.18) !important;
}

.home .about-contact-band .join-contact-card--export {
  border-color: rgba(46, 164, 106, 0.82) !important;
  background: rgba(3, 63, 60, 0.66) !important;
}

.home .about-contact-band .join-card-visual {
  position: absolute !important;
  right: 8px !important;
  bottom: 60px !important;
  z-index: 0 !important;
  width: 80% !important;
  height: auto !important;
  max-height: 80% !important;
  display: block !important;
  object-fit: contain !important;
  opacity: 0.34 !important;
}

.home .about-contact-band .join-card-content {
  position: relative !important;
  z-index: 1 !important;
  width: 100% !important;
  height: auto !important;
}

.home .about-contact-band .join-card-title-row {
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin: 0 0 12px !important;
}

.home .about-contact-band .join-card-icon {
  flex: 0 0 36px !important;
  width: 36px !important;
  height: 36px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #35b8ef !important;
}

.home .about-contact-band .join-contact-card--export .join-card-icon {
  color: #36cf72 !important;
}

.home .about-contact-band .join-card-icon svg {
  width: 30px !important;
  height: 30px !important;
}

.home .about-contact-band .join-card-title-row h2 {
  margin: 0 !important;
  color: #fff !important;
  font-size: 28px !important;
  line-height: 1.05 !important;
  font-weight: 900 !important;
}

.home .about-contact-band .join-card-title-row strong {
  display: block !important;
  margin-top: 3px !important;
  color: #35b8ef !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
}

.home .about-contact-band .join-contact-card--export .join-card-title-row strong {
  color: #36cf72 !important;
}

.home .about-contact-band .join-card-content > p {
  min-height: 62px !important;
  margin: 0 0 14px !important;
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.home .about-contact-band .join-contact-list {
  height: auto !important;
  display: grid !important;
  gap: 8px !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  list-style: none !important;
}

.home .about-contact-band .join-contact-list li {
  min-height: 28px !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 9px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.92) !important;
}

.home .about-contact-band .join-contact-list li > span {
  flex: 0 0 18px !important;
  width: 18px !important;
  height: 18px !important;
  color: #35b8ef !important;
}

.home .about-contact-band .join-contact-card--export .join-contact-list li > span {
  color: #36cf72 !important;
}

.home .about-contact-band .join-contact-list svg {
  width: 18px !important;
  height: 18px !important;
}

.home .about-contact-band .join-contact-list div {
  min-width: 0 !important;
  font-size: 11px !important;
  line-height: 1.35 !important;
}

.home .about-contact-band .join-contact-list b,
.home .about-contact-band .join-contact-list a,
.home .about-contact-band .join-contact-list div > span {
  display: block !important;
  color: inherit !important;
  text-decoration: none !important;
}

.home .about-contact-band .join-card-cta {
  min-height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 0 16px !important;
  border-radius: 5px !important;
  color: #fff !important;
  background: #1d9bd3 !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

.home .about-contact-band .join-contact-card--export .join-card-cta {
  background: #2ea46a !important;
}

.home .about-contact-form {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 26px !important;
  border: 1px solid rgba(115, 198, 240, 0.16) !important;
  border-radius: 0 !important;
  background: rgba(2, 38, 68, 0.78) !important;
  box-shadow: 0 20px 48px rgba(0, 20, 42, 0.2) !important;
}

.home .about-contact-form h3 {
  margin: 0 0 8px !important;
  color: #fff !important;
  font-size: 25px !important;
  line-height: 1.15 !important;
}

.home .about-contact-form p {
  margin: 0 0 18px !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

.home .about-contact-form input,
.home .about-contact-form textarea {
  width: 100% !important;
  margin: 0 0 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 0 !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
}

.home .about-contact-form input {
  height: 44px !important;
  padding: 0 14px !important;
}

.home .about-contact-form textarea {
  min-height: 108px !important;
  padding: 13px 14px !important;
  resize: vertical !important;
}

.home .about-contact-form input::placeholder,
.home .about-contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.62) !important;
}

.home .about-contact-form button {
  min-height: 42px !important;
  margin-top: 2px !important;
  padding: 0 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.32) !important;
  border-radius: 0 !important;
  color: #fff !important;
  background: #1d83c1 !important;
  font-size: 11px !important;
  font-weight: 900 !important;
}

/* Home footer aligned with the restored contact band */
.home .alma-footer {
  padding: 46px 24px 18px !important;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(120deg, #1d83c1 0%, #58b4e4 58%, #73c6f0 100%) !important;
}

.home .alma-footer .foot-grid {
  width: min(1120px, 100%) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr !important;
  gap: 38px !important;
}

.home .alma-footer .foot-grid > div {
  min-width: 0 !important;
}

.home .alma-footer h5,
.home .alma-footer a,
.home .alma-footer p,
.home .alma-footer .foot-about {
  color: rgba(255, 255, 255, 0.92) !important;
}

.home .alma-footer h5 {
  margin-bottom: 16px !important;
}

.home .alma-footer .newsletter {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 8px !important;
}

.home .alma-footer .newsletter input {
  min-width: 0 !important;
  border: 0 !important;
  background: #fff !important;
}

.home .alma-footer .newsletter .btn {
  border-color: #0b4f7c !important;
  background: #0b4f7c !important;
}

.home .alma-footer .foot-bottom {
  width: min(1120px, 100%) !important;
  margin: 30px auto 0 !important;
  padding-top: 16px !important;
  border-top-color: rgba(255, 255, 255, 0.24) !important;
  color: rgba(255, 255, 255, 0.76) !important;
}

@media (max-width: 980px) {
  .home .about-video-hero {
    height: 620px !important;
    min-height: 620px !important;
  }

  .home .about-contact-inner {
    grid-template-columns: 1fr !important;
  }

  .home .about-contact-form {
    max-width: 620px !important;
  }

  .home .alma-footer .foot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home .aqc-grid.aqc-grid--logo-only {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 700px) {
  .home .about-video-hero {
    height: 560px !important;
    min-height: 560px !important;
  }

  .home .env-stats,
  .home .about-contact-band .join-contact-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: none !important;
  }

  .home .env-stat {
    min-height: 170px !important;
  }

  .home .aqc-grid.aqc-grid--logo-only {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-rows: 170px !important;
  }

  .home .aqc-grid--logo-only .aqc-card--logo-only {
    height: 170px !important;
  }

  .home .about-contact-band {
    padding: 46px 16px !important;
  }

  .home .about-contact-band .join-contact-card {
    min-height: 0 !important;
  }

  .home .about-contact-form {
    padding: 22px 18px !important;
  }

  .home .alma-footer .foot-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

/* Qui sommes-nous: balanced hero and compact CEO section */
.page-template-page-qui-sommes-nous #hero-slider {
  height: clamp(560px, 68vh, 660px) !important;
  min-height: 560px !important;
}

.page-template-page-qui-sommes-nous #hero-slider .swiper-wrapper,
.page-template-page-qui-sommes-nous #hero-slider .swiper-slide,
.page-template-page-qui-sommes-nous #hero-slider .slide-inner-hero-cover,
.page-template-page-almaflow-domestique #hero-slider .slide-inner-hero-cover {
  height: 100% !important;
}

.page-template-page-qui-sommes-nous #hero-slider .slide-inner-hero-cover {
  display: grid !important;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%) !important;
  align-items: start !important;
  gap: clamp(34px, 5vw, 78px) !important;
  padding: clamp(80px, 10vw, 120px) clamp(42px, 7vw, 96px) 64px !important;
}

.page-template-page-qui-sommes-nous #hero-slider .slide-hero-cover-image {
  width: 100% !important;
  height: clamp(390px, 48vh, 470px) !important;
  display: block !important;
  object-fit: cover !important;
}

.page-template-page-qui-sommes-nous #hero-slider .slide-hero-content {
  position: static !important;
  width: 100% !important;
  padding: 0 !important;
  transform: none !important;
}

.page-template-page-qui-sommes-nous #hero-slider .slide-hero-content h1 {
  margin: 0 !important;
  font-size: clamp(48px, 5.2vw, 76px) !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
}

.page-template-page-qui-sommes-nous #hero-slider .swiper-button-prev,
.page-template-page-qui-sommes-nous #hero-slider .swiper-button-next {
  top: 75% !important;
}

.page-template-page-qui-sommes-nous #hero-slider .swiper-pagination {
  bottom: 18px !important;
}

.page-template-page-qui-sommes-nous #about {
  padding-top: clamp(66px, 7vw, 92px) !important;
  padding-bottom: clamp(66px, 7vw, 92px) !important;
}

.page-template-page-qui-sommes-nous .president-word-section {
  padding: clamp(66px, 7vw, 92px) 20px !important;
}

.page-template-page-qui-sommes-nous .president-word-grid {
  align-items: center !important;
}

.page-template-page-qui-sommes-nous .president-word-card {
  align-self: center !important;
}

.page-template-page-qui-sommes-nous .president-word-body {
  position: relative !important;
  max-height: 318px !important;
  overflow: hidden !important;
  transition: max-height 0.45s ease !important;
}

.page-template-page-qui-sommes-nous .president-word-body::after {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  height: 78px !important;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.98)) !important;
  pointer-events: none !important;
  transition: opacity 0.25s ease !important;
}

.page-template-page-qui-sommes-nous .president-word-body.is-expanded {
  max-height: 1200px !important;
}

.page-template-page-qui-sommes-nous .president-word-body.is-expanded::after {
  opacity: 0 !important;
}

.page-template-page-qui-sommes-nous .president-word-body p + p {
  margin-top: 16px !important;
}

.page-template-page-qui-sommes-nous .president-word-toggle {
  min-height: 44px !important;
  margin-top: 20px !important;
  padding: 0 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  border: 1px solid var(--alma-blue) !important;
  border-radius: 5px !important;
  color: #fff !important;
  background: var(--alma-blue) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  cursor: pointer !important;
}

.page-template-page-qui-sommes-nous .about-contact-style-scope {
  width: 100% !important;
}

@media (max-width: 900px) {
  .page-template-page-qui-sommes-nous #hero-slider {
    height: auto !important;
    min-height: 650px !important;
  }

  .page-template-page-qui-sommes-nous #hero-slider .slide-inner-hero-cover {
    grid-template-columns: 1fr !important;
    align-content: center !important;
    gap: 24px !important;
    padding: 46px 20px 74px !important;
  }

  .page-template-page-qui-sommes-nous #hero-slider .slide-hero-cover-image {
    height: 330px !important;
  }

  .page-template-page-qui-sommes-nous #hero-slider .slide-hero-content h1 {
    font-size: clamp(38px, 9vw, 56px) !important;
  }

  .page-template-page-qui-sommes-nous .president-word-grid {
    align-items: stretch !important;
  }
}

@media (max-width: 560px) {
  .page-template-page-qui-sommes-nous #hero-slider {
    min-height: 610px !important;
  }

  .page-template-page-qui-sommes-nous #hero-slider .slide-hero-cover-image {
    height: 280px !important;
  }

  .page-template-page-qui-sommes-nous #hero-slider .swiper-button-prev,
  .page-template-page-qui-sommes-nous #hero-slider .swiper-button-next {
    top: 48% !important;
    width: 42px !important;
    height: 42px !important;
  }
}

/* Qui sommes-nous: full-image hero matching the home page */
.page-template-page-qui-sommes-nous .alma-topbar {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 1002 !important;
  width: 100% !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.page-template-page-qui-sommes-nous .alma-header {
  position: absolute !important;
  top: 58px !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 1001 !important;
  width: 100% !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.page-template-page-qui-sommes-nous .alma-header .alma-nav {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.page-template-page-qui-sommes-nous .alma-header .nav-link,
.page-template-page-qui-sommes-nous .alma-header .has-dropdown,
.page-template-page-qui-sommes-nous .alma-header .caret,
.page-template-page-qui-sommes-nous .alma-header .nav-search,
.page-template-page-qui-sommes-nous .alma-header .offcanvas-toggle {
  color: #fff !important;
  text-shadow: 0 1px 8px rgba(0, 28, 48, 0.72) !important;
}

.page-template-page-qui-sommes-nous .alma-header .logo img {
  filter: none !important;
}

.page-template-page-qui-sommes-nous .alma-topbar a,
.page-template-page-qui-sommes-nous .alma-topbar span {
  color: #fff !important;
  text-shadow: 0 1px 7px rgba(0, 28, 48, 0.65) !important;
}

/* Same transparent header for Export, Réalisations and Certifications */
.alma-hero-overlay-page .alma-topbar,
.page-template-page-export .alma-topbar,
.page-template-page-realisations .alma-topbar,
.page-template-page-activites-autre .alma-topbar {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 1002 !important;
  width: 100% !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.alma-hero-overlay-page .alma-header,
.page-template-page-export .alma-header,
.page-template-page-realisations .alma-header,
.page-template-page-activites-autre .alma-header {
  position: absolute !important;
  top: 58px !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 1001 !important;
  width: 100% !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.alma-hero-overlay-page .alma-header .alma-nav,
.page-template-page-export .alma-header .alma-nav,
.page-template-page-realisations .alma-header .alma-nav,
.page-template-page-activites-autre .alma-header .alma-nav {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.alma-hero-overlay-page .alma-header .nav-link,
.alma-hero-overlay-page .alma-header .has-dropdown,
.alma-hero-overlay-page .alma-header .caret,
.alma-hero-overlay-page .alma-header .nav-search,
.alma-hero-overlay-page .alma-header .offcanvas-toggle,
.page-template-page-export .alma-header .nav-link,
.page-template-page-export .alma-header .has-dropdown,
.page-template-page-export .alma-header .caret,
.page-template-page-export .alma-header .nav-search,
.page-template-page-export .alma-header .offcanvas-toggle,
.page-template-page-realisations .alma-header .nav-link,
.page-template-page-realisations .alma-header .has-dropdown,
.page-template-page-realisations .alma-header .caret,
.page-template-page-realisations .alma-header .nav-search,
.page-template-page-realisations .alma-header .offcanvas-toggle,
.page-template-page-activites-autre .alma-header .nav-link,
.page-template-page-activites-autre .alma-header .has-dropdown,
.page-template-page-activites-autre .alma-header .caret,
.page-template-page-activites-autre .alma-header .nav-search,
.page-template-page-activites-autre .alma-header .offcanvas-toggle {
  color: #fff !important;
  text-shadow: 0 1px 8px rgba(0, 28, 48, 0.72) !important;
}

.alma-hero-overlay-page .alma-header .logo img,
.page-template-page-export .alma-header .logo img,
.page-template-page-realisations .alma-header .logo img,
.page-template-page-activites-autre .alma-header .logo img {
  filter: none !important;
}

.alma-hero-overlay-page .alma-topbar a,
.alma-hero-overlay-page .alma-topbar span,
.page-template-page-export .alma-topbar a,
.page-template-page-export .alma-topbar span,
.page-template-page-realisations .alma-topbar a,
.page-template-page-realisations .alma-topbar span,
.page-template-page-activites-autre .alma-topbar a,
.page-template-page-activites-autre .alma-topbar span {
  color: #fff !important;
  text-shadow: 0 1px 7px rgba(0, 28, 48, 0.65) !important;
}

.page-template-page-qui-sommes-nous #hero-slider {
  height: auto !important;
  min-height: 0 !important;
  background: #0b3b60 !important;
}

.page-template-page-qui-sommes-nous #hero-slider .swiper-wrapper,
.page-template-page-qui-sommes-nous #hero-slider .swiper-slide {
  height: auto !important;
}

.page-template-page-qui-sommes-nous #hero-slider .slide-inner-hero-cover {
  position: relative !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  min-height: clamp(680px, 88svh, 920px) !important;
  height: auto !important;
  padding: 380px clamp(42px, 7vw, 96px) 100px !important;
  overflow: hidden !important;
}

.page-template-page-qui-sommes-nous #hero-slider .slide-inner-hero-cover::after,
.page-template-page-almaflow-domestique #hero-slider .slide-inner-hero-cover::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background: linear-gradient(90deg, rgba(1, 18, 31, 0.68) 0%, rgba(1, 18, 31, 0.28) 48%, rgba(1, 18, 31, 0.04) 100%) !important;
  pointer-events: none !important;
}

.page-template-page-qui-sommes-nous #hero-slider .slide-hero-cover-image,
.page-template-page-almaflow-domestique #hero-slider .slide-hero-cover-image {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  background: #0b3b60 !important;
}

@media (min-width: 901px) {
  .page-template-page-qui-sommes-nous #hero-slider .slide-hero-cover-image,
  .page-template-page-almaflow-domestique #hero-slider .slide-hero-cover-image {
    object-fit: cover !important;
    object-position: center center !important;
  }
}

.page-template-page-qui-sommes-nous #hero-slider .slide-hero-content,
.page-template-page-almaflow-domestique #hero-slider .slide-hero-content {
  position: relative !important;
  z-index: 2 !important;
  width: min(760px, 72%) !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

.page-template-page-qui-sommes-nous #hero-slider .slide-hero-content h1,
.page-template-page-almaflow-domestique #hero-slider .slide-hero-content h1 {
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(32px, 3.8vw, 54px) !important;
  line-height: 1.06 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 3px 22px rgba(0, 18, 32, 0.42) !important;
}

.page-template-page-almaflow-domestique #hero-slider .slide-hero-content .slide-title-line {
  display: block !important;
}

.page-template-page-almaflow-domestique #hero-slider,
.page-template-page-almaflow-domestique-categorie #hero-slider {
  height: 100svh !important;
  min-height: clamp(720px, 100svh, 1080px) !important;
  background: #f6faf8 !important;
}

.page-template-page-almaflow-domestique #hero-slider .swiper-wrapper,
.page-template-page-almaflow-domestique #hero-slider .swiper-slide,
.page-template-page-almaflow-domestique-categorie #hero-slider .swiper-wrapper,
.page-template-page-almaflow-domestique-categorie #hero-slider .swiper-slide {
  height: 100% !important;
  min-height: 100% !important;
  padding: 0 !important;
}

.page-template-page-almaflow-domestique #hero-slider .slide-inner-hero-cover,
.page-template-page-almaflow-domestique-categorie #hero-slider .slide-inner-hero-cover {
  align-items: center !important;
  justify-content: flex-start !important;
  min-height: 100% !important;
  height: 100% !important;
  padding: clamp(150px, 17svh, 210px) clamp(34px, 7vw, 112px) clamp(70px, 9svh, 120px) !important;
}

.page-template-page-almaflow-domestique #hero-slider .slide-hero-content,
.page-template-page-almaflow-domestique-categorie #hero-slider .slide-hero-content {
  width: min(820px, 62vw) !important;
  margin-left: 0 !important;
  align-self: center !important;
  text-align: left !important;
  color: #fff !important;
}

.page-template-page-almaflow-domestique #hero-slider .slide-hero-content h1,
.page-template-page-almaflow-domestique-categorie #hero-slider .slide-hero-content h1 {
  font-size: clamp(36px, 4.4vw, 68px) !important;
  line-height: 1.05 !important;
  color: #fff !important;
  text-shadow: 0 3px 24px rgba(0,0,0,0.45) !important;
}

.page-template-page-almaflow-domestique-categorie #hero-slider .slide-inner-hero-cover {
  position: relative !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  min-height: clamp(680px, 88svh, 920px) !important;
  height: auto !important;
  padding: 380px clamp(42px, 7vw, 96px) 100px !important;
  overflow: hidden !important;
}

.page-template-page-almaflow-domestique-categorie #hero-slider .slide-inner-hero-cover::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background: linear-gradient(90deg, rgba(1, 18, 31, 0.68) 0%, rgba(1, 18, 31, 0.28) 48%, rgba(1, 18, 31, 0.04) 100%) !important;
  pointer-events: none !important;
}

.page-template-page-almaflow-domestique-categorie #hero-slider .slide-hero-cover-image {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  background: #0b3b60 !important;
}

.page-template-page-almaflow-domestique-categorie #hero-slider .slide-hero-content {
  position: relative !important;
  z-index: 2 !important;
  width: min(760px, 72%) !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

.page-template-page-almaflow-domestique-categorie #hero-slider .slide-hero-content h1 {
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(32px, 3.8vw, 54px) !important;
  line-height: 1.06 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 3px 22px rgba(0, 18, 32, 0.42) !important;
}

.page-template-page-almaflow-domestique-categorie #hero-slider .slide-inner-hero-cover {
  align-items: center !important;
  min-height: 100% !important;
  height: 100% !important;
  padding: clamp(150px, 17svh, 210px) clamp(34px, 7vw, 112px) clamp(70px, 9svh, 120px) !important;
}

.page-template-page-almaflow-domestique-categorie #hero-slider .slide-hero-content {
  width: min(820px, 62vw) !important;
}

.page-template-page-almaflow-domestique-categorie #hero-slider .slide-hero-content h1 {
  font-size: clamp(36px, 4.4vw, 68px) !important;
  line-height: 1.05 !important;
}

.page-template-page-qui-sommes-nous #hero-slider .swiper-button-prev,
.page-template-page-qui-sommes-nous #hero-slider .swiper-button-next,
.page-template-page-almaflow-domestique #hero-slider .swiper-button-prev,
.page-template-page-almaflow-domestique #hero-slider .swiper-button-next,
.page-template-page-almaflow-domestique-categorie #hero-slider .swiper-button-prev,
.page-template-page-almaflow-domestique-categorie #hero-slider .swiper-button-next {
  top: 75% !important;
  color: #0b5394 !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 10px 30px rgba(0, 24, 42, 0.2) !important;
}

.page-template-page-qui-sommes-nous #hero-slider .swiper-pagination,
.page-template-page-almaflow-domestique #hero-slider .swiper-pagination,
.page-template-page-almaflow-domestique-categorie #hero-slider .swiper-pagination {
  bottom: 24px !important;
}

.page-template-page-qui-sommes-nous #hero-slider .swiper-pagination-bullet,
.page-template-page-almaflow-domestique #hero-slider .swiper-pagination-bullet,
.page-template-page-almaflow-domestique-categorie #hero-slider .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.72) !important;
}

.page-template-page-qui-sommes-nous #hero-slider .swiper-pagination-bullet-active {
  background: #fff !important;
}

/* Compact, correctly aligned figures over the About photo */
.page-template-page-qui-sommes-nous #about .about-industrie-badge {
  right: -46px !important;
  bottom: -22px !important;
  width: 320px !important;
  min-height: 0 !important;
  padding: 22px 24px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: start !important;
  align-content: center !important;
  gap: 18px !important;
}

.page-template-page-qui-sommes-nous #about .about-industrie-badge strong {
  min-height: 38px !important;
  margin: 0 0 6px !important;
  display: flex !important;
  align-items: baseline !important;
  gap: 2px !important;
  font-size: 36px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.page-template-page-qui-sommes-nous #about .about-industrie-badge strong span {
  display: inline !important;
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
}

.page-template-page-qui-sommes-nous #about .about-industrie-badge div > span {
  display: block !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
}

.admin-bar.alma-hero-overlay-page .alma-topbar,
.admin-bar.page-template-page-qui-sommes-nous .alma-topbar,
.admin-bar.page-template-page-export .alma-topbar,
.admin-bar.page-template-page-realisations .alma-topbar {
  top: 32px !important;
}

.admin-bar.alma-hero-overlay-page .alma-header,
.admin-bar.page-template-page-qui-sommes-nous .alma-header,
.admin-bar.page-template-page-export .alma-header,
.admin-bar.page-template-page-realisations .alma-header {
  top: 90px !important;
}

@media (max-width: 900px) {
  .page-template-page-qui-sommes-nous #hero-slider {
    height: auto !important;
    min-height: 0 !important;
  }

  .page-template-page-qui-sommes-nous #hero-slider .slide-inner-hero-cover {
    min-height: clamp(620px, 84svh, 780px) !important;
    padding: 300px 24px 96px !important;
  }

  .page-template-page-qui-sommes-nous #hero-slider .slide-hero-content {
    width: min(640px, 88%) !important;
  }

  .page-template-page-qui-sommes-nous #hero-slider .slide-hero-content h1 {
    font-size: clamp(28px, 7vw, 44px) !important;
  }

  .page-template-page-qui-sommes-nous #about .about-industrie-badge {
    right: 18px !important;
  }
}

@media (max-width: 782px) {
  .admin-bar.alma-hero-overlay-page .alma-topbar,
  .admin-bar.page-template-page-qui-sommes-nous .alma-topbar,
  .admin-bar.page-template-page-export .alma-topbar,
  .admin-bar.page-template-page-realisations .alma-topbar {
    top: 46px !important;
  }

  .admin-bar.alma-hero-overlay-page .alma-header,
  .admin-bar.page-template-page-qui-sommes-nous .alma-header,
  .admin-bar.page-template-page-export .alma-header,
  .admin-bar.page-template-page-realisations .alma-header {
    top: 104px !important;
  }
}

@media (max-width: 760px) {
  .page-template-page-qui-sommes-nous #about .about-industrie-badge {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    margin-top: 18px !important;
    padding: 20px !important;
  }
}

@media (max-width: 560px) {
  .alma-hero-overlay-page .alma-topbar,
  .page-template-page-qui-sommes-nous .alma-topbar,
  .page-template-page-export .alma-topbar,
  .page-template-page-realisations .alma-topbar {
    min-height: 118px !important;
    height: auto !important;
  }

  .alma-hero-overlay-page .alma-header,
  .page-template-page-qui-sommes-nous .alma-header,
  .page-template-page-export .alma-header,
  .page-template-page-realisations .alma-header {
    top: 118px !important;
    min-height: 76px !important;
  }

  .page-template-page-qui-sommes-nous #hero-slider {
    height: auto !important;
    min-height: 0 !important;
  }

  .page-template-page-qui-sommes-nous #hero-slider .slide-inner-hero-cover {
    min-height: clamp(580px, 80svh, 680px) !important;
    padding: 220px 20px 88px !important;
  }

  .page-template-page-qui-sommes-nous #hero-slider .slide-hero-cover-image {
    object-fit: contain !important;
    object-position: center top !important;
  }

  .page-template-page-qui-sommes-nous #hero-slider .slide-hero-content {
    width: 92% !important;
  }

  .page-template-page-qui-sommes-nous #hero-slider .slide-hero-content h1 {
    font-size: clamp(26px, 9vw, 38px) !important;
  }

  .page-template-page-qui-sommes-nous #hero-slider .swiper-button-prev,
  .page-template-page-qui-sommes-nous #hero-slider .swiper-button-next {
    top: auto !important;
    bottom: 22px !important;
  }

  .page-template-page-qui-sommes-nous #hero-slider .swiper-pagination {
    bottom: 32px !important;
  }

  .admin-bar.alma-hero-overlay-page .alma-header,
  .admin-bar.page-template-page-qui-sommes-nous .alma-header {
    top: 164px !important;
  }
}

/* Final Almaflow and service-page alignment fixes */
.page-template-page-almaflow .aflow-landing-copy h1 {
  max-width: min(760px, 62vw) !important;
  font-size: clamp(42px, 4.2vw, 56px) !important;
  line-height: 1.08 !important;
}

.page-template-page-almaflow .aflow-landing-copy {
  width: min(760px, 62vw) !important;
  max-width: 760px !important;
  margin-top: -22px !important;
}

.page-template-page-almaflow .aflow-landing-copy h1 span {
  display: inline-block !important;
}

.page-template-page-almaflow .aflow-model-product-card h3 {
  min-height: 42px !important;
  margin: 14px 0 7px !important;
  font-size: 15px !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
}

.page-template-page-almaflow .alma-topbar {
  left: clamp(260px, 22vw, 340px) !important;
  right: auto !important;
}

.page-template-page-almaflow .alma-topbar .tb-right .socials {
  gap: 12px !important;
}

.page-template-page-almaflow .alma-header .nav-right {
  gap: 18px !important;
}

.page-template-page-almaflow .alma-header .nav-right .header-catalogue-btn {
  margin-left: 18px !important;
}

.family-landing-hero.family-landing-hero--image-only {
  position: relative !important;
  min-height: clamp(360px, 39vw, 520px) !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  overflow: hidden !important;
  text-align: left !important;
  background: #eef7fb !important;
}

.family-landing-hero.family-landing-hero--image-only > img {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.family-landing-hero.family-landing-hero--image-only::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background: linear-gradient(90deg, rgba(2, 34, 61, 0.72) 0%, rgba(2, 34, 61, 0.34) 42%, rgba(2, 34, 61, 0.02) 78%) !important;
  pointer-events: none !important;
}

.family-landing-hero.family-landing-hero--image-only::after {
  display: none !important;
}

.family-landing-hero.family-landing-hero--image-only .family-landing-slide-title {
  position: relative !important;
  z-index: 2 !important;
  width: min(540px, calc(100% - 44px)) !important;
  max-width: 540px !important;
  margin: 0 0 0 clamp(22px, 6vw, 92px) !important;
  padding: 0 !important;
  color: #fff !important;
  transform: none !important;
}

.family-landing-hero.family-landing-hero--image-only .family-landing-slide-title * {
  color: #fff !important;
  text-align: left !important;
}

.family-landing-hero.family-landing-hero--image-only .family-landing-slide-title h1 {
  max-width: 520px !important;
  margin: 0 0 16px !important;
  font-size: clamp(38px, 5vw, 72px) !important;
  line-height: 0.98 !important;
  text-shadow: 0 12px 30px rgba(0, 23, 43, 0.28) !important;
}

.family-landing-hero.family-landing-hero--image-only .family-landing-slide-title p {
  max-width: 460px !important;
  margin: 0 !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

.family-landing-hero.family-landing-hero--image-only .family-landing-eyebrow {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  color: #fff !important;
}

.family-card .family-card-img,
.family-card-img {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.family-card .family-card-img img,
.family-card-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

@media (max-width: 760px) {
  .page-template-page-almaflow .alma-topbar {
    left: auto !important;
    right: 16px !important;
  }

  .page-template-page-almaflow .alma-header .nav-right .header-catalogue-btn {
    margin-left: 0 !important;
  }

  .family-landing-hero.family-landing-hero--image-only {
    min-height: 430px !important;
  }

  .family-landing-hero.family-landing-hero--image-only::before {
    background: linear-gradient(90deg, rgba(2, 34, 61, 0.78), rgba(2, 34, 61, 0.34)) !important;
  }

  .family-landing-hero.family-landing-hero--image-only .family-landing-slide-title {
    margin-left: 22px !important;
    margin-right: 22px !important;
  }

  .family-landing-hero.family-landing-hero--image-only .family-landing-slide-title h1 {
    font-size: clamp(34px, 10vw, 48px) !important;
  }
}

/* Realisations: restore zones and category filters */

/* Final ALMAflow page adjustments */
.page-template-page-almaflow .alma-nav .logo img {
  height: 62px !important;
  max-width: min(310px, 32vw) !important;
}

.page-template-page-almaflow .offcanvas .oc-logo img {
  height: 48px !important;
  max-width: 270px !important;
}

.page-template-page-almaflow .aflow-page .aflow-actions,
.aflow-page .aflow-actions {
  margin-top: 42px !important;
}

.page-template-page-almaflow .aflow-model-product-card a {
  color: #fff !important;
  font-size: 0 !important;
}

.page-template-page-almaflow .aflow-model-product-card a::before {
  content: "" !important;
  width: 14px !important;
  height: 14px !important;
  display: block !important;
  background-color: #fff !important;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 17 17 7M9 7h8v8' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat !important;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 17 17 7M9 7h8v8' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

.page-template-page-almaflow .aflow-almaflow-contact .aflow-contact-inner {
  transform: translateX(clamp(18px, 3vw, 48px)) !important;
}

.page-template-page-almaflow .aflow-model-stats {
  overflow: hidden !important;
}

.page-template-page-almaflow .aflow-model-stat {
  opacity: 0;
  transform: translateY(18px);
  animation: aflowStatRise 0.68s ease forwards;
}

.page-template-page-almaflow .aflow-model-stat:nth-child(2) {
  animation-delay: 0.12s;
}

.page-template-page-almaflow .aflow-model-stat:nth-child(3) {
  animation-delay: 0.24s;
}

.page-template-page-almaflow .aflow-model-stat:hover > span {
  color: #35a957 !important;
  transform: scale(1.08) rotate(-3deg);
}

@media (max-width: 980px) {
  .page-template-page-almaflow .aflow-almaflow-contact .aflow-contact-inner {
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .page-template-page-almaflow .alma-nav .logo img {
    height: 54px !important;
    max-width: min(260px, 58vw) !important;
  }

  .page-template-page-almaflow .aflow-page .aflow-actions,
  .aflow-page .aflow-actions {
    margin-top: 28px !important;
  }
}

/* Eau potable family slides: show image without overlay veil */
.activity-slug-eau-potable .family-landing-hero.family-landing-hero--image-only::before,
.activity-slug-eau-potable .family-landing-hero.family-landing-hero--image-only::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

/* Assainissement family slides: show image without overlay veil */
.activity-slug-assainissement .family-landing-hero::before,
.activity-slug-assainissement .family-landing-hero::after,
.activity-slug-assainissement .family-landing-hero.family-landing-hero--image-only::before,
.activity-slug-assainissement .family-landing-hero.family-landing-hero--image-only::after,
.activity-slug-assainissement .family-landing-hero.family-landing-hero--slider::before,
.activity-slug-assainissement .family-landing-hero.family-landing-hero--slider::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

.activity-slug-assainissement .family-landing-hero .family-landing-slide-title h1 {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6) !important;
}

.activity-slug-assainissement .family-landing-hero .family-landing-slide-title p {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6) !important;
}

.activity-slug-eau-potable .family-landing-hero.family-landing-hero--image-only .family-landing-slide-title {
  z-index: 1 !important;
}

.activity-slug-eau-potable .family-landing-hero.family-landing-hero--image-only .family-landing-slide-title,
.activity-slug-eau-potable .family-landing-hero.family-landing-hero--image-only .family-landing-slide-title * {
  color: #07345e !important;
}

.activity-slug-eau-potable .family-landing-hero.family-landing-hero--image-only .family-landing-slide-title h1 {
  text-shadow: 0 2px 16px rgba(255, 255, 255, 0.82) !important;
}

.activity-slug-eau-potable .family-landing-hero.family-landing-hero--image-only .family-landing-slide-title p {
  color: #34536b !important;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.9) !important;
}

.activity-product-page.family-slug-compteurs-smart .family-landing-hero.family-landing-hero--image-only > img {
  object-position: center center !important;
}

/* Product catalogue layout rules */
.activity-product-container.activity-product-container--alma-shop {
  display: flex !important;
  flex-direction: column !important;
}

.activity-product-container--alma-shop .activity-product-main {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  min-width: 0 !important;
}

.activity-product-container--alma-shop .activity-catalog-family-title {
  width: 100% !important;
}

.activity-product-container--alma-shop .activity-catalog-toolbar {
  display: flex !important;
  width: 100% !important;
}

.activity-product-container--alma-shop .activity-catalog-search {
  width: 100% !important;
  min-width: 0 !important;
}

.activity-product-container--alma-shop .activity-product-filter-bar {
  width: 100% !important;
}

.activity-product-container--alma-shop .activity-product-grid--catalog {
  width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.activity-product-container--alma-shop .activity-product-grid--catalog .activity-product-card-img {
  display: grid !important;
  place-items: center !important;
  background: #f7fbfd !important;
}

.activity-product-container--alma-shop .activity-product-grid--catalog .activity-product-card-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: clamp(6px, 1vw, 12px) !important;
}

@media (max-width: 760px) {
  .activity-product-page.family-slug-compteurs-smart .family-landing-hero.family-landing-hero--image-only > img {
    object-position: 68% center !important;
  }
}

@media (max-width: 900px) {
  .activity-product-container--alma-shop .activity-product-main {
    display: block !important;
  }

  .activity-product-container--alma-shop .activity-catalog-toolbar {
    display: grid !important;
    gap: 16px !important;
    margin-bottom: 22px !important;
  }

  .activity-product-container--alma-shop .activity-product-filter-bar {
    position: static !important;
    display: flex !important;
    gap: 8px !important;
    overflow-x: auto !important;
    padding: 14px !important;
  }

  .activity-product-container--alma-shop .activity-product-filter-bar .activity-side-label {
    flex: 0 0 100% !important;
  }

  .activity-product-container--alma-shop .activity-product-filter-bar a {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
  }

  .activity-product-container--alma-shop .activity-product-grid--catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px) {
  .activity-product-container--alma-shop .activity-product-grid--catalog {
    grid-template-columns: 1fr !important;
  }
}

/* Export: restored intervention zones block */
.export-page .export-zones-section {
  padding-top: clamp(62px, 7vw, 96px) !important;
  background: #fff !important;
}

.export-page .export-zones-section > .container > .section-head {
  max-width: 920px !important;
  margin: 0 auto 46px !important;
  text-align: center !important;
}

.export-page .export-zones-section > .container > .section-head .eyebrow {
  display: none !important;
}

.export-page .export-zones-section > .container > .section-head h2 {
  margin: 0 0 16px !important;
  color: #0b3a60 !important;
  font-size: clamp(38px, 4.5vw, 62px) !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
}

.export-page .export-zones-section > .container > .section-head p {
  margin: 0 !important;
  color: #5c6670 !important;
  font-size: 17px !important;
}

.export-page .export-zones-section .real-regions-panel {
  width: min(820px, 100%) !important;
  margin: 0 auto 24px !important;
  padding: 27px 24px !important;
  border: 1px solid rgba(29, 131, 193, 0.06) !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, rgba(238, 248, 254, 0.92), rgba(247, 252, 255, 0.92)) !important;
}

.export-page .export-zones-section .real-regions-pills {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 13px !important;
}

.export-page .export-zones-section .real-region-pill {
  min-height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 18px !important;
  border: 1px solid color-mix(in srgb, var(--region-color) 22%, white) !important;
  border-radius: 999px !important;
  background: color-mix(in srgb, var(--region-color) 8%, white) !important;
  color: var(--region-color) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

.export-page .export-zones-section .real-region-badge {
  padding: 5px 9px !important;
  border-radius: 999px !important;
  background: var(--region-color) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 900 !important;
}

.export-page .export-zones-section .real-filters {
  margin: 0 auto 38px !important;
  gap: 9px !important;
}

.export-page .export-zones-section .real-filters .chip {
  min-height: 38px !important;
  padding: 8px 16px !important;
  border: 1px solid color-mix(in srgb, var(--chip-color) 24%, white) !important;
  border-radius: 999px !important;
  background: color-mix(in srgb, var(--chip-color) 7%, white) !important;
  color: var(--chip-color) !important;
  font-size: 14px !important;
  font-weight: 750 !important;
  line-height: 1 !important;
  box-shadow: 0 4px 12px rgba(16, 67, 103, 0.04) !important;
}

.export-page .export-zones-section .real-filters .chip::before {
  content: "" !important;
  width: 8px !important;
  height: 8px !important;
  flex: 0 0 8px !important;
  border-radius: 50% !important;
  background: var(--chip-color) !important;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--chip-color) 12%, transparent) !important;
}

.export-page .export-zones-section .real-filters .chip:hover {
  border-color: var(--chip-color) !important;
  transform: translateY(-1px) !important;
}

.export-page .export-zones-section .real-filters .chip.active {
  border-color: var(--chip-color) !important;
  background: var(--chip-color) !important;
  color: #fff !important;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--chip-color) 28%, transparent) !important;
}

.export-page .export-zones-section .real-filters .chip.active::before {
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18) !important;
}

.export-page .export-zones-section .real-grid {
  align-items: start !important;
}

.export-page .export-zones-section .real-card:not(.is-deferred) {
  animation: exportProjectReveal 0.5s cubic-bezier(.2,.72,.24,1) both;
}

.export-page .export-zones-section .real-card[hidden] {
  display: none !important;
}

.export-page .export-zones-section .real-load-more {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  color: #617486;
  font-size: 14px;
  font-weight: 700;
}

.export-page .export-zones-section .real-load-more[hidden] {
  display: none !important;
}

.export-page .export-zones-section .real-load-more::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 2px solid rgba(29, 131, 193, 0.18);
  border-top-color: #1d83c1;
  border-radius: 50%;
  animation: exportProjectLoading 0.85s linear infinite;
}

.export-page .export-zones-section .real-load-more button {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(29, 131, 193, 0.26);
  border-radius: 6px;
  background: #fff;
  color: #0b3a60;
  font-weight: 800;
  cursor: pointer;
}


/* ALMAflow contact submit matches the Export form size */
.aflow-page .aflow-almaflow-contact .aflow-contact-form button {
  width: 100% !important;
  min-height: 52px !important;
  padding: 0 24px !important;
  border-radius: 7px !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
}

/* Final ALMAflow logo size override */
.page-template-page-almaflow .alma-header .logo img,
.page-template-page-almaflow .alma-nav .logo img {
  height: 82px !important;
  width: auto !important;
  max-width: min(360px, 40vw) !important;
  object-fit: contain !important;
}

.page-template-page-almaflow .offcanvas .oc-logo img {
  height: 58px !important;
  max-width: 300px !important;
}

@media (max-width: 768px) {
  .page-template-page-almaflow .alma-header .logo img,
  .page-template-page-almaflow .alma-nav .logo img {
    height: 66px !important;
    max-width: min(300px, 62vw) !important;
  }
}

/* Global topbar alignment: contact info far left, socials/language far right */
.alma-topbar .tb-inner {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-inline: clamp(10px, 1vw, 18px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 12px 24px !important;
}

.alma-topbar .tb-left {
  min-width: 0 !important;
  justify-self: start !important;
  justify-content: flex-start !important;
  margin-right: auto !important;
  gap: clamp(10px, 1.6vw, 24px) !important;
}

.alma-topbar .tb-right {
  min-width: max-content !important;
  justify-self: end !important;
  justify-content: flex-end !important;
  margin-left: auto !important;
}

.alma-topbar .tb-left .item {
  min-width: 0 !important;
  white-space: nowrap !important;
}

.alma-topbar .tb-right .socials,
.alma-topbar .tb-right .lang {
  flex-shrink: 0 !important;
}

@media (max-width: 980px) {
  .alma-topbar .tb-inner {
    padding-inline: 14px !important;
    gap: 8px 14px !important;
  }

  .alma-topbar .tb-left {
    gap: 10px !important;
    font-size: 12px !important;
  }

  .alma-topbar .tb-right {
    gap: 8px !important;
  }

  .alma-topbar .tb-right .socials a {
    width: 28px !important;
    height: 28px !important;
  }

  .alma-topbar .tb-right .lang .opt {
    min-height: 28px !important;
    padding-inline: 8px !important;
  }
}

@media (max-width: 720px) {
  .alma-topbar .tb-inner {
    grid-template-columns: 1fr !important;
  }

  .alma-topbar .tb-left,
  .alma-topbar .tb-right {
    width: 100% !important;
  }

  .alma-topbar .tb-left {
    justify-content: flex-start !important;
  }

  .alma-topbar .tb-right {
    justify-content: flex-end !important;
    justify-self: end !important;
  }

  .alma-topbar .tb-left .item {
    white-space: normal !important;
  }
}

/* Absolute final overrides: requested page corrections 2026-07-07 */
/* Swiper.js Navigation and Pagination Custom Standardisation */
.swiper-button-next,
.swiper-button-prev {
  color: var(--alma-blue) !important;
  background: #ffffff !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  box-shadow: 0 8px 24px rgba(11, 58, 96, 0.12) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--alma-blue) !important;
  color: #ffffff !important;
  transform: scale(1.05) !important;
}

.swiper-pagination-bullet {
  background: rgba(29, 131, 193, 0.3) !important;
  opacity: 1 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.swiper-pagination-bullet-active {
  background: var(--alma-blue) !important;
  width: 28px !important;
  border-radius: 6px !important;
}

/* ============================================================
   PAGE REALISATIONS - Consolidated Premium Styling 2026-07-07
   ============================================================ */

/* --- Hero Section --- */
.page-real .real-page-hero {
  position: relative !important;
  min-height: clamp(680px, 88svh, 920px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  overflow: hidden !important;
  padding: 0 !important;
}

.page-real .real-page-hero::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background: linear-gradient(90deg, rgba(1, 18, 31, 0.72), rgba(1, 31, 54, 0.32) 52%, rgba(1, 31, 54, 0.05)) !important;
  pointer-events: none !important;
}

.page-real .real-page-hero-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 0 !important;
}

.page-real .real-page-hero-content {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: var(--max-width) !important;
  margin: 0 !important;
  padding: 40px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 40px !important;
}

.page-real .real-page-hero-text {
  flex: 1 !important;
  text-align: left !important;
}

.page-real .real-page-hero-text h1 {
  max-width: 780px !important;
  color: #fff !important;
  font-size: clamp(48px, 5.2vw, 76px) !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 4px 20px rgba(0, 18, 32, 0.4) !important;
  margin: 0 !important;
}

/* Hero Frame Link */
.page-real .real-hero-frame {
  position: absolute !important;
  bottom: 40px !important;
  right: 40px !important;
  z-index: 10 !important;
  flex-shrink: 0 !important;
  width: 300px !important;
  height: 300px !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  display: block !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35) !important;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}

@media (max-width: 768px) {
  .page-real .real-hero-frame {
    display: none !important;
  }
}

.page-real .real-hero-frame:hover {
  transform: translateY(-5px) scale(1.02) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
}

.page-real .real-hero-frame img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.page-real .real-hero-frame:hover img {
  transform: scale(1.08) !important;
}

.page-real .real-hero-frame-copy {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  padding: 16px !important;
  color: #fff !important;
}

.page-real .real-hero-frame-copy p {
  color: #fff !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  margin: 0 !important;
  text-align: left !important;
}

.page-real .real-hero-frame-arrow {
  position: absolute !important;
  bottom: 24px !important;
  right: 24px !important;
  color: #fff !important;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.page-real .real-hero-frame:hover .real-hero-frame-arrow {
  transform: translate(4px, -4px) !important;
}

/* --- Content Section --- */
.page-real > .section {
  background: #f7fbfe !important;
  padding-top: clamp(62px, 7vw, 96px) !important;
}

.page-real > .section > .container > .section-head {
  max-width: 920px !important;
  margin: 0 auto 46px !important;
  text-align: center !important;
}

.page-real > .section > .container > .section-head .eyebrow {
  display: none !important;
}

.page-real > .section > .container > .section-head h2 {
  margin: 0 0 16px !important;
  color: #0b3a60 !important;
  font-size: clamp(38px, 4.5vw, 62px) !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
}

.page-real > .section > .container > .section-head p {
  margin: 0 !important;
  color: #5c6670 !important;
  font-size: 17px !important;
}

/* --- Regions Panel --- */
.page-real .real-regions-panel {
  width: min(820px, 100%) !important;
  margin: 0 auto 24px !important;
  padding: 27px 24px !important;
  border: 1px solid rgba(29, 131, 193, 0.06) !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #f3f9fd, #f8fcff) !important;
  box-shadow: 0 18px 50px rgba(11, 58, 96, 0.04) !important;
}

.page-real .real-regions-pills {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
}

.page-real .real-region-pill {
  min-height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 18px !important;
  border: 1px solid color-mix(in srgb, var(--region-color) 24%, white) !important;
  border-radius: 999px !important;
  background: color-mix(in srgb, var(--region-color) 8%, white) !important;
  color: var(--region-color) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  box-shadow: 0 4px 12px rgba(16, 67, 103, 0.04) !important;
}

.page-real .real-region-badge {
  padding: 5px 9px !important;
  border-radius: 999px !important;
  background: var(--region-color) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 900 !important;
}

/* --- Category Filters --- */
.page-real .real-filters {
  margin: 0 auto 38px !important;
  gap: 9px !important;
  justify-content: center !important;
  display: flex !important;
  flex-wrap: wrap !important;
}

.page-real .real-filters .chip {
  min-height: 38px !important;
  padding: 8px 16px !important;
  border: 1px solid color-mix(in srgb, var(--chip-color) 24%, white) !important;
  border-radius: 999px !important;
  background: color-mix(in srgb, var(--chip-color) 7%, white) !important;
  color: var(--chip-color) !important;
  font-size: 14px !important;
  font-weight: 750 !important;
  line-height: 1 !important;
  box-shadow: 0 4px 12px rgba(16, 67, 103, 0.04) !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.page-real .real-filters .chip::before {
  content: "" !important;
  width: 8px !important;
  height: 8px !important;
  flex: 0 0 8px !important;
  border-radius: 50% !important;
  background: var(--chip-color) !important;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--chip-color) 12%, transparent) !important;
}

.page-real .real-filters .chip:hover {
  border-color: var(--chip-color) !important;
  transform: translateY(-1px) !important;
}

.page-real .real-filters .chip.active {
  border-color: var(--chip-color) !important;
  background: var(--chip-color) !important;
  color: #fff !important;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--chip-color) 28%, transparent) !important;
}

.page-real .real-filters .chip.active::before {
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18) !important;
}

/* --- Project Grid & Cards --- */
.page-real .real-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  align-items: start !important;
}

.page-real .real-card {
  background: #fff !important;
  border: 1px solid rgba(11, 58, 96, 0.08) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 12px 34px rgba(11, 58, 96, 0.04) !important;
  cursor: pointer !important;
}

.page-real .real-card:hover {
  box-shadow: 0 24px 58px rgba(11, 58, 96, 0.12) !important;
  transform: translateY(-5px) !important;
}

.page-real .real-thumb {
  position: relative !important;
  aspect-ratio: 16 / 11 !important;
  background: #eaf2f7 !important;
  overflow: hidden !important;
}

.page-real .real-thumb-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.page-real .real-cat {
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
  background: var(--cat-color, var(--alma-blue)) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  line-height: 1 !important;
  z-index: 2 !important;
}

.page-real .real-year {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  background: rgba(1, 22, 38, 0.68) !important;
  backdrop-filter: blur(4px) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 750 !important;
  padding: 6px 10px !important;
  border-radius: 6px !important;
  line-height: 1 !important;
  z-index: 2 !important;
}

.page-real .real-body {
  padding: 24px !important;
}

.page-real .real-title {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #0b3a60 !important;
  margin-bottom: 16px !important;
  line-height: 1.35 !important;
}

.page-real .real-meta {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin-bottom: 18px !important;
}

.page-real .real-meta-row {
  display: flex !important;
  justify-content: space-between !important;
  font-size: 13px !important;
  gap: 16px !important;
  border-bottom: 1px solid rgba(11, 58, 96, 0.05) !important;
  padding-bottom: 6px !important;
}

.page-real .real-meta-row:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.page-real .real-meta-row .lab {
  color: #7a8b99 !important;
  font-weight: 500 !important;
}

.page-real .real-meta-row .val {
  font-weight: 700 !important;
  color: #173e5e !important;
  text-align: right !important;
}

.page-real .real-link {
  font-weight: 750 !important;
  font-size: 13px !important;
  color: var(--alma-blue) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  transition: gap 0.2s ease !important;
}

.page-real .real-card:hover .real-link {
  gap: 8px !important;
}

/* --- Project Detail Modal --- */
.real-project-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 10050 !important;
  display: grid !important;
  place-items: center !important;
  padding: clamp(18px, 4vw, 48px) !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.24s ease, visibility 0.24s ease !important;
}

.real-project-modal.is-open {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.real-project-modal-backdrop {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(2, 22, 38, 0.74) !important;
  backdrop-filter: blur(8px) !important;
}

.real-project-dialog {
  position: relative !important;
  z-index: 1 !important;
  width: min(1040px, 100%) !important;
  max-height: min(760px, 88vh) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr) !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.46) !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: 0 34px 90px rgba(1, 22, 38, 0.34) !important;
  transform: translateY(18px) scale(0.98) !important;
  transition: transform 0.3s cubic-bezier(.2,.72,.24,1) !important;
}

.real-project-modal.is-open .real-project-dialog {
  transform: translateY(0) scale(1) !important;
}

.real-project-close {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  z-index: 10 !important;
  width: 42px !important;
  height: 42px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  border: 1px solid rgba(11, 58, 96, 0.12) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.94) !important;
  color: #0b3a60 !important;
  box-shadow: 0 10px 28px rgba(1, 22, 38, 0.15) !important;
  font-size: 26px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

.real-project-close:hover {
  background: #fff !important;
  transform: scale(1.08) !important;
  color: var(--alma-blue) !important;
}

.real-project-visual {
  position: relative !important;
  min-height: 520px !important;
  overflow: hidden !important;
  background: #0b1e2d !important; /* Dark slate background for premium slide contrast */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.real-project-visual::after {
  content: "" !important;
  position: absolute !important;
  inset: auto 0 0 !important;
  height: 25% !important;
  background: linear-gradient(180deg, transparent, rgba(1, 11, 20, 0.4)) !important;
  pointer-events: none !important;
}

.real-project-visual img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important; /* Ensure PPT slides are never cropped! */
  max-height: 100% !important;
}

.real-project-content {
  align-self: center !important;
  max-height: 88vh !important;
  overflow-y: auto !important;
  padding: clamp(42px, 5vw, 68px) clamp(28px, 4vw, 54px) !important;
}

.real-project-topline {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 20px !important;
}

.real-project-badge,
.real-project-year {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 30px !important;
  padding: 6px 11px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 850 !important;
}

.real-project-badge {
  background: color-mix(in srgb, var(--project-color) 12%, white) !important;
  color: var(--project-color) !important;
}

.real-project-year {
  background: #eef3f7 !important;
  color: #536779 !important;
}

.real-project-content h2 {
  margin: 0 0 28px !important;
  color: #0b3a60 !important;
  font-size: clamp(28px, 3vw, 42px) !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

.real-project-info {
  display: grid !important;
  gap: 0 !important;
  border-top: 1px solid #e2eaf0 !important;
}

.real-project-info > div {
  display: grid !important;
  grid-template-columns: 88px 1fr !important;
  gap: 16px !important;
  padding: 15px 0 !important;
  border-bottom: 1px solid #e2eaf0 !important;
}

.real-project-info span {
  color: #7a8b99 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.real-project-info strong {
  color: #173e5e !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.real-project-note {
  margin: 24px 0 0 !important;
  padding-left: 16px !important;
  border-left: 3px solid var(--project-color) !important;
  color: #617486 !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

body.real-project-modal-open {
  overflow: hidden !important;
}

/* AlmaFlow premium product quote modal */
.aflow-quote-modal{--quote-accent:#1D83C1;--quote-soft:#eaf5fb;--quote-border:rgba(29,131,193,.25);--quote-ring:rgba(29,131,193,.12);--quote-shadow:rgba(29,131,193,.25);position:fixed;inset:0;z-index:10080;display:grid;place-items:center;padding:22px;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .28s ease,visibility .28s ease}
.aflow-quote-modal.is-almaflow-theme{--quote-accent:#2EA46A;--quote-soft:#e9f8ef;--quote-border:rgba(46,164,106,.25);--quote-ring:rgba(46,164,106,.12);--quote-shadow:rgba(46,164,106,.25)}
.aflow-quote-modal.is-open{opacity:1;visibility:visible;pointer-events:auto}
.aflow-quote-backdrop{position:absolute;inset:0;background:rgba(3,24,38,.76);backdrop-filter:blur(10px)}
.aflow-quote-dialog{position:relative;z-index:1;width:min(760px,100%);max-height:92vh;overflow:auto;background:linear-gradient(145deg,#fff,var(--quote-soft));border:1px solid var(--quote-border);border-radius:24px;box-shadow:0 35px 100px rgba(0,20,35,.38);transform:translateY(24px) scale(.97);transition:transform .36s cubic-bezier(.2,.8,.2,1)}
.aflow-quote-modal.is-open .aflow-quote-dialog{transform:translateY(0) scale(1)}
.aflow-quote-close{position:absolute;top:15px;right:15px;z-index:3;width:40px;height:40px;border:0;border-radius:50%;background:rgba(255,255,255,.94);color:#173e5e;font-size:26px;line-height:1;cursor:pointer;box-shadow:0 8px 24px rgba(0,0,0,.14)}
.aflow-quote-product{display:grid;grid-template-columns:150px 1fr;align-items:center;gap:24px;padding:30px 68px 25px 30px;background:linear-gradient(120deg,var(--quote-soft),#fff)}
.aflow-quote-product img{width:150px;height:120px;object-fit:contain;background:#fff;border-radius:16px;box-shadow:0 12px 30px rgba(17,73,49,.12)}
.aflow-quote-product span{color:var(--quote-accent);font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.12em}
.aflow-quote-product h2{margin:7px 0 6px;color:#0b3a60;font-size:clamp(23px,3vw,32px);line-height:1.12}
.aflow-quote-product p{margin:0;color:#627484;font-size:14px}
.aflow-quote-form{padding:28px 30px 32px}
.aflow-quote-fields{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.aflow-quote-form label{display:grid;gap:7px;color:#173e5e;font-size:13px;font-weight:750}
.aflow-quote-form input,.aflow-quote-form textarea{width:100%;border:1px solid #d5e4dc;border-radius:12px;background:#fff;padding:13px 14px;color:#183647;font:inherit;outline:0;transition:border-color .2s,box-shadow .2s}
.aflow-quote-form input:focus,.aflow-quote-form textarea:focus{border-color:var(--quote-accent);box-shadow:0 0 0 4px var(--quote-ring)}
.aflow-quote-message{margin-top:18px}.aflow-quote-form textarea{resize:vertical;min-height:100px}
.aflow-quote-footer{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-top:22px}
.aflow-quote-footer p{margin:0;font-size:13px;line-height:1.4}.aflow-quote-footer p.is-success{color:#248346}.aflow-quote-footer p.is-error{color:#b3261e}
.aflow-quote-footer button{flex:0 0 auto;border:0;border-radius:999px;background:var(--quote-accent);color:#fff;padding:14px 22px;font-weight:800;cursor:pointer;box-shadow:0 12px 28px var(--quote-shadow);transition:transform .2s,box-shadow .2s}
.aflow-quote-footer button:hover{transform:translateY(-2px);box-shadow:0 16px 34px var(--quote-shadow)}.aflow-quote-footer button:disabled{opacity:.65;cursor:wait}
body.aflow-quote-open{overflow:hidden}
@media(max-width:640px){.aflow-quote-modal{padding:10px;align-items:end}.aflow-quote-dialog{border-radius:20px 20px 12px 12px}.aflow-quote-product{grid-template-columns:92px 1fr;gap:15px;padding:22px 54px 20px 20px}.aflow-quote-product img{width:92px;height:82px}.aflow-quote-form{padding:22px 20px 26px}.aflow-quote-fields{grid-template-columns:1fr;gap:14px}.aflow-quote-footer{align-items:stretch;flex-direction:column}.aflow-quote-footer button{width:100%}}

/* --- Responsive Media Queries --- */
@media (max-width: 991px) {
  .page-real .real-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 700px) {
  .page-real > .section > .container > .section-head {
    margin-bottom: 32px !important;
  }

  .page-real > .section > .container > .section-head h2 {
    font-size: clamp(34px, 10vw, 46px) !important;
  }

  .page-real .real-regions-panel {
    padding: 20px 14px !important;
  }

  .page-real .real-region-pill,
  .page-real .real-filters .chip {
    font-size: 13px !important;
  }

  .real-project-modal {
    align-items: end !important;
    padding: 12px !important;
  }

  .real-project-dialog {
    max-height: 92vh !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: minmax(220px, 34vh) auto !important;
  }

  .real-project-visual {
    min-height: 0 !important;
  }

  .real-project-content {
    align-self: stretch !important;
    padding: 30px 24px 34px !important;
  }

  .real-project-content h2 {
    padding-right: 34px !important;
  }

  /* Export zones page adjustments */
  .export-page .export-zones-section > .container > .section-head {
    margin-bottom: 32px !important;
  }

  .export-page .export-zones-section > .container > .section-head h2 {
    font-size: clamp(34px, 10vw, 46px) !important;
  }

  .export-page .export-zones-section .real-regions-panel {
    padding: 20px 14px !important;
  }

  .export-page .export-zones-section .real-region-pill,
  .export-page .export-zones-section .real-filters .chip {
    font-size: 13px !important;
  }

  .export-page .export-zones-section .real-load-more {
    flex-wrap: wrap !important;
    gap: 10px !important;
    text-align: center !important;
  }
}

@media (max-width: 620px) {
  .page-real .real-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* ============================================================
   GLOBAL RESTORED PAGE ADJUSTMENTS (Certifications, Contact, Footer)
   ============================================================ */

/* --- Certifications Page Override --- */
.cert-products-list article {
  border-radius: 8px !important;
}

.cert-products-list .cert-product-pdf-overlay {
  inset: auto 0 0 0 !important;
  min-height: 58px !important;
  padding: 0 !important;
  align-items: stretch !important;
  background: linear-gradient(90deg, rgba(4, 38, 67, 0.96), rgba(29, 131, 193, 0.94)) !important;
  opacity: 0 !important;
  transform: translateY(100%) !important;
  transition: opacity 0.22s ease, transform 0.22s ease !important;
}

.cert-products-list article:hover .cert-product-pdf-overlay,
.cert-products-list article:focus-within .cert-product-pdf-overlay {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.cert-products-list .cert-product-pdf-overlay span {
  width: 100% !important;
  min-height: 58px !important;
  padding: 12px 16px !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}

.cert-products-list .cert-product-pdf-overlay img {
  filter: brightness(0) invert(1) !important;
}

/* --- Contact Page Override --- */
.contact-page .mci-rep-image,
.contact-page .mci-rep-card:hover .mci-rep-image {
  background: #1D83C1 !important;
  box-shadow: none !important;
}

/* --- Footer Socials Override --- */
.footer-socials a {
  color: var(--alma-blue) !important;
  background: rgba(29, 131, 193, 0.08) !important;
  border-color: rgba(29, 131, 193, 0.18) !important;
}

.footer-socials a[title="YouTube"] {
  color: #FF0000 !important;
  background: rgba(255, 0, 0, 0.08) !important;
  border-color: rgba(255, 0, 0, 0.18) !important;
}

.footer-socials a[title="Facebook"] {
  color: #1877F2 !important;
  background: rgba(24, 119, 242, 0.08) !important;
  border-color: rgba(24, 119, 242, 0.18) !important;
}

.footer-socials a[title="Instagram"] {
  color: #E4405F !important;
  background: rgba(228, 64, 95, 0.08) !important;
  border-color: rgba(228, 64, 95, 0.18) !important;
}

.footer-socials a:hover,
.footer-socials a:focus {
  color: var(--alma-blue) !important;
  background: rgba(29, 131, 193, 0.14) !important;
  border-color: rgba(29, 131, 193, 0.34) !important;
  transform: translateY(-2px) !important;
}

.footer-socials a[title="YouTube"]:hover,
.footer-socials a[title="YouTube"]:focus {
  color: #FF0000 !important;
  background: rgba(255, 0, 0, 0.14) !important;
  border-color: rgba(255, 0, 0, 0.34) !important;
}

.footer-socials a[title="Facebook"]:hover,
.footer-socials a[title="Facebook"]:focus {
  color: #1877F2 !important;
  background: rgba(24, 119, 242, 0.14) !important;
  border-color: rgba(24, 119, 242, 0.34) !important;
}

.footer-socials a[title="Instagram"]:hover,
.footer-socials a[title="Instagram"]:focus {
  color: #E4405F !important;
  background: rgba(228, 64, 95, 0.14) !important;
  border-color: rgba(228, 64, 95, 0.34) !important;
}

/* --- Environmental Layout Overlap Fix --- */
@media (min-width: 1025px) {
  .env-split {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.42fr) !important;
    gap: 48px !important;
  }
  .env-art {
    margin-left: -20px !important;
  }
  .env-photo {
    padding-right: 24px !important;
  }
}
.env-art h3 {
  max-width: 320px !important;
}

/* --- Global YouTube Icon Red Overrides --- */
a[title="YouTube"],
a[title="YouTube"] svg,
a[aria-label*="YouTube"],
a[aria-label*="YouTube"] svg,
.socials a[title="YouTube"],
.oc-socials a[title="YouTube"],
.social-link-item[title="YouTube"] {
  color: #FF0000 !important;
  fill: #FF0000 !important;
}
.social-link-item[title="YouTube"] {
  background: rgba(255, 0, 0, 0.08) !important;
  border-color: rgba(255, 0, 0, 0.18) !important;
}
.social-link-item[title="YouTube"]:hover {
  background: rgba(255, 0, 0, 0.14) !important;
  border-color: rgba(255, 0, 0, 0.34) !important;
  color: #FF0000 !important;
}

/* --- Discover Row Alignment Fix --- */
.svc-discover-row .svc-discover {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  align-self: center !important;
  flex-shrink: 0 !important;
}

/* --- Brand Specific Colors for Social Links --- */

/* Facebook */
a[title="Facebook"],
a[title="Facebook"] svg,
.social-link-item[title="Facebook"] {
  color: #1877F2 !important;
  fill: #1877F2 !important;
}
.social-link-item[title="Facebook"] {
  background: rgba(24, 119, 242, 0.08) !important;
  border-color: rgba(24, 119, 242, 0.18) !important;
}
.social-link-item[title="Facebook"]:hover {
  background: rgba(24, 119, 242, 0.14) !important;
  border-color: rgba(24, 119, 242, 0.34) !important;
  color: #1877F2 !important;
}

/* LinkedIn */
a[title="LinkedIn"],
a[title="LinkedIn"] svg,
.social-link-item[title="LinkedIn"] {
  color: #0A66C2 !important;
  fill: #0A66C2 !important;
}
.social-link-item[title="LinkedIn"] {
  background: rgba(10, 102, 194, 0.08) !important;
  border-color: rgba(10, 102, 194, 0.18) !important;
}
.social-link-item[title="LinkedIn"]:hover {
  background: rgba(10, 102, 194, 0.14) !important;
  border-color: rgba(10, 102, 194, 0.34) !important;
  color: #0A66C2 !important;
}

/* YouTube */
a[title="YouTube"],
a[title="YouTube"] svg,
a[aria-label*="YouTube"],
a[aria-label*="YouTube"] svg,
.social-link-item[title="YouTube"] {
  color: #FF0000 !important;
  fill: #FF0000 !important;
}
.social-link-item[title="YouTube"] {
  background: rgba(255, 0, 0, 0.08) !important;
  border-color: rgba(255, 0, 0, 0.18) !important;
}
.social-link-item[title="YouTube"]:hover {
  background: rgba(255, 0, 0, 0.14) !important;
  border-color: rgba(255, 0, 0, 0.34) !important;
  color: #FF0000 !important;
}

/* WhatsApp */
a[title="WhatsApp"],
a[title="WhatsApp"] svg,
.social-link-item[title="WhatsApp"] {
  color: #25D366 !important;
  fill: #25D366 !important;
}
.social-link-item[title="WhatsApp"] {
  background: rgba(37, 211, 102, 0.08) !important;
  border-color: rgba(37, 211, 102, 0.18) !important;
}
.social-link-item[title="WhatsApp"]:hover {
  background: rgba(37, 211, 102, 0.14) !important;
  border-color: rgba(37, 211, 102, 0.34) !important;
  color: #25D366 !important;
}

/* Instagram */
a[title="Instagram"],
a[title="Instagram"] svg,
.social-link-item[title="Instagram"] {
  color: #E1306C !important;
  fill: #E1306C !important;
}
.social-link-item[title="Instagram"] {
  background: rgba(225, 48, 108, 0.08) !important;
  border-color: rgba(225, 48, 108, 0.18) !important;
}
.social-link-item[title="Instagram"]:hover {
  background: rgba(225, 48, 108, 0.14) !important;
  border-color: rgba(225, 48, 108, 0.34) !important;
  color: #E1306C !important;
}

/* ==========================================================================
   CARRIERES / REJOIGNEZ-NOUS PAGE STYLES (Mockup Match)
   ========================================================================== */
.carriere-section {
  padding: clamp(54px, 7vw, 96px) 24px !important;
  background-color: #ffffff !important;
  background-image: url("assets/arriere.jpeg") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
  z-index: 1;
}
.carriere-section .container {
  position: relative;
  z-index: 1;
}

.carriere-grid-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  margin-bottom: 64px;
  align-items: start;
}

.carriere-header {
  margin-bottom: 34px;
}
.carriere-kicker {
  display: inline-block;
  color: #1D83C1;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.carriere-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 850;
  color: #0b3a60 !important;
  line-height: 1.1;
  margin: 0 0 18px;
}
.carriere-header .highlight-blue {
  color: #1D83C1 !important;
}
.carriere-intro-desc {
  color: #475467 !important;
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 680px;
  margin: 0;
}

.carriere-cards-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.carriere-card {
  border-radius: 12px;
  padding: 32px 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 44px rgba(11,58,96,0.14);
  transition: transform 0.3s, box-shadow 0.3s;
}
.carriere-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(11,58,96,0.22);
}

.carriere-card.card-darkblue {
  background: linear-gradient(135deg, #092c47, #0d3d63) !important;
}
.carriere-card.card-teal {
  background: linear-gradient(135deg, #06404c, #0e5c6c) !important;
}

.carriere-card .card-topline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.carriere-card .card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  flex-shrink: 0;
}
.carriere-card .card-icon svg {
  width: 22px;
  height: 22px;
}
.carriere-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff !important;
  margin: 0;
}
.carriere-card p {
  color: #ffffff !important;
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0 0 22px;
  min-height: 54px;
}

.carriere-card .card-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.carriere-card .card-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 11px;
}
.carriere-card .card-checklist li .check-icon {
  flex-shrink: 0;
}
.carriere-card.card-darkblue .check-icon {
  color: #1D83C1;
}
.carriere-card.card-teal .check-icon {
  color: #2bb8a6;
}

.carriere-card .btn-card-action {
  width: 100%;
  border: none;
  outline: none;
  height: 48px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  margin-top: auto;
  transition: background-color 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.carriere-card.card-darkblue .btn-card-action {
  background: #1D83C1;
}
.carriere-card.card-darkblue .btn-card-action:hover {
  background: #0f6fa8;
}
.carriere-card.card-teal .btn-card-action {
  background: #1c9ca8;
}
.carriere-card.card-teal .btn-card-action:hover {
  background: #12828d;
}

/* Form Container */
.carriere-form-box {
  background: #ffffff !important;
  border: 1px solid rgba(11,58,96,0.08) !important;
  border-radius: 14px !important;
  padding: 42px 34px !important;
  box-shadow: 0 24px 64px rgba(11,58,96,0.08) !important;
}
.carriere-form-box h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.55rem;
  font-weight: 850;
  color: #0b3a60 !important;
  margin: 0 0 10px !important;
}
.carriere-form-box .form-instructions {
  color: #617285;
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 0 0 28px;
}

.carriere-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.carriere-form .form-field-group {
  position: relative;
  display: flex;
  align-items: center;
}
.carriere-form .form-field-group .field-icon {
  position: absolute;
  left: 18px;
  color: #7d8f9f;
  display: inline-flex;
  align-items: center;
  pointer-events: none;
}
.carriere-form .form-field-group input,
.carriere-form .form-field-group select,
.carriere-form .form-field-group textarea {
  width: 100% !important;
  height: 52px !important;
  padding: 0 16px 0 52px !important;
  border: 1px solid #d4e1ec !important;
  background: #fafcfe !important;
  border-radius: 8px !important;
  color: #0b3a60 !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  transition: all 0.2s;
  outline: none;
}
.carriere-form .form-field-group input::placeholder,
.carriere-form .form-field-group select::placeholder,
.carriere-form .form-field-group textarea::placeholder {
  color: #8c9fae;
  font-weight: 500;
}
.carriere-form .form-field-group input:focus,
.carriere-form .form-field-group select:focus,
.carriere-form .form-field-group textarea:focus {
  border-color: #1D83C1 !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(29, 131, 193, 0.12) !important;
}

.carriere-form .form-field-group select {
  appearance: none;
  cursor: pointer;
}
.carriere-form .form-field-group.text-area-group {
  align-items: flex-start;
}
.carriere-form .form-field-group.text-area-group .field-icon {
  top: 18px;
}
.carriere-form .form-field-group textarea {
  height: auto !important;
  padding: 14px 16px 14px 52px !important;
  resize: vertical;
}

/* File upload */
.carriere-form .form-file-upload {
  border: 2px dashed #b8cbdc;
  border-radius: 8px;
  background: #fbfdfe;
  transition: border-color 0.2s, background-color 0.2s;
}
.carriere-form .form-file-upload:hover {
  border-color: #1D83C1;
  background: #f4fafe;
}
.carriere-form .file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 18px;
  cursor: pointer;
  text-align: center;
  color: #5c6f80;
}
.carriere-form .file-upload-label svg {
  color: #1D83C1;
  margin-bottom: 10px;
}
.carriere-form .file-upload-label .upload-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0b3a60;
  margin-bottom: 3px;
}
.carriere-form .file-upload-label .upload-subtitle {
  font-size: 0.76rem;
  font-weight: 500;
  color: #738799;
}

.carriere-form .btn-submit-candidature {
  background: linear-gradient(135deg, #1D83C1, #0b67a0) !important;
  color: #fff !important;
  border: none !important;
  outline: none !important;
  height: 54px !important;
  border-radius: 8px !important;
  font-size: 0.88rem !important;
  font-weight: 850 !important;
  letter-spacing: 0.04em !important;
  cursor: pointer !important;
  box-shadow: 0 8px 24px rgba(29,131,193,0.22) !important;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.carriere-form .btn-submit-candidature:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 12px 28px rgba(29,131,193,0.32) !important;
}

/* Features Row */
.carriere-features-row {
  border-top: 1px solid #eaecf0 !important;
  padding-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
.carriere-features-row .feature-item {
  display: flex;
  gap: 16px;
}
.carriere-features-row .feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f4f8fb !important;
  color: #1D83C1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.carriere-features-row .feature-icon svg {
  width: 22px;
  height: 22px;
}
.carriere-features-row h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  color: #0b3a60 !important;
  margin: 0 0 2px;
}
.carriere-features-row p {
  color: #475467 !important;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 1024px) {
  .carriere-grid-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .carriere-cards-row {
    grid-template-columns: 1fr;
  }
  .carriere-features-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .carriere-features-row {
    grid-template-columns: 1fr;
  }
}

/* --- Realisations Page: Accompagnement Section Overrides (No Green) --- */
.page-real .real-future-process .study-step-num {
  color: rgba(29, 131, 193, 0.18) !important;
}
.page-real .real-future-process .study-icon {
  color: #1D83C1 !important;
  border-color: rgba(29, 131, 193, 0.22) !important;
  background:
    radial-gradient(circle at 32% 30%, rgba(255,255,255,0.95), transparent 28%),
    linear-gradient(135deg, rgba(29, 131, 193, 0.12), rgba(29, 131, 193, 0.04)) !important;
  box-shadow: 0 18px 42px rgba(29, 131, 193, 0.10) !important;
}
.page-real .real-future-process .aflow-study-steps::before {
  background: linear-gradient(90deg, transparent, rgba(29, 131, 193, 0.24) 20%, rgba(29, 131, 193, 0.24) 80%, transparent) !important;
}
.page-real .real-future-process .real-future-btn {
  background: #1D83C1 !important;
  border-color: #1D83C1 !important;
  color: #fff !important;
  box-shadow: 0 16px 34px rgba(29, 131, 193, 0.14) !important;
}
.page-real .real-future-process .real-future-btn:hover {
  background: #0b67a0 !important;
  border-color: #0b67a0 !important;
  color: #fff !important;
}

/* ==========================================================================
   CARRIERES PAGE — PROJECT SLIDER SECTION
   ========================================================================== */
.carriere-slider-section {
  padding: clamp(64px, 8vw, 110px) 0 clamp(54px, 6vw, 86px);
  background: #ffffff !important;
  position: relative;
  overflow: hidden;
}
.carriere-slider-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(29,131,193,0.06), transparent),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(29,131,193,0.04), transparent);
  pointer-events: none;
}
.carriere-slider-head {
  text-align: center;
  margin-bottom: 52px;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.carriere-slider-head .eyebrow {
  color: #1D83C1;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.carriere-slider-head h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 850;
  color: #0b3a60;
  margin: 0 0 14px;
}
.carriere-slider-head p {
  color: #475467;
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}
.carriere-swiper-wrap {
  position: relative;
  padding: 0 70px;
  z-index: 2;
}
.carriere-swiper-prev,
.carriere-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff !important;
  border: 1px solid #eaecf0 !important;
  color: #0b3a60 !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(11,47,88,0.08) !important;
  z-index: 10;
  outline: none;
}
.carriere-swiper-prev:hover,
.carriere-swiper-next:hover {
  background: #f4f8fb !important;
  color: #1D83C1 !important;
  transform: translateY(-50%) scale(1.06);
}
.carriere-swiper-prev { left: 10px; }
.carriere-swiper-next { right: 10px; }
.carriere-proj-slide {
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff !important;
  border: 1px solid #eaecf0 !important;
  box-shadow: 0 12px 34px rgba(11,47,88,0.06) !important;
  transition: transform 0.35s, box-shadow 0.35s;
}
.carriere-proj-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(11,47,88,0.12) !important;
}
.carriere-proj-slide .cps-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.carriere-proj-slide .cps-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.carriere-proj-slide:hover .cps-thumb img {
  transform: scale(1.05);
}
.carriere-proj-slide .cps-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,255,255,0.4) 0%, transparent 60%) !important;
}
.carriere-proj-slide .cps-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 11px;
  border-radius: 20px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.carriere-proj-slide .cps-body {
  padding: 20px 22px 24px;
}
.carriere-proj-slide .cps-region {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ffffff !important;
  font-size: 0.76rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.carriere-proj-slide .cps-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.04rem;
  font-weight: 800;
  color: #ffffff !important;
  margin: 0 0 8px;
  line-height: 1.3;
}
.carriere-proj-slide .cps-detail {
  color: #ffffff !important;
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.45;
}
.carriere-proj-pagination {
  margin-top: 32px !important;
  text-align: center;
  position: relative !important;
  bottom: auto !important;
}
.carriere-proj-pagination .swiper-pagination-bullet {
  background: rgba(11,47,88,0.2) !important;
  opacity: 1;
  transition: background 0.2s, transform 0.2s;
}
.carriere-proj-pagination .swiper-pagination-bullet-active {
  background: #1D83C1 !important;
  transform: scale(1.3);
}
.carriere-slider-cta {
  text-align: center;
  margin-top: 44px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .carriere-swiper-wrap { padding: 0 52px; }
  .carriere-swiper-prev { left: 4px; }
  .carriere-swiper-next { right: 4px; }
}
@media (max-width: 480px) {
  .carriere-swiper-wrap { padding: 0 12px; }
  .carriere-swiper-prev, .carriere-swiper-next { display: none; }
}

/* ==========================================================================
   RÉALISATIONS — SECTION "PROJET & ACCOMPAGNEMENT" PREMIUM CARDS
   ========================================================================== */
/* ==========================================================================
   RÉALISATIONS — SECTION "PROJET & ACCOMPAGNEMENT" CLEAN LIGHT
   ========================================================================== */
.real-process-section {
  margin-top: 72px;
  border-radius: 20px;
  overflow: hidden;
  background: #f5f7fa;
  border: 1px solid #e8edf3;
  position: relative;
}
.real-process-section::before {
  display: none;
}

.real-process-inner {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 6vw, 72px) clamp(24px, 5vw, 64px);
  text-align: center;
}

.real-process-head {
  margin-bottom: 48px;
}
.real-process-head .eyebrow {
  color: #1D83C1;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.real-process-head h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 850;
  color: #0b3a60;
  margin: 0 0 12px;
}
.real-process-head p {
  color: #6b7d8f;
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.real-process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 44px;
}

.real-process-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #1D83C1;
  border-radius: 12px;
  padding: 32px 24px 28px;
  text-align: left;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
  box-shadow: 0 2px 8px rgba(11,58,96,0.06);
}
.real-process-card:nth-child(2) { border-top-color: #0b5394; }
.real-process-card:nth-child(3) { border-top-color: #357abd; }
.real-process-card:hover {
  box-shadow: 0 12px 32px rgba(11,58,96,0.12);
  transform: translateY(-4px);
}

.real-process-card .rpc-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #0B3A60 !important;
  opacity: 0.35;
  line-height: 1;
  pointer-events: none;
}

.real-process-card .rpc-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #eef5fc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  color: #1D83C1;
  transition: background 0.2s;
}
.real-process-card:hover .rpc-icon-wrap {
  background: #daeaf7;
}
.real-process-card .rpc-icon-wrap svg {
  stroke: currentColor;
}

.real-process-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  color: #0b3a60;
  margin: 0 0 10px;
}
.real-process-card p {
  color: #6b7d8f;
  font-size: 0.87rem;
  line-height: 1.65;
  margin: 0;
}

.real-process-cta {
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .real-process-steps { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .real-process-inner { padding: 36px 18px; }
  .real-process-card { text-align: center; }
  .real-process-card .rpc-icon-wrap { margin: 0 auto 18px; }
}


/* ==========================================================================
   HEADER — BOUTON "REJOIGNEZ-NOUS" (nav-right)
   ========================================================================== */
.header-join-btn {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1.5px solid rgba(29,131,193,0.55);
  color: #1D83C1 !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-decoration: none !important;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  background: transparent;
}
.header-join-btn:hover,
.header-join-btn.active {
  background: rgba(29,131,193,0.10) !important;
  border-color: #1D83C1 !important;
  color: #1D83C1 !important;
}
/* Dark (hero-overlay) header variant */
.alma-header--hero-overlay:not(.is-scrolled) .header-join-btn {
  border-color: rgba(255,255,255,0.45);
  color: #fff !important;
}
.alma-header--hero-overlay:not(.is-scrolled) .header-join-btn:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.7) !important;
  color: #fff !important;
}

/* Offcanvas Product Search Styling */
.oc-product-search {
  position: relative;
  margin-bottom: 24px;
}
.oc-product-search input[type="search"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #f8fafc;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.oc-product-search input[type="search"]:focus {
  border-color: var(--alma-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(29, 131, 193, 0.1);
}
.oc-product-search input[type="search"]::placeholder {
  color: #94a3b8;
}

/* Offcanvas Quick Actions */
.oc-quick-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.oc-quick-actions a {
  display: block;
  padding: 10px 14px;
  background: rgba(29, 131, 193, 0.05) !important;
  color: var(--alma-blue) !important;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.oc-quick-actions a:hover {
  background: var(--alma-blue) !important;
  color: #fff !important;
}

.export-page .real-thumb-img--rotate-left {
  transform: rotate(-90deg) scale(1.08) !important;
}

.real-project-visual img.is-rotated-left {
  width: 78% !important;
  height: 78% !important;
  transform: rotate(-90deg) !important;
}

/* ALMAflow domestic wastewater catalogue */
.page-template-page-almaflow-domestique .alma-topbar,
.page-template-page-almaflow-domestique .alma-header,
.page-template-page-almaflow-domestique .alma-header--hero-overlay,
.page-template-page-almaflow-domestique .alma-nav,
.page-template-page-almaflow-domestique-categorie .alma-topbar,
.page-template-page-almaflow-domestique-categorie .alma-header,
.page-template-page-almaflow-domestique-categorie .alma-header--hero-overlay,
.page-template-page-almaflow-domestique-categorie .alma-nav {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.page-template-page-almaflow-domestique .alma-header,
.page-template-page-almaflow-domestique .alma-header--hero-overlay,
.page-template-page-almaflow-domestique-categorie .alma-header,
.page-template-page-almaflow-domestique-categorie .alma-header--hero-overlay {
  position: absolute !important;
}

.page-template-page-almaflow-domestique .alma-topbar,
.page-template-page-almaflow-domestique-categorie .alma-topbar {
  display: flex !important;
}

.page-template-page-almaflow-domestique .alma-header,
.page-template-page-almaflow-domestique-categorie .alma-header {
  top: 38px !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 1000 !important;
  width: 100% !important;
  min-height: 92px !important;
}

.page-template-page-almaflow-domestique .alma-header .alma-nav,
.page-template-page-almaflow-domestique-categorie .alma-header .alma-nav {
  height: 92px !important;
  min-height: 92px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 clamp(18px, 3vw, 46px) !important;
}

.page-template-page-almaflow-domestique .alma-header .logo,
.page-template-page-almaflow-domestique-categorie .alma-header .logo {
  flex: 0 0 auto !important;
  margin: 0 !important;
}

.page-template-page-almaflow-domestique .alma-header .logo img,
.page-template-page-almaflow-domestique .alma-nav .logo img,
.page-template-page-almaflow-domestique-categorie .alma-header .logo img,
.page-template-page-almaflow-domestique-categorie .alma-nav .logo img {
  height: 82px !important;
  width: auto !important;
  max-width: min(340px, 42vw) !important;
  object-fit: contain !important;
}

.page-template-page-almaflow-domestique .alma-header .nav-links,
.page-template-page-almaflow-domestique .alma-header .nav-search,
.page-template-page-almaflow-domestique .alma-header .header-claim-btn,
.page-template-page-almaflow-domestique .alma-header .nav-right .btn,
.page-template-page-almaflow-domestique .alma-header .offcanvas-toggle,
.page-template-page-almaflow-domestique-categorie .alma-header .nav-links,
.page-template-page-almaflow-domestique-categorie .alma-header .nav-search,
.page-template-page-almaflow-domestique-categorie .alma-header .header-claim-btn,
.page-template-page-almaflow-domestique-categorie .alma-header .nav-right .btn,
.page-template-page-almaflow-domestique-categorie .alma-header .offcanvas-toggle {
  display: none !important;
}

.page-template-page-almaflow-domestique .alma-header .nav-right,
.page-template-page-almaflow-domestique-categorie .alma-header .nav-right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 0 !important;
  margin-left: auto !important;
  padding: 0 !important;
}

.page-template-page-almaflow-domestique .alma-header .nav-right .header-catalogue-btn,
.page-template-page-almaflow-domestique .alma-header .nav-right .header-catalogue-btn:visited,
.page-template-page-almaflow-domestique-categorie .alma-header .nav-right .header-catalogue-btn,
.page-template-page-almaflow-domestique-categorie .alma-header .nav-right .header-catalogue-btn:visited {
  min-width: 152px !important;
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 22px !important;
  border: 1px solid #248346 !important;
  border-radius: 8px !important;
  color: #fff !important;
  background: #248346 !important;
  box-shadow: 0 12px 26px rgba(36, 131, 70, 0.22) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  text-transform: none !important;
}

.page-template-page-almaflow-domestique .alma-header .nav-right .header-catalogue-btn:hover,
.page-template-page-almaflow-domestique .alma-header .nav-right .header-catalogue-btn:focus,
.page-template-page-almaflow-domestique-categorie .alma-header .nav-right .header-catalogue-btn:hover,
.page-template-page-almaflow-domestique-categorie .alma-header .nav-right .header-catalogue-btn:focus {
  background: #1d6f3b !important;
  border-color: #1d6f3b !important;
  transform: translateY(-1px) !important;
}

.admin-bar.page-template-page-almaflow-domestique .alma-header,
.admin-bar.page-template-page-almaflow-domestique-categorie .alma-header {
  top: 32px !important;
}

@media (max-width: 782px) {
  .admin-bar.page-template-page-almaflow-domestique .alma-header,
  .admin-bar.page-template-page-almaflow-domestique-categorie .alma-header {
    top: 46px !important;
  }
}

@media (max-width: 760px) {
  .page-template-page-almaflow-domestique .alma-topbar,
  .page-template-page-almaflow-domestique-categorie .alma-topbar {
    left: auto !important;
    right: 14px !important;
    top: 86px !important;
    height: 48px !important;
  }

  .page-template-page-almaflow-domestique .alma-header,
  .page-template-page-almaflow-domestique-categorie .alma-header {
    min-height: 140px !important;
  }

  .page-template-page-almaflow-domestique .alma-header .alma-nav,
  .page-template-page-almaflow-domestique-categorie .alma-header .alma-nav {
    height: 86px !important;
    min-height: 86px !important;
    padding: 0 14px !important;
  }

  .page-template-page-almaflow-domestique .alma-header .logo img,
  .page-template-page-almaflow-domestique .alma-nav .logo img,
  .page-template-page-almaflow-domestique-categorie .alma-header .logo img,
  .page-template-page-almaflow-domestique-categorie .alma-nav .logo img {
    height: 60px !important;
    max-width: 52vw !important;
  }

  .page-template-page-almaflow-domestique .alma-header .nav-right .header-catalogue-btn,
  .page-template-page-almaflow-domestique-categorie .alma-header .nav-right .header-catalogue-btn {
    min-width: 126px !important;
    min-height: 42px !important;
    padding: 0 14px !important;
    font-size: 12px !important;
  }
}

.aflow-domestic-range {
  background: #f6faf8;
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px);
  scroll-margin-top: 96px;
}

.page-template-page-almaflow-domestique .aflow-domestic-range {
  padding-top: clamp(46px, 5vw, 76px);
}

.aflow-domestic-hero {
  max-width: 1180px;
  margin: 0 auto clamp(34px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.aflow-domestic-hero-copy span,
.aflow-domestic-products-head span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #23834a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aflow-domestic-hero-copy h1,
.aflow-domestic-hero-copy h2,
.aflow-domestic-products-head h2 {
  margin: 0 0 18px;
  color: #0f2535;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.7vw, 58px);
  line-height: 1.04;
}

.aflow-domestic-hero-copy p {
  margin: 0 0 26px;
  max-width: 570px;
  color: #3f4b56;
  font-size: 1.04rem;
  line-height: 1.72;
}

.aflow-domestic-hero-copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  background: #2ea46a;
  color: #fff;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(46, 164, 106, 0.22);
}

.aflow-domestic-hero-media {
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  background: #e7f4ec;
  box-shadow: 0 24px 54px rgba(16, 52, 35, 0.14);
}

.aflow-domestic-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
}

.aflow-domestic-categories {
  max-width: 1280px;
  margin: 0 auto clamp(38px, 5vw, 62px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.aflow-domestic-category-card {
  display: grid;
  grid-template-columns: minmax(230px, 45%) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
  min-height: 260px;
  padding: 16px;
  background: #fff;
  border: 1px solid #e1ede6;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(15, 37, 53, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.aflow-domestic-category-card:hover,
.aflow-domestic-category-card.is-active {
  transform: translateY(-3px);
  border-color: #2ea46a;
  box-shadow: 0 18px 42px rgba(46, 164, 106, 0.15);
}

.aflow-domestic-category-card img {
  width: 100%;
  height: 100%;
  min-height: 228px;
  object-fit: cover;
  border-radius: 6px;
  background: #eef7f2;
}

.aflow-domestic-category-card div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.aflow-domestic-category-card span {
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  background: rgba(46, 164, 106, 0.11);
  color: #23834a;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.aflow-domestic-category-card h2,
.aflow-domestic-category-card h3 {
  margin: 0 0 10px;
  color: #0f2535;
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.13;
}

.aflow-domestic-category-card p {
  margin: 0;
  color: #52616f;
  font-size: 0.94rem;
  line-height: 1.58;
}

.aflow-domestic-page .aflow-domestic-categories.family-landing-grid {
  width: min(1120px, calc(100% - 40px)) !important;
  max-width: 1120px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 20px !important;
  margin: 54px auto !important;
}

.aflow-domestic-page .aflow-domestic-category-card.family-card {
  grid-template-columns: 42% minmax(0, 1fr) !important;
  gap: 0 !important;
  min-height: 245px !important;
  padding: 0 !important;
  border-color: #e6eef4 !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}

.aflow-domestic-page .aflow-domestic-category-card.family-card:hover {
  border-color: color-mix(in srgb, var(--fam-color) 46%, #e6eef4) !important;
  box-shadow: none !important;
  transform: translateY(-2px) !important;
}

.aflow-domestic-page .aflow-domestic-category-card .family-card-img {
  display: block !important;
  min-height: 245px !important;
  background: #fff !important;
  background-color: #fff !important;
  background-image: none !important;
}

.aflow-domestic-page .aflow-domestic-category-card .family-card-img img {
  min-height: 245px !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  background: #fff !important;
}


.aflow-domestic-page .aflow-domestic-category-card .family-card-body {
  display: flex !important;
  padding: 24px !important;
}

.aflow-domestic-page .aflow-domestic-category-card .family-card-line {
  width: 42px !important;
  height: 3px !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: var(--fam-color) !important;
}

.aflow-domestic-page .aflow-domestic-category-card .family-card-link {
  width: fit-content !important;
  margin-top: auto !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  border-bottom: 2px solid var(--fam-color) !important;
  background: transparent !important;
  color: #0b3a60 !important;
}

.aflow-domestic-products-head {
  max-width: 1180px;
  margin: 0 auto 20px;
}

.aflow-domestic-products-head[hidden] {
  display: none !important;
}

.aflow-domestic-products-head h2 {
  font-size: clamp(28px, 3.3vw, 42px);
}

.aflow-domestic-product-group {
  max-width: 1180px;
  margin: 0 auto;
  display: none;
  scroll-margin-top: 96px;
}

.aflow-domestic-product-group.is-active {
  display: block;
}

.aflow-domestic-group-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #d9e8df;
}

.aflow-domestic-group-title h3 {
  margin: 0;
  color: #0f2535;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
}

.aflow-domestic-group-title p {
  margin: 0;
  color: #23834a;
  font-weight: 800;
}

.aflow-domestic-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.aflow-domestic-product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e2ece6;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 37, 53, 0.06);
}

.aflow-domestic-product-media {
  aspect-ratio: 4 / 3;
  background: #f0f7f3;
}

.aflow-domestic-product-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 18px;
}

.aflow-domestic-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.aflow-domestic-product-body h4 {
  margin: 0 0 10px;
  color: #0f2535;
  font-family: var(--font-heading);
  font-size: 1.06rem;
  line-height: 1.28;
}

.aflow-domestic-product-body p {
  margin: 0 0 14px;
  color: #4a5966;
  font-size: 0.9rem;
  line-height: 1.55;
}

.aflow-domestic-product-body small {
  margin-top: auto;
  color: #23834a;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.45;
}

.aflow-category-products .aflow-domestic-products-head p {
  max-width: 840px;
  margin: 0;
  color: #4a5966;
  font-size: 1rem;
  line-height: 1.7;
}

.aflow-domestic-product-card--detail .aflow-domestic-product-body h3 {
  margin: 0 0 10px;
  color: #0f2535;
  font-family: var(--font-heading);
  font-size: 1.16rem;
  line-height: 1.25;
}

.aflow-domestic-product-details {
  margin: 16px 0 0;
  padding: 14px 0 0 18px;
  border-top: 1px solid #e2ece6;
  color: #52616f;
  font-size: 0.88rem;
  line-height: 1.55;
}

.aflow-domestic-product-details li {
  margin-bottom: 7px;
}

.aflow-category-back {
  max-width: 1180px;
  margin: 34px auto 0;
}

.aflow-category-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #23834a;
  font-weight: 800;
  text-decoration: none;
}

.aflow-domestic-category-page .aflow-category-products {
  background:
    linear-gradient(180deg, #f7fbf8 0%, #eef8f2 100%) !important;
}

.aflow-domestic-category-page .aflow-domestic-products-head {
  max-width: 1180px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(35, 131, 74, 0.16);
}

.aflow-domestic-category-page .aflow-domestic-products-head span {
  padding: 7px 12px;
  background: rgba(46, 164, 106, 0.12);
  border-radius: 999px;
}

.aflow-domestic-category-page .aflow-domestic-product-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.aflow-domestic-category-page .aflow-domestic-product-card--detail {
  display: grid;
  grid-template-columns: minmax(320px, 42%) minmax(0, 1fr);
  align-items: stretch;
  min-height: 360px;
  border: 1px solid rgba(35, 131, 74, 0.14);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(15, 37, 53, 0.10);
  overflow: hidden;
}

.aflow-domestic-category-page .aflow-domestic-product-card--detail:hover {
  border-color: rgba(46, 164, 106, 0.32);
  box-shadow: 0 28px 80px rgba(35, 131, 74, 0.16);
  transform: translateY(-2px);
}

.aflow-domestic-category-page .aflow-domestic-product-card--detail .aflow-domestic-product-media {
  aspect-ratio: auto;
  min-height: 360px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 24%, rgba(46, 164, 106, 0.16), transparent 34%),
    linear-gradient(135deg, #eef8f2, #ffffff);
  border-right: 1px solid rgba(35, 131, 74, 0.10);
}

.aflow-domestic-category-page .aflow-domestic-product-card--detail .aflow-domestic-product-media img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: contain;
  padding: clamp(24px, 4vw, 44px);
  transition: transform 0.25s ease;
}

.aflow-domestic-category-page .aflow-domestic-product-card--detail:hover .aflow-domestic-product-media img {
  transform: scale(1.035);
}

.aflow-domestic-category-page .aflow-domestic-product-card--detail .aflow-domestic-product-body {
  padding: clamp(28px, 4vw, 44px);
  justify-content: center;
}

.aflow-domestic-category-page .aflow-domestic-product-card--detail .aflow-domestic-product-body h3 {
  margin-bottom: 14px;
  color: #0f2535;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
}

.aflow-domestic-category-page .aflow-domestic-product-card--detail .aflow-domestic-product-body p {
  max-width: 680px;
  color: #3f4b56;
  font-size: 1rem;
  line-height: 1.72;
}

.aflow-domestic-category-page .aflow-domestic-product-card--detail .aflow-domestic-product-body small {
  width: fit-content;
  margin: 4px 0 0;
  padding: 8px 11px;
  background: rgba(46, 164, 106, 0.10);
  border: 1px solid rgba(46, 164, 106, 0.16);
  border-radius: 999px;
  color: #23834a;
  font-size: 0.8rem;
}

.aflow-domestic-category-page .aflow-domestic-product-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(35, 131, 74, 0.14);
  list-style: none;
}

.aflow-domestic-category-page .aflow-domestic-product-details li {
  position: relative;
  margin: 0;
  padding: 12px 12px 12px 34px;
  min-height: 74px;
  background: #f7fbf8;
  border: 1px solid rgba(35, 131, 74, 0.10);
  border-radius: 8px;
  color: #435260;
  font-size: 0.86rem;
}

.aflow-domestic-category-page .aflow-domestic-product-details li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 17px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #35a957;
  box-shadow: 0 0 0 4px rgba(53, 169, 87, 0.12);
}

.aflow-domestic-category-page .aflow-category-product-grid {
  max-width: 1180px;
  width: min(1180px, calc(100% - 40px));
  margin: 40px auto 60px;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.aflow-domestic-category-page .aflow-category-product-card {
  text-decoration: none;
}

.aflow-domestic-category-page .aflow-category-product-card .activity-product-card-category {
  display: block;
  margin-bottom: 10px;
  color: #248346;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.aflow-domestic-category-page .aflow-category-product-card .activity-product-card-body {
  min-width: 0;
}

.aflow-domestic-category-page .aflow-category-product-grid.activity-product-grid--centered {
  justify-content: center;
}

.aflow-domestic-category-page .aflow-category-product-grid.activity-product-grid--centered[data-product-count="1"] {
  grid-template-columns: minmax(0, 560px) !important;
}

.aflow-domestic-category-page .aflow-category-product-grid.activity-product-grid--centered[data-product-count="2"],
.aflow-domestic-category-page .aflow-category-product-grid.activity-product-grid--centered[data-product-count="3"] {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.aflow-domestic-category-page .aflow-product-detail {
  max-width: 1180px;
  margin: 0 auto 46px !important;
  padding: 42px !important;
  border: 1px solid #e6eef4;
  border-radius: 6px;
  background: #fff !important;
}

.aflow-domestic-category-page .aflow-product-detail .activity-detail-gallery {
  display: grid;
  min-height: 460px;
  place-items: center;
  background: #f4f8fb;
}

.aflow-domestic-category-page .aflow-product-detail .activity-detail-gallery img {
  width: 100%;
  height: 460px;
  object-fit: contain !important;
  padding: clamp(22px, 4vw, 44px);
}

.aflow-domestic-category-page .aflow-product-detail .activity-detail-info h2 {
  color: #0b3a60;
}

.aflow-product-advantages {
  margin: 0;
  padding-left: 18px;
}

.aflow-product-advantages li + li {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .aflow-domestic-category-page .aflow-domestic-product-card--detail {
    grid-template-columns: 1fr;
  }

  .aflow-domestic-category-page .aflow-category-product-grid {
    width: min(720px, calc(100% - 32px));
    grid-template-columns: 1fr !important;
  }

  .aflow-domestic-category-page .aflow-product-detail {
    width: min(720px, calc(100% - 32px));
    padding: 24px !important;
  }

  .aflow-domestic-category-page .aflow-domestic-product-card--detail .aflow-domestic-product-media {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid rgba(35, 131, 74, 0.10);
  }

  .aflow-domestic-category-page .aflow-domestic-product-details {
    grid-template-columns: 1fr;
  }
}

.page-template-page-almaflow-domestique .alma-footer,
.page-template-page-almaflow-domestique-categorie .alma-footer {
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.20), transparent 28%),
    linear-gradient(135deg, #248346 0%, #35a957 58%, #63c979 100%) !important;
  color: #fff !important;
}

.page-template-page-almaflow-domestique .alma-footer h5,
.page-template-page-almaflow-domestique .alma-footer a,
.page-template-page-almaflow-domestique .alma-footer p,
.page-template-page-almaflow-domestique .alma-footer .foot-about,
.page-template-page-almaflow-domestique .alma-footer .foot-bottom,
.page-template-page-almaflow-domestique-categorie .alma-footer h5,
.page-template-page-almaflow-domestique-categorie .alma-footer a,
.page-template-page-almaflow-domestique-categorie .alma-footer p,
.page-template-page-almaflow-domestique-categorie .alma-footer .foot-about,
.page-template-page-almaflow-domestique-categorie .alma-footer .foot-bottom {
  color: #fff !important;
}

.page-template-page-almaflow-domestique .alma-footer a,
.page-template-page-almaflow-domestique .alma-footer p,
.page-template-page-almaflow-domestique .alma-footer .foot-about,
.page-template-page-almaflow-domestique .alma-footer .foot-bottom,
.page-template-page-almaflow-domestique-categorie .alma-footer a,
.page-template-page-almaflow-domestique-categorie .alma-footer p,
.page-template-page-almaflow-domestique-categorie .alma-footer .foot-about,
.page-template-page-almaflow-domestique-categorie .alma-footer .foot-bottom {
  opacity: 0.9;
}

.page-template-page-almaflow-domestique .alma-footer a:hover,
.page-template-page-almaflow-domestique-categorie .alma-footer a:hover {
  color: #fff !important;
  opacity: 1;
}

.page-template-page-almaflow-domestique .alma-footer .foot-bottom,
.page-template-page-almaflow-domestique-categorie .alma-footer .foot-bottom {
  border-top-color: rgba(255,255,255,0.22) !important;
}

.page-template-page-almaflow-domestique .alma-footer .newsletter input,
.page-template-page-almaflow-domestique-categorie .alma-footer .newsletter input {
  background: #fff !important;
  color: #0b3b60 !important;
  border-color: rgba(255,255,255,0.72) !important;
}

.page-template-page-almaflow-domestique .alma-footer .newsletter .btn-primary,
.page-template-page-almaflow-domestique-categorie .alma-footer .newsletter .btn-primary {
  background: #fff !important;
  border-color: #fff !important;
  color: #248346 !important;
}

.page-template-page-almaflow-domestique .alma-footer .newsletter .btn-primary:hover,
.page-template-page-almaflow-domestique-categorie .alma-footer .newsletter .btn-primary:hover {
  background: #248346 !important;
  border-color: rgba(255,255,255,0.65) !important;
  color: #fff !important;
}

@media (max-width: 1040px) {
  .aflow-domestic-hero,
  .aflow-domestic-categories {
    grid-template-columns: 1fr;
  }

  .aflow-domestic-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .aflow-domestic-range {
    padding-inline: 16px;
  }

  .aflow-domestic-category-card {
    grid-template-columns: 1fr;
  }

  .aflow-domestic-hero-media,
  .aflow-domestic-hero-media img {
    min-height: 260px;
  }

  .aflow-domestic-product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1040px) {
  .aflow-domestic-page .aflow-domestic-categories.family-landing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 860px) {
  .aflow-domestic-page .aflow-domestic-categories.family-landing-grid,
  .aflow-domestic-page .aflow-domestic-category-card.family-card {
    grid-template-columns: 1fr !important;
  }

  .aflow-domestic-page .aflow-domestic-category-card .family-card-img,
  .aflow-domestic-page .aflow-domestic-category-card .family-card-img img {
    height: 220px !important;
    min-height: 220px !important;
  }
}

/* Final social icon override: white circles on every page/header/footer variant. */
.alma-topbar .socials a,
.alma-topbar .tb-right .socials a,
.header-socials-almaflow .header-social-link-af,
.footer-socials a,
.offcanvas .oc-socials a,
.social-links .social-link-item,
.team-card .team-socials a,
.nav-socials a {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: #fff !important;
  border: 1px solid rgba(11, 58, 96, 0.12) !important;
  color: #0b3a60 !important;
  box-shadow: 0 8px 22px rgba(8, 32, 54, 0.10) !important;
  opacity: 1 !important;
  text-decoration: none !important;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
}

.alma-topbar .socials a:hover,
.alma-topbar .tb-right .socials a:hover,
.header-socials-almaflow .header-social-link-af:hover,
.footer-socials a:hover,
.offcanvas .oc-socials a:hover,
.social-links .social-link-item:hover,
.team-card .team-socials a:hover,
.nav-socials a:hover {
  background: #fff !important;
  border-color: rgba(29, 131, 193, 0.28) !important;
  color: #1D83C1 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(8, 32, 54, 0.16) !important;
}

.alma-topbar .socials a svg,
.alma-topbar .tb-right .socials a svg,
.header-socials-almaflow .header-social-link-af svg,
.footer-socials a svg,
.offcanvas .oc-socials a svg,
.social-links .social-link-item svg,
.team-card .team-socials a svg,
.nav-socials a svg {
  width: 16px !important;
  height: 16px !important;
  display: block !important;
}

/* =============================================
   CONSOLIDATED FIXES - 2026-07-12
   ============================================= */

/* 1. Pagination carrière : bleu → vert */
.carriere-proj-pagination .swiper-pagination-bullet {
  background: rgba(7, 149, 72, 0.2) !important;
}
.carriere-proj-pagination .swiper-pagination-bullet-active {
  background: #079548 !important;
}

/* 2. aflow-model-solution-card : icônes et bouton en blanc */
.aflow-page .aflow-model-solution-icon svg {
  stroke: #fff !important;
  fill: none !important;
  color: #fff !important;
}
.aflow-page .aflow-model-solution-card a,
.aflow-page .aflow-model-products-all {
  color: #fff !important;
}
.aflow-page .aflow-model-solution-card a svg,
.aflow-page .aflow-model-products-all svg {
  stroke: #fff !important;
  fill: none !important;
  color: #fff !important;
}

/* 3. aflow-model-products-all : texte et flèche en blanc */
.aflow-page .aflow-model-products-all,
.aflow-page .aflow-model-products-all * {
  color: #fff !important;
}
.aflow-page .aflow-model-products-all svg {
  stroke: #fff !important;
  color: #fff !important;
}

/* 4. about-testimonials-more : texte et flèche blancs */
.about-testimonials-more,
.about-testimonials-more span,
.about-testimonials-more svg {
  color: #fff !important;
  stroke: #fff !important;
}
.aflow-page .about-testimonials-more {
  color: #fff !important;
}

/* 5. aflow-contact-team : icônes téléphone et email en blanc */
.aflow-page .aflow-almaflow-contact .aflow-person-actions a svg {
  stroke: #fff !important;
  fill: none !important;
  color: #fff !important;
}
.aflow-page .aflow-almaflow-contact .aflow-person-actions a {
  color: #fff !important;
}

/* Hide Swiper navigation and pagination when Swiper is not initialized */
.swiper:not(.swiper-initialized) .swiper-button-prev,
.swiper:not(.swiper-initialized) .swiper-button-next,
.swiper:not(.swiper-initialized) .swiper-pagination {
  display: none !important;
}


/* ============================================================
   FORCE WHITE TEXT — aflow-model-products-all button & cps-cat badges
   ============================================================ */
.page-template-page-almaflow .aflow-model-products-all,
.page-template-page-almaflow .aflow-model-products-all span,
.page-template-page-almaflow .aflow-model-products-all * {
  color: #ffffff !important;
}

.page-template-page-almaflow .cps-cat,
.aflow-page .cps-cat {
  color: #ffffff !important;
}

/* Align product link to the bottom of the card and make font smaller */
.activity-product-card-body {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.activity-product-link {
  margin-top: auto !important;
  font-size: 0.64rem !important;
  font-weight: 850 !important;
  min-height: unset !important;
  padding-bottom: 2px !important;
}

/* ---- Barre gammes horizontale premium ---- */
.aflow-gammes-bar {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    position: sticky;
    top: 80px;
    z-index: 90;
}
.aflow-gammes-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}
.aflow-gammes-bar-nav {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}
.aflow-gammes-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 22px 12px;
    color: #52616f;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    position: relative;
    flex: 1;
    justify-content: center;
}
.aflow-gammes-bar-item:hover {
    color: var(--activity-color, #248346);
    background: rgba(0,0,0,0.02);
    border-bottom-color: var(--activity-color, #248346);
}
.aflow-gammes-bar-item--active {
    color: var(--activity-color, #248346) !important;
    font-weight: 900;
    border-bottom-color: var(--activity-color, #248346) !important;
    background: rgba(0,0,0,0.03);
}

@media (max-width: 1024px) {
    .aflow-gammes-bar-nav {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
    }
    .aflow-gammes-bar-nav::-webkit-scrollbar { display: none; }
    .aflow-gammes-bar-item {
        flex: 0 0 auto;
        justify-content: flex-start;
        padding: 16px 20px;
    }
}
@media (max-width: 900px) {
    .aflow-gammes-bar { position: static; }
    .aflow-gammes-bar-inner { padding: 0 12px; }
    .aflow-gammes-bar-item { padding: 14px 14px; font-size: 0.8rem; gap: 7px; }
}

/* Product card image hover animations */
.activity-product-card-img {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f9fafb;
}
.activity-product-card-img img {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease !important;
}
.activity-product-card:hover .activity-product-card-img img {
    transform: scale(1.08) !important;
}
.activity-product-card-img .secondary-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.94);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease !important;
}
.activity-product-card:hover .activity-product-card-img.has-secondary-image .primary-img {
    opacity: 0;
    transform: scale(1.08) !important;
}
.activity-product-card:hover .activity-product-card-img.has-secondary-image .secondary-img {
    opacity: 1;
    transform: scale(1.02) !important;
}

/* Family card / landing card hover zoom animations */
.family-card-img {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.family-card-img img {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.family-card:hover .family-card-img img {
    transform: scale(1.08) !important;
}

/* Family landing hero slide title styling: white text, no shadow */
.family-landing-slide-title h1 {
    color: #ffffff !important;
    text-shadow: none !important;
}
.family-landing-slide-title p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: none !important;
}

/* ALMA activity hero: readable navy copy with clear space below the overlay header. */
.activity-slug-eau-potable .family-landing-hero.family-landing-hero--image-only {
  box-sizing: border-box !important;
  min-height: clamp(360px, 39vw, 520px) !important;
  height: auto !important;
  padding-top: clamp(96px, 10vw, 132px) !important;
}
.activity-slug-eau-potable .family-landing-hero .family-landing-slide-title {
  width: min(780px, calc(100% - 44px)) !important;
  max-width: 780px !important;
}
.activity-slug-eau-potable .family-landing-hero .family-landing-slide-title h1 {
  color: #0B3B60 !important;
  max-width: none !important;
  font-size: clamp(36px, 4.2vw, 64px) !important;
  letter-spacing: -0.02em !important;
  white-space: nowrap !important;
  text-shadow: none !important;
}
.activity-slug-eau-potable .family-landing-hero .family-landing-slide-title p {
  color: #34536B !important;
  text-shadow: none !important;
}
@media (max-width: 760px) {
  .activity-slug-eau-potable .family-landing-hero.family-landing-hero--image-only {
    padding-top: 118px !important;
  }
  .activity-slug-eau-potable .family-landing-hero .family-landing-slide-title h1 {
    font-size: clamp(24px, 7.6vw, 38px) !important;
  }
}

/* ALMA navigation: consistent blue hover; AlmaFlow keeps its own green behavior. */
body:not(.almaflow-site) .industrie-nav-menu .nav-link:hover,
body:not(.almaflow-site) .industrie-nav-menu .nav-link:focus-visible,
body:not(.almaflow-site) .industrie-nav-menu .service-mega-trigger:hover > .nav-link,
body:not(.almaflow-site) .industrie-nav-menu .service-mega-trigger:focus-within > .nav-link,
body:not(.almaflow-site) .industrie-nav-menu .nav-news:hover > .nav-link,
body:not(.almaflow-site) .industrie-nav-menu .nav-news:focus-within > .nav-link {
  color: #1D83C1 !important;
}
body:not(.almaflow-site) .industrie-nav-menu .nav-link:hover .caret,
body:not(.almaflow-site) .industrie-nav-menu .nav-link:focus-visible .caret,
body:not(.almaflow-site) .industrie-nav-menu .nav-news:hover .caret,
body:not(.almaflow-site) .industrie-nav-menu .nav-news:focus-within .caret {
  color: #1D83C1 !important;
}
body:not(.almaflow-site) .industrie-nav-menu .nav-link:hover::before,
body:not(.almaflow-site) .industrie-nav-menu .nav-link:focus-visible::before,
body:not(.almaflow-site) .industrie-nav-menu .service-mega-trigger:hover > .nav-link::before,
body:not(.almaflow-site) .industrie-nav-menu .service-mega-trigger:focus-within > .nav-link::before,
body:not(.almaflow-site) .industrie-nav-menu .nav-news:hover > .nav-link::before,
body:not(.almaflow-site) .industrie-nav-menu .nav-news:focus-within > .nav-link::before {
  background: #1D83C1 !important;
  transform: scaleX(1) !important;
}
body:not(.almaflow-site) .industrie-nav-menu .sub-menu a:hover,
body:not(.almaflow-site) .industrie-nav-menu .news-sub-menu a:hover {
  color: #1D83C1 !important;
  background: rgba(29, 131, 193, 0.06) !important;
}
.aflow-universal-search {
  margin: 0 0 28px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(36, 131, 70, 0.16);
  border-radius: 24px;
  background: linear-gradient(135deg, #f5fbf7 0%, #fff 62%);
  box-shadow: 0 18px 50px rgba(22, 72, 43, 0.09);
}
.aflow-domestic-page .activity-product-container--alma-shop .aflow-universal-search {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 0 24px !important;
}
.aflow-domestic-page .activity-product-container--alma-shop .activity-product-filter-bar {
  width: 100% !important;
}
.aflow-domestic-page .activity-product-container--alma-shop .aflow-domestic-categories-container {
  width: 100% !important;
}
.aflow-universal-search-intro { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.aflow-universal-search-icon { display: grid; place-items: center; flex: 0 0 50px; width: 50px; height: 50px; color: #fff; background: #248346; border-radius: 16px; box-shadow: 0 10px 24px rgba(36,131,70,.25); }
.aflow-universal-search-icon svg { width: 24px; height: 24px; }
.aflow-universal-search-kicker { display: block; margin-bottom: 4px; color: #248346; font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.aflow-universal-search-intro h2 { margin: 0 0 6px; color: #123b27; font-size: clamp(1.25rem, 2.3vw, 1.85rem); line-height: 1.2; }
.aflow-universal-search-intro p { margin: 0; color: #66776d; }
.aflow-universal-search-field { display: flex; align-items: center; gap: 12px; min-height: 60px; padding: 0 18px; border: 1px solid #d8e8de; border-radius: 16px; background: #fff; transition: border-color .2s, box-shadow .2s; }
.aflow-universal-search-field:focus-within { border-color: #2ea46a; box-shadow: 0 0 0 4px rgba(46,164,106,.12); }
.aflow-universal-search-field > svg { width: 23px; color: #248346; }
.aflow-universal-search-field input { flex: 1; min-width: 0; height: 58px; padding: 0; border: 0; outline: 0; background: transparent; color: #183b2a; font: inherit; font-size: 1rem; }
.aflow-universal-search-field button { width: 34px; height: 34px; border: 0; border-radius: 50%; color: #53675c; background: #edf4ef; font-size: 1.35rem; cursor: pointer; }
.aflow-universal-search-status { margin: 12px 4px 0; color: #718077; font-size: .88rem; }
.aflow-universal-search-results { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.aflow-universal-result { display: flex; align-items: center; gap: 14px; min-width: 0; padding: 12px; border: 1px solid #e2ece6; border-radius: 15px; color: inherit; background: #fff; text-decoration: none; transition: transform .2s, border-color .2s, box-shadow .2s; }
.aflow-universal-result:hover { transform: translateY(-2px); border-color: rgba(46,164,106,.42); box-shadow: 0 10px 25px rgba(24,82,49,.10); }
.aflow-universal-result-image { flex: 0 0 72px; width: 72px; height: 72px; padding: 5px; overflow: hidden; border-radius: 11px; background: #f3f7f4; }
.aflow-universal-result-image img { width: 100%; height: 100%; object-fit: contain; }
.aflow-universal-result-copy { display: flex; flex: 1; min-width: 0; flex-direction: column; }
.aflow-universal-result-copy small { color: #2e9460; font-size: .69rem; font-weight: 800; text-transform: uppercase; }
.aflow-universal-result-copy strong { margin: 3px 0; overflow: hidden; color: #173b28; font-size: .96rem; text-overflow: ellipsis; white-space: nowrap; }
.aflow-universal-result-copy > span { display: -webkit-box; overflow: hidden; color: #718077; font-size: .78rem; line-height: 1.35; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.aflow-universal-result-arrow { color: #248346; font-size: 1.2rem; }
@media (max-width: 760px) {
  .aflow-domestic-page .activity-product-container--alma-shop .aflow-universal-search {
    margin: 22px 0 !important;
  }
  .aflow-universal-search-results { grid-template-columns: 1fr; }
  .aflow-universal-search-intro { align-items: center; }
  .aflow-universal-search-intro p { font-size: .88rem; }
  .aflow-universal-result-image { flex-basis: 60px; width: 60px; height: 60px; }
}
.aflow-page #aflow-hero-slider .aflow-actions {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.aflow-page #aflow-hero-slider .aflow-actions .btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 190px;
  min-height: 52px;
  padding: 13px 22px !important;
  border: 2px solid transparent !important;
  border-radius: 12px !important;
  font-size: .94rem !important;
  font-weight: 750 !important;
  line-height: 1.2 !important;
  letter-spacing: .01em;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(15, 63, 37, .16);
  transform: translateY(0);
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease !important;
}

.aflow-page #aflow-hero-slider .aflow-actions .btn::after {
  content: '\2192';
  display: inline-block;
  font-size: 1.08rem;
  line-height: 1;
  transition: transform .22s ease;
}

.aflow-page #aflow-hero-slider .aflow-actions .btn-primary {
  color: #fff !important;
  border-color: #2ea46a !important;
  background: #2ea46a !important;
}

.aflow-page #aflow-hero-slider .aflow-actions .btn-outline {
  color: #174d31 !important;
  border-color: rgba(36, 131, 70, .45) !important;
  background: rgba(255, 255, 255, .94) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.aflow-page #aflow-hero-slider .aflow-actions .btn:hover,
.aflow-page #aflow-hero-slider .aflow-actions .btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(15, 63, 37, .23);
}

.aflow-page #aflow-hero-slider .aflow-actions .btn:hover::after,
.aflow-page #aflow-hero-slider .aflow-actions .btn:focus-visible::after {
  transform: translateX(4px);
}

.aflow-page #aflow-hero-slider .aflow-actions .btn-primary:hover,
.aflow-page #aflow-hero-slider .aflow-actions .btn-primary:focus-visible,
.aflow-page #aflow-hero-slider .aflow-actions .btn-outline:hover,
.aflow-page #aflow-hero-slider .aflow-actions .btn-outline:focus-visible {
  color: #fff !important;
  border-color: #176b3c !important;
  background: #176b3c !important;
}

@media (max-width: 640px) {
  .aflow-page #aflow-hero-slider .aflow-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 360px;
    gap: 10px;
  }
  .aflow-page #aflow-hero-slider .aflow-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding-inline: 16px !important;
    white-space: normal;
  }
}
.page-template-page-almaflow .about-testimonials-slider,
.page-template-page-qui-sommes-nous .about-testimonials-slider {
  width: 100%;
  overflow: hidden;
  padding: 4px 4px 34px;
}
.page-template-page-almaflow .about-testimonials-slider .about-testimonials-grid,
.page-template-page-qui-sommes-nous .about-testimonials-slider .about-testimonials-grid {
  display: flex !important;
  align-items: stretch !important;
  gap: 0 !important;
  grid-template-columns: none !important;
}
.page-template-page-almaflow .about-testimonials-slider .about-testimonial-card,
.page-template-page-qui-sommes-nous .about-testimonials-slider .about-testimonial-card {
  min-width: 0 !important;
  height: auto !important;
  align-self: stretch;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  transform: none !important;
}
.page-template-page-almaflow .about-testimonials-slider .swiper-wrapper,
.page-template-page-qui-sommes-nous .about-testimonials-slider .swiper-wrapper {
  height: auto !important;
}
.page-template-page-almaflow .about-testimonials-slider .swiper-slide,
.page-template-page-qui-sommes-nous .about-testimonials-slider .swiper-slide {
  display: flex !important;
  box-sizing: border-box !important;
}
.page-template-page-qui-sommes-nous .about-testimonial-photo {
  width: 56px !important;
  height: 56px !important;
  flex: 0 0 56px !important;
}
.page-template-page-almaflow .about-testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
}
.page-template-page-almaflow .about-testimonials-prev,
.page-template-page-almaflow .about-testimonials-next {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(46, 164, 106, .30);
  border-radius: 50%;
  color: #248346;
  background: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(20, 72, 43, .10);
  transition: color .2s, background .2s, transform .2s;
}
.page-template-page-almaflow .about-testimonials-prev:hover,
.page-template-page-almaflow .about-testimonials-next:hover {
  color: #fff;
  background: #2ea46a;
  transform: translateY(-2px);
}
.page-template-page-almaflow .about-testimonials-pagination {
  position: static !important;
  display: flex;
  align-items: center;
  width: auto !important;
  gap: 7px;
}
.page-template-page-almaflow .about-testimonials-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: #9db8a7;
  opacity: .55;
  transition: width .2s, border-radius .2s, background .2s, opacity .2s;
}
.page-template-page-almaflow .about-testimonials-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 8px;
  background: #2ea46a;
  opacity: 1;
}
.aflow-page #aflow-hero-slider .swiper-wrapper {
  align-items: stretch;
}
.aflow-page #aflow-hero-slider .swiper-slide {
  height: auto !important;
  min-height: inherit;
}
.aflow-page #aflow-hero-slider .swiper-slide .reveal {
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  transform: none !important;
}
.aflow-page #aflow-hero-slider .swiper-slide .aflow-landing-inner {
  height: 100%;
}
.page-template-page-almaflow-domestique #hero-slider .slide-inner-hero-cover {
  display: flex !important;
  grid-template-columns: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(150px, 17svh, 210px) clamp(48px, 6vw, 96px) clamp(70px, 9svh, 120px) !important;
}
.page-template-page-almaflow-domestique #hero-slider .slide-hero-content {
  width: min(900px, 68vw) !important;
  max-width: 900px !important;
  margin: 0 !important;
}
.page-template-page-almaflow-domestique #hero-slider .slide-hero-content h1 {
  max-width: 900px !important;
  font-size: clamp(42px, 3.9vw, 62px) !important;
  line-height: 1.08 !important;
  text-wrap: balance;
}
@media (max-width: 760px) {
  .page-template-page-almaflow-domestique #hero-slider {
    height: clamp(600px, 82svh, 720px) !important;
    min-height: 600px !important;
  }
  .page-template-page-almaflow-domestique #hero-slider .slide-inner-hero-cover {
    align-items: flex-end !important;
    padding: 150px 24px 90px !important;
  }
  .page-template-page-almaflow-domestique #hero-slider .slide-hero-content {
    width: 100% !important;
    max-width: 520px !important;
  }
  .page-template-page-almaflow-domestique #hero-slider .slide-hero-content h1 {
    font-size: clamp(34px, 10vw, 48px) !important;
    line-height: 1.08 !important;
  }
}
/* Unified hero title alignment: use the same left edge as Réalisations. */
.hero-slider .slide-inner.slide-inner-hero-cover {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}
.hero-slider .slide-inner-hero-cover .slide-hero-content {
  width: min(780px, calc(100% - 80px)) !important;
  max-width: 780px !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  text-align: left !important;
  transform: none !important;
}
.aflow-page #aflow-hero-slider .aflow-landing-inner {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}
.activities-other-page .activities-other-hero-content > .container {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  text-align: left !important;
}
@media (max-width: 760px) {
  .hero-slider .slide-inner.slide-inner-hero-cover,
  .aflow-page #aflow-hero-slider .aflow-landing-inner,
  .activities-other-page .activities-other-hero-content > .container {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
  .hero-slider .slide-inner-hero-cover .slide-hero-content {
    width: 100% !important;
    max-width: 100% !important;
  }
}
.activity-universal-search {
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto 28px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(29, 131, 193, .16);
  border-radius: 22px;
  background: linear-gradient(135deg, #f4faff, #fff 65%);
  box-shadow: 0 18px 48px rgba(12, 64, 99, .09);
}
.activity-universal-search-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.activity-universal-search-head span { display: block; margin-bottom: 4px; color: #1d83c1; font-size: .74rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.activity-universal-search-head h2 { margin: 0; color: #0b3a60; font-size: clamp(1.2rem, 2.2vw, 1.75rem); }
.activity-universal-search-head > strong { flex: 0 0 auto; padding: 8px 13px; color: #1d83c1; border-radius: 999px; background: #e8f5fd; font-size: .82rem; }
.activity-universal-search-field { display: flex; align-items: center; gap: 12px; min-height: 58px; padding: 0 17px; border: 1px solid #d6e7f1; border-radius: 15px; background: #fff; transition: border-color .2s, box-shadow .2s; }
.activity-universal-search-field:focus-within { border-color: #1d83c1; box-shadow: 0 0 0 4px rgba(29,131,193,.11); }
.activity-universal-search-field svg { flex: 0 0 auto; color: #1d83c1; }
.activity-universal-search-field input { flex: 1; min-width: 0; height: 56px; padding: 0; border: 0; outline: 0; color: #17384d; background: transparent; font: inherit; }
.activity-universal-search-field button { width: 34px; height: 34px; border: 0; border-radius: 50%; color: #526b79; background: #edf5f9; font-size: 1.3rem; cursor: pointer; }
.activity-universal-search-status { margin: 11px 3px 0; color: #71818b; font-size: .86rem; }
.activity-universal-search-results { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.activity-universal-result { display: flex; align-items: center; gap: 13px; min-width: 0; padding: 11px; color: inherit; border: 1px solid #dfebf1; border-radius: 14px; background: #fff; text-decoration: none; transition: transform .2s, border-color .2s, box-shadow .2s; }
.activity-universal-result:hover { transform: translateY(-2px); border-color: rgba(29,131,193,.38); box-shadow: 0 10px 24px rgba(12,64,99,.10); }
.activity-universal-result-image { flex: 0 0 70px; width: 70px; height: 70px; padding: 5px; border-radius: 10px; background: #f3f8fb; }
.activity-universal-result-image img { width: 100%; height: 100%; object-fit: contain; }
.activity-universal-result-copy { display: flex; flex: 1; min-width: 0; flex-direction: column; }
.activity-universal-result-copy small { color: #1d83c1; font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.activity-universal-result-copy strong { margin: 3px 0; overflow: hidden; color: #123c58; font-size: .94rem; text-overflow: ellipsis; white-space: nowrap; }
.activity-universal-result-copy > span { display: -webkit-box; overflow: hidden; color: #71818b; font-size: .77rem; line-height: 1.35; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.activity-universal-result-arrow { color: #1d83c1; font-size: 1.15rem; }
@media (max-width: 720px) {
  .activity-universal-search { width: calc(100% - 24px); margin-top: 20px; padding: 18px; }
  .activity-universal-search-head { align-items: flex-start; flex-direction: column; gap: 10px; }
  .activity-universal-search-results { grid-template-columns: 1fr; }
  .activity-universal-result-image { flex-basis: 58px; width: 58px; height: 58px; }
}
.activity-product-page .activity-product-detail .activity-detail-gallery {
  display: grid !important;
  place-items: center !important;
  min-height: 480px;
  padding: 0 !important;
  background: #f5f9fb !important;
}
.activity-product-page .activity-product-detail .activity-detail-gallery img {
  display: block !important;
  width: 100% !important;
  height: 480px !important;
  max-width: 100% !important;
  padding: clamp(24px, 4vw, 48px) !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #fff !important;
}

/* Let the Fourreau PEHD telecom visual fill its complete technical-sheet frame. */
.activity-product-page.activity-slug-telecom
  .activity-product-detail.product-slug-fourreau-pehd-telecom
  .activity-detail-gallery > img {
  height: 100% !important;
  min-height: 480px;
  padding: 0 !important;
  object-fit: cover !important;
}

@media (max-width: 760px) {
  .activity-product-page .activity-product-detail .activity-detail-gallery {
    min-height: 320px;
  }
  .activity-product-page .activity-product-detail .activity-detail-gallery img {
    height: 320px !important;
    padding: 20px !important;
  }
  .activity-product-page.activity-slug-telecom
    .activity-product-detail.product-slug-fourreau-pehd-telecom
    .activity-detail-gallery > img {
    min-height: 320px;
    padding: 0 !important;
  }
}

/* Keep ALMA product detail titles in the original dark blue. */
.activity-product-page .activity-product-detail .activity-detail-info h2 {
  color: #07345e !important;
}

/* ============================================================
   Testimonials Slider Styling (Qui sommes-nous & AlmaFlow)
   ============================================================ */
.about-testimonials-section {
  padding: 80px 0;
  background: #f8fafc;
}
.about-testimonials-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}
.about-testimonials-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #0f172a;
  margin: 0;
}
.about-testimonials-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #1d83c1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.about-testimonials-more:hover {
  color: #0b3b60;
}
.about-testimonials-slider {
  overflow: hidden !important;
  position: relative !important;
  padding-bottom: 50px !important;
  width: 100% !important;
}
.about-testimonials-grid.swiper-wrapper {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  box-sizing: content-box !important;
  margin: 0 !important;
  padding: 0 !important;
}
.about-testimonial-card.swiper-slide {
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
  box-sizing: border-box !important;
}
.about-testimonial-inner {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.about-testimonial-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}
.about-testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.about-testimonial-quote {
  color: #1d83c1;
  opacity: 0.85;
}
.about-testimonial-rating {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.about-testimonial-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #334155;
  margin: 0 0 24px 0;
  flex-grow: 1;
}
.about-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
}
.about-testimonial-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #e2e8f0;
}
.about-testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-testimonial-meta strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
}
.about-testimonial-meta small {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 2px;
}
#qsn-testimonials-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  opacity: 1;
  transition: all 0.3s ease;
}
#qsn-testimonials-slider .swiper-pagination-bullet-active {
  width: 26px;
  border-radius: 6px;
  background: #1d83c1;
}
@media (max-width: 768px) {
  .about-testimonials-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Fourreaux PEHD family: fill the complete catalogue image frame. */
.activity-product-page.activity-slug-telecom.family-slug-fourreaux-pehd
  .activity-product-grid--catalog
  .activity-product-card-img img {
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* PLASSON partner logo on the Raccords en PP/PE family card. */
.activity-product-page.activity-slug-eau-potable .family-card-body--with-partner {
  position: relative !important;
  padding-right: clamp(118px, 10vw, 154px) !important;
}

.activity-product-page.activity-slug-eau-potable .family-card-partner-logo {
  position: absolute !important;
  top: 24px !important;
  right: 22px !important;
  width: clamp(86px, 8vw, 122px) !important;
  height: auto !important;
  max-height: 58px !important;
  object-fit: contain !important;
}

@media (max-width: 680px) {
  .activity-product-page.activity-slug-eau-potable .family-card-body--with-partner {
    padding-right: 24px !important;
  }

  .activity-product-page.activity-slug-eau-potable .family-card-partner-logo {
    position: static !important;
    width: 108px !important;
    max-height: none !important;
    margin: 0 0 14px !important;
  }
}

/* Header responsive : logo compact et zone du titre protégée. */
@media (max-width: 991px) {
  body .alma-topbar {
    display: none !important;
  }

  body .alma-header,
  body.home .alma-header,
  body.admin-bar .alma-header,
  body.admin-bar.home .alma-header {
    top: 0 !important;
    min-height: 76px !important;
  }

  body .alma-header .alma-nav {
    min-height: 76px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  body .alma-header .logo {
    position: relative !important;
    inset: auto !important;
    flex: 0 1 auto !important;
    max-width: 180px !important;
    margin: 0 !important;
    transform: none !important;
  }

  body .alma-header .logo img,
  body .alma-nav .logo img,
  body.page-template-page-almaflow .alma-header .logo img,
  body.page-template-page-almaflow .alma-nav .logo img {
    display: block !important;
    width: auto !important;
    height: 48px !important;
    max-width: 180px !important;
    object-fit: contain !important;
    transform: none !important;
  }

  body .family-landing-hero.family-landing-hero--image-only {
    padding-top: 118px !important;
  }

  body .family-landing-hero.family-landing-hero--image-only .family-landing-slide-title {
    position: relative !important;
    z-index: 3 !important;
  }
}

@media (max-width: 480px) {
  body .alma-header .logo,
  body .alma-header .logo img,
  body .alma-nav .logo img {
    max-width: 145px !important;
  }

  body .alma-header .logo img,
  body .alma-nav .logo img {
    height: 42px !important;
  }
}

/* Accueil — correctifs responsive RSE et « Pourquoi choisir Alma ? ». */
@media (max-width: 1100px) {
  .home .env-panel {
    width: min(760px, calc(100% - 32px)) !important;
    overflow: hidden !important;
  }

  .home .env-split {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 28px !important;
  }

  .home .env-photo,
  .home .env-art,
  .home .env-stats {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    transform: none !important;
  }

  .home .env-energy-photo {
    display: block !important;
    width: min(430px, 100%) !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    object-fit: contain !important;
  }

  .home .env-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: none !important;
    gap: 24px 18px !important;
    padding: 0 !important;
  }

  .home .env-stat,
  .home .env-stat.hi,
  .home .env-stat--shift-left,
  .home .env-stat--hpl {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 145px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  .home .env-stat .env-lbl {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }

  .home .avq-hero {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  .home .avq-slide {
    min-height: 0 !important;
    height: auto !important;
    padding: 54px 22px !important;
  }

  .home .avq-content {
    position: relative !important;
    inset: auto !important;
    width: min(820px, 100%) !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .home .avq-title-row h1 {
    font-size: clamp(2rem, 6vw, 3.2rem) !important;
  }

  .home .avq-cards {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: none !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 16px !important;
  }

  .home .avq-card {
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 190px !important;
  }
}

@media (max-width: 620px) {
  .home .env-panel {
    width: calc(100% - 26px) !important;
  }

  .home .env-art h3 {
    max-width: 100% !important;
    font-size: clamp(1.3rem, 6.8vw, 1.75rem) !important;
    line-height: 1.15 !important;
  }

  .home .env-num,
  .home .env-stat.hi .env-num {
    font-size: clamp(1.45rem, 8vw, 1.9rem) !important;
  }

  .home .env-lbl,
  .home .env-stat.hi .env-lbl {
    font-size: 0.62rem !important;
    line-height: 1.3 !important;
  }

  .home .avq-slide {
    padding: 42px 16px !important;
  }

  .home .avq-title-row {
    gap: 14px !important;
  }

  .home .avq-circle {
    width: 48px !important;
    height: 48px !important;
    flex: 0 0 48px !important;
  }

  .home .avq-cards {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .home .avq-card {
    min-height: 0 !important;
    padding: 18px 14px !important;
  }
}

/* RSE accueil — tablette : conserver le visuel et les 4 chiffres dans la même vue. */
@media (min-width: 701px) and (max-width: 1100px) {
  .home .env-panel {
    width: calc(100% - 40px) !important;
    max-width: 980px !important;
    padding: 24px !important;
    box-sizing: border-box !important;
  }

  .home .env-split {
    grid-template-columns: minmax(260px, 0.9fr) minmax(360px, 1.1fr) !important;
    align-items: center !important;
    gap: 28px !important;
  }

  .home .env-art h3 {
    max-width: 100% !important;
    margin-bottom: 18px !important;
    font-size: clamp(1.35rem, 2.6vw, 1.85rem) !important;
  }

  .home .env-energy-photo {
    width: min(330px, 100%) !important;
    max-height: 330px !important;
    margin: 0 auto !important;
  }

  .home .env-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-self: center !important;
  }

  .home .env-stat,
  .home .env-stat.hi {
    min-height: 130px !important;
  }
}

/* RSE accueil — téléphone : image compacte puis les 4 chiffres visibles. */
@media (max-width: 700px) {
  .home .env-section {
    overflow: hidden !important;
  }

  .home .env-panel {
    width: calc(100% - 24px) !important;
    padding: 22px 12px !important;
    box-sizing: border-box !important;
  }

  .home .env-split {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
  }

  .home .env-art {
    align-items: center !important;
  }

  .home .env-art h3 {
    width: 100% !important;
    margin: 0 0 12px !important;
    text-align: center !important;
  }

  .home .env-energy-photo {
    width: min(280px, 86vw) !important;
    max-height: 250px !important;
    margin: 0 auto !important;
  }

  .home .env-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px 12px !important;
  }

  .home .env-stat,
  .home .env-stat.hi {
    min-height: 118px !important;
  }

  .home .env-stat .env-leaf-spacer {
    flex-basis: 42px !important;
    height: 42px !important;
  }

  .home .env-stat .env-leaf-top,
  .home .env-stat .env-leaf-top img {
    width: 40px !important;
    height: 40px !important;
  }
}

/* Suppression définitive de l'ancien panneau ISO d'arrière-plan. */
body.home section.env-section {
  background: #fff !important;
  background-color: #fff !important;
  background-image: none !important;
}

body.home section.env-section::before,
body.home section.env-section::after,
body.home section.env-section .env-panel::before,
body.home section.env-section .env-panel::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
}

/* RSE : centrage cohérent des quatre statistiques sur toutes les largeurs. */
.home .env-stats .env-stat,
.home .env-stats .env-stat.hi {
  align-items: center !important;
  justify-content: flex-start !important;
  padding-inline: 8px !important;
  text-align: center !important;
}

.home .env-stats .env-num,
.home .env-stats .env-stat.hi .env-num {
  width: 100% !important;
  justify-content: center !important;
  text-align: center !important;
}

.home .env-stats .env-line,
.home .env-stats .env-stat.hi .env-line {
  margin-right: auto !important;
  margin-left: auto !important;
}

.home .env-stats .env-lbl,
.home .env-stats .env-stat.hi .env-lbl {
  width: 100% !important;
  max-width: 220px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  text-align: center !important;
  overflow-wrap: anywhere !important;
}

.home .env-stats .env-leaf-spacer {
  margin-right: auto !important;
  margin-left: auto !important;
}

/* Protection responsive : aucun titre de slide sous le logo/header. */
@media (max-width: 991px) {
  .hero-slider .slide-inner.slide-inner-hero-cover,
  .aflow-page #aflow-hero-slider .aflow-landing-inner,
  .activities-other-page .activities-other-hero-content {
    box-sizing: border-box !important;
    padding-top: max(150px, env(safe-area-inset-top)) !important;
  }

  .hero-slider .slide-inner-hero-cover .slide-hero-content,
  .aflow-page #aflow-hero-slider .aflow-landing-content,
  .activities-other-page .activities-other-hero-content > .container {
    position: relative !important;
    z-index: 2 !important;
    width: min(100%, 720px) !important;
    max-width: calc(100vw - 40px) !important;
    margin-right: auto !important;
    margin-left: 0 !important;
  }

  .family-landing-hero.family-landing-hero--image-only {
    box-sizing: border-box !important;
    padding-top: 140px !important;
  }

  .family-landing-hero.family-landing-hero--image-only .family-landing-slide-title {
    width: calc(100% - 44px) !important;
    max-width: 540px !important;
  }
}

@media (max-width: 600px) {
  .hero-slider .slide-inner.slide-inner-hero-cover,
  .aflow-page #aflow-hero-slider .aflow-landing-inner,
  .activities-other-page .activities-other-hero-content {
    padding-top: max(132px, env(safe-area-inset-top)) !important;
  }

  .hero-slider .slide-inner-hero-cover .slide-hero-content h1,
  .aflow-page #aflow-hero-slider h1,
  .activities-other-page .activities-other-hero-content h1,
  .family-landing-hero .family-landing-slide-title h1 {
    max-width: 100% !important;
    font-size: clamp(30px, 9vw, 44px) !important;
    line-height: 1.08 !important;
    overflow-wrap: anywhere !important;
  }
}

/* Services : dimensions compactes du processus en responsive. */
@media (max-width: 1100px) {
  .services-page .work-process-grid {
    max-width: 760px !important;
    margin-top: 26px !important;
    gap: 14px !important;
  }

  .services-page .work-process-grid .wp-step {
    min-height: 170px !important;
    padding: 20px 18px !important;
  }

  .services-page .work-process-grid .wp-num {
    margin-bottom: 10px !important;
    font-size: 1rem !important;
  }

  .services-page .work-process-grid .wp-step h4 {
    margin-bottom: 8px !important;
    font-size: 0.98rem !important;
    line-height: 1.24 !important;
  }

  .services-page .work-process-grid .wp-step p {
    font-size: 0.84rem !important;
    line-height: 1.48 !important;
  }
}

@media (max-width: 680px) {
  .services-page .section[style*="background:var(--bg-alt)"] {
    padding: 42px 15px !important;
  }

  .services-page .work-process-grid {
    width: 100% !important;
    max-width: 360px !important;
    margin: 20px auto 0 !important;
    gap: 11px !important;
  }

  .services-page .work-process-grid .wp-step {
    min-height: 0 !important;
    padding: 17px 16px !important;
    border-radius: 7px !important;
  }

  .services-page .work-process-grid .wp-num {
    margin-bottom: 7px !important;
    font-size: 0.92rem !important;
  }

  .services-page .work-process-grid .wp-step h4 {
    margin-bottom: 6px !important;
    font-size: 0.92rem !important;
  }

  .services-page .work-process-grid .wp-step p {
    font-size: 0.79rem !important;
    line-height: 1.42 !important;
  }
}

/* RSE accueil — écrans ordinateur/tablette : réserver la colonne de droite
   au panneau ISO afin qu'il ne soit jamais rogné par background-size: cover. */
@media (min-width: 701px) {
  .home .env-section {
    min-height: 430px !important;
    background-color: #f4f4f2 !important;
    background-image: url("assets/rse-background-panel-cropped.jpeg") !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
    background-size: auto 100% !important;
  }

  .home .env-panel {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 30px 35% 30px 4% !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  .home .env-split {
    display: grid !important;
    grid-template-columns: minmax(230px, 0.85fr) minmax(310px, 1.15fr) !important;
    width: 100% !important;
    max-width: 900px !important;
    margin: 0 !important;
    gap: clamp(22px, 3vw, 46px) !important;
    align-items: center !important;
  }

  .home .env-photo,
  .home .env-art,
  .home .env-stats {
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    transform: none !important;
  }

  .home .env-art h3 {
    max-width: 100% !important;
    margin: 0 0 18px !important;
  }

  .home .env-energy-photo {
    width: min(300px, 100%) !important;
    max-height: 265px !important;
    margin: 0 auto !important;
  }

  .home .env-stats {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: repeat(2, minmax(115px, auto)) !important;
    width: 100% !important;
    gap: 22px 16px !important;
    padding: 0 !important;
  }

  .home .env-stat,
  .home .env-stat.hi,
  .home .env-stat--shift-left,
  .home .env-stat--hpl {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 115px !important;
    margin: 0 !important;
    transform: none !important;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .home .env-panel {
    padding-right: 31% !important;
    padding-left: 22px !important;
  }

  .home .env-split {
    grid-template-columns: minmax(190px, 0.8fr) minmax(280px, 1.2fr) !important;
    gap: 18px !important;
  }

  .home .env-art h3 {
    font-size: 1.35rem !important;
  }

  .home .env-energy-photo {
    width: min(235px, 100%) !important;
    max-height: 220px !important;
  }
}

/* RSE définitif : trois vrais composants, sans plaque en arrière-plan. */
.home .env-section {
  background: #fff !important;
}

.home .env-section::after {
  display: none !important;
  content: none !important;
}

.home .env-iso-panel {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-width: 0 !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.home .env-iso-panel img {
  display: block !important;
  width: 100% !important;
  max-width: 520px !important;
  height: auto !important;
  max-height: 500px !important;
  object-fit: contain !important;
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  mix-blend-mode: normal !important;
  clip-path: none !important;
  filter: none !important;
  transform: translateX(-24px) !important;
}

@media (min-width: 701px) {
  .home .env-panel {
    width: 100% !important;
    max-width: 1440px !important;
    margin: 0 auto !important;
    padding: 28px clamp(18px, 3vw, 48px) !important;
  }

  .home .env-split {
    grid-template-columns:
      minmax(210px, 0.85fr)
      minmax(300px, 1.05fr)
      minmax(260px, 1fr) !important;
    width: 100% !important;
    max-width: 1360px !important;
    margin: 0 auto !important;
    gap: clamp(18px, 2.4vw, 38px) !important;
  }
}

@media (min-width: 701px) and (max-width: 940px) {
  .home .env-panel {
    padding-inline: 16px !important;
  }

  .home .env-split {
    grid-template-columns:
      minmax(170px, 0.8fr)
      minmax(250px, 1.15fr)
      minmax(190px, 0.85fr) !important;
    gap: 14px !important;
  }

  .home .env-energy-photo {
    max-height: 210px !important;
  }

  .home .env-iso-panel img {
    max-width: 360px !important;
    max-height: 330px !important;
    transform: translateX(-12px) !important;
  }
}

@media (max-width: 700px) {
  .home .env-iso-panel {
    width: 100% !important;
    margin-top: 4px !important;
  }

  .home .env-iso-panel img {
    width: min(330px, 100%) !important;
    max-height: 310px !important;
    transform: none !important;
  }
}

/* Plaque ISO : afficher uniquement la partie utile de l'image source
   (le fichier possède une grande marge blanche intégrée à gauche). */
@media (min-width: 701px) {
  .home .env-section {
    isolation: isolate !important;
    background-image: none !important;
    background-color: #f4f4f2 !important;
  }

  .home .env-section::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    z-index: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 36% !important;
    height: 100% !important;
    background-image: url("assets/rse-background-panel-cropped.jpeg") !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
    background-size: 178% auto !important;
    pointer-events: none !important;
  }

  .home .env-panel {
    position: relative !important;
    z-index: 1 !important;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .home .env-section::after {
    width: 31% !important;
    background-size: 188% auto !important;
  }
}

/* Accueil : composition RSE réellement fluide sur tablette et mobile. */
@media (max-width: 900px) {
  .home .env-panel {
    width: min(680px, calc(100% - 34px)) !important;
  }

  .home .env-split {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 26px !important;
  }

  .home .env-photo,
  .home .env-art,
  .home .env-stats {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .home .env-energy-photo {
    width: min(420px, 100%) !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  .home .env-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px 18px !important;
    padding: 0 !important;
  }

  .home .env-line,
  .home .env-stat.hi .env-line {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}

@media (max-width: 560px) {
  .home .env-panel {
    width: calc(100% - 28px) !important;
  }

  .home .env-art h3 {
    max-width: 100% !important;
    margin: 0 0 18px !important;
    font-size: clamp(1.35rem, 7vw, 1.75rem) !important;
    line-height: 1.16 !important;
  }

  .home .env-num,
  .home .env-stat.hi .env-num {
    font-size: clamp(1.45rem, 8vw, 1.9rem) !important;
  }

  .home .env-lbl,
  .home .env-stat.hi .env-lbl {
    overflow-wrap: anywhere !important;
    font-size: 0.64rem !important;
  }
}
/* Raccords en PE: navigation catalogue a trois niveaux */
.activity-product-page.activity-family-view .activity-product-main.activity-product-main--subfamilies {
  display: block !important;
  width: 100%;
}

.activity-product-page .pp-pe-subfamily-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 900px;
  margin: 24px auto 10px;
}

.activity-product-page .pp-pe-subfamily-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 255px;
  overflow: hidden;
  border: 1px solid #dce8ef;
  border-radius: 16px;
  background: #fff;
  color: #0b3b60;
  box-shadow: 0 14px 38px rgba(11, 59, 96, .09);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.activity-product-page .pp-pe-subfamily-card:hover {
  transform: translateY(-7px);
  border-color: rgba(29, 131, 193, .5);
  box-shadow: 0 22px 48px rgba(11, 59, 96, .16);
}

@media (min-width: 981px) {
  .activity-product-page .pp-pe-subfamily-card:last-child:nth-child(3n + 1) {
    grid-column: 2;
  }
}

.activity-product-page .pp-pe-subfamily-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 145px;
  padding: 14px;
  background: linear-gradient(145deg, #f8fbfd, #eef5f8);
}

.activity-product-page .pp-pe-subfamily-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.activity-product-page .pp-pe-subfamily-card-body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 13px 15px 15px;
  border-top: 3px solid #1d83c1;
}

.activity-product-page .pp-pe-subfamily-card-body > span {
  color: #1d83c1;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.activity-product-page .pp-pe-subfamily-card-body h5 {
  margin: 5px 0 7px;
  color: #0b3b60;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.22;
}

.activity-product-page .pp-pe-subfamily-card-body strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
  color: #34576d;
  font-size: 11px;
}

.activity-product-page .pp-pe-subfamily-card-body strong span {
  color: #1d83c1;
  font-size: 18px;
  transition: transform .2s ease;
}

.activity-product-page .pp-pe-subfamily-card:hover strong span {
  transform: translateX(5px);
}

.activity-product-page .pp-pe-subfamily-back {
  display: inline-flex;
  margin: 5px 0 22px;
  padding: 12px 18px;
  border: 1px solid #d7e4eb;
  border-radius: 999px;
  background: #fff;
  color: #0b3b60;
  font-weight: 800;
  text-decoration: none;
}

.activity-product-page .pp-pe-subfamily-back:hover {
  border-color: #1d83c1;
  color: #1d83c1;
}

@media (max-width: 980px) {
  .activity-product-page .pp-pe-subfamily-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .activity-product-page .pp-pe-subfamily-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 330px;
    margin-top: 18px;
  }

  .activity-product-page .pp-pe-subfamily-card {
    min-height: 245px;
    border-radius: 15px;
  }

  .activity-product-page .pp-pe-subfamily-card-img {
    height: 140px;
  }
}

/* Assainissement - agrandir uniquement le visuel Tube PEHD double paroi. */
.activity-product-page.activity-slug-assainissement.family-slug-tubes-pehd-double-paroi
  .activity-product-grid--catalog
  .activity-product-card-img
  img[src*="tube-pehd-double-paroi-20260724"] {
  width: 118% !important;
  height: 118% !important;
  max-width: none !important;
  padding: 0 !important;
  object-fit: contain !important;
  transform: scale(1.08) !important;
}

.activity-product-page.activity-slug-assainissement.family-slug-tubes-pehd-double-paroi
  .activity-product-grid--catalog
  .activity-product-card:hover
  .activity-product-card-img
  img[src*="tube-pehd-double-paroi-20260724"] {
  transform: scale(1.14) !important;
}

/* Page Eau potable: description complète et largeur utile de la carte Raccords en PE. */
.activity-product-page.activity-slug-eau-potable
  .family-card-body--with-partner {
  padding-right: 24px !important;
}

.activity-product-page.activity-slug-eau-potable
  .family-card-body--with-partner
  h3 {
  padding-right: 132px;
  width: 100%;
  white-space: nowrap;
  font-size: clamp(22px, 2.1vw, 30px);
}

.activity-product-page.activity-slug-eau-potable
  .family-card-body--with-partner
  .family-card-desc {
  width: 100%;
  max-width: none;
  font-size: 17px;
  line-height: 1.55;
}

/* Responsive audit fixes: shared mobile header, offcanvas, footer and product tabs. */
.offcanvas:not(.open) {
  display: none !important;
}

.offcanvas.open {
  display: block !important;
}

@media (max-width: 991px) {
  .alma-header .header-socials-almaflow {
    display: none !important;
  }
}

@media (max-width: 620px) {
  .alma-footer {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 16px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .alma-footer .foot-grid,
  .alma-footer .foot-grid > div,
  .alma-footer .foot-about,
  .alma-footer .footer-socials {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .alma-footer .newsletter {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 8px !important;
    box-sizing: border-box !important;
  }

  .alma-footer .newsletter input {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .alma-footer .newsletter .btn {
    width: auto !important;
    min-width: 0 !important;
    padding-inline: 14px !important;
    box-sizing: border-box !important;
  }

  .activity-product-page .activity-product-tabs {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 4px !important;
    box-sizing: border-box !important;
  }

  .activity-product-page .activity-product-tabs .apt-tab {
    width: 100% !important;
    min-width: 0 !important;
    padding: 10px 4px !important;
    font-size: 12px !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 680px) {
  .activity-product-page.activity-slug-eau-potable
    .family-card-body--with-partner
    h3 {
    padding-right: 0;
    font-size: 24px;
  }
}

/* ============================================================
   FINAL RESPONSIVE OVERRIDES — header, catalogue toolbar, images
   Keep at the physical end of the stylesheet.
   ============================================================ */
@media (max-width: 991px) {
  html body .alma-topbar {
    display: none !important;
  }

  html body .alma-header,
  html body.home .alma-header,
  html body.admin-bar .alma-header,
  html body.admin-bar.home .alma-header,
  html body.activity-product-page .alma-header {
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    min-height: 72px !important;
    transform: none !important;
  }

  html body .alma-header .alma-nav {
    min-height: 72px !important;
    padding: 8px 16px !important;
  }

  html body .alma-header .logo,
  html body.activity-product-page .alma-header .logo {
    position: static !important;
    inset: auto !important;
    width: auto !important;
    max-width: 155px !important;
    height: auto !important;
    margin: 0 !important;
    transform: none !important;
  }

  html body .alma-header .logo img,
  html body .alma-nav .logo img,
  html body.activity-product-page .alma-header .logo img {
    width: auto !important;
    height: 44px !important;
    max-width: 155px !important;
    max-height: 44px !important;
    object-fit: contain !important;
    transform: none !important;
  }

  html body.activity-product-page
    .family-landing-hero.family-landing-hero--image-only {
    min-height: 500px !important;
    padding: 118px 20px 52px !important;
    box-sizing: border-box !important;
  }

  html body.activity-product-page
    .family-landing-hero.family-landing-hero--image-only
    .family-landing-slide-title {
    position: relative !important;
    z-index: 4 !important;
    width: 100% !important;
    max-width: 560px !important;
    margin: 0 !important;
  }
}

@media (max-width: 768px) {
  .activity-product-container--alma-shop .activity-catalog-toolbar {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 12px !important;
    margin: 0 0 20px !important;
  }

  .activity-product-container--alma-shop .activity-catalog-search {
    width: 100% !important;
    min-width: 0 !important;
    padding: 15px !important;
    box-sizing: border-box !important;
  }

  .activity-product-container--alma-shop .activity-catalog-search-top {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px 12px !important;
  }

  .activity-product-container--alma-shop .activity-catalog-search-field {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .activity-product-container--alma-shop .activity-catalog-search-field input {
    width: 100% !important;
    min-width: 0 !important;
    font-size: 14px !important;
    text-overflow: ellipsis !important;
  }

  .activity-product-container--alma-shop .activity-product-filter-bar {
    position: static !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 7px !important;
    overflow: visible !important;
    padding: 12px !important;
    box-sizing: border-box !important;
  }

  .activity-product-container--alma-shop
    .activity-product-filter-bar
    .activity-side-label {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }

  .activity-product-container--alma-shop .activity-product-filter-bar a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 0 !important;
    min-height: 42px !important;
    padding: 8px 9px !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.25 !important;
  }

  .activity-product-container--alma-shop
    .activity-product-grid--catalog
    .activity-product-card-img {
    overflow: hidden !important;
    background: #f4f9fc !important;
  }

  .activity-product-container--alma-shop
    .activity-product-grid--catalog
    .activity-product-card-img
    img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: center center !important;
  }
}

@media (max-width: 480px) {
  .activity-product-container--alma-shop .activity-product-filter-bar {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .activity-product-container--alma-shop
    .activity-product-filter-bar
    .activity-side-label {
    grid-column: 1 !important;
  }

  html body .alma-header .logo,
  html body .alma-header .logo img,
  html body .alma-nav .logo img {
    max-width: 132px !important;
  }

  html body .alma-header .logo img,
  html body .alma-nav .logo img {
    height: 40px !important;
    max-height: 40px !important;
  }
}
.activity-product-page .pp-pe-catalog-search {
  width: min(760px, 100%);
  margin: 24px 0 8px;
}

.activity-product-page .pp-pe-subfamily-card[hidden] {
  display: none !important;
}

@media (max-width: 620px) {
  .activity-product-page .pp-pe-catalog-search {
    margin-top: 18px;
  }

  .activity-product-page .pp-pe-catalog-search .activity-catalog-search-top {
    align-items: flex-start;
    gap: 6px;
  }
}
.activities-other-page #certifications {
  scroll-margin-top: 110px;
}

.activities-other-page #certifications .activities-other-hero-content {
  transform: translateY(32px);
}

@media (max-width: 991px) {
  .activities-other-page #certifications {
    scroll-margin-top: 82px;
  }

  .activities-other-page #certifications .activities-other-hero-content {
    transform: translateY(20px);
  }
}

/* Services directory: white header in the document flow, above the cards. */
body.services-directory-page .alma-topbar {
  position: relative !important;
  inset: auto !important;
  z-index: 1002 !important;
  display: block !important;
  width: 100% !important;
  background: #fff !important;
  border-bottom: 1px solid rgba(29, 131, 193, 0.12) !important;
  box-shadow: none !important;
}

body.services-directory-page .alma-header,
body.services-directory-page .alma-header.alma-header--hero-overlay {
  position: sticky !important;
  inset: auto 0 auto 0 !important;
  top: 0 !important;
  z-index: 1001 !important;
  width: 100% !important;
  background: #fff !important;
  border-bottom: 1px solid rgba(29, 131, 193, 0.12) !important;
  box-shadow: 0 8px 24px rgba(7, 58, 96, 0.06) !important;
}

body.services-directory-page .alma-header .alma-nav {
  background: #fff !important;
}

body.services-directory-page .alma-topbar .item,
body.services-directory-page .alma-topbar .item svg,
body.services-directory-page .alma-topbar a,
body.services-directory-page .alma-topbar span,
body.services-directory-page .alma-header .industrie-nav-menu .nav-link,
body.services-directory-page .alma-header .industrie-nav-menu .caret,
body.services-directory-page .alma-header .nav-search,
body.services-directory-page .alma-header .offcanvas-toggle {
  color: #1d83c1 !important;
  text-shadow: none !important;
}

body.services-directory-page .alma-header .offcanvas-toggle span {
  background: #1d83c1 !important;
}

body.services-directory-page .services-showcase-section {
  clear: both !important;
}

/* Shared return control on every service landing/catalogue page. */
.service-directory-back-row {
  display: flex;
  align-items: center;
  width: min(1320px, calc(100% - 40px));
  margin: 18px auto 6px;
  position: relative;
  z-index: 30;
}

.service-directory-back-row--almaflow {
  margin-top: 20px;
  margin-bottom: 12px;
}

.service-directory-back {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 17px;
  border: 1px solid var(--activity-color, #1d83c1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--activity-color, #1d83c1) !important;
  box-shadow: 0 8px 24px rgba(7, 58, 96, 0.13);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  backdrop-filter: blur(8px);
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, transform 0.2s ease;
}

.service-directory-back > span:first-child {
  font-size: 19px;
  line-height: 0.8;
}

.service-directory-back:hover,
.service-directory-back:hover *,
.service-directory-back:focus-visible,
.service-directory-back:focus-visible *,
.service-directory-back--almaflow:hover,
.service-directory-back--almaflow:hover *,
.service-directory-back--almaflow:focus-visible,
.service-directory-back--almaflow:focus-visible * {
  border-color: var(--activity-color, #1d83c1) !important;
  background-color: var(--activity-color, #1d83c1) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.service-directory-back-row--almaflow,
.service-directory-back--almaflow {
  --activity-color: #2ea46a;
}

/* AlmaFlow header: compact logo, no contact coordinates, green catalogue. */
.page-template-page-almaflow .alma-header .logo img,
.page-template-page-almaflow .alma-nav .logo img {
  width: auto !important;
  height: 52px !important;
  max-width: 190px !important;
  object-fit: contain !important;
}

.page-template-page-almaflow .alma-topbar .tb-inner {
  grid-template-columns: 1fr !important;
}

.page-template-page-almaflow .alma-topbar .tb-left,
.page-template-page-almaflow .alma-topbar .tb-btn-reclamation,
.page-template-page-almaflow .alma-topbar .tb-btn-contact {
  display: none !important;
}

.page-template-page-almaflow .alma-topbar .tb-right {
  justify-self: end !important;
  display: flex !important;
  align-items: center !important;
}

.page-template-page-almaflow .alma-topbar .tb-actions {
  order: 2;
}

.page-template-page-almaflow .alma-topbar .socials {
  order: 1;
}

.page-template-page-almaflow .alma-topbar .lang {
  order: 3;
}

.page-template-page-almaflow .alma-topbar .tb-btn-catalogue {
  border-color: #2ea46a !important;
  background: #2ea46a !important;
  color: #fff !important;
}

.page-template-page-almaflow .alma-topbar .tb-btn-catalogue:hover,
.page-template-page-almaflow .alma-topbar .tb-btn-catalogue:focus-visible {
  border-color: #237f4c !important;
  background: #237f4c !important;
  color: #fff !important;
}

/* AlmaFlow uses one social group only: the group inside the main header. */
.page-template-page-almaflow .alma-topbar {
  display: none !important;
}

.page-template-page-almaflow .alma-header .nav-right {
  margin-left: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 12px !important;
}

.page-template-page-almaflow .alma-header .header-socials-almaflow {
  margin: 0 !important;
}

.page-template-page-almaflow .alma-header .header-catalogue-btn--almaflow,
.page-template-page-almaflow .alma-header .header-catalogue-btn--almaflow:visited {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 126px !important;
  min-height: 46px !important;
  padding: 11px 24px !important;
  border: 1px solid #2ea46a !important;
  border-radius: 7px !important;
  background: #2ea46a !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(46, 164, 106, 0.24) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

.page-template-page-almaflow .alma-header .header-catalogue-btn--almaflow:hover,
.page-template-page-almaflow .alma-header .header-catalogue-btn--almaflow:focus-visible {
  border-color: #237f4c !important;
  background: #237f4c !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* Typed text must remain visible in every project search field. */
input[type="search"],
.activity-catalog-search-field input,
.activity-universal-search-field input,
.aflow-universal-search-field input,
[data-product-search-input] {
  color: #17384d !important;
  caret-color: #1d83c1 !important;
  -webkit-text-fill-color: #17384d !important;
  opacity: 1 !important;
}

.aflow-universal-search-field input,
.page-template-page-almaflow-domestique input[type="search"] {
  color: #183b2a !important;
  caret-color: #2ea46a !important;
  -webkit-text-fill-color: #183b2a !important;
}

input[type="search"]::placeholder,
.activity-catalog-search-field input::placeholder,
.activity-universal-search-field input::placeholder,
.aflow-universal-search-field input::placeholder {
  color: #71818b !important;
  -webkit-text-fill-color: #71818b !important;
  opacity: 1 !important;
}

@media (max-width: 991px) {
  body.services-directory-page .alma-topbar {
    display: none !important;
  }

  body.services-directory-page .alma-header,
  body.services-directory-page .alma-header.alma-header--hero-overlay {
    min-height: 72px !important;
  }

  .service-directory-back-row {
    width: calc(100% - 28px);
    margin-top: 14px;
  }

  .service-directory-back {
    min-height: 38px;
    padding: 8px 13px;
    font-size: 12px;
  }

  .page-template-page-almaflow .alma-header .logo img,
  .page-template-page-almaflow .alma-nav .logo img {
    height: 40px !important;
    max-width: 155px !important;
  }

  .page-template-page-almaflow .alma-topbar {
    display: none !important;
  }

  .page-template-page-almaflow .alma-header .header-catalogue-btn--almaflow {
    min-width: 104px !important;
    min-height: 40px !important;
    padding: 9px 16px !important;
    font-size: 12px !important;
  }

  .aflow-page #aflow-hero-slider,
  .aflow-page #aflow-hero-slider .swiper-wrapper,
  .aflow-page #aflow-hero-slider .swiper-slide {
    height: auto !important;
    min-height: 320px !important;
  }

  .aflow-page #aflow-hero-slider .aflow-landing-inner {
    min-height: 320px !important;
    padding: 30px 22px 40px !important;
  }

  .aflow-page #aflow-hero-slider .aflow-landing-copy {
    max-width: min(100%, 520px) !important;
  }

  .aflow-page #aflow-hero-slider .aflow-landing-copy h1 {
    font-size: clamp(28px, 7vw, 40px) !important;
    line-height: 1.08 !important;
  }

  .aflow-page #aflow-hero-slider .aflow-landing-copy p {
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  /* Enlarged AlmaFlow logo */
  .almaflow-site .logo img,
  .almaflow-site a.logo img,
  .almaflow-header-logo {
    height: 70px !important;
    max-height: 74px !important;
    width: auto !important;
  }

  /* AlmaFlow family cards use compact mobile layout - Title & Photo only */
  .aflow-domestic-page .aflow-domestic-categories.family-landing-grid,
  .aflow-domestic-categories.family-landing-grid,
  .family-landing-grid.family-landing-grid--six {
    width: calc(100% - 24px) !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin: 20px auto !important;
  }

  .aflow-domestic-page .aflow-domestic-category-card.family-card,
  .aflow-domestic-category-card.family-card,
  .family-card.aflow-domestic-category-card {
    display: grid !important;
    grid-template-columns: 38% minmax(0, 1fr) !important;
    height: 96px !important;
    min-height: 96px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 16px rgba(15, 37, 53, 0.07) !important;
    align-items: center !important;
  }

  .aflow-domestic-page .aflow-domestic-category-card .family-card-img,
  .aflow-domestic-page .aflow-domestic-category-card .family-card-img img,
  .aflow-domestic-category-card .family-card-img,
  .aflow-domestic-category-card .family-card-img img {
    width: 100% !important;
    height: 96px !important;
    min-height: 96px !important;
    object-fit: cover !important;
  }

  .aflow-domestic-page .aflow-domestic-category-card .family-card-body,
  .aflow-domestic-category-card .family-card-body {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 12px 14px !important;
  }

  .aflow-domestic-page .aflow-domestic-category-card .family-card-line,
  .aflow-domestic-page .aflow-domestic-category-card .family-card-desc,
  .aflow-domestic-page .aflow-domestic-category-card .family-card-link,
  .aflow-domestic-page .aflow-domestic-category-card .family-card-body p,
  .aflow-domestic-category-card .family-card-line,
  .aflow-domestic-category-card .family-card-desc,
  .aflow-domestic-category-card .family-card-link,
  .aflow-domestic-category-card .family-card-body p,
  .family-landing-grid .family-card-body p,
  .family-landing-grid .family-card-link,
  .family-landing-grid .family-card-line {
    display: none !important;
  }

  .aflow-domestic-page .aflow-domestic-category-card .family-card-body h2,
  .aflow-domestic-page .aflow-domestic-category-card .family-card-body h3,
  .aflow-domestic-page .aflow-domestic-category-card .family-card-body h4,
  .aflow-domestic-page .aflow-domestic-category-card .family-card-body h5,
  .aflow-domestic-category-card .family-card-body h3 {
    display: block !important;
    margin: 0 !important;
    color: #0b3a60 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
  }
}

/* AlmaFlow Hero Slide paragraph text - Solid Black */
.aflow-landing-copy p,
.aflow-page #aflow-hero-slider .aflow-landing-copy p,
.hero-slider .slide-hero-content p,
.hero-slider .swiper-slide p,
.slide-inner-hero-cover p {
  color: #000000 !important;
  font-weight: 500 !important;
  opacity: 1 !important;
}

/* AlmaFlow Catalog Layout - 2 Column Desktop Grid Sidebar vs Mobile */
@media (min-width: 992px) {
  .activity-product-container.activity-product-container--alma-shop {
    display: grid !important;
    grid-template-columns: 280px minmax(0, 1fr) !important;
    gap: 32px !important;
    align-items: start !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
  }

  .activity-product-sidebar {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    position: sticky !important;
    top: 100px !important;
    z-index: 10 !important;
    width: 280px !important;
  }

  .activity-product-sidebar .activity-product-filter-bar {
    display: flex !important;
    flex-direction: column !important;
    padding: 20px !important;
    background: #ffffff !important;
    border: 1px solid #e0ebf1 !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(11, 59, 96, 0.05) !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  .activity-product-main {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .activity-product-main .activity-catalog-search,
  .aflow-page .activity-catalog-search,
  .aflow-domestic-page .activity-catalog-search,
  .aflow-domestic-category-page .activity-catalog-search,
  .activity-catalog-search {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 24px !important;
  }

  .activity-product-container--alma-shop .activity-product-grid,
  .activity-product-container--alma-shop .activity-product-grid--catalog,
  .aflow-category-catalog .activity-product-grid,
  .aflow-category-catalog .activity-product-grid--catalog,
  .activity-product-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px !important;
    width: 100% !important;
  }

  .aflow-page .activity-product-filter-bar .activity-side-label,
  .aflow-domestic-page .activity-product-filter-bar .activity-side-label,
  .aflow-domestic-category-page .activity-product-filter-bar .activity-side-label {
    display: block !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    color: #0b3b60 !important;
    margin-bottom: 14px !important;
    padding-bottom: 8px !important;
    border-bottom: 2px solid #eef4f8 !important;
  }

  .aflow-page .activity-product-filter-bar a,
  .aflow-domestic-page .activity-product-filter-bar a,
  .aflow-domestic-category-page .activity-product-filter-bar a {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 18px !important;
    margin-bottom: 8px !important;
    border-radius: 10px !important;
    border: 1.5px solid #d1ebd9 !important;
    background: #ffffff !important;
    color: #248346 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    white-space: normal !important;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out !important;
  }

  .aflow-page .activity-product-filter-bar a:last-child,
  .aflow-domestic-page .activity-product-filter-bar a:last-child,
  .aflow-domestic-category-page .activity-product-filter-bar a:last-child {
    margin-bottom: 0 !important;
  }

  .aflow-page .activity-product-filter-bar a:hover:not(.active),
  .aflow-domestic-page .activity-product-filter-bar a:hover:not(.active),
  .aflow-domestic-category-page .activity-product-filter-bar a:hover:not(.active) {
    background: #eaf6ef !important;
    border-color: #248346 !important;
    color: #1c6837 !important;
    transform: translateX(3px) !important;
  }

  .aflow-page .activity-product-filter-bar a.active,
  .aflow-page .activity-product-filter-bar a.active:hover,
  .aflow-page .activity-product-filter-bar a.active:focus,
  .aflow-domestic-page .activity-product-filter-bar a.active,
  .aflow-domestic-page .activity-product-filter-bar a.active:hover,
  .aflow-domestic-page .activity-product-filter-bar a.active:focus,
  .aflow-domestic-category-page .activity-product-filter-bar a.active,
  .aflow-domestic-category-page .activity-product-filter-bar a.active:hover,
  .aflow-domestic-category-page .activity-product-filter-bar a.active:focus {
    background: #dcefe2 !important;
    border-color: #248346 !important;
    color: #1c6837 !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(36, 131, 70, 0.15) !important;
    transform: none !important;
  }
}

/* MOBILE MODE (max-width: 991px): Horizontal scrolling pill bar */
@media (max-width: 991px) {
  .aflow-page .activity-catalog-toolbar,
  .aflow-domestic-page .activity-catalog-toolbar,
  .aflow-domestic-category-page .activity-catalog-toolbar {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 14px !important;
    margin: 0 0 24px !important;
    box-sizing: border-box !important;
  }

  .aflow-page .activity-catalog-search,
  .aflow-domestic-page .activity-catalog-search,
  .aflow-domestic-category-page .activity-catalog-search {
    order: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .aflow-page .activity-product-filter-bar,
  .aflow-domestic-page .activity-product-filter-bar,
  .aflow-domestic-category-page .activity-product-filter-bar {
    order: 2 !important;
    position: static !important;
    display: flex !important;
    flex-flow: row nowrap !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: -15px !important;
    margin-right: -15px !important;
    padding: 8px 15px 12px !important;
    gap: 8px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x proximity !important;
    box-sizing: border-box !important;
  }

  .aflow-page .activity-product-filter-bar::-webkit-scrollbar,
  .aflow-domestic-page .activity-product-filter-bar::-webkit-scrollbar,
  .aflow-domestic-category-page .activity-product-filter-bar::-webkit-scrollbar {
    display: none !important;
  }

  .aflow-page .activity-product-filter-bar .activity-side-label,
  .aflow-domestic-page .activity-product-filter-bar .activity-side-label,
  .aflow-domestic-category-page .activity-product-filter-bar .activity-side-label {
    display: none !important;
  }

  .aflow-page .activity-product-filter-bar a,
  .aflow-domestic-page .activity-product-filter-bar a,
  .aflow-domestic-category-page .activity-product-filter-bar a {
    flex: 0 0 auto !important;
    min-width: auto !important;
    min-height: 40px !important;
    padding: 9px 16px !important;
    border: 1.5px solid #d1ebd9 !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #248346 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 12px rgba(11,59,96,.05) !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
  }

  .aflow-page .activity-product-filter-bar a:hover:not(.active),
  .aflow-domestic-page .activity-product-filter-bar a:hover:not(.active),
  .aflow-domestic-category-page .activity-product-filter-bar a:hover:not(.active) {
    border-color: #248346 !important;
    color: #1c6837 !important;
    background: #eaf6ef !important;
  }

  .aflow-page .activity-product-filter-bar a.active,
  .aflow-page .activity-product-filter-bar a.active:hover,
  .aflow-page .activity-product-filter-bar a.active:focus,
  .aflow-domestic-page .activity-product-filter-bar a.active,
  .aflow-domestic-page .activity-product-filter-bar a.active:hover,
  .aflow-domestic-page .activity-product-filter-bar a.active:focus,
  .aflow-domestic-category-page .activity-product-filter-bar a.active,
  .aflow-domestic-category-page .activity-product-filter-bar a.active:hover,
  .aflow-domestic-category-page .activity-product-filter-bar a.active:focus {
    border-color: #248346 !important;
    background: #dcefe2 !important;
    color: #1c6837 !important;
    font-weight: 700 !important;
  }

  /* Prevent header top bar elements from overlapping title text on mobile */
  .aflow-page #hero-slider .slide-inner-hero-cover,
  .aflow-domestic-page #hero-slider .slide-inner-hero-cover,
  .aflow-domestic-category-page #hero-slider .slide-inner-hero-cover {
    padding-top: 155px !important;
    min-height: clamp(340px, 45svh, 500px) !important;
  }

  .aflow-domestic-category-page #hero-slider .slide-hero-container-custom {
    flex-direction: column !important;
    justify-content: flex-start !important;
    text-align: center !important;
    gap: 15px !important;
    margin-top: 20px !important;
  }

  .aflow-domestic-category-page #hero-slider .slide-hero-content {
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 20px !important;
  }

  .aflow-domestic-category-page #hero-slider .slide-hero-content h1 {
    font-size: clamp(24px, 6.5vw, 36px) !important;
    line-height: 1.15 !important;
    margin-top: 10px !important;
  }

  .aflow-domestic-page .activity-product-container--alma-shop .activity-product-main {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
}


/* ==========================================
   ALMA & ALMAFLOW FINAL FIXES (2026-07-27)
   ========================================== */

/* 1. Return / Back Button Hover Text Color Fix */
a.service-directory-back:hover,
a.service-directory-back:hover *,
a.service-directory-back:focus-visible,
a.service-directory-back:focus-visible *,
.service-directory-back-row a:hover,
.service-directory-back-row a:hover *,
.pp-pe-subfamily-back:hover,
.pp-pe-subfamily-back:hover * {
  border-color: var(--activity-color, #1d83c1) !important;
  background-color: var(--activity-color, #1d83c1) !important;
  color: #ffffff !important;
  fill: #ffffff !important;
}

a.service-directory-back--almaflow:hover,
a.service-directory-back--almaflow:hover *,
a.service-directory-back--almaflow:focus-visible,
a.service-directory-back--almaflow:focus-visible * {
  border-color: var(--activity-color, #2ea46a) !important;
  background-color: #ffffff !important;
  color: var(--activity-color, #2ea46a) !important;
  fill: var(--activity-color, #2ea46a) !important;
}

/* 2. Enlarged AlmaFlow Logo Styles (Header & Hero Slides) */
.almaflow-site .logo img,
.almaflow-site a.logo img,
.almaflow-header-logo {
  height: 95px !important;
  max-height: 110px !important;
  width: auto !important;
}

.aflow-slide-hero-logo,
.aflow-landing-copy .aflow-slide-hero-logo,
.slide-hero-content .aflow-slide-hero-logo {
  height: 80px !important;
  max-height: 95px !important;
  width: auto !important;
  display: block !important;
  margin-bottom: 20px !important;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.4)) !important;
}

@media (max-width: 768px) {
  .almaflow-site .logo img,
  .almaflow-site a.logo img,
  .almaflow-header-logo {
    height: 65px !important;
    max-height: 75px !important;
  }
  
  .aflow-slide-hero-logo,
  .aflow-landing-copy .aflow-slide-hero-logo,
  .slide-hero-content .aflow-slide-hero-logo {
    height: 55px !important;
    max-height: 65px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* 3. Standardized Desktop 2-Column Sidebar & Main Layout for Service Pages */
@media (min-width: 992px) {
  .activity-product-container--alma-shop {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 32px !important;
    width: 100% !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding-inline: 20px !important;
  }

  .activity-product-container--alma-shop .activity-product-sidebar {
    width: 280px !important;
    flex: 0 0 280px !important;
    position: sticky !important;
    top: 100px !important;
    display: block !important;
  }

  .activity-product-container--alma-shop .activity-product-main {
    flex: 1 1 0% !important;
    min-width: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .activity-product-container--alma-shop .activity-catalog-search {
    width: 100% !important;
    margin-bottom: 24px !important;
  }

  .activity-product-container--alma-shop .activity-product-grid--catalog {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
    width: 100% !important;
  }
}



/* =========================================================
   REMOVE WHITE GRADIENT OVERLAY ON SERVICE HERO BANNERS
   ========================================================= */
.activity-product-page .family-landing-hero.family-landing-hero--image-only::before,
.activity-product-page .family-landing-hero::before,
.family-landing-hero::before,
.family-landing-hero.family-landing-hero--image-only::before {
  content: none !important;
  display: none !important;
  background: none !important;
}

@media (max-width: 991px) {
  .activity-product-page .family-landing-hero .family-landing-slide-title,
  .activity-slug-eau-potable .family-landing-hero .family-landing-slide-title,
  .activity-slug-gaz .family-landing-hero .family-landing-slide-title,
  .activity-product-page .family-landing-hero.family-landing-hero--image-only .family-landing-slide-title {
    background: rgba(11, 37, 58, 0.82) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(8px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
    border-radius: 14px !important;
  }

  .activity-product-page .family-landing-hero .family-landing-slide-title h1,
  .activity-product-page .family-landing-hero.family-landing-hero--image-only .family-landing-slide-title h1 {
    color: #ffffff !important;
  }

  .activity-product-page .family-landing-hero .family-landing-slide-title p,
  .activity-product-page .family-landing-hero.family-landing-hero--image-only .family-landing-slide-title p {
    color: rgba(255, 255, 255, 0.92) !important;
  }
}

/* Responsive CSS variable declarations for service hero banners */
@media (max-width: 991px) {
  .activity-product-page .family-landing-hero {
    --hero-text-color: #ffffff !important;
    --hero-text-shadow: none !important;
    --hero-para-color: rgba(255, 255, 255, 0.92) !important;
    --hero-para-shadow: none !important;
  }
  .activity-slug-gaz .family-landing-hero,
  .activity-slug-telecom .family-landing-hero {
    --hero-text-color: #0B3B60 !important;
    --hero-para-color: #0B3B60 !important;
  }
  .activity-slug-drainage .family-landing-hero {
    --hero-text-color: #ffffff !important;
    --hero-para-color: #ffffff !important;
  }
}

@media (min-width: 992px) {
  .activity-slug-gaz .family-landing-hero,
  .activity-slug-telecom .family-landing-hero {
    --hero-text-color: #0B3B60 !important;
    --hero-text-shadow: none !important;
    --hero-para-color: #0B3B60 !important;
    --hero-para-shadow: none !important;
  }

  /* Google Translate wraps translated copy in nested <font> elements.
     Apply the final activity colour to the rendered text, not only the
     original heading/paragraph, so translated pages match French. */
  .activity-slug-gaz .family-landing-slide-title h1 font,
  .activity-slug-gaz .family-landing-slide-title h1 font font,
  .activity-slug-telecom .family-landing-slide-title h1 font,
  .activity-slug-telecom .family-landing-slide-title h1 font font {
    color: var(--hero-text-color) !important;
  }

  .activity-slug-gaz .family-landing-slide-title p font,
  .activity-slug-gaz .family-landing-slide-title p font font,
  .activity-slug-telecom .family-landing-slide-title p font,
  .activity-slug-telecom .family-landing-slide-title p font font {
    color: var(--hero-para-color) !important;
  }
  .activity-slug-drainage .family-landing-hero {
    --hero-text-color: #ffffff !important;
    --hero-text-shadow: 0 2px 18px rgba(0,0,0,.35) !important;
    --hero-para-color: #ffffff !important;
    --hero-para-shadow: 0 2px 14px rgba(0,0,0,.38) !important;
  }
  .activity-slug-irrigation .family-landing-hero {
    --hero-text-color: #ffffff !important;
    --hero-text-shadow: none !important;
    --hero-para-color: #ffffff !important;
    --hero-para-shadow: none !important;
  }

  /* Position Adjustment Only for Drainage on Desktop */
  .activity-slug-drainage .family-landing-hero .family-landing-slide-title {
    position: relative !important;
    top: -125px !important;
  }
}



/* =========================================================
   FULL-BLEED HERO BANNER & SLIDER FIX (2026-07-27)
   ========================================================= */
.family-landing-hero,
.family-landing-hero--slider,
.family-landing-hero--image-only,
.activity-product-page .family-landing-hero,
.activity-product-page .family-landing-hero.family-landing-hero--image-only {
  position: relative !important;
  width: 100% !important;
  height: clamp(340px, 45vw, 560px) !important;
  min-height: clamp(340px, 45vw, 560px) !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  background: #0b253a !important;
}

.family-hero-slides,
.family-hero-slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
}

.family-hero-slide img,
.family-landing-hero--image-only > img,
.activity-product-page .family-landing-hero.family-landing-hero--image-only > img,
.activity-product-page .family-hero-slide img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  z-index: 1 !important;
}

@media (max-width: 991px) {
  .family-landing-slide-title,
  .family-landing-hero .family-landing-slide-title,
  .family-landing-hero--slider .family-landing-slide-title,
  .activity-product-page .family-landing-hero .family-landing-slide-title {
    position: relative !important;
    z-index: 10 !important;
    margin: 0 0 20px 20px !important;
    padding: 16px 20px !important;
    width: min(90%, 420px) !important;
    max-width: min(90%, 420px) !important;
    background: rgba(11, 37, 58, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 14px !important;
    backdrop-filter: blur(8px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
  }

  .family-landing-slide-title h1,
  .family-landing-hero .family-landing-slide-title h1,
  .activity-product-page .family-landing-hero .family-landing-slide-title h1 {
    color: var(--hero-text-color, #ffffff) !important;
    font-size: clamp(20px, 5.5vw, 32px) !important;
    line-height: 1.15 !important;
    margin: 0 0 6px 0 !important;
    text-shadow: var(--hero-text-shadow, 0 2px 10px rgba(0, 0, 0, 0.5)) !important;
  }
  .family-landing-slide-title h1 *,
  .activity-product-page .family-landing-hero .family-landing-slide-title h1 * {
    color: inherit !important;
  }

  .family-landing-slide-title p,
  .family-landing-hero .family-landing-slide-title p,
  .activity-product-page .family-landing-hero .family-landing-slide-title p {
    color: var(--hero-para-color, rgba(255, 255, 255, 0.92)) !important;
    font-size: clamp(12px, 3.5vw, 15px) !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    text-shadow: var(--hero-para-shadow, 0 1px 4px rgba(0, 0, 0, 0.5)) !important;
  }
  .family-landing-slide-title p *,
  .activity-product-page .family-landing-hero .family-landing-slide-title p * {
    color: inherit !important;
  }
    margin: 0 !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5) !important;
  }
}

.family-hero-dots {
  position: absolute !important;
  bottom: 16px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 12 !important;
  display: flex !important;
  gap: 8px !important;
  margin: 0 !important;
}

.family-hero-nav {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 12 !important;
  background: rgba(255, 255, 255, 0.88) !important;
  color: #0b3a60 !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25) !important;
}

.family-hero-nav--prev { left: 14px !important; }
.family-hero-nav--next { right: 14px !important; }

@media (max-width: 768px) {
  .family-landing-slide-title,
  .family-landing-hero .family-landing-slide-title,
  .activity-product-page .family-landing-hero .family-landing-slide-title {
    margin: 0 12px 16px 12px !important;
    width: calc(100% - 24px) !important;
    max-width: none !important;
    padding: 12px 14px !important;
  }
}

/* Touch build: 1785169638.3691013 */


/* =========================================================
   ULTRA-HIGH SPECIFICITY MOBILE HERO HEIGHT FIX (2026-07-27)
   ========================================================= */
@media (max-width: 991px) {
  html body.activity-product-page .family-landing-hero,
  html body.activity-product-page .family-landing-hero.family-landing-hero--image-only,
  html body.activity-product-page .family-landing-hero--slider,
  html body .family-landing-hero.family-landing-hero--image-only,
  html body .family-landing-hero {
    height: 260px !important;
    min-height: 260px !important;
    max-height: 300px !important;
    padding: 12px !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: flex-end !important;
    box-sizing: border-box !important;
  }

  html body.activity-product-page .family-landing-hero img,
  html body.activity-product-page .family-landing-hero.family-landing-hero--image-only > img,
  html body.activity-product-page .family-hero-slide img,
  html body .family-landing-hero img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    z-index: 1 !important;
  }

  @media (max-width: 991px) {
    html body.activity-product-page .family-landing-hero .family-landing-slide-title,
    html body.activity-product-page .family-landing-hero.family-landing-hero--image-only .family-landing-slide-title,
    html body .family-landing-hero.family-landing-hero--image-only .family-landing-slide-title {
      position: relative !important;
      z-index: 4 !important;
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 !important;
      padding: 10px 12px !important;
      background: rgba(11, 37, 58, 0.82) !important;
      border: 1px solid rgba(255, 255, 255, 0.2) !important;
      border-radius: 10px !important;
      backdrop-filter: blur(6px) !important;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3) !important;
    }
  }

  html body.activity-product-page .family-landing-hero .family-landing-slide-title h1,
  html body.activity-product-page .family-landing-hero.family-landing-hero--image-only .family-landing-slide-title h1 {
    font-size: 19px !important;
    line-height: 1.15 !important;
    margin: 0 0 4px 0 !important;
    color: var(--hero-text-color, #ffffff) !important;
    text-shadow: var(--hero-text-shadow, 0 1px 4px rgba(0, 0, 0, 0.6)) !important;
  }
  html body.activity-product-page .family-landing-hero .family-landing-slide-title h1 *,
  html body.activity-product-page .family-landing-hero.family-landing-hero--image-only .family-landing-slide-title h1 * {
    color: inherit !important;
  }

  html body.activity-product-page .family-landing-hero .family-landing-slide-title p,
  html body.activity-product-page .family-landing-hero.family-landing-hero--image-only .family-landing-slide-title p {
    font-size: 12px !important;
    line-height: 1.35 !important;
    margin: 0 !important;
    color: var(--hero-para-color, rgba(255, 255, 255, 0.92)) !important;
    text-shadow: var(--hero-para-shadow, none) !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  html body.activity-product-page .family-landing-hero .family-landing-slide-title p *,
  html body.activity-product-page .family-landing-hero.family-landing-hero--image-only .family-landing-slide-title p * {
    color: inherit !important;
  }
}

/* Touch build: 1785169806.036189 */


/* Touch build: 1785169927.668528 */



/* =========================================================
   QUI SOMMES-NOUS - Mobile Hero Fix FINAL (2026-07-27)
   Header fixé en haut + titre sous le header + image plein écran
   ========================================================= */

/* Image toujours cover sur tous les écrans */
.page-template-page-qui-sommes-nous #hero-slider .slide-hero-cover-image {
  object-fit: cover !important;
  object-position: center center !important;
}

/* Mobile ≤ 560px : header topbar en haut fixe, contenu titre APRÈS header */
@media (max-width: 560px) {
  /* Topbar reste en haut */
  .page-template-page-qui-sommes-nous .alma-topbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    min-height: auto !important;
    height: auto !important;
  }

  /* Header nav juste sous la topbar */
  .page-template-page-qui-sommes-nous .alma-header {
    position: fixed !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999 !important;
  }

  /* Slide-inner: hauteur raisonnable + padding pour pousser titre sous le header */
  .page-template-page-qui-sommes-nous #hero-slider .slide-inner-hero-cover {
    min-height: 70svh !important;
    height: auto !important;
    padding: 180px 16px 70px !important;
    align-items: flex-start !important;
  }

  /* Titre: largeur pleine largeur */
  .page-template-page-qui-sommes-nous #hero-slider .slide-hero-content {
    width: 90% !important;
    max-width: 90% !important;
  }

  .page-template-page-qui-sommes-nous #hero-slider .slide-hero-content h1 {
    font-size: clamp(22px, 7.5vw, 30px) !important;
    line-height: 1.15 !important;
  }
}

/* Tablette 561px–900px */
@media (min-width: 561px) and (max-width: 900px) {
  .page-template-page-qui-sommes-nous #hero-slider .slide-inner-hero-cover {
    min-height: clamp(520px, 75svh, 640px) !important;
    padding: 200px 28px 88px !important;
  }

  .page-template-page-qui-sommes-nous #hero-slider .slide-hero-cover-image {
    object-fit: cover !important;
    object-position: center center !important;
  }
}


/* =========================================================
   CERTIFICATIONS PAGE - MOBILE FIXES (2026-07-27)
   ========================================================= */
@media (max-width: 700px) {

  /* --- CERTIFICATIONS SYSTÈME DE MANAGEMENT ---
     2 colonnes au lieu de 1, format compact */
  .cert-management-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  .cert-management-card {
    min-height: 160px !important;
    padding: 16px 12px !important;
    gap: 10px !important;
  }

  .cert-management-card img {
    width: 80px !important;
    height: 80px !important;
  }

  .cert-management-card p {
    font-size: 12px !important;
  }

  /* --- CERT PRODUCTS LIST ---
     1 colonne, images plus grandes, moins d'espace vide */
  .cert-products-list {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .cert-products-list article {
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    min-height: 100px !important;
    padding: 12px 14px !important;
    gap: 14px !important;
  }

  .cert-products-list article > img:first-child {
    width: 90px !important;
    height: 90px !important;
    flex-shrink: 0 !important;
    object-fit: cover !important;
    border-radius: 6px !important;
    mix-blend-mode: normal !important;
  }

  .cert-products-list strong {
    font-size: 14px !important;
    text-align: left !important;
    flex: 1 !important;
  }

  .cert-products-list .cert-product-pdf-overlay {
    position: static !important;
    opacity: 1 !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
  }

  .cert-products-list .cert-product-pdf-overlay span {
    font-size: 11px !important;
    padding: 8px 10px !important;
    min-height: 36px !important;
    white-space: nowrap !important;
  }
}




/* =========================================================
   EVENEMENTS / BLOG / AUTRES PAGES - Fix chevauchement header
   ========================================================= */
@media (max-width: 991px) {

  /* Evenements: pousser le contenu hero sous le header fixé */
  .page-template-page-evenements .evt-hero,
  .evt-hero {
    padding-top: 80px !important;
    align-items: flex-start !important;
  }

  .page-template-page-evenements .evt-hero-inner,
  .evt-hero-inner {
    padding-top: 20px !important;
  }

  /* Blog / Actualités */
  .page-template-page-blog-2 .blog-hero,
  .blog-hero {
    padding-top: 80px !important;
  }

  /* Réalisations */
  .page-template-page-realisations .real-hero,
  .real-hero {
    padding-top: 80px !important;
  }

  /* Activités autre / Certifications */
  .activities-other-page .activities-other-hero {
    padding-top: 0 !important;
  }
  .activities-other-page .activities-other-hero-content {
    padding-top: 80px !important;
  }

  /* Hamburger toujours visible sur toutes les pages */
  .alma-header .offcanvas-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  /* Logo ne doit pas chevaucher le titre: limiter la taille */
  .alma-header .logo img {
    max-height: 42px !important;
    height: 42px !important;
  }

  /* Alma-nav flex avec espace entre logo et hamburger */
  .alma-header .alma-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 0 16px !important;
  }
}

@media (max-width: 560px) {
  .evt-hero {
    min-height: auto !important;
    padding-top: 70px !important;
  }

  .evt-hero-inner {
    padding-top: 16px !important;
    padding-bottom: 40px !important;
  }

  .evt-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }
}


/* =========================================================
   FIX GLOBAL MOBILE - HEADER EN HAUT MAIS NE SUIT PAS LE SCROLL
   ========================================================= */
@media (max-width: 991px) {

  /* Header relatif: reste en haut de page mais défile avec le contenu */
  .alma-header,
  .alma-header.alma-header--hero-overlay {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    z-index: 9999 !important;
  }

  /* Hamburger toujours visible */
  .alma-header .offcanvas-toggle,
  .alma-header.alma-header--hero-overlay .offcanvas-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  /* Logo compact pour ne pas chevaucher le contenu */
  .alma-header .logo img {
    max-height: 42px !important;
    height: 42px !important;
  }

  /* Nav bien espacée entre logo et hamburger */
  .alma-header .alma-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 0 16px !important;
  }

  /* Retirer les padding-top ajoutés pour compenser le fixed */
  .evt-hero,
  .page-hero,
  .activities-other-hero {
    padding-top: 0 !important;
  }
}

/* =========================================================
   HAMBURGER ICON - COULEUR BLEU ALMA (mobile)
   ========================================================= */
@media (max-width: 991px) {
  .alma-header .offcanvas-toggle,
  .alma-header.alma-header--hero-overlay .offcanvas-toggle {
    color: #0b3a60 !important;
  }

  .alma-header .offcanvas-toggle svg,
  .alma-header.alma-header--hero-overlay .offcanvas-toggle svg {
    stroke: #0b3a60 !important;
    fill: none !important;
    color: #0b3a60 !important;
  }

  .alma-header .offcanvas-toggle svg path,
  .alma-header .offcanvas-toggle svg line,
  .alma-header .offcanvas-toggle svg rect,
  .alma-header.alma-header--hero-overlay .offcanvas-toggle svg path,
  .alma-header.alma-header--hero-overlay .offcanvas-toggle svg line,
  .alma-header.alma-header--hero-overlay .offcanvas-toggle svg rect {
    stroke: #0b3a60 !important;
    fill: none !important;
  }

  /* Span bars style burger si utilisé */
  .alma-header .offcanvas-toggle span,
  .alma-header.alma-header--hero-overlay .offcanvas-toggle span {
    background-color: #0b3a60 !important;
  }
}


/* =========================================================
   DESKTOP HERO FIX - RETRAIT DU CADRE SOMBRE DESKOP (2026-07-28)
   ========================================================= */
@media (min-width: 992px) {
  .family-landing-hero,
  .family-landing-hero--slider,
  .family-landing-hero--image-only,
  .activity-product-page .family-landing-hero,
  .activity-product-page .family-landing-hero.family-landing-hero--image-only {
    align-items: flex-end !important;
    padding-bottom: clamp(30px, 5vw, 75px) !important;
  }

  html body.activity-product-page .family-landing-hero .family-landing-slide-title,
  html body.activity-product-page .family-landing-hero.family-landing-hero--image-only .family-landing-slide-title,
  html body .family-landing-hero.family-landing-hero--image-only .family-landing-slide-title,
  .family-landing-slide-title {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-left: clamp(16px, 4vw, 64px) !important;
    max-width: clamp(300px, 85vw, 980px) !important;
  }
}


/* =========================================================
   ALMAFLOW GREEN CURSOR & ENLARGED HEADER LOGO FIXES (2026-07-28)
   ========================================================= */

/* 1. Hide the second floating logo in the hero sections */
.almaflow-site .aflow-slide-hero-logo,
.almaflow-site .aflow-landing-copy .aflow-slide-hero-logo,
.almaflow-site .slide-hero-content .aflow-slide-hero-logo,
.almaflow-site img.aflow-slide-hero-logo {
  display: none !important;
}

/* 2. Enlarge the AlmaFlow logo in the header and prevent constraints from shrinking it */
html body.almaflow-site .alma-header .logo,
html body.almaflow-site .alma-nav .logo,
body.almaflow-site .alma-header .logo,
body.almaflow-site .alma-nav .logo {
  max-width: 250px !important;
  width: auto !important;
}

html body.almaflow-site .alma-header .logo img,
html body.almaflow-site .alma-nav .logo img,
body.almaflow-site .alma-header .logo img,
body.almaflow-site .alma-nav .logo img,
.almaflow-site .logo img,
.almaflow-site a.logo img,
.almaflow-site .almaflow-header-logo {
  height: 80px !important;
  max-height: 85px !important;
  max-width: 250px !important;
  width: auto !important;
  object-fit: contain !important;
}

/* 3. Responsive sizing for the header logo on mobile screen sizes */
@media (max-width: 991px) {
  html body.almaflow-site .alma-header .logo,
  html body.almaflow-site .alma-nav .logo {
    max-width: 170px !important;
  }
  html body.almaflow-site .alma-header .logo img,
  html body.almaflow-site .alma-nav .logo img {
    height: 55px !important;
    max-height: 60px !important;
    max-width: 170px !important;
  }
}

/* 4. Custom Green Water Drop Cursor for AlmaFlow pages */
body.almaflow-site .water-drop-cursor,
.almaflow-site .water-drop-cursor {
  background:
    radial-gradient(circle at 31% 28%, rgba(255,255,255,0.96) 0 13%, rgba(255,255,255,0.42) 14% 31%, transparent 33%),
    linear-gradient(135deg, rgba(90,210,130,0.96), rgba(36,131,70,0.94)) !important;
  border: 2px solid rgba(255,255,255,0.96) !important;
  box-shadow:
    0 0 0 1px rgba(20,70,40,0.34),
    0 10px 26px rgba(20,70,40,0.34),
    inset 0 0 14px rgba(255,255,255,0.28) !important;
}

body.almaflow-site .water-drop-cursor.hover,
.almaflow-site .water-drop-cursor.hover {
  background:
    radial-gradient(circle at 31% 28%, #fff 0 12%, rgba(255,255,255,0.38) 13% 31%, transparent 34%),
    linear-gradient(135deg, #2ea46a, #248346) !important;
  border-color: #fff !important;
  box-shadow:
    0 0 0 2px rgba(36,131,70,0.42),
    0 14px 34px rgba(20,70,40,0.42),
    inset 0 0 16px rgba(255,255,255,0.32) !important;
}

body.almaflow-site .water-ripple,
.almaflow-site .water-ripple {
  border-color: rgba(36,131,70,0.52) !important;
  background: radial-gradient(circle, rgba(90,210,130,0.26) 0%, rgba(36,131,70,0.12) 44%, transparent 72%) !important;
}


/* =========================================================
   TOPBAR VISIBILITY & HERO TEXT POSITION TUNING (2026-07-28)
   ========================================================= */

/* Lower the hero text and paragraph slightly on desktop by using bottom-alignment with padding */
@media (min-width: 992px) {
  .family-landing-hero,
  .family-landing-hero--slider,
  .family-landing-hero--image-only,
  .activity-product-page .family-landing-hero,
  .activity-product-page .family-landing-hero.family-landing-hero--image-only {
    align-items: flex-end !important;
    padding-bottom: clamp(30px, 5vw, 75px) !important;
  }
}

/* Ensure the topbar (Catalogue button, Socials, EN/FR language switcher) is shown on AlmaFlow pages on desktop */
@media (min-width: 992px) {
  html body.almaflow-site .alma-topbar,
  body.almaflow-site .alma-topbar {
    display: block !important;
  }
  
  html body.almaflow-site .alma-header,
  body.almaflow-site .alma-header {
    top: 38px !important;
  }
  
  html body.almaflow-site .alma-topbar .lang,
  body.almaflow-site .alma-topbar .lang,
  html body.almaflow-site .lang,
  body.almaflow-site .lang {
    display: inline-flex !important;
  }
  
  html body.almaflow-site .alma-topbar .tb-left,
  body.almaflow-site .alma-topbar .tb-left {
    display: none !important; /* Hide left address column to keep it clean */
  }
  
  html body.almaflow-site .alma-topbar .tb-right,
  body.almaflow-site .alma-topbar .tb-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
  }
  
  html body.almaflow-site .alma-topbar .tb-actions,
  body.almaflow-site .alma-topbar .tb-actions {
    display: inline-flex !important;
  }
}


/* =========================================================
   ALMAFLOW LAYOUT AND TOPBAR ALIGNMENT CORRECTIONS (2026-07-28)
   ========================================================= */

/* Move the main landing copy (.aflow-landing-copy) and sub-page hero content down a bit on desktop */
@media (min-width: 992px) {
  html body.almaflow-site .aflow-landing-copy,
  body.almaflow-site .aflow-landing-copy,
  .page-template-page-almaflow .aflow-landing-copy,
  .almaflow-site .slide-hero-content {
    margin-top: 50px !important;
  }
}

/* Align the topbar container contents to the right side of the screen on all AlmaFlow pages */
html body.almaflow-site .alma-topbar .tb-inner,
body.almaflow-site .alma-topbar .tb-inner,
.page-template-page-almaflow .alma-topbar .tb-inner {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  width: 100% !important;
}


/* =========================================================
   ALMAFLOW TRANSPARENT HERO OVERLAY HEADER & TOPBAR (2026-07-28)
   ========================================================= */

/* Ensure the topbar content container stretches fully and aligns items to the right */
html body.almaflow-site .alma-topbar .tb-inner,
body.almaflow-site .alma-topbar .tb-inner,
.page-template-page-almaflow .alma-topbar .tb-inner {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 1320px !important;
  margin: 0 auto !important;
  padding-inline: clamp(10px, 1vw, 20px) !important;
  height: 100% !important;
  box-sizing: border-box !important;
}

/* =========================================================
   ALMAFLOW HERO OVERLAY — SOLUTION DÉFINITIVE
   Le .alma-header EST CACHÉ sur la page AlmaFlow (ses nav-links
   sont de toute façon masqués). Seul le .alma-topbar reste visible
   comme barre de navigation sticky.
   ========================================================= */

/* 1. Header AlmaFlow (Logo + Actions) : Fixe et transparent sur le hero */
body.almaflow-site .alma-header {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  position: absolute !important;
  top: 48px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1001 !important;
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

body.almaflow-site .alma-header .alma-nav {
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* 2. Au scroll : Masquer entièrement le header pour éviter la barre blanche */
body.almaflow-site .alma-header.is-scrolled {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* 3. Topbar (Langues, Social, Catalogue) */
body.almaflow-site .alma-topbar {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 48px !important;
  z-index: 1005 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  display: block !important;
}

body.almaflow-site.hero-overlay-scrolled .alma-topbar {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

/* 4. Contenu du topbar aligné à droite */
body.almaflow-site .alma-topbar .tb-inner {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding-left: clamp(16px, 3vw, 48px) !important;
  padding-right: clamp(16px, 3vw, 48px) !important;
  box-sizing: border-box !important;
}

/* 5. Mobile: cacher le topbar (pas de place) */
@media (max-width: 767px) {
  body.almaflow-site .alma-topbar {
    display: none !important;
  }
}

/* 6. Fix overflow et chevauchement des slides Swiper du hero */
body.almaflow-site #aflow-hero-slider,
body.almaflow-site .aflow-hero-slider {
  overflow: hidden !important;
  position: relative !important;
  z-index: 1 !important;
}

body.almaflow-site #aflow-hero-slider .swiper-wrapper {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
}

body.almaflow-site #aflow-hero-slider .swiper-slide {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
  background-image: var(--aflow-slide-image) !important;
  will-change: opacity, transform !important;
}

body.almaflow-site #aflow-hero-slider .swiper-slide:not(.swiper-slide-active) {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body.almaflow-site #aflow-hero-slider .swiper-slide.swiper-slide-active {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* =========================================================
   ALMAFLOW MAIN HERO SLIDER HEIGHT ENLARGEMENT (2026-07-28)
   ========================================================= */

@media (min-width: 992px) {
  /* Enlarge the height of the main AlmaFlow landing page hero slider on desktop */
  html body.almaflow-site .aflow-page #aflow-hero-slider,
  body.almaflow-site .aflow-page #aflow-hero-slider,
  .aflow-page #aflow-hero-slider,
  .aflow-page #aflow-hero-slider .swiper-wrapper,
  .aflow-page #aflow-hero-slider .swiper-slide {
    height: clamp(520px, 46vw, 680px) !important;
    min-height: clamp(520px, 46vw, 680px) !important;
  }

  /* Center the content vertically inside the enlarged slider slide, with padding to offset the header */
  html body.almaflow-site .aflow-page #aflow-hero-slider .aflow-landing-inner,
  body.almaflow-site .aflow-page #aflow-hero-slider .aflow-landing-inner,
  .aflow-page #aflow-hero-slider .aflow-landing-inner {
    height: 100% !important;
    min-height: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-top: 100px !important;
    padding-bottom: 40px !important;
    box-sizing: border-box !important;
  }
  
  /* Reset margin-top since alignment is handled by flex center */
  html body.almaflow-site .aflow-landing-copy,
  body.almaflow-site .aflow-landing-copy,
  .page-template-page-almaflow .aflow-landing-copy {
    margin-top: 0 !important;
  }
}

/* =========================================================
   CATALOGUE FILTER BAR MOBILE SCROLL & FAMILY CARD HEIGHT UNIFICATION (2026-07-28)
   ========================================================= */

/* 1. Mobile Filter Bar Scroll for standard services pages (<= 991px) */
@media (max-width: 991px) {
  .activity-product-container--alma-shop .activity-product-filter-bar {
    display: flex !important;
    flex-flow: row nowrap !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: -15px !important;
    margin-right: -15px !important;
    padding: 8px 15px 12px !important;
    gap: 8px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x proximity !important;
    box-sizing: border-box !important;
    position: static !important;
  }

  .activity-product-container--alma-shop .activity-product-filter-bar::-webkit-scrollbar {
    display: none !important;
  }

  .activity-product-container--alma-shop .activity-product-filter-bar .activity-side-label {
    display: none !important;
  }

  .activity-product-container--alma-shop .activity-product-filter-bar a {
    flex: 0 0 auto !important;
    min-width: auto !important;
    min-height: 40px !important;
    padding: 9px 16px !important;
    border: 1.5px solid color-mix(in srgb, var(--activity-color, #1D83C1) 30%, #fff) !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: var(--activity-color, #1D83C1) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 12px rgba(11,59,96,.05) !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
  }

  .activity-product-container--alma-shop .activity-product-filter-bar a.active {
    border-color: var(--activity-color, #1D83C1) !important;
    background: color-mix(in srgb, var(--activity-color, #1D83C1) 12%, #fff) !important;
    color: var(--activity-color, #1D83C1) !important;
    font-weight: 700 !important;
  }
}

/* 2. Unify Card Heights & Prevent Letter wrapping on desktop (>= 861px) */
@media (min-width: 861px) {
  .family-card {
    height: 260px !important;
  }
  
  .family-card h3 {
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }
}

/* AlmaFlow Domestic Category Cards - Layout Optimization */
@media (min-width: 992px) {
  .aflow-domestic-page .activity-product-grid--catalog {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .aflow-domestic-page .aflow-domestic-category-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    min-height: 250px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.3s ease !important;
  }

  .aflow-domestic-page .aflow-domestic-category-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px rgba(11, 59, 96, 0.08) !important;
    border-color: #248346 !important;
  }

  .aflow-domestic-page .aflow-domestic-category-card .activity-product-card-img {
    width: 320px !important;
    min-width: 320px !important;
    max-width: 320px !important;
    height: auto !important;
    min-height: 100% !important;
    background: #f7fbfd !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-right: 1px solid #e2e8f0 !important;
    border-radius: 0 !important;
    padding: 24px !important;
    overflow: hidden !important;
  }

  .aflow-domestic-page .aflow-domestic-category-card .activity-product-card-img img {
    width: 100% !important;
    height: 100% !important;
    max-width: 220px !important;
    max-height: 180px !important;
    object-fit: contain !important;
    transition: transform 0.5s ease !important;
  }

  .aflow-domestic-page .aflow-domestic-category-card .activity-product-card-body {
    padding: 32px 40px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    flex: 1 1 auto !important;
  }

  .aflow-domestic-page .aflow-domestic-category-card .activity-product-card-body h3 {
    font-size: 1.45rem !important;
    margin: 4px 0 10px 0 !important;
    color: #0b253a !important;
  }

  .aflow-domestic-page .aflow-domestic-category-card .activity-product-card-body p {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    color: #536474 !important;
    margin-bottom: 20px !important;
    max-width: 620px !important;
  }
}

/* Service Landing Pages Typography Overrides (e.g. /services/drainage/, /services/eau-potable/, etc.) */
body.activity-product-page:not(.activity-family-view) .family-landing-hero .family-landing-slide-title {
  width: min(90%, 680px) !important;
  max-width: min(90%, 680px) !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body.activity-product-page:not(.activity-family-view) .family-landing-hero .family-landing-slide-title h1 {
  font-size: clamp(32px, 3.8vw, 54px) !important;
  line-height: 1.15 !important;
  margin-bottom: 14px !important;
}

body.activity-product-page:not(.activity-family-view) .family-landing-hero .family-landing-slide-title p {
  font-size: clamp(15px, 1.2vw, 18px) !important;
  line-height: 1.55 !important;
  -webkit-line-clamp: unset !important;
  overflow: visible !important;
}

@media (max-width: 767px) {
  body.activity-product-page:not(.activity-family-view) .family-landing-hero .family-landing-slide-title h1 {
    font-size: clamp(26px, 7vw, 32px) !important;
  }
  body.activity-product-page:not(.activity-family-view) .family-landing-hero .family-landing-slide-title p {
    font-size: clamp(14px, 4vw, 15px) !important;
  }
}

/* ALMA mobile reclamation modal scroll fix - 2026-08-13 */
@media (max-width: 767px) {
  .reclamation-modal {
    align-items: flex-end !important;
    padding: 8px !important;
    overflow: hidden !important;
  }

  .reclamation-modal .rm-dialog {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: calc(100dvh - 16px) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    border-radius: 18px 18px 10px 10px !important;
  }

  .reclamation-modal .rm-content {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    overflow: visible !important;
  }

  .reclamation-modal .rm-left-text {
    padding: 24px 18px 16px !important;
  }

  .reclamation-modal .rm-left-photo,
  .reclamation-modal .rm-right-icon {
    display: none !important;
  }

  .reclamation-modal .rm-right {
    padding: 28px 18px 24px !important;
    border-radius: 0 0 10px 10px !important;
    box-shadow: none !important;
  }

  .reclamation-modal .rm-close {
    position: sticky !important;
    float: right;
    top: 8px !important;
    right: 8px !important;
    margin: 8px 8px -40px auto !important;
    z-index: 20 !important;
  }

  .reclamation-modal .rm-form,
  .reclamation-modal .rm-row {
    gap: 12px !important;
  }

  .reclamation-modal .rm-form input,
  .reclamation-modal .rm-form select,
  .reclamation-modal .rm-form textarea {
    min-height: 44px !important;
    font-size: 16px !important;
  }

  .reclamation-modal .rm-submit {
    width: 100% !important;
    min-height: 48px !important;
  }
}
