:root {
  --navy: #0A1628;
  --navy-light: #142238;
  --accent: #2563EB;
  --accent-hover: #1D4ED8;
  --text-primary: #0F172A;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
  --surface: #F8FAFC;
  --border: #E2E8F0;
  --white: #FFFFFF;
  --success: #059669;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background: var(--white);
}

/* ============ HEADER ============ */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 24px;
}

.logo img {
  height: 84px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav > a,
.nav-dropdown > .nav-dropdown-toggle {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav > a:hover,
.nav-dropdown > .nav-dropdown-toggle:hover,
.nav > a.active,
.nav-dropdown > .nav-dropdown-toggle.active {
  color: var(--accent);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  min-width: 200px;
  padding: 8px 0;
  z-index: 200;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s;
}

.nav-dropdown-menu a:hover {
  background: var(--surface);
  color: var(--accent);
}

.nav-dropdown-menu .catalogue-link {
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 12px;
  font-weight: 600;
  color: var(--accent);
}

.nav-dropdown-menu .catalogue-link img {
  height: 18px;
  width: auto;
}

/* Catalogue card on pages */
.catalogue-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 28px 32px;
  text-decoration: none;
  transition: all 0.3s;
  max-width: 600px;
  margin: 0 auto;
}

.catalogue-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,99,235,0.15);
}

.catalogue-card img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}

.catalogue-card-text h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.catalogue-card-text p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.catalogue-card-arrow {
  margin-left: auto;
  color: var(--accent);
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.2s;
}

.lang-toggle:hover {
  background: var(--surface);
  color: var(--text-primary);
}

.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
}

.search-toggle:hover {
  background: var(--surface);
  color: var(--text-primary);
}

.search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 300;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
}

.search-overlay.open {
  display: flex;
}

.search-box {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.search-box input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.search-box input:focus {
  border-color: var(--accent);
}

.btn-secondary {
  padding: 10px 20px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-secondary:hover {
  background: var(--surface);
}

.btn-primary {
  padding: 10px 24px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  padding: 8px;
}

/* ============ ANIMATIONS ============ */
@keyframes kenBurns {
  0% { transform: scale(1) translateX(0); }
  50% { transform: scale(1.1) translateX(-2%); }
  100% { transform: scale(1) translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ============ HERO ============ */
.hero {
  padding: 148px 24px 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 550px;
}

.hero-slider {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  animation: kenBurns 20s ease-in-out infinite;
}

.hero-slide.active {
  opacity: 0.85;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.5) 40%, rgba(10,22,40,0.45) 60%, rgba(10,22,40,0.7) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 0%, transparent 50%, rgba(10,22,40,0.5) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.hero-certs {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.1s both;
}

.hero-cert {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
}

.hero-cert-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 9px;
  flex-shrink: 0;
}

.hero-content h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content h1 span {
  color: #60A5FA;
  background: linear-gradient(90deg, #60A5FA, #93C5FD, #60A5FA);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-product-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  animation: fadeInUp 1s ease-out 0.7s both;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.btn-hero-primary {
  padding: 16px 32px;
  background: var(--accent);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-hero-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,99,235,0.4);
}

.btn-hero-outline {
  padding: 16px 32px;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-hero-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* ============ LOGOS CLIENTS ============ */
.clients {
  padding: 60px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.clients-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.clients-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.clients-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}

.client-logo {
  height: 48px;
  opacity: 0.85;
  transition: all 0.3s;
}

.client-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ============ SECTEURS PICTOGRAMMES ============ */
.sectors-picto {
  padding: 100px 24px;
  background: var(--surface);
}

.sectors-picto-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.sectors-picto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.sector-picto-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
}

.sector-picto-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.sector-picto-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sector-picto-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.sector-picto-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.sector-picto-card .sector-products {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.sector-picto-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 16px;
}

.sector-picto-card a:hover {
  text-decoration: underline;
}

/* ============ POURQUOI NEOBEX ============ */
.why-us {
  padding: 100px 24px;
  background: var(--navy);
  color: var(--white);
}

.why-us-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-us .section-header h2 {
  color: var(--white);
}

.why-us .section-header p {
  color: rgba(255,255,255,0.7);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px;
  overflow: hidden;
}

.benefit-card-img {
  width: calc(100% + 64px);
  margin: -32px -32px 24px -32px;
  height: 160px;
  object-fit: cover;
}

.benefit-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.benefit-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ============ QUANTITÉS ============ */
.quantities {
  padding: 80px 24px;
  background: var(--white);
}

.quantities-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.quantities h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.quantities p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.quantity-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.quantity-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s;
}

.quantity-card:hover {
  border-color: var(--accent);
}

.quantity-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, #EFF6FF 0%, var(--white) 100%);
}

.quantity-card img {
  height: 80px;
  margin-bottom: 16px;
}

.quantity-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.quantity-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.quantity-badge {
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 16px;
}

/* ============ CERTIFICATIONS ============ */
.certifications {
  padding: 80px 24px;
  background: var(--surface);
}

.certifications-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cert-text h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.cert-text p {
  font-size: 14px;
  color: var(--text-secondary);
}

.cert-badges {
  display: flex;
  gap: 32px;
  align-items: center;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cert-icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 12px;
}

.cert-badge span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ============ TÉMOIGNAGES ============ */
.testimonials {
  padding: 100px 24px;
  background: var(--white);
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
}

.author-info h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.author-info p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ============ BOUTIQUE EN LIGNE (séparée B2B) ============ */
.shop-section {
  padding: 80px 24px;
  background: var(--surface);
  border-top: 3px solid var(--border);
}

.shop-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.shop-badge {
  display: inline-block;
  background: #FEF3C7;
  color: #92400E;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.shop-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.shop-section > .shop-section-inner > p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* ============ CTA FINAL ============ */
.cta-section {
  padding: 100px 24px;
  background: var(--accent);
  text-align: center;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-white {
  padding: 14px 32px;
  background: var(--white);
  color: var(--accent);
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-white:hover {
  background: var(--surface);
}

.btn-outline {
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--white);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* ============ FOOTER ============ */
.footer {
  padding: 80px 24px 40px;
  background: var(--navy);
  color: var(--white);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-brand img {
  height: 56px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-contact p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-contact strong {
  color: var(--white);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-left: 24px;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ============ PAGE CONTENT (sous-pages) ============ */
.page-content {
  padding: 148px 24px 80px;
}

.page-content-inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-hero {
  padding: 164px 24px 60px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* ============ À PROPOS ============ */
.about-section {
  padding: 80px 24px;
}

.about-section:nth-child(even) {
  background: var(--surface);
}

.about-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.about-inner h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.about-inner p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Mission/Vision split layout */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s;
}

.about-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.about-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about-card-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.about-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.about-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Quote block */
.about-quote {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 20px;
  padding: 48px;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}

.about-quote::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 120px;
  color: rgba(255,255,255,0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

.about-quote p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.about-quote .quote-author {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-style: normal;
  font-weight: 600;
}

/* Intro features */
.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.about-feature {
  text-align: center;
  padding: 24px 16px;
}

.about-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: var(--surface);
}

.about-feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.about-feature h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Values grid improved */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
}

.value-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.value-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Presence section */
.about-presence {
  background: var(--surface);
  border-radius: 16px;
  padding: 48px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-presence-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-presence-icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.about-presence-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.about-presence-text p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .about-presence {
    flex-direction: column;
    text-align: center;
  }
}

.team-placeholder {
  margin-top: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.team-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-card .team-role {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}

.team-card p.team-bio {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.team-note {
  text-align: center;
  margin-top: 32px;
  padding: 24px;
  background: var(--surface);
  border-radius: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ PRODUITS B2B ============ */
.products-filter {
  padding: 32px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 100px;
  z-index: 50;
}

.products-filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.filter-tabs {
  display: flex;
  gap: 8px;
}

.filter-tab {
  padding: 10px 20px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.filter-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-tab.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.products-section {
  padding: 60px 24px 100px;
}

.products-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.product-category {
  margin-bottom: 64px;
}

.product-category h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.product-category > p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.product-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.product-image {
  height: 180px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-content {
  padding: 16px;
  border-top: 1px solid var(--border);
}

.product-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.4;
}

.product-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ============ FORMULAIRE SOUMISSION ============ */
.form-section {
  padding: 60px 24px 100px;
}

.form-section-inner {
  max-width: 600px;
  margin: 0 auto;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.form-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-card .subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.3s;
}

.btn-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,99,235,0.4);
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ============ FAQ ============ */
.faq-section {
  padding: 60px 24px 100px;
}

.faq-section-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  font-family: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--surface);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer ul {
  margin: 12px 0;
  padding-left: 20px;
}

.faq-answer li {
  margin-bottom: 8px;
}

.faq-cta {
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  margin-top: 48px;
}

.faq-cta h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.faq-cta p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 16px;
}

.contact-info-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info-card p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.contact-info-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner {
    text-align: center;
  }

  .hero-stats {
    gap: 32px;
  }

  .sectors-picto-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .certifications-inner {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .quantity-options {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-actions .lang-toggle,
  .header-actions .search-toggle {
    display: none;
  }

  .hero {
    padding: 110px 24px 60px;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-certs {
    flex-direction: column;
    align-items: center;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    gap: 32px;
  }

  .cta-buttons {
    flex-direction: column;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-bottom a {
    margin-left: 0;
    margin-right: 24px;
  }

  .filter-tabs {
    flex-wrap: wrap;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .problem-grid {
    grid-template-columns: 1fr !important;
  }

  .pillars-grid {
    grid-template-columns: 1fr !important;
  }

  .compare-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============ POURQUOI NEOBEX (page dédiée) ============ */
.problem-section {
  padding: 80px 24px;
  background: var(--surface);
}

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s;
}

.problem-card:hover {
  border-color: #EF4444;
  box-shadow: 0 4px 16px rgba(239,68,68,0.08);
}

.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #FEF2F2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-icon svg {
  width: 22px;
  height: 22px;
  color: #EF4444;
}

.problem-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.problem-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

.solution-section {
  padding: 80px 24px;
  background: var(--white);
}

.solution-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.solution-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.solution-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.solution-image {
  border-radius: 16px;
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .solution-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.pillars-section {
  padding: 100px 24px;
  background: var(--surface);
}

.pillars-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: all 0.3s;
}

.pillar-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pillar-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.pillar-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.pillar-result {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

.compare-section {
  padding: 80px 24px;
  background: var(--white);
}

.compare-inner {
  max-width: 900px;
  margin: 0 auto;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.compare-card {
  border-radius: 16px;
  padding: 36px;
}

.compare-card.compare-old {
  background: var(--surface);
  border: 1px solid var(--border);
}

.compare-card.compare-new {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--white);
}

.compare-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.compare-card.compare-new h3 {
  color: var(--white);
}

.compare-list {
  list-style: none;
  padding: 0;
}

.compare-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.compare-card.compare-old .compare-list li {
  border-bottom-color: var(--border);
  color: var(--text-secondary);
}

.compare-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.multisite-section {
  padding: 80px 24px;
  background: var(--surface);
}
