:root {
  --bg: #2B2F36;
  --bg-card: #33383f;
  --bg-card-hover: #3a3f47;
  --accent: #B3182E;
  --accent-light: #cc1f35;
  --accent-glow: rgba(179, 24, 46, 0.3);
  --text: #E6E7EA;
  --text-muted: #A9ADB4;
  --border: #6B6F76;
  --radius: 12px;
  --transition: 0.3s ease;
}

/* ── Mode clair ─────────────────────────────────────────────── */
html.light-mode {
  --bg: #E6E7EA;
  --bg-card: #ffffff;
  --bg-card-hover: #f2f3f5;
  --accent: #B3182E;
  --accent-light: #8f1324;
  --accent-glow: rgba(179, 24, 46, 0.15);
  --text: #2B2F36;
  --text-muted: #6B6F76;
  --border: #A9ADB4;
  background-color: var(--bg);
}
html.light-mode nav { background: rgba(230, 231, 234, 0.92); box-shadow: 0 1px 0 var(--border); }
html.light-mode .dropdown { box-shadow: 0 8px 24px rgba(0,0,0,.12); }
html.light-mode .product-card,
html.light-mode .feature-card,
html.light-mode .support-card { box-shadow: 0 2px 12px rgba(0,0,0,.06); }
html.light-mode select option { background: #ffffff; color: #2B2F36; }
html.light-mode .stats-band { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
html.light-mode .hero { background: linear-gradient(135deg, #d8d9dc 0%, #E6E7EA 100%); }
html.light-mode .hamburger span { background: var(--text); }
html.light-mode input, html.light-mode select, html.light-mode textarea { background: var(--bg); border-color: var(--border); color: var(--text); }

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

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── NAVBAR ── */
/* ── Language switcher ───────────────────────────── */
.lang-dropdown {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.lang-current {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .25rem .55rem;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: .3rem;
  color: var(--text-muted);
  transition: border-color var(--transition);
  line-height: 1;
}
.lang-current:hover { border-color: var(--accent); }

.lang-chevron {
  font-size: .55rem;
  transition: transform var(--transition);
}
.lang-dropdown.open .lang-chevron { transform: rotate(180deg); }

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .35rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  z-index: 300;
  flex-direction: column;
  gap: .2rem;
}
.lang-dropdown.open .lang-menu { display: flex; }

.lang-option {
  font-size: 1.2rem;
  padding: .3rem .5rem;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  transition: background var(--transition);
  line-height: 1;
}
.lang-option:hover { background: var(--bg-card-hover); }

.lang-flag {
  display: block;
  border-radius: 2px;
  object-fit: cover;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(43, 47, 54, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 64px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  justify-content: center;
  align-items: center;
}


.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  transition: background var(--transition), box-shadow var(--transition) !important;
}

.nav-cta:hover {
  background: var(--accent-light) !important;
  box-shadow: 0 0 16px var(--accent-glow);
}

.nav-cta::after {
  display: none !important;
}

/* ── DROPDOWN ── */
.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-item > a .chevron {
  font-size: 0.6rem;
  transition: transform var(--transition);
  display: inline-block;
}

.nav-item:hover > a .chevron {
  transform: rotate(180deg);
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 0.5rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  z-index: 200;
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--border);
}

.nav-item:hover .dropdown {
  display: block;
}

/* bridge invisible pour éviter le gap souris → dropdown */
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text-muted) !important;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.dropdown a:hover {
  background: rgba(179, 24, 46, 0.12);
  color: var(--text) !important;
}

.dropdown a::after {
  display: none !important;
}

.dropdown-icon {
  font-size: 1rem;
  width: 24px;
  text-align: center;
}

.dropdown-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0.4rem 0.5rem;
}

/* mobile dropdown */
@media (max-width: 768px) {
  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0 0 0 1rem;
    display: none;
  }

  .dropdown::before {
    display: none;
  }

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

  .dropdown a {
    padding: 0.4rem 0.5rem;
    font-size: 0.85rem;
  }
}

/* hamburger */
.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--accent); background: var(--bg-card-hover); }

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  max-width: none;
  margin: 0;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(179, 24, 46, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(179, 24, 46, 0.15);
  border: 1px solid rgba(179, 24, 46, 0.4);
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero h1 span {
  color: var(--accent-light);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 0 24px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--accent);
  margin-left: 1rem;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  transform: translateY(-2px);
}

/* ── SECTIONS ── */
section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: block;
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 3rem;
}

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--accent);
  border-color: var(--accent);
}

.product-card-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #2B2F36, #1a1e24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.product-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(179, 24, 46, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
  min-height: 2.4rem;
  display: flex;
  align-items: center;
}

.product-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex: 1;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
  gap: 0.75rem;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  border-radius: 8px;
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-content: center;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: border-color var(--transition);
}

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

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.feature-card .feature-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  background: linear-gradient(135deg, #2B2F36, #1a1e24);
  border-radius: var(--radius);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1px solid var(--border);
}

.about-text .section-sub {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-light);
}

.stat-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-item-icon {
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  background: rgba(179, 24, 46, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.contact-item-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

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

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

input,
textarea,
select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── PRODUCT DETAIL PAGE ── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding-top: 3rem;
}

.product-detail-visual {
  background: linear-gradient(135deg, #2B2F36, #1a1e24);
  border-radius: var(--radius);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  border: 1px solid var(--border);
  position: sticky;
  top: 80px;
  overflow: hidden;
}

.product-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

.product-detail-info .product-tag {
  margin-bottom: 1rem;
}

.product-detail-info h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.product-detail-info .price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}

.product-detail-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.specs-list {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.specs-list h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row span:first-child {
  color: var(--text-muted);
}

.spec-row span:last-child {
  font-weight: 600;
}

.product-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 1.5rem 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb a:hover {
  color: var(--accent-light);
}

.breadcrumb-sep {
  color: var(--border);
}

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 2rem;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 1.5rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9998;
  width: min(680px, calc(100vw - 2rem));
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

#cookie-simple {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  flex-wrap: wrap;
}

#cookie-text {
  flex: 1;
  min-width: 200px;
}

#cookie-text strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

#cookie-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

#cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

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

.cookie-btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.cookie-btn-outline:hover {
  border-color: var(--accent);
  color: var(--text);
}

#cookie-detail-panel {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border-radius: 8px;
}

.cookie-detail-info {
  flex: 1;
}

.cookie-detail-info strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.25rem;
}

.cookie-detail-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-badge-required {
  font-size: 0.72rem;
  font-weight: 700;
  color: #4ade80;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Toggle switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 22px;
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--accent);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(18px);
}

#cookie-detail-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

@media (max-width: 600px) {
  #cookie-simple {
    flex-direction: column;
    align-items: flex-start;
  }

  #cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* ── STATS BAND ── */
.stats-band {
  background: linear-gradient(135deg, rgba(179,24,46,0.12) 0%, rgba(43,47,54,0.0) 100%);
  border-top: 1px solid rgba(179,24,46,0.25);
  border-bottom: 1px solid rgba(179,24,46,0.25);
  padding: 2rem 2rem;
}

.stats-band-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.stat-band-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-band-item strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--accent-light);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-band-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.stat-band-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .stat-band-sep { display: none; }
  .stat-band-item { min-width: 45%; }
}

/* ── REG TEASER SECTION ── */
.reg-teaser-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.reg-checklist {
  list-style: none;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.reg-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
}

.reg-check-icon {
  color: var(--accent-light);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.reg-teaser-visual {
  display: flex;
  justify-content: center;
}

.reg-teaser-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  width: 100%;
  max-width: 340px;
  transition: border-color var(--transition);
}

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

.reg-teaser-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.reg-refs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.reg-ref-tag {
  background: rgba(179,24,46,0.15);
  border: 1px solid rgba(179,24,46,0.35);
  color: var(--accent-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.reg-teaser-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .reg-teaser-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .reg-teaser-visual { order: -1; }
  .reg-teaser-card { max-width: 100%; }
}

/* ── ALL PRODUCTS CTA ── */
.all-products-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 999;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .about-grid,
  .contact-grid,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-detail-visual {
    position: static;
    height: 260px;
    font-size: 4rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

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

/* ── About – logo orbit ── */
.about-logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 2rem 3rem;
  min-height: 60vh;
}

.about-logo-orbit {
  position: relative;
  width: 480px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-orbit::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed var(--border);
  opacity: 0.4;
}

.orbit-logo {
  width: 160px;
  height: 160px;
  z-index: 2;
}

.orbit-logo svg {
  width: 100%;
  height: 100%;
}

.orbit-word {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--transition);
}

.orbit-word:hover { color: var(--accent); }

/* centre (240,240), rayon 210px
   x = 240 + 210*sin(a), y = 240 - 210*cos(a) */
/* 0°   */ .orbit-word--1 { left: 240px; top: 30px;   transform: translate(-50%,-50%); }
/* 60°  */ .orbit-word--2 { left: 422px; top: 135px;  transform: translate(-50%,-50%); }
/* 120° */ .orbit-word--3 { left: 422px; top: 345px;  transform: translate(-50%,-50%); }
/* 180° */ .orbit-word--4 { left: 240px; top: 450px;  transform: translate(-50%,-50%); }
/* 240° */ .orbit-word--5 { left: 58px;  top: 345px;  transform: translate(-50%,-50%); }
/* 300° */ .orbit-word--6 { left: 58px;  top: 135px;  transform: translate(-50%,-50%); }


/* ── About – logo faces rouge en boucle ── */
/* Cible A = #B3182E (rouge vif), B = #871E26 (rouge foncé), C = #430E0E (bordeaux) */
@keyframes fr-6  { 0%,40%,100% { fill: rgb(52.940369%,12.156677%,14.901733%); } 55%,85% { fill: #B3182E; } }
@keyframes fr-7  { 0%,40%,100% { fill: rgb(63.920593%,63.528442%,64.704895%); } 55%,85% { fill: #871E26; } }
@keyframes fr-8  { 0%,40%,100% { fill: rgb(61.959839%,62.744141%,63.920593%); } 55%,85% { fill: #B3182E; } }
@keyframes fr-9  { 0%,40%,100% { fill: rgb(45.097351%,45.489502%,46.665955%); } 55%,85% { fill: #430E0E; } }
@keyframes fr-10 { 0%,40%,100% { fill: rgb(27.058411%,27.450562%,28.627014%); } 55%,85% { fill: #871E26; } }
@keyframes fr-11 { 0%,40%,100% { fill: rgb(47.842407%,48.234558%,49.411011%); } 55%,85% { fill: #B3182E; } }
@keyframes fr-12 { 0%,40%,100% { fill: rgb(33.724976%,34.509277%,35.68573%);  } 55%,85% { fill: #430E0E; } }
@keyframes fr-13 { 0%,40%,100% { fill: rgb(27.058411%,27.450562%,27.842712%); } 55%,85% { fill: #871E26; } }
@keyframes fr-15 { 0%,40%,100% { fill: rgb(30.195618%,30.195618%,29.803467%); } 55%,85% { fill: #B3182E; } }
@keyframes fr-16 { 0%,40%,100% { fill: rgb(20.783997%,21.176147%,21.960449%); } 55%,85% { fill: #430E0E; } }
@keyframes fr-17 { 0%,40%,100% { fill: rgb(20.391846%,21.176147%,22.744751%); } 55%,85% { fill: #871E26; } }
@keyframes fr-18 { 0%,40%,100% { fill: rgb(38.822937%,39.215088%,40.783691%); } 55%,85% { fill: #B3182E; } }
@keyframes fr-19 { 0%,40%,100% { fill: rgb(24.705505%,25.097656%,26.274109%); } 55%,85% { fill: #430E0E; } }

/* Toutes les faces triangulaires plates (pas les arêtes courbes) */
.orbit-logo-svg path:nth-child(6)  { animation: fr-6  9s  0.0s  infinite; }
.orbit-logo-svg path:nth-child(7)  { animation: fr-7  11s 3.7s  infinite; }
.orbit-logo-svg path:nth-child(8)  { animation: fr-8  8s  1.2s  infinite; }
.orbit-logo-svg path:nth-child(9)  { animation: fr-9  10s 6.5s  infinite; }
.orbit-logo-svg path:nth-child(10) { animation: fr-10 12s 0.8s  infinite; }
.orbit-logo-svg path:nth-child(11) { animation: fr-11 9s  4.9s  infinite; }
.orbit-logo-svg path:nth-child(12) { animation: fr-12 11s 2.1s  infinite; }
.orbit-logo-svg path:nth-child(13) { animation: fr-13 8s  7.3s  infinite; }
.orbit-logo-svg path:nth-child(15) { animation: fr-15 10s 1.6s  infinite; }
.orbit-logo-svg path:nth-child(16) { animation: fr-16 12s 5.4s  infinite; }
.orbit-logo-svg path:nth-child(17) { animation: fr-17 9s  3.0s  infinite; }
.orbit-logo-svg path:nth-child(18) { animation: fr-18 11s 8.1s  infinite; }
.orbit-logo-svg path:nth-child(19) { animation: fr-19 10s 0.4s  infinite; }

/* ── Values strip ── */
.values-strip {
  padding: 3rem 2rem;
}

.values-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--accent);
  border-radius: 0;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.value-card:hover {
  transform: translateY(-3px);
  border-bottom-color: #871E26;
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .values-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Présentation ─────────────────────────────────────── */
.presentation-section {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.presentation-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.presentation-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.presentation-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.presentation-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.75;
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
}
.presentation-blocks p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
  text-align: justify;
}
.presentation-closing {
  font-style: italic;
  color: var(--text) !important;
}

/* ── Notre socle ──────────────────────────────────────── */
.socle-section {
  padding: 5rem 2rem;
}
.socle-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.socle-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.socle-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.socle-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.75;
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
}
.socle-blocks p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
  text-align: justify;
}
