﻿/* =========================================
   VENS — Site 2026
   ========================================= */

:root {
  --green:       #56B91A;
  --green-dark:  #429012;
  --green-light: #78D040;
  --green-glow:  rgba(86,185,26,.15);
  --dark:        #111820;
  --dark-2:      #1A2330;
  --dark-3:      #243040;
  --gray-700:    #374151;
  --gray-600:    #4B5563;
  --gray-500:    #6B7280;
  --gray-300:    #D1D5DB;
  --gray-100:    #F3F4F6;
  --gray-50:     #F9FAFB;
  --white:       #FFFFFF;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(0,0,0,.08);
  --shadow-md:   0 8px 40px rgba(0,0,0,.14);
  --shadow-lg:   0 24px 80px rgba(0,0,0,.22);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
  --max-w:       1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); line-height: 1.65; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
p { text-align: justify; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- TYPOGRAPHY ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(86,185,26,.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-dark:hover {
  background: var(--green);
  color: var(--white);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
}

/* ---- HEADER / NAV ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(17,24,32,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,.3);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}
.nav-link:hover,
.nav-item:hover .nav-link {
  color: var(--white);
  background: rgba(255,255,255,.06);
}
.nav-link svg { transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 8px;
  padding-top: 16px;
  margin-top: 0;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all var(--transition);
  pointer-events: none;
}
/* Pont invisible entre le lien et le dropdown */
.dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all var(--transition);
}
.dropdown a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0;
  transition: opacity var(--transition);
  flex-shrink: 0;
}
.dropdown a:hover {
  color: var(--white);
  background: rgba(255,255,255,.06);
}
.dropdown a:hover::before { opacity: 1; }

/* Nav right */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.nav-phone {
  color: rgba(255,255,255,.7);
  font-size: .875rem;
  font-weight: 500;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone:hover { color: var(--green); }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 0;
  background: var(--dark);
  z-index: 99;
  overflow-y: auto;
  padding: 24px 32px 48px;
}
.mobile-menu.open { display: block; }
.mobile-menu .m-section { margin-bottom: 24px; }
.mobile-menu .m-heading {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.mobile-menu a {
  display: block;
  padding: 10px 0;
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--green); }
.mobile-menu .m-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 24px;
  border-bottom: none;
}

/* ---- HERO (homepage) ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/common/stockage-dynamique-vetements-trolleys.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(.45);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,24,32,.7) 0%, rgba(17,24,32,.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 32px 80px;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(86,185,26,.15);
  border: 1px solid rgba(86,185,26,.3);
  color: var(--green-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero h1 {
  color: var(--white);
  max-width: 780px;
  margin-bottom: 24px;
  font-weight: 800;
}
.hero h1 em {
  color: var(--green);
  font-style: normal;
}
.hero-sub {
  color: rgba(255,255,255,.72);
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
  text-align: left;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll svg { opacity: .5; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--dark);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .15;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .section-label { margin-bottom: 16px; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; max-width: 700px; }
.page-hero p {
  color: rgba(255,255,255,.65);
  font-size: 1.1rem;
  max-width: 560px;
  text-align: left;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,.45); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: rgba(255,255,255,.6); }

/* ---- PRODUCTS GRID (homepage) ---- */
.products-section { padding: 96px 0; }
.products-section + .products-section { padding-top: 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
}
.section-head h2 { color: var(--dark); }
.section-head a {
  color: var(--green);
  font-weight: 600;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: gap var(--transition);
}
.section-head a:hover { gap: 10px; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-100);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-100);
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card-image img { transform: scale(1.06); }
.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-cat {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.35;
}
.card p {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--green);
  font-weight: 600;
  font-size: .875rem;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; }
.card-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.card:hover { cursor: pointer; }

/* ---- SECTORS ---- */
.sectors-section {
  background: var(--dark);
  padding: 96px 0;
}
.sectors-section .section-label { color: var(--green); }
.sectors-section h2 { color: var(--white); margin-bottom: 16px; }
.sectors-section .section-intro {
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin-bottom: 64px;
  font-size: 1rem;
  text-align: left;
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.sector-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 28px 16px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.sector-card:hover {
  background: rgba(86,185,26,.1);
  border-color: rgba(86,185,26,.3);
  transform: translateY(-4px);
}
.sector-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(86,185,26,.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: background var(--transition);
}
.sector-card:hover .sector-icon {
  background: rgba(86,185,26,.22);
}
.sector-name {
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ---- STATS ---- */
.stats-section {
  padding: 80px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item { padding: 24px; }
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-label {
  font-size: .875rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- PRODUCT PAGE ---- */
.product-section { padding: 96px 0; }
.product-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.product-intro.reverse { direction: rtl; }
.product-intro.reverse > * { direction: ltr; }
.product-intro-text .product-name {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.product-intro-text .product-name strong {
  font-weight: 800;
  color: var(--green);
}
.product-intro-text h2 { margin-bottom: 20px; color: var(--dark); }
.product-intro-text p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}
.product-intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 320px;
}
.product-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Avantages / Features */
.features-section {
  background: var(--gray-50);
  padding: 96px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), var(--shadow);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--green-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.feature-card h3 { color: var(--dark); margin-bottom: 12px; font-size: 1rem; }
.feature-card p { color: var(--gray-600); font-size: .875rem; line-height: 1.7; }

/* Feature card with photo */
.feature-card--img {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.feature-card--img .feature-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.feature-card--img .feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.feature-card--img:hover .feature-card-img img {
  transform: scale(1.05);
}
.feature-card--img .feature-card-body {
  padding: 28px 28px 32px;
  flex: 1;
}
.feature-card--img .feature-card-body h3 {
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 1rem;
}
.feature-card--img .feature-card-body p {
  color: var(--gray-600);
  font-size: .875rem;
  line-height: 1.7;
}

/* ---- VIDEO SECTION ---- */
.video-section {
  padding: 96px 0;
  background: var(--gray-50);
}
.video-section .section-label { margin-bottom: 12px; }
.video-section h2 { margin-bottom: 40px; }
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-wrapper .video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-wrapper .video-play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.2);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.video-wrapper .video-play:hover {
  background: rgba(0,0,0,.35);
}
.video-wrapper .video-play svg {
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.5));
  transition: transform var(--transition);
}
.video-wrapper .video-play:hover svg {
  transform: scale(1.12);
}

/* Fonctionnement */
.process-section { padding: 96px 0; }
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  align-items: start;
  margin-top: 56px;
}
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--gray-100);
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-body h3 { color: var(--dark); margin-bottom: 8px; font-size: 1rem; }
.step-body p { color: var(--gray-600); font-size: .875rem; line-height: 1.7; }

.process-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
  min-height: 320px;
}
.process-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Secteurs d'application */
.app-sectors {
  background: var(--dark-2);
  padding: 96px 0;
}
.app-sectors .section-label { color: var(--green); }
.app-sectors h2 { color: var(--white); margin-bottom: 48px; }
.sectors-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.sector-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px;
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  font-weight: 500;
  transition: all var(--transition);
}
.sector-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.sector-pill:hover {
  background: rgba(86,185,26,.12);
  border-color: rgba(86,185,26,.3);
  color: var(--white);
}

/* Specs list */
.specs-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}
.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
}
.spec-item:first-child { border-top: 1px solid var(--gray-100); }
.spec-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.spec-check svg { color: var(--green); }
.spec-item p { color: var(--gray-700); font-size: .9rem; line-height: 1.6; }

/* ---- CONTACT ---- */
.contact-section { padding: 96px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { color: var(--dark); margin-bottom: 20px; }
.contact-info > p {
  color: var(--gray-600);
  margin-bottom: 48px;
  line-height: 1.7;
  text-align: left;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.contact-detail-body strong {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.contact-detail-body span {
  color: var(--dark);
  font-weight: 500;
  font-size: .95rem;
}
.contact-detail-body a {
  color: var(--dark);
  transition: color var(--transition);
}
.contact-detail-body a:hover { color: var(--green); }

/* Form */
.contact-form-wrap {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--gray-100);
}
.contact-form-wrap h3 { color: var(--dark); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: .04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* Validation states */
.form-group input.field-invalid,
.form-group select.field-invalid,
.form-group textarea.field-invalid {
  border-color: #E53E3E;
  box-shadow: 0 0 0 3px rgba(229,62,62,.12);
}
.form-group input.field-valid,
.form-group select.field-valid,
.form-group textarea.field-valid {
  border-color: var(--green);
}
.field-error {
  display: block;
  font-size: .78rem;
  color: #E53E3E;
  margin-top: 5px;
  font-weight: 500;
}

.form-note {
  font-size: .78rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.form-success {
  display: none;
  background: rgba(86,185,26,.1);
  border: 1px solid rgba(86,185,26,.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--green-dark);
  font-weight: 600;
  font-size: .9rem;
  margin-top: 16px;
  text-align: center;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--dark);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer-brand img { height: 36px; margin-bottom: 20px; }
.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: .875rem;
  line-height: 1.7;
  max-width: 280px;
  text-align: left;
}
.footer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 600;
  font-size: 1rem;
  margin-top: 20px;
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--green-light); }

.footer-col h4 {
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  color: rgba(255,255,255,.5);
  font-size: .875rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a::before {
  content: '→';
  font-size: .7rem;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateX(-4px);
  color: var(--green);
}
.footer-col ul a:hover {
  color: rgba(255,255,255,.9);
}
.footer-col ul a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span {
  color: rgba(255,255,255,.5);
  font-size: .875rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p {
  color: rgba(255,255,255,.35);
  font-size: .8rem;
  text-align: left;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,.35);
  font-size: .8rem;
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--green); }

/* ---- ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  /* Nav → burger at tablet/medium */
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }

  .cards-grid { grid-template-columns: 1fr 1fr; }
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .product-intro { gap: 48px; }
  .contact-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }

  /* Hero homepage */
  .hero-content { padding: 100px 20px 64px; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 32px; }
  .hero-tag { font-size: .7rem; }

  /* Page hero (inner pages) */
  .page-hero { padding: 96px 0 44px; }
  .page-hero h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .page-hero p { font-size: 1rem; }
  .breadcrumb { font-size: .75rem; }

  /* Grids */
  .cards-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Product pages */
  .product-intro { grid-template-columns: 1fr; gap: 36px; }
  .product-intro.reverse { direction: ltr; }
  .features-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-image { display: none; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-col {
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.06);
  }
  .footer-brand { padding-bottom: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

  /* Sections padding */
  .section-head { flex-direction: column; align-items: flex-start; }
  .products-section { padding: 56px 0; }
  .sectors-section { padding: 56px 0; }
  .sectors-section .section-intro { margin-bottom: 40px; }
  .stats-section { padding: 48px 0; }
  .features-section, .process-section, .app-sectors { padding: 56px 0; }
  .product-section { padding: 56px 0; }
  .video-section { padding: 56px 0; }
  .contact-section { padding: 56px 0; }
  .cta-band { padding: 52px 0; }
}

@media (max-width: 480px) {
  /* Hero */
  .hero-content { padding: 88px 20px 56px; }
  .hero h1 { font-size: 1.85rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2.2rem; }
  .stat-item { padding: 16px 8px; }

  /* Sectors */
  .sectors-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .sector-card { padding: 20px 10px; }
  .sector-icon { width: 44px; height: 44px; font-size: 1.3rem; margin-bottom: 10px; }
  .sector-name { font-size: .72rem; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; max-width: 320px; }

  /* Product intro button */
  .product-intro .btn { width: 100%; justify-content: center; }
}

/* ---- COOKIE BANNER ---- */
.ck-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 -8px 40px rgba(0,0,0,.35);
  padding: 20px 0;
  animation: ckSlideUp .35s cubic-bezier(.4,0,.2,1);
}
.ck-banner--out {
  animation: ckSlideDown .35s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes ckSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes ckSlideDown {
  from { transform: translateY(0);    opacity: 1; }
  to   { transform: translateY(100%); opacity: 0; }
}
.ck-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.ck-banner__text { flex: 1; }
.ck-banner__text strong {
  display: block;
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.ck-banner__text p {
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  line-height: 1.55;
  text-align: left;
  margin: 0;
}
.ck-banner__text a { color: var(--green); text-decoration: underline; }
.ck-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Boutons cookie */
.ck-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.ck-btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.ck-btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}
.ck-btn--outline {
  background: transparent;
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.2);
}
.ck-btn--outline:hover {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.ck-btn--dark {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: transparent;
}
.ck-btn--dark:hover { background: rgba(255,255,255,.14); }
.ck-btn--text {
  background: transparent;
  color: rgba(255,255,255,.45);
  border-color: transparent;
  font-size: .8rem;
  padding: 10px 14px;
}
.ck-btn--text:hover { color: var(--white); }

/* Modale */
.ck-modal { display: none; position: fixed; inset: 0; z-index: 10000; }
.ck-modal--open { display: block; }
.ck-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
}
.ck-modal__box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg);
}
.ck-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: sticky;
  top: 0;
  background: var(--dark-2);
  z-index: 1;
}
.ck-modal__header h3 { color: var(--white); font-size: 1.05rem; }
.ck-modal__close {
  background: none;
  border: none;
  color: rgba(255,255,255,.45);
  font-size: .95rem;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
  transition: color var(--transition);
  line-height: 1;
}
.ck-modal__close:hover { color: var(--white); }

/* Préférences */
.ck-pref {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.ck-pref:last-child { border-bottom: none; }
.ck-pref__info { flex: 1; }
.ck-pref__info strong {
  display: block;
  color: var(--white);
  font-size: .875rem;
  margin-bottom: 4px;
}
.ck-pref__info p {
  color: rgba(255,255,255,.45);
  font-size: .78rem;
  line-height: 1.5;
  text-align: left;
  margin: 0;
}
.ck-always-on {
  font-size: .72rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Toggle switch */
.ck-toggle {
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  display: inline-block;
}
.ck-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.ck-toggle__track {
  display: block;
  width: 46px;
  height: 26px;
  background: rgba(255,255,255,.12);
  border-radius: 100px;
  position: relative;
  transition: background var(--transition);
}
.ck-toggle__track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  transition: transform var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.ck-toggle input:checked + .ck-toggle__track { background: var(--green); }
.ck-toggle input:checked + .ck-toggle__track::after { transform: translateX(20px); }

.ck-modal__footer {
  display: flex;
  gap: 10px;
  padding: 20px 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.15);
  flex-wrap: wrap;
  justify-content: flex-end;
  position: sticky;
  bottom: 0;
}

/* Responsive cookie */
@media (max-width: 768px) {
  .ck-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 20px;
  }
  .ck-banner__actions { width: 100%; flex-wrap: wrap; }
  .ck-banner__actions .ck-btn--primary,
  .ck-banner__actions .ck-btn--outline { flex: 1; }
  .ck-modal__footer { flex-direction: column; }
  .ck-modal__footer .ck-btn { width: 100%; }
}
