@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&display=swap');

:root {
  --orange: #E8600A;
  --orange-light: #FF7A1A;
  --orange-dark: #C04F06;
  --orange-pale: #FFF0E6;
  --gray-dark: #1A1A1A;
  --gray-med: #2E2E2E;
  --gray: #555555;
  --gray-light: #888888;
  --gray-bg: #F5F5F5;
  --gray-border: #E0E0E0;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--gray-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--gray-dark);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.about-img-main {
  width: 100%;
  max-width: 600px;
  height: 400px;
}

.about-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* Image */
.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-container:hover .about-image {
  transform: scale(1.05);
}

/* Overlay sombre */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
}

/* Gradient orange branding */
.gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(232,96,10,0.35), transparent);
}

/* Logo centré */
.logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.9;
}

.logo-overlay img {
  width: 180px;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
}

/* Responsive */
@media (max-width: 768px) {
  .about-img-main {
    height: 300px;
  }

  .logo-overlay img {
    width: 130px;
  }
}
.logo-img {
  width: 300px;   /* réduit la taille (300px est trop grand) */
  height: auto;
  object-fit: contain;

  margin-top: 100px;   /* espace au-dessus */
  margin-bottom: 100px; /* espace en dessous */
}
.navbar.scrolled {
  height: 90px;
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(12px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: white;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 87% 100%, 0 100%);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: white;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-text .sub {
  font-size: 10px;
  color: var(--orange-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.footer {
  background: #0f1115;
  color: #bbb;
  font-family: 'Poppins', sans-serif;
  padding-top: 60px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

/* LOGO */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 40px;
}

.logo-text .brand {
  color: #fff;
  font-weight: 600;
}

.logo-text .sub {
  display: block;
  font-size: 12px;
  color: #f97316;
  letter-spacing: 1px;
}

/* TEXT */
.footer p {
  font-size: 14px;
  line-height: 1.7;
}

/* SOCIAL */
.footer-social {
  margin-top: 20px;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  color: #aaa;
  font-size: 14px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #f97316;
}

/* TITRES */
.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 30px;
  height: 2px;
  background: #f97316;
  position: absolute;
  left: 0;
  bottom: -8px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #bbb;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #f97316;
  padding-left: 5px;
}

/* CONTACT */
.footer-contact p {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-contact span {
  margin-right: 8px;
}

.footer-contact a {
  color: #bbb;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #f97316;
}

/* MAP LINK */
.map-link {
  color: #f97316;
  font-size: 13px;
}

.map-link:hover {
  text-decoration: underline;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 50px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #777;
}

.footer-bottom strong {
  color: #f97316;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
/* BLOG IMAGES */
.article-thumb {
  height: 180px;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-border);
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FEATURED IMAGE */
.featured-thumb {
  position: relative;
  overflow: hidden;
}

.featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-links a:hover { color: white; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: white; }

.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  padding: 10px 22px !important;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 93% 100%, 0 100%);
  letter-spacing: 1px !important;
}

.nav-cta:hover { background: var(--orange-light) !important; }
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: white;
  transition: var(--transition);
}
.product-thumb {
  position: relative;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ===== SECTION BASE ===== */
section { padding: 90px 5%; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--orange);
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  color: var(--gray-dark);
  text-transform: uppercase;
}

.section-title span { color: var(--orange); }

.section-text {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.8;
  margin-top: 16px;
}

/* ===== BTN ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  clip-path: polygon(0 0, 100% 0, 100% 72%, 94% 100%, 0 100%);
}
  @import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600&family=Barlow+Condensed:wght@700&display=swap');

  .ft {
    background: #111110;
    color: #e8e4dc;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    padding: 0;
    margin: 0;
    border-top: 3px solid #E25C1A;
  }
  .ft-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 32px 0;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.3fr 1.4fr;
    gap: 48px;
  }
  .ft-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  .ft-logo-icon {
    width: 44px;
    height: 44px;
    background: #E25C1A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
  }
  .ft-logo-text { display: flex; flex-direction: column; }
  .ft-brand-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
  }
  .ft-brand-sub {
    font-size: 10px;
    font-weight: 500;
    color: #E25C1A;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .ft-desc {
    color: #888880;
    line-height: 1.7;
    margin-bottom: 28px;
    font-size: 13.5px;
  }
  .ft-social {
    display: flex;
    gap: 10px;
  }
  .ft-social a {
    width: 36px;
    height: 36px;
    border: 1px solid #2a2a27;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888880;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }
  .ft-social a:hover {
    border-color: #E25C1A;
    color: #fff;
    background: #E25C1A18;
  }
  .ft-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #E25C1A;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #222220;
  }
  .ft-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .ft-col ul li a {
    color: #888880;
    text-decoration: none;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s, padding-left 0.2s;
  }
  .ft-col ul li a::before {
    content: '';
    display: block;
    width: 16px;
    height: 1px;
    background: #333330;
    transition: width 0.2s, background 0.2s;
    flex-shrink: 0;
  }
  .ft-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
  }
  .ft-col ul li a:hover::before {
    width: 20px;
    background: #E25C1A;
  }
  .ft-contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .ft-contact-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }
  .ft-icon {
    width: 32px;
    height: 32px;
    background: #1a1a18;
    border: 1px solid #2a2a27;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .ft-icon svg { width: 14px; height: 14px; fill: #E25C1A; }
  .ft-contact-data { display: flex; flex-direction: column; gap: 2px; }
  .ft-contact-data a {
    color: #888880;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
    display: block;
  }
  .ft-contact-data a:hover { color: #fff; }
  .ft-contact-data span {
    color: #888880;
    font-size: 13px;
  }
  .ft-divider {
    max-width: 1200px;
    margin: 40px auto 0;
    border: none;
    border-top: 1px solid #1f1f1d;
  }
  .ft-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .ft-bottom p {
    font-size: 12px;
    color: #555550;
    margin: 0;
  }
  .ft-bottom strong { color: #888880; }
  .ft-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #444440;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .ft-badge-heart {
    width: 14px;
    height: 14px;
    display: inline-block;
  }
  .ft-badge-heart svg { width: 14px; height: 14px; fill: #E25C1A; }
.btn-orange {
  background: var(--orange);
  color: white;
}

.btn-orange:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,96,10,0.4);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  clip-path: none;
}

.btn-outline:hover {
  background: white;
  color: var(--gray-dark);
}

.btn-dark {
  background: var(--gray-dark);
  color: white;
}

.btn-dark:hover {
  background: var(--gray-med);
  transform: translateY(-2px);
}

/* ===== CARDS ===== */
.card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
/* Logo uniquement dans le footer */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 55px;        /* ajuste comme tu veux */
  height: 55px;
  object-fit: contain;
}

.footer-logo .brand {
  font-size: 16px;
  font-weight: 600;
}

.footer-logo .sub {
  font-size: 12px;
  color: #aaa;
}
/* ===== STATS ===== */
.stats-bar {
  background: var(--orange);
  padding: 40px 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  color: white;
  line-height: 1;
}

.stat-item p {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--gray-dark);
  color: white;
  padding: 70px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin: 16px 0 24px;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--orange);
  color: white;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover { color: var(--orange); padding-left: 5px; }
.footer-col ul li a::before { content: '›'; color: var(--orange); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.footer-contact-item .ico {
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom span { color: var(--orange); }

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--gray-dark);
  padding: 140px 5% 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, var(--orange) 100%);
  opacity: 0.08;
}

.page-header-content { position: relative; z-index: 2; }

.page-header h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 7vw, 80px);
  color: white;
  text-transform: uppercase;
  line-height: 1;
}

.page-header h1 span { color: var(--orange); }

.page-header p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  margin-top: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.breadcrumb a { color: var(--orange); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===== PATTERN DECOR ===== */
.hex-pattern {
  position: absolute;
  top: 0; right: 0;
  width: 380px;
  height: 100%;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    60deg,
    var(--orange) 0px, var(--orange) 1px,
    transparent 1px, transparent 20px
  ),
  repeating-linear-gradient(
    -60deg,
    var(--orange) 0px, var(--orange) 1px,
    transparent 1px, transparent 20px
  );
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.animate-up { animation: fadeUp 0.7s ease both; }
.animate-up.d1 { animation-delay: 0.1s; }
.animate-up.d2 { animation-delay: 0.2s; }
.animate-up.d3 { animation-delay: 0.3s; }
.animate-up.d4 { animation-delay: 0.4s; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  /* Navbar */
  .navbar { height: 70px; padding: 0 4%; }
  .navbar.scrolled { height: 62px; }
  .logo-img { width: 180px; margin-top: 0; margin-bottom: 0; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--gray-dark);
    padding: 16px 20px 24px;
    gap: 2px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border-top: 2px solid var(--orange);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; padding: 12px 14px; border-radius: var(--radius); }
  .nav-cta { text-align: center; margin-top: 8px; clip-path: none; border-radius: var(--radius); }
  .nav-hamburger { display: flex; }

  /* Stats */
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { padding: 30px 10px; border-right: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  /* Footer grid */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ft-inner { grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px 24px 0; }

  /* Page header */
  .page-header { padding: 110px 5% 60px; }
}

@media (max-width: 600px) {
  /* General */
  section { padding: 60px 5%; }

  /* Navbar */
  .navbar { height: 64px; }
  .nav-links { top: 64px; }
  .logo-img { width: 140px; }

  /* Hero (index.html) */
  .hero { padding: 100px 5% 60px; min-height: auto; padding-bottom: 80px; }
  .hero h1 { font-size: clamp(36px, 11vw, 56px); }
  .hero-desc { font-size: 15px; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }
  .hero-shape { width: 300px; height: 300px; opacity: 0.04; }

  /* About grid */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .about-badge-float { bottom: -16px; right: 16px; padding: 16px 20px; }
  .about-badge-float strong { font-size: 32px; }
  .about-features { grid-template-columns: 1fr; gap: 14px; }

  /* Products grid */
  .products-grid { grid-template-columns: 1fr; gap: 20px; }
  .products-full-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Why section */
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-cta-box { padding: 32px 24px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr !important; }

  /* CTA Banner */
  .cta-btns { flex-direction: column; gap: 12px; }
  .cta-btn-primary, .cta-btn-ghost { width: 100%; justify-content: center; text-align: center; }
  .cta-banner { padding: 60px 5%; }

  /* Stats */
  .stats-bar { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .ft-inner { grid-template-columns: 1fr; gap: 32px; padding: 36px 20px 0; }
  .ft-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 16px 20px; }

  /* Page header */
  .page-header { padding: 100px 5% 50px; }
  .page-header h1 { font-size: clamp(32px, 10vw, 52px); }

  /* Filter tabs (produits.html) */
  .filter-section { top: 64px; padding: 20px 4% 0; }
  .filter-tab { padding: 10px 16px; font-size: 12px; }

  /* Contact / About / Blog page inner grids */
  .contact-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .about-content-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .team-grid { grid-template-columns: 1fr 1fr !important; }

  /* General helpers */
  .section-title { font-size: clamp(26px, 8vw, 40px); }
  .btn { width: 100%; justify-content: center; }
}

/* ===== SMALL PHONES ===== */
@media (max-width: 380px) {
  .navbar { padding: 0 4%; height: 60px; }
  .nav-links { top: 60px; }
  .hero h1 { font-size: clamp(30px, 12vw, 44px); }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; }
  .team-grid { grid-template-columns: 1fr !important; }
  .ft-bottom { font-size: 11px; }
}
