/* ══ Top Bar ══════════════════════════════════════════════ */
.top-bar {
  background: #111;
  border-bottom: 1px solid var(--border);
  padding: 7px 0;
  font-size: 0.78rem;
  color: var(--gray-3);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9001;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.top-bar-right a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gray-2);
  transition: color var(--transition);
}
.top-bar-right a:hover { color: var(--white); }
.top-bar-right svg { width: 13px; height: 13px; }
.top-bar-sep { color: var(--border); }

:root { --topbar-h: 34px; }

/* Ajuster header pour tenir compte de la top-bar */
.site-header {
  top: var(--topbar-h) !important;
}
.hero, .page-hero {
  padding-top: calc(var(--header-h) + var(--topbar-h) + 4rem) !important;
}

/* Logo image */
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Options banners */
.options-banners {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.78rem;
  color: var(--gray-2);
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  :root { --topbar-h: 0px; }
  .logo-img { height: 40px; }
}

/* ═══════════════════════════════════════════════════════════
   invitation.cd v4 — Main Stylesheet
   Brand: #E8000D | Plus Jakarta Sans | Playfair Display
═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --red:        #E8000D;
  --red-dark:   #b5000a;
  --red-glow:   rgba(232,0,13,0.18);
  --bg:         #0d0d0d;
  --bg-2:       #111111;
  --bg-3:       #181818;
  --bg-card:    #161616;
  --bg-card-2:  #1c1c1c;
  --border:     rgba(255,255,255,0.08);
  --border-red: rgba(232,0,13,0.35);
  --white:      #ffffff;
  --gray-1:     #f0f0f0;
  --gray-2:     #aaaaaa;
  --gray-3:     #666666;
  --font-body:  'Plus Jakarta Sans', system-ui, sans-serif;
  --font-head:  'Playfair Display', Georgia, serif;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.4);
  --shadow-md:  0 8px 40px rgba(0,0,0,0.5);
  --shadow-red: 0 8px 32px rgba(232,0,13,0.25);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --header-h:   72px;
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::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(--bg);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--gray-2); }

em { font-style: italic; color: var(--gray-2); }
.text-red { color: var(--red); }
.text-center { text-align: center; }

/* ── Layout ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 6rem 0; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-sm  { padding: 9px 18px; font-size: 0.875rem; }
.btn-lg  { padding: 15px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232,0,13,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--border);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-2);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--white); background: rgba(255,255,255,0.05); }

/* ── Section Headers ───────────────────────────────────── */
.section-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(232,0,13,0.12);
  color: var(--red);
  border: 1px solid var(--border-red);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-title  { margin-bottom: 1rem; }
.section-desc   { font-size: 1.05rem; color: var(--gray-2); }

/* ── Scroll Animations ─────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── WhatsApp Float ────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 9998;
  transition: all var(--transition);
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}

/* ── Header ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.site-logo, .footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
  text-decoration: none;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
}
.logo-o  { color: var(--red); }
.logo-dot{ color: var(--gray-2); }
.logo-cd { color: var(--red); }
.logo-by {
  font-size: 0.65rem;
  font-family: var(--font-body);
  color: var(--gray-3);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-list li a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-2);
  transition: color var(--transition), background var(--transition);
}
.nav-list li a:hover,
.nav-list li.current a {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-cta { margin-left: 0.5rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 8998;
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,0,13,0.2) 0%, transparent 70%);
  top: -100px; right: -150px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,0,13,0.12) 0%, transparent 70%);
  bottom: 0; left: -100px;
}
.hero > .container {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--gray-2);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #25D366;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.4); }
}
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--gray-2);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.proof-avatars {
  display: flex;
}
.avatar-placeholder {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--red) 0%, #ff4444 100%);
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
}
.avatar-placeholder:first-child { margin-left: 0; }
.hero-proof p { font-size: 0.875rem; color: var(--gray-2); }
.hero-proof strong { color: var(--white); }

/* Phone Mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone-mockup {
  width: 240px;
  background: var(--bg-3);
  border-radius: 32px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md), 0 0 80px rgba(232,0,13,0.1);
  overflow: hidden;
}
.phone-screen { padding: 16px; }
.mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.mock-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; }
.mock-title { font-size: 0.7rem; font-weight: 600; color: var(--gray-2); }
.mock-hero-img {
  height: 100px;
  background: linear-gradient(135deg, rgba(232,0,13,0.3) 0%, rgba(0,0,0,0.8) 100%);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.mock-body { font-size: 0.72rem; }
.mock-name { font-family: var(--font-head); font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.mock-date { display: flex; align-items: center; gap: 6px; color: var(--gray-2); margin-bottom: 4px; }
.mock-icon { font-size: 0.8rem; }
.mock-qr {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
.qr-grid {
  width: 64px; height: 64px;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 6px, rgba(255,255,255,0.15) 6px, rgba(255,255,255,0.15) 7px),
    repeating-linear-gradient(90deg, transparent, transparent 6px, rgba(255,255,255,0.15) 6px, rgba(255,255,255,0.15) 7px);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 4px;
}
.mock-btn {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 8px;
}
.phone-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.phone-badge svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }
.phone-badge-1 { top: 30px; left: -60px; animation: floatBadge 3s ease-in-out infinite; }
.phone-badge-2 { bottom: 60px; right: -50px; animation: floatBadge 3s ease-in-out infinite 1.5s; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ── Stats Bar ─────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.stat-number { font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-plus   { font-size: 1.5rem; font-weight: 700; color: var(--red); display: inline; }
.stat-label  { font-size: 0.85rem; color: var(--gray-2); }

/* ── Steps ─────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: start;
}
.step-arrow {
  font-size: 1.5rem;
  color: var(--gray-3);
  padding-top: 3.5rem;
  align-self: start;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.step-card:hover { border-color: var(--border-red); transform: translateY(-4px); }
.step-number { font-size: 0.75rem; font-weight: 700; color: var(--red); letter-spacing: 0.1em; margin-bottom: 1rem; }
.step-icon {
  width: 52px; height: 52px;
  background: var(--red-glow);
  border: 1px solid var(--border-red);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.step-icon svg { width: 26px; height: 26px; color: var(--red); }
.step-card h3  { font-size: 1.1rem; margin-bottom: 0.75rem; }
.step-card p   { font-size: 0.9rem; color: var(--gray-2); }

/* ── Features ──────────────────────────────────────────── */
.features-section { background: var(--bg-2); }
.features-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.features-text .section-tag { margin-bottom: 1rem; }
.features-text .section-title { margin-bottom: 1rem; }
.features-text .section-desc  { margin-bottom: 2rem; }
.feature-list { list-style: none; margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature-icon-sm {
  width: 36px; height: 36px;
  background: var(--red-glow);
  border: 1px solid var(--border-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon-sm svg { width: 18px; height: 18px; color: var(--red); }
.feature-list li > div { display: flex; flex-direction: column; gap: 3px; }
.feature-list li strong { color: var(--white); font-size: 0.95rem; font-weight: 600; }
.feature-list li span  { color: var(--gray-2); font-size: 0.85rem; }

/* Features Visual */
.features-card-stack {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fcard {
  position: absolute;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
  white-space: nowrap;
}
.fcard-icon { font-size: 1.5rem; }
.fcard-content { display: flex; flex-direction: column; gap: 2px; }
.fcard-content strong { color: var(--white); font-size: 0.875rem; font-weight: 600; }
.fcard-content span   { color: var(--gray-2); font-size: 0.8rem; }
.fcard-1 { top: 40px; left: 0; animation: floatBadge 4s ease-in-out infinite; }
.fcard-2 { top: 50%; right: 0; transform: translateY(-50%); animation: floatBadge 4s ease-in-out infinite 1.3s; }
.fcard-3 { bottom: 40px; left: 0; animation: floatBadge 4s ease-in-out infinite 2.6s; }
.fcard-center {
  width: 140px; height: 140px;
  background: var(--bg-card);
  border: 2px solid var(--border-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px var(--red-glow);
}
.fcard-percent { font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; color: var(--red); text-align: center; line-height: 1; }
.fcard-label   { font-size: 0.75rem; color: var(--gray-2); text-align: center; margin-top: 4px; }

/* ── Pricing Preview ───────────────────────────────────── */
.pricing-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.price-card:hover { border-color: var(--border-red); transform: translateY(-4px); }
.price-card-featured {
  border-color: var(--red);
  background: linear-gradient(160deg, rgba(232,0,13,0.06) 0%, var(--bg-card) 60%);
  transform: translateY(-8px);
  box-shadow: var(--shadow-red);
}
.price-card-featured:hover { transform: translateY(-12px); }
.price-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}
.price-card-header { display: flex; flex-direction: column; gap: 0.5rem; }
.price-tag-label { font-size: 0.75rem; color: var(--gray-3); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.price-tag-vvip  { color: var(--red); }
.price-card h3   { font-size: 1.3rem; line-height: 1.2; }
.price-card h3 strong { color: var(--white); }
.price-amount {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-top: 0.5rem;
}
.price-currency { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-top: 6px; }
.price-value    { font-family: var(--font-head); font-size: 3.5rem; font-weight: 700; color: var(--white); line-height: 1; }
.price-meta     { display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 6px; gap: 2px; }
.price-meta span { font-size: 0.75rem; color: var(--gray-3); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-2);
}
.price-features li svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; margin-top: 1px; }

/* Live Banner */
.live-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.live-dot {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
.live-text { flex: 1; }
.live-text strong { color: var(--white); font-size: 1rem; }
.live-text p { font-size: 0.875rem; color: var(--gray-2); margin-top: 4px; }

.pricing-notes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.pricing-notes p { font-size: 0.9rem; color: var(--gray-2); }
.pricing-notes strong { color: var(--white); }

/* ── Page Hero (inner pages) ───────────────────────────── */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero-content { max-width: 680px; }
.page-hero-title { margin-bottom: 1rem; }
.page-hero-desc { font-size: 1.1rem; color: var(--gray-2); }

/* ── Pricing Full (Collections page) ──────────────────── */
.pricing-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: start;
}
.price-card-full {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: border-color var(--transition);
}
.price-card-full:hover { border-color: var(--border-red); }
.price-card-full-featured {
  border-color: var(--red);
  background: linear-gradient(180deg, rgba(232,0,13,0.07) 0%, var(--bg-card) 40%);
  box-shadow: var(--shadow-red);
}
.pcf-header {
  padding: 2rem;
  border-bottom: 1px solid var(--border);
}
.pcf-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 0.75rem;
}
.pcf-label-vvip { color: var(--red); }
.pcf-name { font-size: 1.6rem; line-height: 1.1; margin-bottom: 0.75rem; }
.pcf-name strong { color: var(--white); }
.pcf-tagline { font-size: 0.875rem; color: var(--gray-2); margin-bottom: 1.25rem; }
.pcf-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 1.5rem;
}
.pcf-currency { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-top: 8px; }
.pcf-amount   { font-family: var(--font-head); font-size: 4rem; font-weight: 700; color: var(--white); line-height: 1; }
.pcf-price-meta { display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 8px; gap: 3px; }
.pcf-price-meta span { font-size: 0.75rem; color: var(--gray-3); }
.pcf-min strong { color: var(--gray-2); }
.pcf-features { padding: 2rem; }
.pcf-features h4 { font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-3); margin-bottom: 1.25rem; }
.pcf-features ul { display: flex; flex-direction: column; gap: 1rem; }
.pcf-features li { display: flex; align-items: flex-start; gap: 12px; }
.pcf-features li svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.pcf-features li > div { display: flex; flex-direction: column; gap: 3px; }
.pcf-features li strong { color: var(--white); font-size: 0.9rem; font-weight: 600; }
.pcf-features li span   { color: var(--gray-2); font-size: 0.82rem; }

/* Live Event section (Collections page) */
.live-event-section {
  margin: 2.5rem 0;
}
.live-event-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(232,0,13,0.08) 0%, var(--bg-card) 60%);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  flex-wrap: wrap;
}
.live-event-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  padding: 10px 20px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.live-event-content { flex: 1; }
.live-event-content h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 0.5rem; }
.live-event-content p  { font-size: 0.9rem; color: var(--gray-2); }

/* Pricing info cards */
.pricing-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.5rem 0;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.info-card-icon { font-size: 1.75rem; flex-shrink: 0; }
.info-card strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 4px; }
.info-card p { font-size: 0.82rem; color: var(--gray-2); }

/* ── Services ──────────────────────────────────────────── */
.service-category {
  margin-bottom: 3.5rem;
}
.service-cat-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.service-cat-icon { font-size: 2.5rem; flex-shrink: 0; }
.service-cat-title { font-size: 1.6rem; color: var(--white); margin-bottom: 0.4rem; }
.service-cat-desc  { color: var(--gray-2); font-size: 0.95rem; }
.service-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
}
.service-item:hover { border-color: var(--border-red); transform: translateY(-2px); }
.service-item-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
.service-item-content { display: flex; flex-direction: column; gap: 4px; }
.service-item-content strong { color: var(--white); font-size: 0.95rem; font-weight: 600; }
.service-item-content span   { color: var(--gray-2); font-size: 0.82rem; }

/* ── Contact ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.contact-method { margin-bottom: 0.75rem; }
.contact-method-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: border-color var(--transition), transform var(--transition);
}
.contact-method-link:hover { border-color: var(--border-red); transform: translateX(4px); }
.contact-method-icon {
  width: 44px; height: 44px;
  background: var(--red-glow);
  border: 1px solid var(--border-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon svg { width: 22px; height: 22px; color: var(--red); }
.contact-method-icon-wa { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.3); }
.contact-method-icon-wa svg { color: #25D366; }
.contact-method-body { display: flex; flex-direction: column; gap: 2px; }
.contact-method-body strong { color: var(--white); font-size: 0.9rem; font-weight: 600; }
.contact-method-body span   { color: var(--gray-2); font-size: 0.875rem; }
.contact-method-body em     { color: var(--gray-3); font-size: 0.75rem; font-style: normal; }
.contact-response-time {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--gray-3);
}
.contact-response-time svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }

/* Contact Form */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.contact-form-card > p { color: var(--gray-2); font-size: 0.9rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--gray-2); }
.required { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 12px 14px;
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(255,255,255,0.06);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--bg-2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-3); }
.form-actions { margin-top: 0.5rem; }
.form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--radius-sm);
  color: #4ade80;
  font-size: 0.9rem;
}
.form-error {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(232,0,13,0.1);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  color: #ff6b6b;
  font-size: 0.9rem;
}

/* ── CTA Section ───────────────────────────────────────── */
.cta-section {
  padding: 6rem 0;
  overflow: hidden;
}
.cta-inner {
  position: relative;
  text-align: center;
  padding: 5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2rem;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,0,13,0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner .section-tag { margin-bottom: 1rem; }
.cta-inner h2 { max-width: 580px; margin: 0 auto 1rem; position: relative; z-index: 1; }
.cta-inner p  { max-width: 480px; margin: 0 auto 2.5rem; font-size: 1.05rem; color: var(--gray-2); position: relative; z-index: 1; }
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer-brand .footer-logo { margin-bottom: 1rem; }
.footer-tagline { font-size: 0.875rem; color: var(--gray-3); margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.social-link:hover { background: var(--red-glow); border-color: var(--border-red); }
.social-link svg { width: 20px; height: 20px; color: var(--white); }
.social-wa:hover svg { color: #25D366; }
.footer-heading { font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-3); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.875rem; color: var(--gray-2); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-list li { display: flex; align-items: center; gap: 10px; }
.footer-contact-list svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }
.footer-contact-list a, .footer-contact-list span { font-size: 0.875rem; color: var(--gray-2); transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: var(--gray-3); }
.footer-legal { display: flex; align-items: center; gap: 0.5rem; }
.footer-legal a { color: var(--gray-3); transition: color var(--transition); }
.footer-legal a:hover { color: var(--gray-2); }
.footer-legal span { color: var(--gray-3); }

/* Content page */
.content-page {
  max-width: 760px;
  margin: 0 auto;
}
.content-page h2,
.content-page h3 { color: var(--white); margin-bottom: 1rem; margin-top: 2rem; }
.content-page p  { color: var(--gray-2); margin-bottom: 1rem; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero > .container  { grid-template-columns: 1fr; }
  .hero-visual        { display: none; }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .steps-grid         { grid-template-columns: 1fr; gap: 1.5rem; }
  .step-arrow         { display: none; }
  .features-inner     { grid-template-columns: 1fr; }
  .features-visual    { display: none; }
  .pricing-full-grid  { grid-template-columns: 1fr; }
  .pricing-preview-grid { grid-template-columns: 1fr; }
  .footer-top         { grid-template-columns: 1fr 1fr; }
  .contact-grid       { grid-template-columns: 1fr; }
  .pricing-info-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .container { padding: 0 16px; }
  .section    { padding: 4rem 0; }

  /* Header */
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    right: 0;
    width: min(300px, 85vw);
    height: calc(100svh - var(--header-h));
    background: var(--bg-2);
    border-left: 1px solid var(--border);
    padding: 2rem 1.5rem;
    overflow-y: auto;
    z-index: 8999;
    gap: 1rem;
    box-shadow: var(--shadow-md);
  }
  .main-nav.open .nav-list { flex-direction: column; align-items: flex-start; gap: 0.25rem; width: 100%; }
  .main-nav.open .nav-list li { width: 100%; }
  .main-nav.open .nav-list li a { display: block; padding: 12px 16px; font-size: 1rem; }
  .main-nav.open .nav-cta { width: 100%; justify-content: center; }
  .hamburger { display: flex; }
  .mobile-overlay.open { display: block; }

  /* Hero */
  .hero { min-height: auto; padding: calc(var(--header-h) + 3rem) 0 3rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  /* Pricing */
  .price-card-featured { transform: none; }
  .price-card-featured:hover { transform: translateY(-4px); }

  /* Live banner */
  .live-banner { flex-direction: column; align-items: flex-start; }
  .live-event-inner { flex-direction: column; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 1.5rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* CTA */
  .cta-inner { padding: 3rem 1.5rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Page hero */
  .page-hero { padding: calc(var(--header-h) + 2rem) 0 2.5rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .wa-float   { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ══════════════════════════════════════════════════════════
   BLOG — Actualités & Événements
══════════════════════════════════════════════════════════ */

/* ── Filtres catégories ─────────────────────────────────── */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.blog-filter {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--gray-2);
  background: transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.blog-filter:hover,
.blog-filter.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ── Blog Grid ──────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
}

/* Image */
.blog-card-img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-img-placeholder {
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-img-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--gray-3);
}
.blog-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

/* Body */
.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--gray-3);
}
.blog-card-title {
  font-size: 1.1rem;
  line-height: 1.3;
}
.blog-card-title a {
  color: var(--white);
  transition: color var(--transition);
}
.blog-card-title a:hover { color: var(--red); }
.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--gray-2);
  flex: 1;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  transition: gap var(--transition);
}
.blog-card-link:hover { gap: 10px; }
.blog-card-link svg { width: 16px; height: 16px; }

/* ── Blog Empty ─────────────────────────────────────────── */
.blog-empty {
  text-align: center;
  padding: 5rem 2rem;
}
.blog-empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.blog-empty h3   { margin-bottom: 0.75rem; }
.blog-empty p    { color: var(--gray-2); margin-bottom: 2rem; }

/* ── Pagination ─────────────────────────────────────────── */
.blog-pagination {
  display: flex;
  justify-content: center;
}
.blog-pagination .nav-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--gray-2);
  font-size: 0.875rem;
  transition: all var(--transition);
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.blog-pagination .prev, .blog-pagination .next {
  width: auto;
  padding: 0 16px;
}

/* ══ Single Post ═════════════════════════════════════════ */

/* Hero post */
.post-hero .page-hero-content { max-width: 760px; }
.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray-3);
  margin-bottom: 1rem;
}
.post-breadcrumb a { color: var(--gray-3); transition: color var(--transition); }
.post-breadcrumb a:hover { color: var(--white); }
.post-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}
.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.post-meta-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
}
.post-meta-author strong { display: block; color: var(--white); font-size: 0.875rem; }
.post-meta-author span  { color: var(--gray-3); font-size: 0.78rem; }
.read-time { font-size: 0.8rem; color: var(--gray-3); }

/* Featured image */
.post-featured-img { margin-bottom: 1rem; }
.post-thumbnail {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

/* Layout */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

/* Contenu article */
.post-content {
  font-size: 1rem;
  line-height: 1.8;
}
.post-content h2,
.post-content h3,
.post-content h4 { color: var(--white); margin: 2rem 0 0.75rem; }
.post-content h2 { font-size: 1.6rem; }
.post-content h3 { font-size: 1.3rem; }
.post-content p  { color: var(--gray-2); margin-bottom: 1.25rem; }
.post-content ul,
.post-content ol {
  padding-left: 1.5rem;
  color: var(--gray-2);
  margin-bottom: 1.25rem;
}
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: 0.5rem; }
.post-content img {
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  width: 100%;
}
.post-content blockquote {
  border-left: 3px solid var(--red);
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--gray-2);
}
.post-content a { color: var(--red); text-decoration: underline; }
.post-content strong { color: var(--white); }

/* Tags */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.post-tag {
  padding: 4px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--gray-2);
  transition: all var(--transition);
}
.post-tag:hover { color: var(--white); border-color: var(--gray-2); }

/* Share */
.post-share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--gray-3);
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
}
.share-btn svg { width: 16px; height: 16px; }
.share-wa { background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.3); color: #25D366; }
.share-wa:hover { background: #25D366; color: #fff; }
.share-fb { background: rgba(24,119,242,0.12); border: 1px solid rgba(24,119,242,0.3); color: #1877F2; }
.share-fb:hover { background: #1877F2; color: #fff; }

/* Sidebar */
.sidebar-cta {
  background: linear-gradient(160deg, rgba(232,0,13,0.08) 0%, var(--bg-card) 60%);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.sidebar-cta-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.sidebar-cta h4  { font-size: 1rem; margin-bottom: 0.5rem; }
.sidebar-cta p   { font-size: 0.82rem; color: var(--gray-2); margin-bottom: 1.25rem; }

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.sidebar-widget-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 1rem;
}
.sidebar-posts { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-post  { display: flex; gap: 0.75rem; align-items: flex-start; }
.sidebar-post-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.sidebar-post-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-post-body { display: flex; flex-direction: column; gap: 4px; }
.sidebar-post-title { font-size: 0.82rem; color: var(--white); font-weight: 600; line-height: 1.3; transition: color var(--transition); }
.sidebar-post-title:hover { color: var(--red); }
.sidebar-post-body time { font-size: 0.75rem; color: var(--gray-3); }

/* Post navigation */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.post-nav-prev a, .post-nav-next a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}
.post-nav-prev a:hover, .post-nav-next a:hover { border-color: var(--border-red); }
.post-nav-next a { text-align: right; align-items: flex-end; }
.post-nav-label { font-size: 0.75rem; color: var(--gray-3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.post-nav-title { font-size: 0.9rem; color: var(--white); font-weight: 600; }

/* ── Responsive blog ────────────────────────────────────── */
@media (max-width: 1024px) {
  .blog-grid    { grid-template-columns: repeat(2, 1fr); }
  .post-layout  { grid-template-columns: 1fr; }
  .post-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 768px) {
  .blog-grid   { grid-template-columns: 1fr; }
  .post-nav    { grid-template-columns: 1fr; }
  .post-nav-next a { text-align: left; align-items: flex-start; }
  .post-sidebar { grid-template-columns: 1fr; }
}
