/* ========= VARIABLES GLOBALES ========= */
:root {
  --bg: #020617;          /* fond principal bleu foncé / noir */
  --bg-alt: #03091b;
  --accent: #22e58b;      /* vert */
  --accent-soft: rgba(34, 229, 139, 0.16);
  --accent-strong: #16c26f;
  --text: #f9fafb;
  --muted: #9ca3af;
  --card-border: rgba(148, 163, 184, 0.35);
  --card-bg: rgba(15, 23, 42, 0.82);
  --danger: #fb7185;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.8);
}

/* ========= RESET SIMPLE ========= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, #0b1220 0, transparent 55%),
    radial-gradient(circle at top right, #0f766e 0, transparent 55%),
    radial-gradient(circle at bottom, #111827 0, #020617 55%);
  color: var(--text);
}

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

/* ========= LAYOUT DE PAGE ========= */
.page-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 16px 80px;
}

/* ========= NAVBAR ========= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0 14px;
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.84));
  backdrop-filter: blur(18px);
  border-radius: 18px; /* arrondit les coins */
  margin-top: 10px;    /* espace en haut pour mieux voir l’arrondi */
  padding-left: 20px;
  padding-right: 20px;
}

.logo-image img {
  height: 38px;       /* ajuste selon la taille voulue */
  width: auto;
  display: block;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle at top, rgba(34, 229, 139, 0.18), transparent 60%);
}

.logo-mark.small {
  width: 26px;
  height: 26px;
}

.logo-target {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  box-shadow: 0 0 18px rgba(34, 229, 139, 0.85);
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.15s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transition: width 0.2s ease;
}

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

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

.nav-right {
  display: flex;
  align-items: center;
}

/* ========= BOUTONS ========= */
.btn-primary,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #020617;
  font-weight: 600;
  box-shadow: 0 18px 45px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(16, 185, 129, 0.45);
}

.btn-outline {
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--muted);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(15, 23, 42, 0.7);
}

.btn-ghost {
  border: 1px solid transparent;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.6);
}

.btn-ghost:hover {
  border-color: rgba(148, 163, 184, 0.6);
  color: var(--text);
}

.block-btn {
  width: 100%;
  justify-content: center;
}

/* ========= HERO ========= */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
  padding: 40px 0 52px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.75);
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.1rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

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

.hero-subtitle {
  color: var(--muted);
  max-width: 520px;
  font-size: 0.98rem;
  margin-bottom: 20px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.hero-metrics > div {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at top left, rgba(34, 229, 139, 0.18), rgba(15, 23, 42, 0.9));
}

.metric-label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.metric-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-risk {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ========= CARTE GLASSMORPHISM ========= */
.glass-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.72));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

/* HERO VISUAL */
.hero-visual {
  padding: 16px 16px 18px;
}

.hero-visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-visual-status {
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(34, 229, 139, 0.45);
  font-size: 0.74rem;
}

.hero-visual-body {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

/* ===== BADGE AVEC LUEUR VERTE ===== */
.badge-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--text);
  background: rgba(16, 185, 129, 0.12); /* fond vert transparent */
  border: 1px solid rgba(16, 185, 129, 0.35); /* contour léger */
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.35); /* Lueur verte */
  backdrop-filter: blur(4px);
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22e58b;                 /* point vert */
  box-shadow: 0 0 12px #22e58b;         /* lueur du point */
  display: block;
}

/* ----- Header URL type navigateur ----- */

.ms-frame-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 4px 14px;
}

.ms-frame-header-url {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

.ms-lock {
  font-size: 0.85rem;
  opacity: 0.9;
}

.ms-url {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.3px;
  white-space: nowrap;
  user-select: none;
}


/* ========= SECTIONS GÉNÉRALES ========= */
.section {
  padding: 40px 0;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 580px;
  font-size: 0.96rem;
}

/* Split layout */
.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.section-text > p {
  color: var(--muted);
  margin-bottom: 20px;
}

/* Feature list */
.feature-list {
  display: grid;
  gap: 16px;
}

.feature-item h3 {
  font-size: 1.03rem;
  margin-bottom: 4px;
}

.feature-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-image {
  padding: 16px 16px 18px;
}

/* ========= GRID FEATURES ========= */
.section-grid {
  text-align: left;
}

.section-grid > h2 {
  margin-bottom: 6px;
}

.section-grid > .section-subtitle {
  margin-bottom: 24px;
}

.grid-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.grid-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.grid-card-image {
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.grid-card-body {
  padding: 14px 14px 15px;
}

.grid-card-body h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.grid-card-body p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ========= DEMO ========= */
.demo-section {
  display: flex;
  justify-content: center;
}

.demo-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  padding: 22px 22px 24px;
}

.demo-text p {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 8px 0 16px;
}

.demo-media img {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

/* ========= PRICING ========= */
.pricing-section {
  text-align: left;
}

.pricing-section h2 {
  margin-bottom: 6px;
}

.pricing-section .section-subtitle {
  margin-bottom: 22px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

}

.pricing-card {
  padding: 18px 18px 20px;
  position: relative;
}

.pricing-card-featured {
  border-color: var(--accent);
  box-shadow: 0 26px 60px rgba(16, 185, 129, 0.45);
}

.pricing-badge {
  position: absolute;
  top: 14px;
  right: 16px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-tag {
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 10px;
}

.pricing-price {
  margin-bottom: 12px;
}

.pricing-amount {
  font-size: 1.9rem;
  font-weight: 600;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--muted);
  margin-left: 6px;
}

.pricing-features {
  list-style: none;
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.pricing-features li {
  position: relative;
  padding-left: 18px;
}

.pricing-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 0.8rem;
  color: var(--accent);
}

.pricing-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 8px;
}

.pricing-disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 20px;
}

/* ========= FAQ ========= */
.faq-section {
  text-align: left;
}

.faq-section h2 {
  margin-bottom: 6px;
}

.faq-section .section-subtitle {
  margin-bottom: 18px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.89);
  padding: 10px 14px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.95rem;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ========= FOOTER ========= */
.footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  font-size: 0.84rem;
  color: var(--muted);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.84rem;
}

.footer-links a:hover {
  color: var(--text);
}

/* ========= RESPONSIVE ========= */
@media (max-width: 960px) {
  .hero,
  .section-split,
  .demo-inner,
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .navbar {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none; /* simplification mobile, tu peux faire un vrai menu burger si tu veux */
  }
}

@media (max-width: 720px) {
  .grid-features {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-wrapper {
    padding-bottom: 50px;
  }
}

/* ===== HERO CENTRÉ ===== */
.hero-centered {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
}

.hero-centered-inner {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-centered-inner h1 {
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-centered-inner .hero-subtitle {
  max-width: 640px;
  margin-bottom: 22px;
  text-align: center;
}

.hero-centered .hero-actions {
  justify-content: center;
}

.hero-centered-image {
  margin-top: 30px;
  width: 100%;
}

.hero-centered-image .hero-visual-body img {
  width: 100%;
}

/* ============================
   Cadre premium MarketSniper
   ============================ */

.ms-frame {
  width: 100%;
  margin: 30px auto 0;
  border-radius: 22px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.75), rgba(2, 6, 23, 0.85));
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 0 22px rgba(34,229,139,0.12),
    inset 0 0 18px rgba(34,229,139,0.08);
  backdrop-filter: blur(12px);
}

/* Header du cadre */
.ms-frame-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 4px 14px;
}

/* Pastilles */
.ms-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.ms-dots span:nth-child(1) { background: #ff5f57; }
.ms-dots span:nth-child(2) { background: #ffbd2e; }
.ms-dots span:nth-child(3) { background: #28c840; }

/* Titre du cadre */
.ms-frame-title {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
  opacity: 0.9;
}

/* Image */
.ms-frame-body {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}

.ms-frame-body img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* Conteneur à gauche : pastilles + url */
.ms-left-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Lien façon barre d'URL */
.ms-frame-header-url {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

.ms-lock {
  font-size: 0.85rem;
  opacity: 0.85;
}

.ms-url {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.3px;
  user-select: none;
  white-space: nowrap;
}

/* Transition du cadre */
.ms-frame {
  transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
}

/* Glow au survol du cadre complet */
.ms-frame:hover {
  box-shadow:
    0 0 30px rgba(0, 255, 180, 0.25),
    0 0 60px rgba(0, 255, 180, 0.18),
    inset 0 0 20px rgba(0, 255, 180, 0.12);
  transform: scale(1.01);
}

/* Glow au survol pour toutes les images des sections inférieures */
.glass-card img,
.grid-card-image img,
.demo-media img {
  transition: 0.3s ease-out;
  border-radius: 16px;
}

.glass-card img:hover,
.grid-card-image img:hover,
.demo-media img:hover {
  box-shadow:
    0 0 25px rgba(0, 255, 180, 0.22),
    0 0 50px rgba(0, 255, 180, 0.15),
    inset 0 0 20px rgba(0, 255, 180, 0.10);
  transform: scale(1.01);
}

 /* === Section Avis === */

.reviews-section {
  text-align: center;
  padding: 70px 0;
}

.reviews-section h2 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.reviews-subtitle {
  color: var(--muted);
  margin-bottom: 30px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 20px;
}

.review-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 0 28px rgba(0, 30, 80, 0.18);
  transition: 0.25s ease-out;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(0, 255, 180, 0.18);
}

.review-card img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  border: 2px solid rgba(255,255,255,0.08);
}

.review-role {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.92rem;
  color: #dce4f3;
  line-height: 1.45;
}

/* ==== Avis en images ==== */

.reviews-images {
  text-align: center;
  padding: 60px 0;
}

.reviews-images h2 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.reviews-images .section-subtitle {
  color: var(--muted);
  margin-bottom: 26px;
}

.reviews-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* Désactive toute ombre/glow sur l'image directement */
.glass-card img,
.grid-card-image img,
.demo-media img {
    box-shadow: none !important;
    transform: none !important;
}

/* Effet glow sur les CADRES (pas sur les images) */
.glass-card,
.grid-card,
.demo-inner {
    transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
}

.glass-card:hover,
.grid-card:hover,
.demo-inner:hover {
    box-shadow:
        0 0 28px rgba(0, 255, 180, 0.22),
        0 0 58px rgba(0, 255, 180, 0.14),
        inset 0 0 20px rgba(0, 255, 180, 0.10);
    transform: translateY(-4px);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* format 16:9 */
  border-radius: 14px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

/* Centrer le titre et le sous-titre de la section FEATURES 2 */
.section-grid {
    text-align: center;
}

.section-grid h2 {
    margin-left: auto;
    margin-right: auto;
}

.section-grid .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* Reset du compteur */
.feature-list {
  counter-reset: step-counter;
}

.feature-item h3 {
  position: relative;
  padding-left: 34px;  /* espace pour la pastille */
  margin-bottom: 6px;
}

/* La pastille numérotée collée au H3 */
.feature-item h3::before {
  counter-increment: step-counter;
  content: counter(step-counter);

  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 22px;
  height: 22px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 0.75rem;
  font-weight: 600;
  color: #d4e6ff;

  background: rgba(14, 22, 42, 0.85);     /* bleu nuit foncé */
  border: 1px solid rgba(0, 150, 255, 0.35);

  transition: 0.25s ease;
  box-shadow: 0 0 0 rgba(0, 255, 180, 0);
}

/* Effet glow + animation au hover */
.feature-item:hover h3::before {
  transform: translateY(-50%) scale(1.12);

  border-color: rgba(0, 200, 255, 0.55);
  background: rgba(14, 22, 42, 1);

  box-shadow:
    0 0 10px rgba(0, 255, 200, 0.22),
    0 0 20px rgba(0, 150, 255, 0.18);
}

/* ---- Titre features avec fusée animée ---- */

.features-title {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* espace entre la fusée et le texte */
}

/* Fusée animée */
.rocket-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;        /* taille de la fusée */
  animation: rocketFloat 1.6s ease-in-out infinite;
}

/* Animation flottante */
@keyframes rocketFloat {
  0% {
    transform: translateY(0px);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
  100% {
    transform: translateY(0px);
    opacity: 0.9;
  }
}

.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.nav-logo-link:hover {
  opacity: 0.85;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px; /* espace entre logo et texte */
}

.footer-logo {
  width: 38px;
  height: auto;
  display: block;
}

/* ===== BLACK FRIDAY BADGE & PRICING ===== */

.bf-old-price {
  text-decoration: line-through;
  opacity: 0.45;
}

.bf-new-price {
  margin-top: -10px;
}

.bf-new-price .pricing-amount {
  color: #00ffaa;
  font-size: 2.4rem;
  text-shadow: 0 0 14px rgba(0,255,170,0.5);
}

.bf-code {
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(255, 0, 0, 0.15);
  border: 1px solid rgba(255, 0, 0, 0.35);
  border-radius: 10px;
  font-size: 0.9rem;
  color: #ff5a5a;
  text-shadow: 0 0 6px rgba(255,0,0,0.5);
  backdrop-filter: blur(4px);
}

/* Optionnel : un badge Black Friday */
.pricing-card-featured {
  position: relative;
}

.pricing-card-featured::before {
  content: "BLACK FRIDAY";
  position: absolute;
  top: -12px;
  right: -12px;
  background: linear-gradient(135deg, #ff0000, #b10000);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 8px;
  transform: rotate(8deg);
  box-shadow: 0 0 14px rgba(255,0,0,0.5);
  text-shadow: 0 0 6px rgba(0,0,0,0.5);
}

.bf-inline-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 10px 0 15px;
}

.bf-inline-price .old-price {
  text-decoration: line-through;
  opacity: 0.45;
  font-size: 1.6rem;
}

.bf-inline-price .arrow-sep {
  opacity: 0.5;
  font-size: 1.6rem;
}

.bf-inline-price .new-price {
  font-size: 2rem;
  color: #00ffaa;
  text-shadow: 0 0 10px rgba(0,255,170,0.5);
}

.bf-code {
  background: rgba(255,0,0,0.15);
  border: 1px solid rgba(255,0,0,0.4);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 10px;
  text-align: center;
}

.pricing-card {
  padding: 18px 18px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px; /* espace interne propre */
}

.pricing-card-featured {
  border-color: var(--accent);
  box-shadow: 0 26px 60px rgba(16, 185, 129, 0.45);
}

.pricing-features {
  margin-top: 6px;
  margin-bottom: 14px;
  display: grid;
  gap: 7px;
}

.block-btn {
  margin-top: 8px;
}

/* Prix compact Black Friday aligné comme l'offre mensuelle */
.bf-inline-price {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start; /* aligné à gauche */
  flex-wrap: wrap;
}

.bf-inline-price .old-price {
  text-decoration: line-through;
  opacity: 0.45;
  font-size: 1.5rem;
}

.bf-inline-price .arrow-sep {
  opacity: 0.6;
  font-size: 1.4rem;
}

.bf-inline-price .new-price {
  font-size: 1.9rem;
  font-weight: 700;
  color: #00ffaa;
  text-shadow: 0 0 10px rgba(0,255,170,0.45);
}

/* Code promo affiché à droite du prix (inline) */
.bf-code-inline {
  margin-left: 10px;
  font-size: 0.95rem;
  background: rgba(255, 0, 0, 0.15);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,0,0,0.35);
  color: #ff5a5a;
  white-space: nowrap;
}

/* ===== BADGE BLACK FRIDAY ===== */

.blackfriday-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffeded;
  background: linear-gradient(135deg, #b10000, #ff0000);
  border-radius: 12px;
  text-shadow: 0 0 8px rgba(0,0,0,0.4);
  box-shadow:
    0 0 14px rgba(255, 0, 0, 0.55),
    0 0 22px rgba(255, 0, 0, 0.40);
  animation: bfPulse 2s ease-in-out infinite;
  letter-spacing: 0.4px;
}

/* Animation légère "respiration" */
@keyframes bfPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 14px rgba(255,0,0,0.45);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 22px rgba(255,0,0,0.7);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 14px rgba(255,0,0,0.45);
  }
}

/* Empêche les navigateurs mobiles d'assombrir les couleurs vives */
@media (max-width: 768px) {
  * {
    -webkit-text-size-adjust: 100%;
    color-adjust: exact;
    -webkit-color-adjust: exact;
  }
}

@media (max-width: 768px) {

  /* Boutons verts */
  .btn-primary {
    background: #00ffbd !important;
    box-shadow: 0 0 16px rgba(0, 255, 180, 0.55) !important;
  }

  /* Glow au hover */
  .btn-primary:hover {
    background: #00ffd0 !important;
    box-shadow:
      0 0 26px rgba(0, 255, 200, 0.75),
      0 0 40px rgba(0, 255, 200, 0.45) !important;
  }

  /* Tag Black Friday (rouge) — plus lumineux sur mobile */
  .blackfriday-tag {
    background: linear-gradient(135deg, #ff2b2b, #ff0000) !important;
    box-shadow:
      0 0 18px rgba(255, 70, 70, 0.60),
      0 0 30px rgba(255, 0, 0, 0.45) !important;
  }
}

/* Navbar compacte sur mobile */
@media (max-width: 768px) {

  .navbar {
    padding: 8px 14px;             /* réduit la hauteur */
    height: auto;                  /* enlève la hauteur forcée */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  /* Logo + texte réduits */
  .nav-left .logo-image img {
    height: 28px;                  /* réduit le logo */
  }

  .nav-left .logo-text {
    font-size: 1rem;               /* réduit le texte */
  }

  /* On met les liens au milieu ou on les masque si nécessaire */
  .nav-links {
    display: none;                
  }

  /* Bouton "Se lancer" */
  .nav-right .btn-outline {
    padding: 6px 12px;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  /* Le conteneur gauche */
  .nav-left {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 1;
  }

  /* Le bouton reste bien à droite */
  .nav-right {
    flex-shrink: 0;
  }
}
