/* CLICKNAME — feuille de style de la page d'accueil statique.
   La page index.html est servie en HTML pur (SEO friendly) ; ce fichier
   couvre tous les styles "brutalistes" (cartes, ombres dures, badges,
   boutons CTA) sans dépendance à Tailwind ni à React. Tailwind reste chargé
   en parallèle pour les utilitaires layout (max-w, grid, flex…).
*/

:root {
  --ink: #1B130C;
  --accent: #FF5722;
  --bg-cream: #FFF4DC;
  --bg-soft: #FFE9D6;
  --bg-business: #F5F2EC;
  --yellow: #FFCB45;
  --green: #3DD68C;
  --blue: #3D8BFF;
  --pink: #FF6FB1;
  --purple: #9B5CFF;
}

/* ---------- Layout helpers ---------- */
.cn-container { width: 100%; max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .cn-container { padding: 0 3rem; } }

.cn-section { position: relative; padding: 5rem 0; overflow: hidden; }
@media (min-width: 768px) { .cn-section { padding: 7rem 0; } }

.cn-section--cream { background: #FFF4DC; color: #1B130C; }
.cn-section--white { background: #fff; color: #1B130C; }
.cn-section--soft { background: #FFE9D6; color: #1B130C; }
.cn-section--ink { background: #1B130C; color: #fff; }
.cn-section--accent { background: #FF5722 !important; color: #fff; }
.cn-section--business { background: #F5F2EC; color: #1B130C; }

/* ---------- Brutalist primitives ---------- */
.cn-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.9rem; font-size: 0.75rem; font-weight: 800;
  background: #fff; color: #1B130C;
  border: 2px solid #1B130C; border-radius: 999px;
  box-shadow: 3px 3px 0 #1B130C;
  letter-spacing: 0.04em; line-height: 1;
}
.cn-badge--accent { background: #FF5722 !important; color: #fff !important; }
.cn-badge--green { background: #3DD68C !important; color: #fff !important; }
.cn-badge--yellow { background: #FFCB45 !important; color: #1B130C !important; }
.cn-badge .dot { width: 0.5rem; height: 0.5rem; border-radius: 999px; background: #3DD68C; display: inline-block; }

.cn-card {
  background: #fff; color: #1B130C;
  border: 2.5px solid #1B130C; border-radius: 22px;
  box-shadow: 6px 6px 0 #1B130C;
  padding: 1.75rem;
}
.cn-card--small { padding: 1.25rem; box-shadow: 4px 4px 0 #1B130C; border-radius: 18px; }

.cn-shadow-lg { box-shadow: 6px 6px 0 #1B130C; }
.cn-shadow-md { box-shadow: 4px 4px 0 #1B130C; }
.cn-shadow-sm { box-shadow: 3px 3px 0 #1B130C; }

/* CTA orange "filled" — !important pour gagner sur le preflight Tailwind
   qui réinitialise background-color sur <button>. */
.cn-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.6rem; font-weight: 800; font-size: 0.95rem;
  background: #FF5722 !important; color: #fff !important;
  border: 2.5px solid #1B130C !important; border-radius: 999px !important;
  box-shadow: 5px 5px 0 #1B130C !important;
  text-decoration: none; cursor: pointer;
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.cn-cta:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 #1B130C !important; }

.cn-cta--ink { background: #1B130C !important; color: #fff !important; box-shadow: 6px 6px 0 #FF5722 !important; }
.cn-cta--ink:hover { box-shadow: 1px 1px 0 #FF5722 !important; }

.cn-cta--ghost {
  background: #fff !important; color: #1B130C !important;
  border: 2px solid #1B130C !important; box-shadow: 3px 3px 0 #1B130C !important;
}
.cn-cta--ghost:hover { box-shadow: 1px 1px 0 #1B130C !important; }

/* ---------- Header ---------- */
.cn-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 0.75rem 0; transition: background-color .3s, border-color .3s, padding .3s;
  background: transparent; border-bottom: 2px solid transparent;
}
.cn-header.is-scrolled {
  padding: 0.4rem 0;
  background: rgba(255, 244, 220, 0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid #1B130C;
}
.cn-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.5rem 0.5rem;
}
.cn-logo { display: inline-flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.cn-logo__img { height: 6.5rem; width: auto; transition: height .3s; }
.cn-header.is-scrolled .cn-logo__img { height: 2.5rem; }
.cn-logo__tag {
  position: absolute; pointer-events: none; color: #9B5CFF;
  font-weight: 600; font-size: 12px; transform: rotate(-8deg);
  top: 4.6rem; left: 10.6rem; transition: opacity .3s;
}
.cn-header.is-scrolled .cn-logo__tag { opacity: 0; }

.cn-nav { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 768px) { .cn-nav { display: flex; } }
.cn-nav a, .cn-nav button {
  background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; color: #1B130C; font-weight: 600;
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-size: 0.875rem; text-decoration: none;
  transition: opacity .15s;
}
.cn-nav a:hover, .cn-nav button:hover { opacity: 0.7; }

.cn-header__right { display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 768px) { .cn-header__right { gap: 0.75rem; } }

/* ---------- Hero ---------- */
.cn-hero { position: relative; padding-top: 10rem; padding-bottom: 4rem; overflow: hidden; }
@media (min-width: 768px) { .cn-hero { padding-top: 8rem; padding-bottom: 5rem; } }
.cn-hero__title {
  font-family: Fraunces, "Playfair Display", Georgia, serif;
  font-weight: 800; line-height: 0.92; letter-spacing: -0.04em;
  font-size: clamp(48px, 9vw, 132px); color: #1B130C;
  max-width: 1100px; word-break: break-word; overflow-wrap: break-word;
  margin-top: 1.5rem;
}
.cn-hero__highlight {
  display: inline-block; padding: 0 1.1rem;
  background: #FF5722 !important; color: #fff !important;
  border-radius: 22px; transform: rotate(-2deg);
  box-shadow: 6px 6px 0 #1B130C;
  font-family: "Bricolage Grotesque", system-ui, sans-serif; font-weight: 800;
}
.cn-hero__clic {
  color: #FF5722;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic; font-weight: 400;
}
.cn-hero__sub {
  margin-top: 1.75rem; font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 500; line-height: 1.6; max-width: 620px; color: #1B130C;
  font-size: 1rem;
}
@media (min-width: 768px) { .cn-hero__sub { font-size: 1.25rem; } }
.cn-hero__sub-mark {
  background: #FFCB45; padding: 0 0.5rem; border-radius: 6px; font-weight: 700;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.cn-hero__cta-row { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.cn-hero__rating {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem; background: #fff; color: #1B130C;
  border: 2px solid #1B130C; border-radius: 14px; box-shadow: 3px 3px 0 #1B130C;
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-size: 0.875rem; font-weight: 800;
}
.cn-hero__rating .stars { display: inline-flex; gap: 2px; color: #FFCB45; }

.cn-hero__shape { position: absolute; box-shadow: 4px 4px 0 #1B130C; }
.cn-hero__shape--yellow  { top: 70px; right: 8%; width: 110px; height: 110px; border-radius: 28px; background: #FFCB45; transform: rotate(15deg); }
.cn-hero__shape--green   { top: 280px; right: 22%; width: 70px; height: 70px; border-radius: 999px; background: #3DD68C; }
.cn-hero__shape--pink    { top: 420px; right: 5%; width: 50px; height: 50px; border-radius: 12px; background: #FF6FB1; transform: rotate(-18deg); box-shadow: 3px 3px 0 #1B130C; }
.cn-hero__shape--blue    { bottom: 40px; left: 5%; width: 80px; height: 80px; border-radius: 22px; background: #3D8BFF; transform: rotate(-10deg); }
.cn-hero__shape--purple  { bottom: 200px; left: 30%; width: 36px; height: 36px; border-radius: 999px; background: #9B5CFF; box-shadow: 3px 3px 0 #1B130C; }
@media (max-width: 767px) {
  .cn-hero__shape--green, .cn-hero__shape--pink, .cn-hero__shape--purple { display: none; }
}

.cn-hero__product { position: relative; margin: 3rem auto 0; max-width: 720px; }
.cn-hero__product-frame {
  position: relative; overflow: hidden; background: #fff; padding: 10px;
  border-radius: 28px; border: 3px solid #1B130C;
  box-shadow: 8px 8px 0 #1B130C; transform: rotate(-1.5deg);
}
.cn-hero__product-frame img {
  display: block; width: 100%; height: 260px; object-fit: cover; border-radius: 20px;
}
@media (min-width: 768px) { .cn-hero__product-frame img { height: 380px; } }
.cn-hero__product-tag {
  position: absolute; top: 1.5rem; left: 1.5rem;
  padding: 0.4rem 0.75rem; font-size: 11px; font-weight: 800;
  background: #fff; color: #1B130C;
  border: 2px solid #1B130C; border-radius: 999px;
  box-shadow: 2px 2px 0 #1B130C;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
}
.cn-hero__sticker {
  position: absolute; padding: 12px 18px;
  border: 2.5px solid #1B130C; border-radius: 18px;
  box-shadow: 4px 4px 0 #1B130C;
  font-size: 15px; font-weight: 800;
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  display: none;
}
@media (min-width: 768px) { .cn-hero__sticker { display: inline-flex; align-items: center; } }
.cn-hero__sticker--top {
  top: -28px; right: -30px; background: #FFCB45; color: #1B130C;
  transform: rotate(8deg);
}
.cn-hero__sticker--bottom {
  bottom: -20px; left: -32px; background: #3DD68C; color: #fff;
  transform: rotate(-6deg); font-size: 14px;
}

/* ---------- Benefits bar ---------- */
.cn-benefits { padding: 2.5rem 0; background: #1B130C; color: #fff; }
@media (min-width: 768px) { .cn-benefits { padding: 3.5rem 0; } }
.cn-benefits__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
@media (min-width: 1024px) { .cn-benefits__grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.cn-benefit { display: flex; align-items: flex-start; gap: 0.75rem; }
.cn-benefit__icon { font-size: 1.75rem; line-height: 1; flex-shrink: 0; }
.cn-benefit__title { font-weight: 800; font-size: 1rem; letter-spacing: -0.01em; }
.cn-benefit__desc { margin-top: 0.25rem; font-size: 0.8rem; line-height: 1.55; opacity: 0.7; }

/* ---------- Headline réutilisable ---------- */
.cn-h2 {
  font-family: "Baloo 2", system-ui, sans-serif;
  font-weight: 800; line-height: 0.95; letter-spacing: -0.03em;
  font-size: clamp(40px, 6vw, 64px); color: #1B130C;
  margin-top: 1.5rem;
}
.cn-h2 .italic { font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-weight: 400; }
.cn-h2 .accent { color: #FF5722; }

/* ---------- HowItWorks ---------- */
.cn-steps {
  margin-top: 3rem; display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 640px) { .cn-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cn-steps { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.cn-step {
  display: flex; flex-direction: column; justify-content: space-between;
  background: #fff; padding: 1.75rem; border-radius: 24px;
  border: 2.5px solid #1B130C; box-shadow: 5px 5px 0 #1B130C;
  min-height: 280px;
}
.cn-step:nth-child(odd)  { transform: rotate(-1deg); }
.cn-step:nth-child(even) { transform: rotate(1deg); }
.cn-step__num {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-weight: 900; font-size: 38px; line-height: 1; color: #1B130C;
  border: 2.5px solid #1B130C; box-shadow: 3px 3px 0 #1B130C;
}
.cn-step:nth-child(1) .cn-step__num { background: #FFCB45; }
.cn-step:nth-child(2) .cn-step__num { background: #FF6FB1; }
.cn-step:nth-child(3) .cn-step__num { background: #3DD68C; }
.cn-step:nth-child(4) .cn-step__num { background: #3D8BFF; }
.cn-step__title { font-weight: 800; font-size: 22px; letter-spacing: -0.02em; color: #1B130C; }
.cn-step__desc { margin-top: 0.4rem; font-size: 0.875rem; line-height: 1.6; color: #7A6657; }

/* ---------- Ages ---------- */
.cn-ages {
  margin-top: 3rem; display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 768px) { .cn-ages { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.cn-age {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 2rem; border-radius: 24px;
  border: 2.5px solid #1B130C; box-shadow: 6px 6px 0 #1B130C;
  min-height: 240px; color: #1B130C;
}
.cn-age:nth-child(1) { background: #FFCB45; }
.cn-age:nth-child(2) { background: #FF6FB1; }
.cn-age:nth-child(3) { background: #9B5CFF; color: #fff; }
.cn-age__range {
  align-self: flex-start; padding: 0.4rem 0.85rem; font-size: 0.875rem; font-weight: 800;
  background: #fff; color: #1B130C;
  border: 2px solid #1B130C; border-radius: 999px;
}
.cn-age__title { font-weight: 800; font-size: 28px; letter-spacing: -0.02em; }
.cn-age__desc { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; opacity: 0.85; }

/* ---------- Reviews ---------- */
.cn-reviews-head {
  display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .cn-reviews-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.cn-reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .cn-reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cn-reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.cn-review {
  padding: 1.75rem; border-radius: 22px;
  border: 2.5px solid #1B130C; box-shadow: 6px 6px 0 #1B130C;
  color: #1B130C;
}
.cn-review:nth-child(odd)  { transform: rotate(-0.8deg); }
.cn-review:nth-child(even) { transform: rotate(0.8deg); }
.cn-review:nth-child(1) { background: #FFCB45; }
.cn-review:nth-child(2) { background: #FF6FB1; }
.cn-review:nth-child(3) { background: #3D8BFF; color: #fff; }
.cn-review:nth-child(4) { background: #3DD68C; }
.cn-review:nth-child(5) { background: #9B5CFF; color: #fff; }
.cn-review:nth-child(6) { background: #FFE9D6; }
.cn-review__text { margin-top: 1rem; font-size: 1rem; font-weight: 600; line-height: 1.6; }
.cn-review__author { margin-top: 1rem; font-size: 0.875rem; font-weight: 800; opacity: 0.85; }

.cn-stars { display: inline-flex; gap: 2px; }

/* ---------- B2B ---------- */
.cn-b2b__grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 1024px) { .cn-b2b__grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; } }
.cn-b2b__bullets { margin-top: 1.75rem; display: grid; gap: 0.75rem; }
.cn-b2b__bullets li { display: flex; align-items: flex-start; gap: 0.75rem; font-weight: 500; color: #1B130C; }
.cn-b2b__bullets li::before {
  content: "✓"; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 999px;
  background: #FF5722; color: #fff;
  font-size: 13px; font-weight: 800;
}
.cn-b2b__cta-row { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cn-b2b__cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem; font-size: 0.875rem; font-weight: 700;
  border-radius: 8px !important; cursor: pointer; text-decoration: none;
  background: #0F1419 !important; color: #fff !important; border: 0 !important;
  font-family: inherit; transition: transform 120ms ease, box-shadow 120ms ease;
}
.cn-b2b__cta--outline {
  background: transparent !important; color: #0F1419 !important;
  border: 1.5px solid #0F1419 !important;
}
.cn-b2b__cta:hover { transform: translate(2px, 2px); }
.cn-b2b__stats { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 640px) { .cn-b2b__stats { grid-template-columns: repeat(4, 1fr); } }
.cn-b2b__stat-num { font-family: "Baloo 2", system-ui, sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -0.02em; color: #0F1419; }
.cn-b2b__stat-label { font-size: 0.75rem; margin-top: 0.25rem; color: #5C6878; }
.cn-b2b__visual {
  position: relative; aspect-ratio: 4/5; border-radius: 24px;
  border: 1px solid rgba(15,20,25,.08); background: #fff;
  box-shadow: 0 16px 40px rgba(15,20,25,.06); overflow: hidden;
}
.cn-b2b__visual img { width: 100%; height: 100%; object-fit: cover; }
.cn-b2b__visual-tag {
  position: absolute; top: 1rem; left: 1rem;
  padding: 0.4rem 0.75rem; font-size: 11px; font-weight: 800;
  background: rgba(255,255,255,.95); color: #0F1419;
  border-radius: 999px; letter-spacing: 0.06em;
}

/* ---------- Special order ---------- */
.cn-special__grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .cn-special__grid { grid-template-columns: 2fr 3fr; gap: 3rem; } }
.cn-special__visual {
  position: relative; aspect-ratio: 4/5;
  border-radius: 24px; border: 3px solid #1B130C;
  background: #fff; padding: 8px;
  box-shadow: 8px 8px 0 #1B130C; transform: rotate(-2deg);
  overflow: hidden;
}
.cn-special__visual img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }
.cn-special__bullets { margin-top: 1.5rem; display: grid; gap: 0.75rem; }
.cn-special__bullets li { display: flex; align-items: flex-start; gap: 0.75rem; font-weight: 500; color: #1B130C; }
.cn-special__bullets li::before {
  content: "✓"; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 999px;
  background: #FF5722; color: #fff;
  font-size: 13px; font-weight: 800;
  border: 2px solid #1B130C;
}

/* ---------- FAQ ---------- */
.cn-faq__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .cn-faq__grid { grid-template-columns: 1fr 1.6fr; gap: 5rem; } }
.cn-faq-item { border-top: 1px solid rgba(27,19,12,0.12); padding: 1.4rem 0; }
.cn-faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  color: #1B130C; font-weight: 700; font-size: 1.125rem; letter-spacing: -0.01em;
}
.cn-faq-item summary::-webkit-details-marker { display: none; }
.cn-faq-item summary::after {
  content: "+"; flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 999px;
  background: #FF5722; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  border: 2px solid #1B130C; box-shadow: 2px 2px 0 #1B130C;
  transition: transform .25s;
}
.cn-faq-item[open] summary::after { transform: rotate(45deg); }
.cn-faq-item__body {
  padding-top: 0.9rem; font-size: 0.95rem; line-height: 1.6;
  color: #5C4632; max-width: 720px;
}

/* ---------- Final CTA ---------- */
.cn-final {
  position: relative; padding: 6rem 0; overflow: hidden; text-align: center;
  background: #FF5722 !important; color: #fff;
}
@media (min-width: 768px) { .cn-final { padding: 8rem 0; } }
.cn-final__title {
  font-family: "Baloo 2", system-ui, sans-serif; font-weight: 800;
  line-height: 0.92; letter-spacing: -0.04em;
  font-size: clamp(56px, 8.5vw, 132px); color: #fff;
}
.cn-final__highlight {
  display: inline-block; background: #fff !important; color: #FF5722 !important;
  padding: 0 1rem; border-radius: 22px; transform: rotate(-2deg);
  box-shadow: 8px 8px 0 #1B130C;
}
.cn-final__cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  margin-top: 3rem; padding: 1.1rem 2.5rem;
  font-size: 1.1rem; font-weight: 900;
  background: #1B130C !important; color: #fff !important;
  border-radius: 999px;
  box-shadow: 6px 6px 0 #FFCB45;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.cn-final__cta:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 #FFCB45; }

/* ---------- Footer ---------- */
.cn-footer { background: #1B130C; color: #fff; padding: 4rem 0 2rem; }
.cn-footer__grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 768px) { .cn-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; } }
.cn-footer__brand-row { display: flex; align-items: center; gap: 0.65rem; }
.cn-footer__brand-mark {
  width: 36px; height: 36px; border-radius: 12px;
  background: #FF5722 !important; color: #fff !important;
  display: inline-flex; align-items: center; justify-content: center;
  transform: rotate(-8deg); box-shadow: 0 4px 0 rgba(0,0,0,.4);
  font-size: 18px; font-weight: 800;
}
.cn-footer__brand {
  font-family: "Baloo 2", system-ui, sans-serif; font-weight: 800;
  font-size: 26px; letter-spacing: -0.02em;
}
.cn-footer__brand .accent { color: #FF5722; }
.cn-footer__tagline { margin-top: 1rem; max-width: 22rem; font-size: 0.875rem; line-height: 1.6; color: rgba(255,255,255,.6); }
.cn-footer__col-title {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 800; margin-bottom: 1rem; color: rgba(255,255,255,.5);
}
.cn-footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.875rem; color: rgba(255,255,255,.85); list-style: none; padding: 0; margin: 0; }
.cn-footer__col a, .cn-footer__col button {
  background: none; border: 0; padding: 0; font: inherit; cursor: pointer;
  color: inherit; text-decoration: none; transition: color .15s;
}
.cn-footer__col a:hover, .cn-footer__col button:hover { color: #fff; }

.cn-footer__newsletter input {
  flex: 1; padding: 0.6rem 1rem; font-size: 0.875rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15); border-radius: 999px;
  color: #fff;
}
.cn-footer__newsletter input:focus { outline: none; border-color: rgba(255,255,255,.4); }
.cn-footer__newsletter button {
  padding: 0.6rem 1rem; font-size: 0.875rem; font-weight: 800;
  background: #FF5722 !important; color: #fff !important; border: 0 !important; border-radius: 999px !important;
  box-shadow: 3px 3px 0 rgba(0,0,0,.5); cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.cn-footer__newsletter button:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(0,0,0,.5); }
.cn-footer__bottom {
  margin-top: 1.5rem; display: flex; flex-direction: column; align-items: flex-start;
  gap: 0.5rem; font-size: 0.75rem; color: rgba(255,255,255,.5);
}
@media (min-width: 768px) { .cn-footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ---------- Configurator placeholder skeleton ---------- */
#configurator-app:empty {
  min-height: 600px; display: flex; align-items: center; justify-content: center;
  color: #7A6657; font-style: italic;
}
#configurator-app:empty::before {
  content: "Chargement du configurateur…";
}
