/* ATASSA — shared styles (Catalogue + Page Produit) */

:root {
  --bg: #0B0B14;
  --card: #13131F;
  --card-2: #0E0E17;
  --text: #F5F5F6;
  --text-dim: #9CA3AF;
  --text-body: #E4E1EE;
  --text-highlight: #DCCEFF;
  --purple: #B026FF;
  --purple-2: #8B2FE0;
  --purple-3: #C24EFF;
  --purple-4: #7C3AED;
  --purple-soft: #C77DFF;
  --border: rgba(176, 38, 255, 0.6);
  --border-strong: rgba(176, 38, 255, 0.85);
  --muted: #6b6b85;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--purple); text-decoration: none; }
a:hover { color: #A78BFA; }

button { font-family: inherit; }

img { max-width: 100%; display: block; }

::-webkit-scrollbar { display: none; }

.page {
  min-height: 100vh;
  position: relative;
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
}

/* ---------- Starfield background ---------- */
.stars-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.star {
  position: absolute;
  border-radius: 50%;
  background: rgba(232, 224, 255, 0.2);
}

.glow-top {
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 640px;
  background: radial-gradient(ellipse at center, rgba(176,38,255,0.22), rgba(124,58,237,0.08) 45%, transparent 72%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.glow-left {
  position: absolute;
  top: 420px;
  left: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(124,58,237,0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.glow-right {
  position: absolute;
  top: 900px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(139,92,246,0.16), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

/* ---------- Nav ---------- */
.nav-wrap {
  position: sticky;
  top: 14px;
  z-index: 50;
  max-width: 1320px;
  margin: 14px auto 0;
  width: calc(100% - 28px);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  row-gap: 8px;
  padding: 10px 18px;
  border-radius: 14px;
  background: rgba(19, 19, 31, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 2px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.brand { display: flex; align-items: center; gap: 9px; }
.brand span {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.2px;
  color: var(--text);
  text-shadow: 0 0 10px rgba(176,38,255,0.35), 0 0 3px rgba(226,78,255,0.3);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  row-gap: 8px;
  flex: 1;
  flex-wrap: wrap;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}
.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,0.45);
}
.nav-links a.active { color: var(--purple); font-weight: 700; }

.nav-actions { display: flex; align-items: center; gap: 10px; flex: none; flex-wrap: wrap; justify-content: flex-end; }

.nav-mobile-link { display: none; }

.hamburger {
  min-height: 44px;
  min-width: 44px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 9px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  display: none;
}
.hamburger span { width: 16px; height: 1.5px; background: var(--text); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  margin-top: 6px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(19,19,31,0.96);
  border: 2.5px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text); font-weight: 600; font-size: 14px; padding: 10px 8px; }
.mobile-menu a.active { color: var(--purple); font-weight: 700; }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .hamburger { display: flex !important; }
  .nav-mobile-link {
    display: flex;
    flex: 1;
    justify-content: center;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.45);
  }
  .nav-mobile-link.active { color: var(--purple); font-weight: 700; }
}

/* ---------- Buttons (shared) ---------- */
.btn-primary {
  flex: 1;
  min-height: 44px;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 0 16px;
  border-radius: 9px;
  cursor: pointer;
}
.btn-primary:hover { filter: brightness(1.12); }


/* ---------- Footer ---------- */
.site-footer {
  width: 100%;
  background: var(--bg);
  padding: 32px 24px;
}
.site-footer .inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand span { font-weight: 800; font-size: 15px; color: var(--text); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); font-size: 13px; }
.footer-copy { color: var(--muted); font-size: 13px; }

/* ==================================================================
   CATALOGUE PAGE
   ================================================================== */

.hero {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 88px 24px 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-glow-1 {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 820px;
  height: 520px;
  background: radial-gradient(ellipse at center, rgba(176,38,255,0.22), rgba(176,38,255,0.08) 45%, transparent 72%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-2 {
  position: absolute;
  top: 60px;
  left: calc(50% - 380px);
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(76,60,220,0.18), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.hero h1, .hero-hook {
  position: relative;
  z-index: 1;
  font-size: clamp(32px, 7vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin: 0 0 22px;
  max-width: 820px;
}
.hero h1 .white { color: #fff; }
.hero .gradient-wrap { position: relative; display: inline-block; }
.hero .gradient-blur,
.hero .gradient-text {
  background: linear-gradient(135deg, #E24EFF, var(--purple-4));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .gradient-blur { position: absolute; inset: 0; filter: blur(14px); opacity: 0.65; }
.hero .gradient-text { position: relative; }

.hero-hook { display: inline-block; }

.hero-video {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--card-2);
  border: 2.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 32px;
  cursor: pointer;
}
.hero-video .play-badge { width: 64px; height: 64px; border: 2px solid var(--purple-soft); }
.hero-video .play-badge .tri {
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid var(--purple-soft);
  margin-left: 5px;
}

.hero-quote {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 0 10px;
}
.hero-quote .quote-mark {
  position: absolute;
  left: -26px;
  top: -38px;
  font-size: 110px;
  line-height: 1;
  font-family: 'Lora', serif;
  background: linear-gradient(135deg, #E24EFF, var(--purple-4));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.14;
  pointer-events: none;
}
.hero-quote p {
  position: relative;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.5;
  color: #F5EFE0;
  font-weight: 500;
  margin: 0;
}
.hero-body {
  position: relative;
  z-index: 1;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.65;
  color: #fff;
  max-width: 720px;
  margin: 0 0 32px;
}
.hero-body .hl { color: var(--text-highlight); }

/* Lead-magnet banner (free Restaurant Buffet download) */
.lead-banner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px 28px;
}
.lead-banner-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(194,78,255,0.34), rgba(139,47,224,0.18));
  border: 3px solid var(--purple);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 38px rgba(176,38,255,0.32);
  animation: lead-banner-glow 3s ease-in-out infinite;
}
@keyframes lead-banner-glow {
  0%, 100% { box-shadow: 0 14px 38px rgba(176,38,255,0.32); }
  50% { box-shadow: 0 16px 48px rgba(176,38,255,0.55); }
}
.lead-banner-media {
  position: relative;
  flex: none;
  width: 220px;
  aspect-ratio: 1/1;
  border-radius: 14px;
  overflow: hidden;
  background: var(--card-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lead-banner-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lead-banner-media svg { opacity: 0.55; }
.lead-banner-img-slot { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.lead-banner-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #FFC107;
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 7px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(255,193,7,0.55);
  z-index: 1;
}
.lead-banner-content { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.lead-banner-overline {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.1px;
  color: #FFD54F;
  text-transform: uppercase;
}
.lead-banner-title { font-size: clamp(20px, 4vw, 28px); font-weight: 800; color: var(--text); margin: 0; }
.lead-banner-desc { font-size: 14px; color: var(--text-body); line-height: 1.5; margin: 0 0 6px; }
.lead-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  align-self: flex-start;
  min-height: 46px;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--purple-3), var(--purple-4));
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
}
.lead-banner-btn:hover { color: #fff; filter: brightness(1.1); }

@media (max-width: 699px) {
  .lead-banner { padding-left: 14px; padding-right: 14px; }
  .lead-banner-card { flex-direction: column; align-items: stretch; padding: 16px; }
  .lead-banner-media { width: 100%; }
  .lead-banner-btn { align-self: stretch; }
}

/* Small GRATUIT tag on Restaurant Buffet's regular grid card */
.product-thumb-gratuit-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #FFC107;
  color: #1A1A1A;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 4px 10px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
  z-index: 1;
}

/* Product grid + card */
.product-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 32px 24px 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
/* Mobile: near-edge-to-edge so the (deliberately single-column) vignette dominates the screen. */
@media (max-width: 699px) {
  .hero { padding-left: 14px; padding-right: 14px; }
  .product-grid { padding-left: 14px; padding-right: 14px; }
}

/* Infographic marketing visuals on the catalogue page: one grouped section, stacked
   vertically, sitting between the lead banner and the grid (which then flows uninterrupted). */
.infographic-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.infographic-block {
  background: var(--card-2);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 20px;
}
.infographic-block img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
@media (max-width: 699px) {
  .infographic-section { padding-left: 14px; padding-right: 14px; gap: 16px; }
  .infographic-block { padding: 12px; }
}
.product-card {
  background: var(--card);
  border: 2.5px solid var(--border-strong);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.product-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(124,58,237,0.22);
}
.product-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  background: var(--card-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-thumb-img-slot { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.product-thumb svg { opacity: 0.55; }
.product-body { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.product-body h3 { margin: 0; font-size: 19px; font-weight: 700; color: var(--text); }
.product-actions { display: flex; align-items: stretch; gap: 8px; }

/* Premium "banner-style" frame, shared by catalogue grid cards and cross-sell cards:
   a violet gradient across the whole card, with the vignette padded inside on its own
   rounded corners so it reads as sitting inside the card rather than being the card. */
.product-grid .product-card,
.cross-sell-card {
  background: linear-gradient(135deg, rgba(194,78,255,0.22), rgba(139,47,224,0.10));
  padding: 14px;
}
.product-grid .product-thumb,
.cross-sell-card .product-thumb {
  border-radius: 12px;
  aspect-ratio: 1/1;
}
.product-grid .product-body,
.cross-sell-card .product-body {
  padding: 0;
}
.product-grid .product-body { gap: 7px; }
.product-grid .product-actions { margin-top: auto; padding-top: 10px; }
.product-overline {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--text-dim);
  text-transform: uppercase;
}
.product-grid .product-overline {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.1px;
  color: #FFD54F;
}
.product-grid .product-body h3 {
  font-size: clamp(20px, 4vw, 28px);
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .product-grid .product-body h3 { font-size: 22px; }
}
.product-desc-courte {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-body);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}


/* ==================================================================
   PRODUIT PAGE
   ================================================================== */

.breadcrumb {
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px 24px 0;
  font-size: 13px;
  color: #7A7A94;
}
.breadcrumb a { color: var(--purple); font-weight: 600; }
.breadcrumb .sep { color: #5c5c74; }
.breadcrumb .current { color: var(--text); font-weight: 600; }

.product-header { max-width: 1320px; margin: 0 auto; padding: 16px 24px 0; }
.product-header h1 {
  font-size: clamp(26px, 6.5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 12px;
  max-width: 900px;
}
.product-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: clamp(13px, 3.2vw, 14.5px);
  color: var(--text-body);
  margin-bottom: 28px;
}
.product-meta .item { display: flex; align-items: center; gap: 6px; }
.product-meta .divider { color: #4a4a5e; }

.product-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px 48px;
}
.pp-cols { display: grid; grid-template-columns: 60% 40%; gap: 32px; align-items: start; }
.pp-desktop-panel { position: sticky; top: 96px; }
.pp-mobile-panel { display: none; }

.gallery-main {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 14px;
  overflow: hidden;
  background: var(--card-2);
  border: 2.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 13px;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.gallery-thumb {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 9px;
  overflow: hidden;
  background: var(--card-2);
  border: 1.5px solid rgba(176,38,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  cursor: pointer;
}
.gallery-thumb.active { border: 2px solid var(--purple); opacity: 1; }
.play-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(11,11,20,0.7);
  border: 1.5px solid var(--purple-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-badge .tri {
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--purple-soft);
  margin-left: 2px;
}

@media (max-width: 1023px) {
  .pp-cols { grid-template-columns: 1fr; gap: 28px; }
  .pp-desktop-panel { display: none; }
  .pp-mobile-panel { display: block; margin-top: 20px; }
  .gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
}

/* Purchase panel */
.purchase-panel {
  background: var(--card);
  border: 2.5px solid rgba(176,38,255,0.7);
  border-radius: 14px;
  padding: clamp(16px, 5vw, 26px);
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 3.5vw, 16px);
}
.pp-price { text-align: center; }
.pp-price .amount { font-size: clamp(24px, 7vw, 32px); font-weight: 800; color: var(--text); }
.pp-price .note { font-size: clamp(12px, 3vw, 13px); color: var(--text-dim); margin-top: 4px; }
.pp-price .amount.pp-price-free-label { color: #7EDCA0; }

/* Urgency block: progress bar + counters, urgency label, strikethrough/real price */
.pp-urgency { display: flex; flex-direction: column; gap: 8px; }
.pp-urgency-counters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(11.5px, 2.8vw, 12.5px);
  color: var(--text-dim);
}
.pp-progress-track {
  width: 100%;
  height: 8px;
  border-radius: 100px;
  background: #2A2A3A;
  overflow: hidden;
}
.pp-progress-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--purple-3), var(--purple));
}
.pp-urgency-label {
  text-align: center;
  font-size: clamp(12px, 3vw, 13px);
  font-weight: 700;
  color: #FF5C7A;
  letter-spacing: 0.2px;
}
.pp-price-compare {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}
.pp-price-old {
  font-size: clamp(14px, 3.6vw, 16px);
  color: var(--text-dim);
  text-decoration: line-through;
}
.pp-price-new {
  font-size: clamp(26px, 7.5vw, 34px);
  font-weight: 800;
  color: #FF3D68;
}
.pp-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(44px, 11vw, 50px);
  background: linear-gradient(135deg, var(--purple-3), var(--purple-4));
  border: none;
  color: #fff;
  font-size: clamp(14px, 3.6vw, 15px);
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
}
.pp-buy-btn:hover { color: #fff; }
.pay-security-card {
  background: #13131F;
  border-radius: 12px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pay-security-img {
  width: 100%;
  max-width: 320px;
  border-radius: 8px;
  display: block;
}
.pp-divider { height: 1px; background: rgba(176,38,255,0.25); }
.pp-checklist { display: flex; flex-direction: column; gap: 11px; }
.pp-checklist .row { display: flex; align-items: flex-start; gap: 9px; }
.pp-checklist svg { flex: none; margin-top: 1px; }
.pp-checklist span { font-size: clamp(12.5px, 3.2vw, 13.5px); color: var(--text-body); line-height: 1.4; }

.pp-trust-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: clamp(8px, 2.5vw, 11px); }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: clamp(8px, 2.5vw, 10px) clamp(12px, 3.5vw, 16px);
  border-radius: 12px;
  background: var(--card-2);
  border: 1.5px solid rgba(176,38,255,0.35);
}
.trust-item svg { flex: none; }
.trust-item span { font-size: clamp(12.5px, 3.2vw, 14.5px); font-weight: 600; color: var(--text); white-space: nowrap; }

/* Testimonials */
.section-block { max-width: 1320px; margin: 0 auto; padding: 0 24px 56px; }
.section-block h2 { font-size: clamp(20px, 5.5vw, 28px); font-weight: 800; color: var(--text); margin: 0 0 24px; }

.testimonial-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }
.testimonial-card {
  background: var(--card);
  border: 2.5px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testimonial-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.testimonial-who { display: flex; align-items: center; gap: 10px; }
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-3), var(--purple-4));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.testimonial-name { display: flex; align-items: center; gap: 5px; font-size: 14px; font-weight: 700; color: var(--text); }
.testimonial-time { font-size: 12px; color: var(--text-dim); margin-top: 1px; }
.testimonial-quote { font-size: 14.5px; color: var(--text-body); line-height: 1.6; }

.see-all-wrap { display: flex; justify-content: center; margin-bottom: 20px; }
.btn-outline {
  min-height: 44px;
  padding: 0 24px;
  border-radius: 9px;
  background: transparent;
  border: 2px solid rgba(176,38,255,0.7);
  color: var(--purple-soft);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--purple); color: #fff; }
.btn-outline:disabled {
  opacity: 0.5;
  cursor: default;
  border-color: rgba(176,38,255,0.35);
  color: var(--text-dim);
}
.btn-outline:disabled:hover { border-color: rgba(176,38,255,0.35); color: var(--text-dim); }

.video-testimonial {
  background: var(--card);
  border: 2.5px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 420px;
}
.video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  background: var(--card-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.video-thumb .play-badge { width: 52px; height: 52px; border: 2px solid var(--purple-soft); }
.video-thumb .play-badge .tri {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--purple-soft);
  margin-left: 4px;
}
.video-caption { font-size: 13px; color: var(--text-dim); text-align: center; }

.cross-sell-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
/* Cross-sell cards get the same premium padded/gradient frame as the catalogue grid
   (see .cross-sell-card rules above), just with compact content: overline + title +
   button, no description. */

/* Sticky purchase bar */
.sticky-buy-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(19,19,31,0.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--border);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  transition: transform 0.25s ease;
}
.sticky-buy-bar.visible { transform: translateY(0); }
.sticky-buy-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-buy-price {
  font-size: clamp(16px, 4.5vw, 20px);
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
  flex: none;
}
.sticky-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 320px;
  min-height: 46px;
  background: linear-gradient(135deg, var(--purple-3), var(--purple-4));
  border: none;
  color: #fff;
  font-size: clamp(13px, 3.6vw, 15px);
  font-weight: 700;
  border-radius: 9px;
  cursor: pointer;
  text-decoration: none;
}
.sticky-buy-btn:hover { color: #fff; }

@media (max-width: 1023px) {
  .testimonial-row, .cross-sell-row { grid-template-columns: 1fr; }
}

/* ==================================================================
   SUPPORT & À PROPOS PAGES
   ================================================================== */

.simple-hero { padding: 56px 24px 40px; }
.hero-subtitle {
  position: relative;
  z-index: 1;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(14.5px, 3.8vw, 17px);
  color: #fff;
  font-weight: 400;
  max-width: 600px;
  margin: 0;
}

/* ---- Contact / WhatsApp card ---- */
.contact-card-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px 8px;
}
.contact-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 2.5px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--purple-3), var(--purple-4));
}
.contact-card-inner {
  background: var(--card);
  border-radius: 18px;
  padding: clamp(24px, 6vw, 36px) clamp(18px, 5vw, 28px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.contact-card-inner h2 {
  margin: 0;
  font-size: clamp(18px, 4.6vw, 22px);
  font-weight: 800;
  color: var(--text);
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 380px;
  min-height: 54px;
  background: #25D366;
  color: #06210F;
  font-size: clamp(14.5px, 3.8vw, 16px);
  font-weight: 800;
  border-radius: 12px;
  padding: 0 22px;
}
.whatsapp-btn:hover { filter: brightness(1.08); color: #06210F; }
.whatsapp-btn svg { flex: none; }
.contact-phone-block { display: flex; flex-direction: column; gap: 4px; }
.contact-phone { margin: 0; font-size: clamp(18px, 4.6vw, 20px); font-weight: 800; color: #fff; letter-spacing: 0.2px; }
.contact-note { margin: 0; font-size: 13px; color: var(--text-dim); }

/* ---- FAQ ---- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 0 clamp(16px, 4.5vw, 22px);
  margin-bottom: 14px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 17px 0;
  font-size: clamp(14.5px, 3.8vw, 16px);
  font-weight: 700;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  line-height: 1;
  color: var(--purple-soft);
  flex: none;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { border-bottom: 1px solid rgba(176,38,255,0.25); }
.faq-answer { padding: 14px 0 20px; color: var(--text-body); font-size: 14.5px; line-height: 1.65; }
.faq-answer p { margin: 0 0 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-more-link { max-width: 780px; margin: 18px auto 0; text-align: center; font-size: 14px; color: var(--text-dim); }
.faq-more-link a { font-weight: 700; }
.faq-part { margin-top: 16px; }
.faq-part-title {
  font-weight: 800;
  color: var(--purple-soft);
  font-size: 13px;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}
.faq-answer ul {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.faq-answer li { font-size: 13.5px; color: var(--text-body); line-height: 1.5; }

/* ---- Politique de confidentialité ---- */
.policy-section { max-width: 780px; scroll-margin-top: 100px; }
.policy-intro { font-size: 14.5px; color: var(--text-body); line-height: 1.65; margin: 0 0 8px; }
.policy-block { padding: 16px 0; }
.policy-block h3 { font-size: clamp(15px, 3.8vw, 17px); font-weight: 800; color: var(--text); margin: 0 0 10px; }
.policy-block p { font-size: 14.5px; color: var(--text-body); line-height: 1.65; margin: 0 0 8px; }
.policy-block p:last-child { margin-bottom: 0; }
.policy-block ul { margin: 8px 0 0; padding-left: 20px; display: flex; flex-direction: column; gap: 7px; }
.policy-block li { font-size: 14.5px; color: var(--text-body); line-height: 1.5; }
.policy-divider { height: 1px; background: rgba(176,38,255,0.22); }

/* ---- À propos: problème ---- */
.problem-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--card-2);
  border: 2.5px solid var(--border);
  border-radius: 18px;
  padding: clamp(24px, 6vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.problem-icon { font-size: 36px; line-height: 1; }
.problem-text p {
  margin: 0;
  font-size: clamp(16px, 4.2vw, 19px);
  color: var(--text-body);
  line-height: 1.6;
  font-weight: 500;
}
.problem-text p.problem-result {
  margin-top: 8px;
  color: var(--text);
  font-weight: 700;
  background: linear-gradient(135deg, #E24EFF, var(--purple-4));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- À propos: solution / stats ---- */
.solution-card {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 18px;
  padding: clamp(24px, 6vw, 40px) clamp(18px, 5vw, 32px);
  background: linear-gradient(160deg, rgba(176,38,255,0.16), rgba(11,11,20,0) 55%), var(--card);
  border: 2.5px solid var(--border);
  text-align: center;
}
.solution-card h2 {
  margin: 0 0 28px;
  font-size: clamp(19px, 5vw, 26px);
  font-weight: 800;
  color: var(--text);
}
.stat-row {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.stat-block { padding: 6px 0; }
.stat-block + .stat-block { border-top: 1px solid rgba(176,38,255,0.2); padding-top: 22px; }
.stat-number {
  font-size: clamp(24px, 6.5vw, 30px);
  font-weight: 800;
  background: linear-gradient(135deg, #E24EFF, var(--purple-4));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.stat-caption { font-size: 14px; color: var(--text-dim); }
@media (min-width: 760px) {
  .stat-row { flex-direction: row; align-items: stretch; }
  .stat-block { flex: 1; }
  .stat-block + .stat-block { border-top: none; border-left: 1px solid rgba(176,38,255,0.2); padding-top: 6px; padding-left: 22px; }
}

/* ---- À propos: pour qui ---- */
.whofor-title {
  text-align: center;
  font-size: clamp(19px, 5vw, 26px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 24px;
}
.whofor-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) {
  .whofor-grid { grid-template-columns: repeat(3, 1fr); }
}
.whofor-card {
  background: var(--card);
  border: 2.5px solid var(--border-strong);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.whofor-icon { font-size: 28px; }
.whofor-card p { margin: 0; font-size: 14.5px; color: var(--text-body); line-height: 1.55; }

/* ---- À propos: zone géographique ---- */
.geo-block { max-width: 700px; margin: 0 auto; text-align: center; }
.geo-block p { margin: 0 0 16px; font-size: 14.5px; color: var(--text-dim); }
.geo-flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  font-size: clamp(14px, 3.8vw, 16px);
  color: var(--text-body);
  font-weight: 600;
}

/* ---- À propos: CTA final ---- */
.about-cta { max-width: 700px; margin: 0 auto; text-align: center; }
.about-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple-3), var(--purple-4));
  color: #fff;
  font-size: clamp(15px, 4vw, 17px);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(124,58,237,0.3);
}
.about-cta-btn:hover { filter: brightness(1.1); color: #fff; }
.about-cta-note { margin: 14px 0 0; font-size: 13px; color: var(--text-dim); }
