/* ============================================================
   US AFRIK MEDIA — Global Stylesheet
   Palette Pan-Africaine | Design Éditorial & Magazine
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,300;1,8..60,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --green:     #005B36;
  --green-dk:  #003D24;
  --green-lt:  #007A4A;
  --red:       #C0171C;
  --red-lt:    #E02025;
  --gold:      #D4A017;
  --gold-lt:   #F2BE2A;
  --black:     #0D0D0D;
  --near-blk:  #1A1A1A;
  --gray-dk:   #333333;
  --gray-md:   #666666;
  --gray-lt:   #AAAAAA;
  --off-wh:    #F8F4EE;
  --white:     #FFFFFF;
  --cream:     #FDF9F3;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --font-ui:   'DM Sans', sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
  --radius:     4px;
  --radius-md:  8px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--near-blk);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── Top Ticker ─────────────────────────────────────────────── */
.ticker-bar {
  background: var(--green-dk);
  color: var(--white);
  padding: 8px 0;
  overflow: hidden;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
.ticker-bar .ticker-label {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  padding: 2px 12px;
  margin-right: 16px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
}
.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}
.ticker-track span { margin-right: 60px; }
.ticker-track span::before { content: '◆ '; color: var(--gold); margin-right: 6px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-track:hover { animation-play-state: paused; }

/* ─── Header / Masthead ──────────────────────────────────────── */
.masthead {
  background: var(--black);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 1.5px rgba(212,160,23,0.35), 0 2px 14px rgba(0,0,0,0.55);
}
.logo-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.logo-text-main {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.logo-text-main span { color: var(--gold); }
.logo-text-sub {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  color: var(--gray-lt);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3px;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-lt);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.main-nav a.active { color: var(--gold); }
.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 8px 16px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--green-lt) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }

/* ─── Sub-nav (Rubriques) ────────────────────────────────────── */
.rubriques-bar {
  background: var(--near-blk);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.rubriques-bar ul {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.rubriques-bar ul::-webkit-scrollbar { display: none; }
.rubriques-bar li a {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-lt);
  padding: 10px 14px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.rubriques-bar li a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.rubriques-bar li a.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ─── Hero Section ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 380px;
  background: var(--black);
  overflow: hidden;
}
.hero-main {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.hero-main-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
  min-height: 600px;
}
.hero-main:hover .hero-main-img { transform: scale(1.04); }
.hero-main-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
}
.hero-main-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 40px;
}
.hero-rubrique-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 16px;
}
.hero-main-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-main-excerpt {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 24px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}
.hero-meta .author { color: var(--gold); font-weight: 600; }
.hero-sidebar {
  background: var(--near-blk);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.hero-sidebar-header {
  padding: 20px 24px 12px;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-sidebar-item {
  display: flex;
  gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
  transition: var(--transition);
}
.hero-sidebar-item:hover { background: rgba(255,255,255,0.04); }
.hero-sidebar-img {
  width: 72px; height: 56px;
  object-fit: cover;
  flex-shrink: 0;
}
.hero-sidebar-text {}
.hero-sidebar-tag {
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.hero-sidebar-title {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.hero-sidebar-date {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  color: var(--gray-lt);
  margin-top: 4px;
}

/* ─── Section Common ─────────────────────────────────────────── */
.section { padding: 64px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--green-dk); color: var(--white); }
.section-black { background: var(--black); color: var(--white); }
.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.section-dark .section-header { border-bottom-color: rgba(255,255,255,0.1); }
.section-black .section-header { border-bottom-color: rgba(255,255,255,0.08); }
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label-bar {
  width: 4px; height: 32px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-label-bar.green { background: var(--green); }
.section-label-bar.red { background: var(--red); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 900;
  color: var(--near-blk);
  line-height: 1;
}
.section-dark .section-title { color: var(--white); }
.section-black .section-title { color: var(--white); }
.section-subtitle {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--gray-md);
  margin-top: 4px;
  font-style: italic;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }
.see-all {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.see-all::after { content: '→'; }
.see-all:hover { color: var(--gold); gap: 10px; }
.section-dark .see-all { color: var(--gold-lt); }

/* ─── Article Cards ──────────────────────────────────────────── */
.cards-grid { display: grid; gap: 24px; }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-dark { background: #1E1E1E; }
.card-dark .card-title { color: var(--white); }
.card-dark .card-excerpt { color: rgba(255,255,255,0.6); }
.card-dark .card-meta { color: rgba(255,255,255,0.4); border-top-color: rgba(255,255,255,0.06); }

.card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img-wrap img { transform: scale(1.06); }
.card-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  color: var(--white);
}
.tag-green { background: var(--green); }
.tag-red { background: var(--red); }
.tag-gold { background: var(--gold); color: var(--black) !important; }
.tag-dark { background: var(--near-blk); }

.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--near-blk);
  line-height: 1.3;
  margin-bottom: 10px;
}
.card-excerpt {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray-md);
  line-height: 1.6;
  flex: 1;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: var(--gray-lt);
}
.card-meta .author { color: var(--green); font-weight: 600; }

/* ─── Featured Card (Large) ──────────────────────────────────── */
.card-featured {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
}
.card-featured img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card-featured:hover img { transform: scale(1.04); }
.card-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 60%);
}
.card-featured-content {
  position: relative; z-index: 1;
  padding: 32px;
}
.card-featured-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin: 8px 0 12px;
}
.card-featured-excerpt {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ─── Live Badge ─────────────────────────────────────────────── */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.live-dot {
  width: 6px; height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 1.4s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ─── Bouton / CTA ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,91,54,0.4); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-lt); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-outline-green {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}
.btn-outline-green:hover { background: var(--green); color: var(--white); }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.75rem; }

/* ─── Rubriques Showcase ─────────────────────────────────────── */
.rubriques-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--near-blk);
}
.rubrique-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.rubrique-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.7);
}
.rubrique-tile:hover img { transform: scale(1.06); filter: brightness(0.85); }
.rubrique-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.rubrique-tile-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.rubrique-tile-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 6px;
}
.rubrique-tile-desc {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.rubrique-tile-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
}

/* ─── Tapis Rouge / Portrait ─────────────────────────────────── */
.portrait-card {
  text-align: center;
  cursor: pointer;
}
.portrait-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.portrait-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: var(--transition);
}
.portrait-card:hover .portrait-img-wrap img {
  filter: grayscale(0%);
  transform: scale(1.03);
}
.portrait-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,91,54,0.6) 0%, transparent 50%);
}
.portrait-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--near-blk);
  margin-bottom: 4px;
}
.portrait-role {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 6px;
}
.portrait-country {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--gray-lt);
}

/* ─── Boutique / Shop ────────────────────────────────────────── */
.shop-hero {
  background: linear-gradient(135deg, var(--green-dk) 0%, var(--near-blk) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.shop-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,160,23,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.shop-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.shop-hero h1 span { color: var(--gold); }
.shop-hero p { font-family: var(--font-ui); font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 32px; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--off-wh);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.product-body { padding: 20px; }
.product-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.product-desc {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--gray-md);
  margin-bottom: 16px;
  line-height: 1.5;
}
.product-price {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--green);
}
.product-price .usd { font-size: 0.8rem; font-weight: 400; color: var(--gray-md); margin-left: 4px; }

/* ─── LED Rental ─────────────────────────────────────────────── */
.led-hero {
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}
.led-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,160,23,0.12) 0%, transparent 70%);
}
.led-screen-visual {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(560px, 90vw);
  height: min(420px, 67.5vw);
  background: var(--near-blk);
  border: 8px solid #2A2A2A;
  border-radius: 12px;
  margin: 40px auto;
  position: relative;
  box-shadow: 0 0 80px rgba(212,160,23,0.2), inset 0 0 40px rgba(0,0,0,0.8);
}
.led-screen-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.led-size-badge {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.led-size-sub {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}
.led-screen-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,160,23,0.05), transparent 70%);
  animation: glow 3s ease-in-out infinite alternate;
}
@keyframes glow {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

.led-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.led-spec {
  text-align: center;
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
}
.led-spec-icon { font-size: 2.5rem; margin-bottom: 12px; }
.led-spec-value {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
}
.led-spec-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.led-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.led-package {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.led-package:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.led-package.featured {
  background: var(--green-dk);
  color: var(--white);
  transform: scale(1.04);
}
.led-package.featured:hover { transform: scale(1.04) translateY(-4px); }
.led-package-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.led-package-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.led-package-price {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin: 16px 0 4px;
}
.led-package-period {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--gray-md);
  margin-bottom: 24px;
}
.led-package.featured .led-package-period { color: rgba(255,255,255,0.6); }
.led-package-features {
  text-align: left;
  margin-bottom: 24px;
}
.led-package-features li {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.led-package.featured .led-package-features li { border-bottom-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); }
.led-package-features li::before { content: '✓'; color: var(--green); font-weight: 700; }
.led-package.featured .led-package-features li::before { color: var(--gold); }

/* ─── Formulaire ─────────────────────────────────────────────── */
.form-section {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-dk);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E5E5E5;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--near-blk);
  background: var(--white);
  transition: var(--transition);
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0,91,54,0.08);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-hint {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--gray-lt);
  font-style: italic;
}
.form-success {
  display: none;
  background: #ECFDF5;
  border: 2px solid var(--green);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  font-family: var(--font-ui);
  color: var(--green-dk);
}
.form-success.visible { display: block; }

/* ─── À Propos Strip ─────────────────────────────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.about-strip-img { position: relative; overflow: hidden; }
.about-strip-img img { width: 100%; height: 100%; object-fit: cover; }
.about-strip-content {
  background: var(--green-dk);
  color: var(--white);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-strip-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}
.about-strip-content h2 span { color: var(--gold); }
.about-strip-content p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.about-stat-value {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.about-stat-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ─── Newsletter ─────────────────────────────────────────────── */
.newsletter-bar {
  background: var(--gold);
  padding: 48px 0;
}
.newsletter-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.newsletter-bar h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
}
.newsletter-bar p {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: rgba(0,0,0,0.6);
  margin-top: 4px;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  min-width: 420px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(0,0,0,0.15);
  border-radius: var(--radius);
  font-size: 0.9rem;
  background: var(--white);
}
.newsletter-form input:focus { outline: none; border-color: var(--green); }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: #0A0A0A;
  color: var(--white);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-brand-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
}
.footer-brand-text span { color: var(--gold); }
.footer-brand p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  color: var(--white);
}
.social-btn:hover { background: var(--green); }
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-text {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.footer-contact-text a { color: rgba(255,255,255,0.7); }
.footer-contact-text a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.25); transition: var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }
.footer-flags { display: flex; gap: 8px; font-size: 1.2rem; }

/* ─── Utilities ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-white { color: var(--white); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.hidden { display: none !important; }

/* ─── Page Specific: Contact ─────────────────────────────────── */
.contact-hero {
  background: linear-gradient(135deg, var(--green-dk) 0%, var(--near-blk) 100%);
  padding: 80px 0;
  color: var(--white);
  text-align: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
.contact-info { }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-card-icon {
  width: 48px; height: 48px;
  background: var(--green);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-card-text {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--gray-md);
  line-height: 1.5;
}
.contact-card-text a { color: var(--green); font-weight: 600; }

/* ─── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid #EEEEEE;
  padding: 10px 0;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--gray-lt);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.breadcrumb-inner a { color: var(--green); }
.breadcrumb-inner .sep { color: var(--gray-lt); }

/* ─── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--near-blk) 0%, #1A2A1A 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--red));
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
}
.page-hero p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
}

/* ─── Scroll reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .rubriques-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-sidebar { display: none; }
  .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .led-specs { grid-template-columns: repeat(2, 1fr); }
  .led-packages { grid-template-columns: 1fr; }
  .led-package.featured { transform: scale(1); }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip-img { min-height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .newsletter-bar-inner { flex-direction: column; text-align: center; }
  .newsletter-form { min-width: auto; width: 100%; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--black);
    padding: 16px;
    z-index: 999;
    gap: 2px;
  }
  .main-nav.open a { display: block; }
  .hamburger { display: flex; }
  .rubriques-bar { display: none; }
  .cards-grid-4, .cards-grid-3, .cards-grid-2 { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .about-strip-content { padding: 48px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .rubriques-grid { grid-template-columns: 1fr; }
  .led-specs { grid-template-columns: 1fr 1fr; }
  .form-section { padding: 28px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .led-specs { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .about-stats { flex-direction: column; gap: 20px; }
}

/* ─── Animations ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-1 { animation: fadeInUp 0.7s ease 0.1s both; }
.animate-2 { animation: fadeInUp 0.7s ease 0.25s both; }
.animate-3 { animation: fadeInUp 0.7s ease 0.4s both; }
.animate-4 { animation: fadeInUp 0.7s ease 0.55s both; }

/* ─── Print on Demand Banner ─────────────────────────────────── */
.pod-note {
  background: #FFF8E7;
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 40px;
}
.pod-note-icon { font-size: 1.8rem; flex-shrink: 0; }
.pod-note-text h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--near-blk); margin-bottom: 4px; }
.pod-note-text p { font-family: var(--font-ui); font-size: 0.82rem; color: var(--gray-md); line-height: 1.5; }

/* ─── Modal ──────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.3s ease;
}
.modal-header {
  background: var(--green-dk);
  color: var(--white);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; }
.modal-close {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.25); }
.modal-body { padding: 28px; }

/* Color Strip (bottom accent) */
.pan-stripe {
  height: 5px;
  background: linear-gradient(90deg, var(--red) 33.3%, var(--gold) 33.3% 66.6%, var(--green) 66.6%);
}

/* ─── Back to Top ────────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 998;
  box-shadow: var(--shadow-md);
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--green-lt); transform: translateY(-4px); }
