/* ====================================================
   LE FIGARO PATRIMOINE & BOURSE — style.css v2
   ==================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #c8102e;
  --red-dark:  #a50d25;
  --dark:      #1a1a1a;
  --mid:       #444444;
  --light:     #767676;
  --pale:      #aaaaaa;
  --border:    #e0e0e0;
  --bg-light:  #f5f5f5;
  --white:     #ffffff;
  --pos:       #1a7f3c;
  --neg:       #c8102e;

  --ff-serif:  'Playfair Display', 'EB Garamond', Georgia, serif;
  --ff-body:   'Lora', 'EB Garamond', Georgia, serif;
  --ff-sans:   'Source Sans 3', Arial, Helvetica, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--ff-sans); color: var(--dark); background: var(--white); }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ====================================================
   PROMO BAR
   ==================================================== */
.promo-bar {
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--ff-sans);
  line-height: 1;
}
.promo-label {
  background: #fff;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 3px 7px;
  border-radius: 1px;
}
.promo-text { font-weight: 400; }
.promo-cta {
  border: 1px solid rgba(255,255,255,.7);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: 1px;
  letter-spacing: .03em;
}
.promo-cta:hover { background: rgba(255,255,255,.12); text-decoration: none; }

/* ====================================================
   HEADER UTILITY BAR
   ==================================================== */
.header-util {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-util-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.header-util-left { display: flex; align-items: center; gap: 20px; }

/* Hamburger */
.menu-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 1px solid #ccc;
  padding: 5px 10px;
  font-size: 11.5px;
  font-family: var(--ff-sans);
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  border-radius: 1px;
  letter-spacing: .02em;
}
.menu-toggle:hover { border-color: var(--dark); }
.hamburger { display: flex; flex-direction: column; gap: 3px; }
.hamburger span {
  display: block;
  width: 14px;
  height: 1.5px;
  background: var(--dark);
}

.util-nav { display: flex; gap: 0; }
.util-nav a {
  font-size: 11.5px;
  color: var(--mid);
  padding: 0 10px;
  font-family: var(--ff-sans);
  border-right: 1px solid var(--border);
  line-height: 1;
}
.util-nav a:first-child { padding-left: 0; }
.util-nav a:last-child { border-right: none; }
.util-nav a:hover { color: var(--red); text-decoration: none; }

.header-util-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-connect {
  font-size: 12px;
  color: var(--mid);
  font-family: var(--ff-sans);
  font-weight: 600;
}
.btn-connect:hover { color: var(--red); text-decoration: none; }
.btn-subscribe {
  background: var(--red);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  font-family: var(--ff-sans);
  letter-spacing: .05em;
  padding: 7px 16px;
  border-radius: 1px;
}
.btn-subscribe:hover { background: var(--red-dark); text-decoration: none; }

/* ====================================================
   HEADER LOGO BAR
   ==================================================== */
.header-logo {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-logo-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 70px;
}

/* Left side: invisible mirror (keeps logo centered) */
.logo-side-left {
  display: flex;
  justify-content: flex-start;
  visibility: hidden; /* same size as right, but invisible */
}

/* Center: logo image */
.logo-center-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo-brand:hover { opacity: .85; text-decoration: none; }
.logo-img {
  height: 101px;
  width: auto;
  max-width: 480px;
  display: block;
  object-fit: contain;
}

/* Right side: vente flash */
.logo-side-right {
  display: flex;
  justify-content: flex-end;
}
.btn-vente-flash-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--red);
  color: #fff;
  padding: 7px 13px;
  border-radius: 1px;
  text-decoration: none;
  text-align: center;
}
.btn-vente-flash-header:hover { background: var(--red-dark); text-decoration: none; }
.vf-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  font-family: var(--ff-sans);
  line-height: 1.2;
}
.vf-detail {
  font-size: 10px;
  font-weight: 400;
  font-family: var(--ff-sans);
  margin-top: 2px;
  opacity: .9;
  white-space: nowrap;
}

/* ====================================================
   MAIN NAV
   ==================================================== */
.main-nav {
  background: var(--white);
  border-bottom: 2px solid var(--border);
}
.main-nav-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.main-nav-inner::-webkit-scrollbar { display: none; }
.main-nav-inner a {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--dark);
  font-family: var(--ff-sans);
  padding: 12px 14px;
  white-space: nowrap;
  display: block;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .15s, border-color .15s;
}
.main-nav-inner a:hover { color: var(--red); text-decoration: none; }
.main-nav-inner a.nav-active {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* ====================================================
   TICKER BAR
   ==================================================== */
.ticker-bar {
  background: #1c1c1c;
  color: #fff;
  display: flex;
  align-items: center;
  height: 34px;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.ticker-cac {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  flex-shrink: 0;
  border-right: 1px solid #3a3a3a;
  height: 100%;
}
.tc-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #aaa;
  font-family: var(--ff-sans);
}
.tc-val {
  font-size: 13px;
  font-weight: 700;
  font-family: var(--ff-sans);
}
.tc-chg {
  font-size: 12px;
  font-weight: 600;
  font-family: var(--ff-sans);
}
.ticker-divider {
  width: 1px;
  height: 100%;
  background: #3a3a3a;
  flex-shrink: 0;
}
.ticker-palmares-label {
  font-size: 9.5px;
  letter-spacing: .08em;
  color: #888;
  font-family: var(--ff-sans);
  padding: 0 12px;
  flex-shrink: 0;
  white-space: nowrap;
  border-right: 1px solid #3a3a3a;
}
.ticker-scroll-outer {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.ticker-scroll-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: tickerRun 55s linear infinite;
  will-change: transform;
}
.ticker-scroll-outer:hover .ticker-scroll-inner { animation-play-state: paused; }
@keyframes tickerRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ti {
  font-size: 11.5px;
  font-family: var(--ff-sans);
  padding: 0 18px 0 0;
}
.ti b { font-weight: 700; }
.ti.positive { color: #fff; }
.ti.positive b { color: #4fc87a; }
.ti.negative { color: #fff; }
.ti.negative b { color: #f06b5a; }
.ti-label-sep {
  font-size: 9px;
  letter-spacing: .08em;
  color: #666;
  text-transform: uppercase;
  padding: 0 18px 0 4px;
  border-left: 1px solid #3a3a3a;
  margin-left: 4px;
}
.ticker-search-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-left: 1px solid #3a3a3a;
  height: 100%;
  padding: 0 10px;
  gap: 4px;
}
.ticker-search-input {
  background: transparent;
  border: none;
  outline: none;
  color: #ccc;
  font-size: 11.5px;
  font-family: var(--ff-sans);
  width: 170px;
  padding: 0;
}
.ticker-search-input::placeholder { color: #666; }
.ticker-search-btn {
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 2px;
}
.ticker-search-btn:hover { color: #fff; }

.positive { color: var(--pos); }
.negative { color: var(--neg); }

/* ====================================================
   PAGE LAYOUT
   ==================================================== */
.page-layout {
  max-width: 1340px;
  margin: 0 auto;
  padding: 24px 20px;
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 36px;
  align-items: start;
}
.page-main { min-width: 0; }

/* ====================================================
   BREADCRUMB
   ==================================================== */
.breadcrumb {
  font-size: 11.5px;
  color: var(--pale);
  font-family: var(--ff-sans);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--pale); }
.breadcrumb a:hover { color: var(--red); text-decoration: none; }
.breadcrumb span { color: var(--pale); }

/* ====================================================
   ARTICLE
   ==================================================== */
.article-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--dark);
  border: 1px solid var(--dark);
  padding: 3px 8px;
  border-radius: 1px;
  font-family: var(--ff-sans);
  transition: background .15s, color .15s;
}
.tag:hover { background: var(--dark); color: var(--white); text-decoration: none; }

.article-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--light);
  font-family: var(--ff-sans);
  margin-bottom: 16px;
}
.article-meta strong { color: var(--dark); font-weight: 600; }
.meta-dot { color: var(--pale); }

.article-chapo {
  font-family: var(--ff-body);
  font-size: 17px;
  font-style: italic;
  line-height: 1.55;
  color: var(--mid);
  border-left: 3px solid var(--red);
  padding-left: 14px;
  margin-bottom: 20px;
}

/* Hero */
.article-figure { margin-bottom: 18px; }
.article-hero {
  width: 100%;
  height: 295px;
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 45%, #0e2a54 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-wm {
  font-family: var(--ff-serif);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 8px;
  color: rgba(255,255,255,.1);
  text-transform: uppercase;
  user-select: none;
}
.article-figure figcaption {
  font-size: 10.5px;
  color: var(--pale);
  font-style: italic;
  font-family: var(--ff-sans);
  text-align: right;
  margin-top: 5px;
}

/* Share bar */
.share-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.share-link {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 0;
  padding: 4px 5px 4px 0;
  font-size: 11px;
  font-family: var(--ff-sans);
  color: #8b9098;
  cursor: pointer;
  border-radius: 1px;
}
.share-link svg {
  width: 11px;
  height: 11px;
}
.share-link:hover { color: var(--dark); text-decoration: underline; }
.share-icons { display: flex; gap: 5px; }
.soc-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  border-radius: 1px;
}
.soc-btn:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* Redac intro blockquote */
.redac-intro {
  font-size: 13.5px;
  color: var(--mid);
  font-family: var(--ff-sans);
  font-style: italic;
  line-height: 1.6;
  border-left: 3px solid var(--border);
  padding: 12px 16px;
  background: #fafafa;
  margin-bottom: 24px;
}

/* Article body */
.article-body {
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.78;
  color: var(--dark);
  margin-bottom: 28px;
}
.article-body p { margin-bottom: 18px; }
.article-body h2 {
  font-family: var(--ff-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--dark);
  margin: 30px 0 14px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--border);
  line-height: 1.25;
}

/* Redac conseille */
.redac-conseille {
  background: #fffbf2;
  border: 1px solid #e8d8a0;
  padding: 14px 18px;
  margin-bottom: 22px;
  border-radius: 1px;
}
.rc-head {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8c6d0f;
  font-family: var(--ff-sans);
  margin-bottom: 10px;
}
.redac-conseille ul { list-style: none; }
.redac-conseille li {
  padding: 6px 0;
  border-bottom: 1px solid #e8d8a0;
  font-family: var(--ff-sans);
  font-size: 13px;
  line-height: 1.4;
}
.redac-conseille li:last-child { border-bottom: none; padding-bottom: 0; }
.redac-conseille a:hover { color: var(--red); text-decoration: none; }

/* Engagements row */
.eng-row {
  display: flex;
  border: 1px solid var(--border);
  margin-bottom: 26px;
  border-radius: 1px;
  overflow: hidden;
}
.eng-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  font-size: 12.5px;
  color: var(--mid);
  font-family: var(--ff-sans);
  line-height: 1.4;
  background: #fafafa;
  cursor: pointer;
}
.eng-item:hover { background: #f0f0f0; }
.eng-item svg { flex-shrink: 0; color: var(--mid); }
.eng-sep { width: 1px; background: var(--border); flex-shrink: 0; }

/* Comments */
.comments { margin-bottom: 36px; }
.comments-head {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--ff-sans);
  color: var(--dark);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--dark);
  margin-bottom: 14px;
}
.comment {
  padding: 14px 16px;
  background: var(--bg-light);
  border-left: 3px solid var(--border);
}
.cmt-author {
  font-size: 13px;
  font-weight: 700;
  font-family: var(--ff-sans);
  color: var(--dark);
  margin-right: 10px;
}
.cmt-date {
  font-size: 11px;
  color: var(--pale);
  font-family: var(--ff-sans);
  display: block;
  margin-bottom: 8px;
  margin-top: 2px;
}
.cmt-text {
  font-size: 14px;
  font-style: italic;
  font-family: var(--ff-body);
  color: var(--mid);
  margin-bottom: 10px;
}
.cmt-more {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  color: var(--red);
  font-family: var(--ff-sans);
}
.cmt-more:hover { text-decoration: underline; }

/* ====================================================
   RELATED SECTIONS
   ==================================================== */
.related-section { margin-bottom: 36px; }
.related-heading {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-family: var(--ff-sans);
  color: var(--dark);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--dark);
  margin-bottom: 18px;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}
.card {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.card:last-child { border-bottom: none; }

.card-img {
  width: 95px;
  height: 68px;
  border-radius: 1px;
  flex-shrink: 0;
  background-color: #d8d8d8;
  background-size: cover;
  background-position: center;
}
/* Placeholder gradients */
.ci-rising   { background: linear-gradient(135deg, #d4c5a9, #b09070); }
.ci-cac      { background: linear-gradient(135deg, #a9bcd4, #7090b0); }
.ci-hermes   { background: linear-gradient(135deg, #d4a9a9, #b07070); }
.ci-record   { background: linear-gradient(135deg, #a9d4b4, #70b080); }
.ci-lettre   { background: linear-gradient(135deg, #d4cba9, #b0a070); }
.ci-edenred  { background: linear-gradient(135deg, #c4a9d4, #9070b0); }
.ci-legrand  { background: linear-gradient(135deg, #a9c4d4, #7090b0); }
.ci-droits   { background: linear-gradient(135deg, #d4b8a9, #b08070); }
.ci-lumibird { background: linear-gradient(135deg, #a9d4cf, #70b0ac); }
.ci-ia       { background: linear-gradient(135deg, #b4b4d4, #8888b0); }

.card-body { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.card-rub {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--red);
  font-family: var(--ff-sans);
  line-height: 1;
}
.card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--dark);
}
.card h3 a:hover { color: var(--red); text-decoration: none; }
.card p {
  font-size: 11.5px;
  color: var(--light);
  line-height: 1.45;
  font-family: var(--ff-sans);
}

/* ====================================================
   SIDEBAR
   ==================================================== */
.page-sidebar { position: sticky; top: 8px; }

.sb-box {
  border: 1px solid var(--border);
  margin-bottom: 18px;
  border-radius: 1px;
  overflow: hidden;
}
.sb-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: var(--ff-sans);
  color: var(--dark);
  background: #f2f2f2;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
}
.sb-sub-title {
  background: #f8f8f8;
  border-top: 1px solid var(--border);
}
.sb-table {
  width: 100%;
  border-collapse: collapse;
}
.sb-table tr { border-bottom: 1px solid #f0f0f0; }
.sb-table tr:last-child { border-bottom: none; }
.sbt-gap td { height: 6px; background: #f8f8f8; padding: 0; }
.sbt-name {
  font-size: 11px;
  font-family: var(--ff-sans);
  color: var(--dark);
  padding: 6px 12px;
  font-weight: 400;
}
.sbt-price {
  font-size: 11px;
  font-family: var(--ff-sans);
  color: var(--light);
  text-align: right;
  padding-right: 8px;
  white-space: nowrap;
}
.sbt-pct {
  font-size: 11px;
  font-weight: 700;
  font-family: var(--ff-sans);
  text-align: right;
  padding: 6px 12px 6px 4px;
  white-space: nowrap;
}
.sbt-pct.pos { color: var(--pos); }
.sbt-pct.neg { color: var(--neg); }

/* Kiosque */
.sb-kiosque {}
.kiosque-cover {
  width: 100%;
  height: 130px;
  background: linear-gradient(160deg, #1c3a5e 0%, #2e6096 100%);
}
.btn-lire-numero {
  display: block;
  text-align: center;
  background: var(--dark);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  font-family: var(--ff-sans);
  padding: 10px;
  margin: 0;
}
.btn-lire-numero:hover { background: #333; text-decoration: none; }
.btn-offres {
  display: block;
  text-align: center;
  background: var(--red);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  font-family: var(--ff-sans);
  padding: 10px;
}
.btn-offres:hover { background: var(--red-dark); text-decoration: none; }

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer { background: #1c1c1c; color: #999; margin-top: 48px; }
.footer-block { border-bottom: 1px solid #2e2e2e; padding: 28px 20px; }
.footer-block:last-child { border-bottom: none; }

/* Footer links block */
.fl-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.fl-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 120px;
}
.fl-col strong {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #e0e0e0;
  font-family: var(--ff-sans);
  margin-bottom: 4px;
}
.fl-col a {
  font-size: 11.5px;
  color: #888;
  font-family: var(--ff-sans);
  line-height: 1.4;
}
.fl-col a:hover { color: #ccc; text-decoration: underline; }

.footer-social { margin-top: 10px; }
.footer-social > span {
  font-size: 10.5px;
  color: #666;
  font-family: var(--ff-sans);
  display: block;
  margin-bottom: 7px;
}
.footer-soc-icons { display: flex; gap: 7px; }
.footer-soc-icons a {
  width: 27px;
  height: 27px;
  border: 1px solid #3a3a3a;
  border-radius: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
}
.footer-soc-icons a:hover { border-color: #888; color: #ccc; text-decoration: none; }

/* Footer mega */
.fm-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 22px 18px;
}
.fm-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fm-col strong {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #e0e0e0;
  font-family: var(--ff-sans);
  margin-bottom: 5px;
}
.fm-col a {
  font-size: 11px;
  color: #777;
  font-family: var(--ff-sans);
  line-height: 1.45;
}
.fm-col a:hover { color: #bbb; text-decoration: underline; }

/* Footer bottom */
.footer-bottom-block { background: #141414; }
.fbb-inner { max-width: 1300px; margin: 0 auto; }
.fbb-cols {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 22px 18px;
  margin-bottom: 24px;
}
.fbb-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fbb-col strong {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #ccc;
  font-family: var(--ff-sans);
  margin-bottom: 5px;
}
.fbb-col a {
  font-size: 11px;
  color: #666;
  font-family: var(--ff-sans);
}
.fbb-col a:hover { color: #aaa; text-decoration: underline; }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  padding-top: 16px;
  border-top: 1px solid #2a2a2a;
}
.footer-legal a {
  font-size: 10px;
  color: #555;
  font-family: var(--ff-sans);
}
.footer-legal a:hover { color: #888; text-decoration: underline; }

/* ====================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ==================================================== */
@media (max-width: 1024px) {
  .page-layout { grid-template-columns: 1fr; gap: 24px; }
  .page-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .sb-box { margin-bottom: 0; }
  .util-nav { display: none; }
  .logo-img { height: 40px; }
  .btn-vente-flash-header { display: none; }
  .logo-side-left { display: none; }
  /* Recenter logo when right col hidden */
  .header-logo-inner { grid-template-columns: 1fr; justify-items: center; }
  .logo-side-right { display: none; }
}

/* ====================================================
   RESPONSIVE — MOBILE  (≤ 768px)
   ==================================================== */
@media (max-width: 768px) {

  /* Promo bar */
  .promo-bar { flex-wrap: wrap; gap: 5px; font-size: 11px; }

  /* Utility bar */
  .header-util-inner { padding: 0 14px; }
  .btn-connect { display: none; }

  /* Logo bar */
  .header-logo-inner { padding: 8px 14px; min-height: auto; }
  .logo-img { height: 32px; max-width: 280px; }

  /* Main nav */
  .main-nav-inner { padding: 0 14px; gap: 0; }
  .main-nav-inner a { font-size: 10.5px; padding: 10px 9px; letter-spacing: .03em; }

  /* Ticker */
  .ticker-palmares-label { display: none; }
  .ticker-search-wrap { display: none; }
  .tc-label { display: none; }

  /* Page layout */
  .page-layout { padding: 16px 14px; }

  /* Article */
  .article-h1 { font-size: 24px; }
  .article-chapo { font-size: 15px; }
  .article-hero { height: 200px; }
  .hero-wm { font-size: 38px; letter-spacing: 5px; }
  .article-body { font-size: 15.5px; }
  .article-body h2 { font-size: 18px; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Sidebar */
  .page-sidebar { grid-template-columns: 1fr; }

  /* Eng row */
  .eng-row { flex-direction: column; }
  .eng-sep { height: 1px; width: 100%; }

  /* Footer */
  .fl-inner { gap: 18px; }
  .fl-col { min-width: calc(50% - 10px); }
  .fm-inner { grid-template-columns: repeat(2, 1fr); }
  .fbb-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-legal { gap: 4px 10px; }
}

/* ====================================================
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
   ==================================================== */
@media (max-width: 480px) {
  .promo-bar { font-size: 10.5px; gap: 4px; }
  .btn-subscribe { padding: 6px 10px; font-size: 10.5px; }
  .logo-img { height: 26px; max-width: 220px; }
  .article-h1 { font-size: 20px; }
  .cards-grid { grid-template-columns: 1fr; }
  .card { grid-template-columns: 80px 1fr; }
  .card-img { width: 80px; height: 58px; }
  .fl-col { min-width: 100%; }
  .fm-inner { grid-template-columns: 1fr 1fr; }
  .fbb-cols { grid-template-columns: 1fr; }
}

/* ====================================================
   VALORISE FX — additions (article conversion blocks)
   ==================================================== */
.article-hero { position: relative; }
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: brightness(1.08) contrast(1.02);
}
.article-hero::after {
  display: none;
}
.hero-wm { position: relative; z-index: 1; }

.verify-box {
  border: 1px solid var(--border);
  background: #fffdfb;
  padding: 14px 16px;
  margin: 14px 0 18px;
  border-left: 4px solid var(--red);
}
.verify-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 10px;
}
.verify-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid #ccc;
  background: #fff;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: 6px;
  color: var(--dark);
  text-align: center;
}
.verify-btn:hover { border-color: var(--dark); text-decoration: none; }
.verify-note {
  font-size: 12.5px;
  color: var(--light);
  font-family: var(--ff-sans);
  line-height: 1.55;
}

.article-contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  background: #fafafa;
  padding: 14px 16px;
  margin: 0 0 22px;
  font-family: var(--ff-sans);
}
.article-contact-strip-soft {
  background: #fff;
  margin: 18px 0 24px;
}
.contact-strip-kicker {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
}
.contact-strip-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--mid);
}
.contact-strip-actions {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
  align-items: stretch;
}
.contact-strip-primary,
.contact-strip-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 2px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  gap: 8px;
}
.contact-strip-primary svg,
.contact-strip-secondary svg {
  flex-shrink: 0;
}
.contact-strip-primary span,
.contact-strip-secondary span {
  min-width: 0;
}
.wa-label-wrap {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  line-height: 1.15;
}
.wa-desktop-phone {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: none;
  opacity: .96;
}
.contact-strip-primary {
  background: var(--red);
  color: #fff;
}
.contact-strip-primary-main {
  min-height: 54px;
  padding: 14px 20px;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(200,16,46,.18);
}
.contact-strip-primary:hover {
  background: var(--red-dark);
  text-decoration: none;
}
.contact-strip-secondary {
  background: #fff;
  color: var(--dark);
  border: 1px solid #ccc;
}
.contact-strip-secondary:hover {
  border-color: var(--dark);
  text-decoration: none;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 14px 0 18px;
}
.fact-card {
  border: 1px solid var(--border);
  background: #fff;
  padding: 12px 12px;
  border-left: 3px solid var(--dark);
}
.fact-k {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--light);
  font-family: var(--ff-sans);
}
.fact-v {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 700;
  margin-top: 6px;
}
.fact-s {
  font-size: 12.5px;
  color: var(--mid);
  font-family: var(--ff-sans);
  line-height: 1.5;
  margin-top: 6px;
}

.sim-box {
  border: 1px solid var(--border);
  background: #fffbf2;
  padding: 14px 16px;
  margin: 14px 0 18px;
  border-left: 3px solid #8c6d0f;
}
.sim-head {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8c6d0f;
  font-family: var(--ff-sans);
  margin-bottom: 10px;
}
.sim-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ff-sans);
  font-size: 12.5px;
}
.sim-table th, .sim-table td {
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 10px 8px;
  text-align: left;
  vertical-align: top;
}
.sim-table th {
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #6f5b10;
}
.sim-note {
  font-size: 12.5px;
  color: #6b5b2a;
  margin-top: 10px;
  line-height: 1.55;
}

.beaugrand-figure { margin: 16px 0 18px; }
.beaugrand-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1px;
  background: #d8d8d8;
}
.beaugrand-figure figcaption {
  font-size: 10.5px;
  color: var(--pale);
  font-style: italic;
  font-family: var(--ff-sans);
  text-align: right;
  margin-top: 6px;
}

.qa {
  border: 1px solid var(--border);
  padding: 14px 16px;
  background: #fafafa;
  border-left: 3px solid var(--red);
  margin: 14px 0 18px;
}
.qa-item { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.qa-item:last-child { border-bottom: none; }
.q {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}
.a {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
}

.cta-panel {
  border: 1px solid var(--border);
  padding: 16px;
  background: #1c1c1c;
  color: #fff;
  margin: 18px 0 0;
}
.cta-title {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: var(--ff-sans);
  color: #bdbdbd;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 1px;
}
.cta-primary {
  background: var(--red);
  color: #fff;
}
.cta-primary:hover { background: var(--red-dark); text-decoration: none; }
.cta-secondary {
  background: #fff;
  color: #1c1c1c;
}
.cta-secondary:hover { opacity: .9; text-decoration: none; }
.cta-foot {
  font-size: 11px;
  color: #bdbdbd;
  font-family: var(--ff-sans);
  line-height: 1.55;
  margin-top: 12px;
}

.floating-wa-cta {
  position: fixed;
  right: calc(22px + env(safe-area-inset-right));
  bottom: calc(22px + env(safe-area-inset-bottom));
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 13px 20px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(26,26,26,.18);
  border: 1px solid rgba(255,255,255,.18);
}
.floating-wa-cta svg {
  flex: 0 0 auto;
}
.floating-wa-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.floating-wa-phone {
  font-size: 13px;
  font-weight: 700;
  opacity: .95;
}
.floating-wa-cta:hover {
  background: var(--red-dark);
  text-decoration: none;
}

@media (max-width: 768px) {
  .facts-grid { grid-template-columns: 1fr; }
  .verify-actions { flex-direction: column; align-items: stretch; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .floating-wa-cta {
    right: calc(12px + env(safe-area-inset-right));
    bottom: calc(12px + env(safe-area-inset-bottom));
    min-height: 44px;
    max-width: calc(100vw - 24px - env(safe-area-inset-left) - env(safe-area-inset-right));
    padding: 9px 12px;
    font-size: 12px;
    line-height: 1.15;
  }
  .floating-wa-phone {
    display: none;
  }
  .wa-desktop-phone {
    display: none;
  }
  .floating-wa-text {
    align-items: center;
  }
}

.article-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 16px 60px;
}

.article-hero{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.article-meta{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  margin-bottom: 10px;
}

.kicker{
  color:#c8102e;
  font-weight:800;
  letter-spacing:.12em;
  font-size:11px;
  text-transform:uppercase;
}

.date{
  color:#6b7280;
  font-size:12px;
}

.h1{
  font-family: Georgia, serif;
  font-size: 38px;
  line-height: 1.15;
  margin: 10px 0 10px;
  color:#111827;
}

.h1 em{
  color:#2c5282;
  font-style:italic;
}

.lede{
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.75;
  color:#1f2937;
  margin: 0 0 18px;
}

.note-disclaimer{
  margin-top: 12px;
  font-size: 12px;
  color:#6b7280;
}

.hero-ctas{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}

.article-grid{
  display:grid;
  grid-template-columns: 1.45fr .55fr;
  gap: 18px;
  margin-top: 18px;
}

@media (max-width: 960px){
  .article-grid{ grid-template-columns: 1fr; }
}

.article{
  background:#ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

.h2{
  font-family: Georgia, serif;
  font-size: 22px;
  margin: 18px 0 10px;
  color:#111827;
}

.article p{
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.75;
  color:#1f2937;
  margin: 0 0 14px;
}

.media{
  margin: 14px 0 18px;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.10);
  background:#f9fafb;
}

.media img{
  width:100%;
  height:auto;
  display:block;
}

.media figcaption{
  padding:10px 12px;
  font-size:12px;
  color:#6b7280;
  line-height:1.6;
}

.media-hero{
  margin-top: 14px;
}

.media-beaugrand{
  margin-top: 12px;
}

.proof-box{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 12px 0 16px;
}

@media (max-width: 720px){
  .proof-box{ grid-template-columns: 1fr; }
}

.proof-item{
  border:1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  padding: 14px;
  background:#faf9f7;
}

.proof-title{
  font-weight:800;
  color:#111827;
  margin-bottom: 2px;
}

.proof-desc{
  color:#6b7280;
  font-size:12px;
  margin-bottom: 10px;
}

.cards{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:12px;
  margin: 10px 0 16px;
}

@media (max-width: 900px){
  .cards{ grid-template-columns: 1fr; }
}

.card{
  border:1px solid rgba(0,0,0,.10);
  border-radius:14px;
  padding:14px;
  background:#ffffff;
}

.card-title{
  font-weight:900;
  margin-bottom:6px;
  color:#111827;
}

.card-text{
  color:#1f2937;
  line-height:1.55;
  font-size:14px;
}

.muted{
  display:inline-block;
  margin-left:6px;
  color:#6b7280;
  font-size:12px;
}

.sim-box{
  border:1px solid rgba(0,0,0,.10);
  border-radius:16px;
  padding:16px;
  background: linear-gradient(135deg,#1a2a4a,#2c4a7a);
  color:#ffffff;
  margin: 10px 0 16px;
}

.sim-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
}

.sim-title{
  font-weight:900;
  letter-spacing:.02em;
  font-size:16px;
}

.sim-sub{
  color:#c7d6ff;
  font-size:13px;
  margin-top:4px;
  line-height:1.5;
}

.sim-table{
  margin-top: 14px;
  border-radius: 12px;
  overflow:hidden;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.sim-row{
  display:grid;
  grid-template-columns: 1fr 1.4fr .9fr;
  gap: 10px;
  padding: 10px 12px;
  border-top: 1px solid rgba(255,255,255,.10);
  font-size: 13px;
}

.sim-row:first-child{
  border-top:none;
}

.sim-row-head{
  font-weight:900;
  color:#e9f0ff;
  background: rgba(255,255,255,.06);
}

.sim-foot{
  margin-top: 10px;
  color:#c7d6ff;
  font-size:12px;
  line-height:1.5;
}

.callout{
  border-left: 4px solid #c8102e;
  background:#faf9f7;
  padding: 12px 14px;
  border-radius: 12px;
  color:#111827;
  line-height:1.6;
  margin: 12px 0 16px;
}

.qa{
  margin-top: 6px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.qa-item{
  border:1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  padding: 12px 14px;
  background:#ffffff;
}

.q{
  font-weight:900;
  color:#111827;
  margin-bottom: 6px;
}

.a{
  color:#1f2937;
  line-height:1.65;
  font-size:14px;
}

.sidebar{
  position: sticky;
  top: 14px;
  align-self:start;
  display:flex;
  flex-direction:column;
  gap: 12px;
}

@media (max-width: 960px){
  .sidebar{ position: static; }
}

.side-card{
  background:#ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

.side-title{
  font-weight: 900;
  margin-bottom: 10px;
  color:#111827;
}

.side-list{
  margin:0;
  padding-left: 18px;
  color:#1f2937;
  line-height:1.65;
  font-size: 13px;
}

.side-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.side-note{
  margin-top: 10px;
  color:#6b7280;
  font-size:12px;
  line-height:1.5;
}

.final-cta{
  margin-top: 18px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: linear-gradient(135deg,#1a2a4a,#2c4a7a);
  color:#fff;
  padding: 16px;
}

.final-cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
}

.final-title{
  font-weight: 900;
  font-size: 18px;
}

.final-sub{
  color:#c7d6ff;
  font-size: 13px;
  margin-top: 4px;
  line-height: 1.5;
}

.final-cta-actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

.final-foot{
  margin-top: 10px;
  color:#c7d6ff;
  font-size:12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.02em;
  border: 1px solid transparent;
  cursor:pointer;
  user-select:none;
}

.btn.primary{
  background:#c8102e;
  color:#ffffff;
}

.btn.ghost{
  background:#ffffff;
  color:#111827;
  border-color: rgba(0,0,0,.12);
}

.btn.dark{
  background:#0f172a;
  color:#ffffff;
}

.btn.small{
  padding: 10px 12px;
  border-radius: 12px;
  background:#ffffff;
  color:#111827;
  border-color: rgba(0,0,0,.12);
}

.btn.full{
  width:100%;
}

.article-body ul{
  margin: 10px 0 14px;
  padding-left: 0;
  list-style: none;
}

.article-body li{
  position: relative;
  margin: 8px 0;
  padding-left: 18px;
}

.article-body li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #111;
}
/* ====================================================
   ANCRE MARQUE DISCRÈTE
   ==================================================== */
a.brand-anchor {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.25);
  transition: border-color .15s, color .15s;
}
a.brand-anchor:hover {
  color: var(--red);
  border-bottom-color: var(--red);
  text-decoration: none;
}
/* ====================================================
   SIMULATEUR SCREENSHOTS
   ==================================================== */
.sim-screenshots {
  margin: 14px 0 18px;
}

.sim-screenshot-item {
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  overflow: hidden;
  background: #faf9f7;
}

.sim-screenshot-label {
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #6b7280;
  background: #f3f4f6;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.sim-figure {
  margin: 0;
}

.sim-img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.zoomable-img {
  cursor: zoom-in;
}

body.lightbox-open {
  overflow: hidden;
}

.img-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 12, 20, 0.86);
}

.img-lightbox.is-open {
  display: flex;
}

.img-lightbox-content {
  position: relative;
  max-width: min(1200px, 96vw);
  max-height: 92vh;
}

.img-lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.img-lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.26);
}

@media (max-width: 680px) {
  .img-lightbox {
    padding: 14px;
  }

  .img-lightbox-close {
    top: 8px;
    right: 8px;
  }
}

.sim-figure figcaption {
  padding: 10px 14px;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
}

.author-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.author-link:hover {
  color: #2c5282; /* léger bleu élégant */
}

.kiosque-cover {
  width: 100%;
  margin: 15px 0;
  text-align: center;
}

.kiosque-cover img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.packs-box{
  margin: 14px 0 18px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  background: #faf9f7;
}
.packs-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 12px;
}
.packs-title{font-weight:900;color:#111827;}
.packs-sub{font-size:12px;color:#6b7280;line-height:1.5;}
.packs-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
@media (max-width: 1100px){ .packs-grid{ grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 640px){ .packs-grid{ grid-template-columns: 1fr;} }

.pack{
  position:relative;
  background:#fff;
  border:1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  padding: 14px;
}
.pack-top{
  margin-bottom: 10px;
  padding-top: 6px;
}
.pack-name-line{
  display:flex;
  align-items:baseline;
  gap:6px;
  flex-wrap:nowrap;
  margin-bottom:6px;
}
.pack-name{
  font-weight:900;
  color:#111827;
  font-size:14px;
  white-space:nowrap;
}
.pack-price{
  font-size:12px;
  color:#6b7280;
  white-space:nowrap;
}
.pack-rendement{
  display:inline-block;
  font-size:11.5px;
  color:#1a7f3c;
  font-weight:700;
  background:#f0fdf4;
  border:1px solid #bbf7d0;
  border-radius:6px;
  padding:3px 8px;
  margin-bottom: 10px;
  white-space:nowrap;
}
.pack-list{
  margin:0;
  padding-left: 18px;
  font-size:13px;
  line-height:1.65;
  color:#1f2937;
}
.pack-badge{
  position:absolute;
  top: -1px;
  right: -1px;
  background:#c8102e;
  color:#fff;
  font-size:10px;
  font-weight:900;
  padding:5px 10px;
  border-radius: 0 14px 0 10px;
  letter-spacing:.02em;
  white-space:nowrap;
}
.pack-highlight{
  border-color: rgba(200,16,46,.35);
  box-shadow: 0 10px 25px rgba(200,16,46,.10);
}
.packs-note{
  margin: 12px 0 0;
  font-size:12px;
  color:#6b7280;
  line-height:1.6;
}
.packs-ctas{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:stretch;
  margin-top: 12px;
}
.packs-ctas .cta-primary,
.packs-ctas .cta-secondary{
  flex: 1 1 300px;
  min-height: 64px;
  padding: 16px 20px;
  box-sizing: border-box;
  text-align: center;
  font-size: 16px;
  line-height: 1.15;
}
.packs-ctas .cta-primary{
  gap: 10px;
}

.packs-ctas .cta-secondary {
  background: #fff;
  color: var(--dark);
  border: 1px solid #ccc;
}

.packs-ctas .cta-secondary:hover {
  border-color: var(--dark);
  text-decoration: none;
}

.packs-ctas .cta-primary svg {
  flex: 0 0 auto;
  margin-right: 0 !important;
}
.packs-ctas .wa-desktop-phone {
  font-size: 13px;
}
.packs-foot{
  margin-top: 10px;
  font-size:12px;
  color:#6b7280;
  line-height:1.6;
}

.article .article-contact-strip p {
  margin: 0;
  font-family: var(--ff-sans);
}
.article .contact-strip-kicker {
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #c8102e;
}
.article .contact-strip-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: #444444;
}
.article .verify-note,
.article .packs-note,
.article .packs-foot,
.article .editorial-note {
  font-family: var(--ff-sans);
  font-size: 12.5px;
  line-height: 1.6;
  color: #6b7280;
}
.article .packs-note {
  margin: 12px 0 0;
}
.article .packs-foot {
  margin: 10px 0 0;
}
.article .editorial-note {
  margin: 6px 0 18px 0;
  border-top: 1px solid #e5e7eb;
  padding-top: 14px;
  font-style: italic;
}

.editorial-note {
  font-style: italic;
  color: #6b7280;
  font-size: 14px;
  margin: 6px 0 18px 0;
  border-top: 1px solid #e5e7eb;
  padding-top: 14px;
}

.qa {
  margin: 14px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
}
.qa-item {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  border-bottom: 1px solid #e0e0e0;
}
.qa-item:last-child { border-bottom: none; }
.q {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #c8102e;
  line-height: 1.5;
  padding: 14px 16px;
  background: #fafafa;
  border-right: 1px solid #e0e0e0;
  display: flex;
  align-items: flex-start;
}
.a {
  font-family: 'Lora', Georgia, serif;
  font-size: 15px;
  line-height: 1.75;
  color: #1a1a1a;
  padding: 14px 18px;
  background: #ffffff;
}
@media (max-width: 640px) {
  .qa-item { grid-template-columns: 1fr; }
  .q {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    background: #f5f5f5;
  }
}

/* ====================================================
   CTA typography normalization
   ==================================================== */
.contact-strip-primary,
.contact-strip-secondary,
.cta-primary,
.cta-secondary,
.floating-wa-cta,
.michel-actions .contact-strip-primary,
.michel-actions .contact-strip-secondary,
.decision-actions .contact-strip-primary,
.decision-actions .contact-strip-secondary,
.packs-ctas .cta-primary,
.packs-ctas .cta-secondary,
a.wa-btn[style],
a[href="https://valorisefx.com"][style] {
  font-family: var(--ff-sans) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: .04em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

.wa-desktop-phone,
.floating-wa-phone {
  font-family: var(--ff-sans) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .02em !important;
  line-height: 1.2 !important;
  text-transform: none !important;
}

@media (max-width: 768px) {
  .contact-strip-primary,
  .contact-strip-secondary,
  .cta-primary,
  .cta-secondary,
  .floating-wa-cta,
  a.wa-btn[style],
  a[href="https://valorisefx.com"][style] {
    font-size: 13px !important;
  }
}

@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  .page-layout,
  .page-main,
  .article {
    min-width: 0;
    max-width: 100%;
  }
  .article {
    padding: 18px;
    border-radius: 8px;
    overflow: hidden;
  }
  .article-h1,
  .article-chapo,
  .article p,
  .article-body,
  .redac-intro,
  .article-figure figcaption {
    overflow-wrap: break-word;
  }
  .article-contact-strip {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 20px;
  }
  .contact-strip-actions {
    flex-direction: column;
    width: 100%;
    min-width: 0;
  }
  .contact-strip-primary,
  .contact-strip-secondary {
    width: 100%;
    min-height: 48px;
    min-width: 0;
    padding: 12px 10px;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .contact-strip-primary span,
  .contact-strip-secondary span {
    overflow-wrap: anywhere;
  }
  .article-h1 {
    line-height: 1.22;
  }
  .article-chapo {
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  .article-h1 {
    font-size: 22px;
  }
  .article-chapo {
    font-size: 16px;
  }
}

/* ====================================================
   Valorise FX — credibility and conversion refinements
   ==================================================== */
.article-h1 {
  max-width: 920px;
  letter-spacing: 0;
}

.article-chapo {
  background: #fffdfb;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 14px;
}

.section-eyebrow {
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.michel-top-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 12px 0 18px;
  padding: 14px 16px;
  border: 1px solid #dedede;
  border-left: 4px solid #1a1a1a;
  border-radius: 8px;
  background: #fffdfb;
  font-family: var(--ff-sans);
}

.michel-top-note p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #3f3f3f;
}

.michel-top-kicker {
  margin-bottom: 3px !important;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red) !important;
}

.michel-top-note a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: center;
}

.michel-top-note a:hover {
  border-color: #1a1a1a;
  text-decoration: none;
}

.quick-summary {
  margin: 20px 0 28px;
  padding: 22px 24px 24px;
  border: 1px solid #d7d9de;
  border-left: 5px solid var(--red);
  border-radius: 8px;
  background: #fffdfb;
  font-family: var(--ff-sans);
  box-shadow: 0 10px 26px rgba(17, 24, 39, .045);
}

.quick-summary-head {
  display: block;
  margin-bottom: 15px;
}

.quick-summary-head span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.quick-summary-head p {
  margin: 5px 0 0;
  color: #62666d;
  font-size: 13.5px;
  line-height: 1.35;
}

.quick-summary-pills {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 11px;
}

.quick-summary-card {
  min-width: 0;
  min-height: 82px;
  padding: 15px 14px 14px;
  border: 1px solid #d9dde4;
  border-top: 3px solid #c8102e;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(17, 24, 39, .055);
}

.quick-summary-card strong,
.quick-summary-card span {
  display: block;
  overflow-wrap: anywhere;
}

.quick-summary-card strong {
  color: #111827;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
}

.quick-summary-card span {
  margin-top: 7px;
  color: #6f747c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.quick-summary .quick-summary-note {
  margin: 10px 0 0 !important;
  font-family: var(--ff-sans);
  font-size: 11.5px !important;
  font-weight: 600;
  line-height: 1.4 !important;
  color: #7a7f87 !important;
}

.quick-summary-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.quick-summary-actions .contact-strip-primary,
.quick-summary-actions .contact-strip-secondary {
  flex: 0 1 250px;
  min-height: 48px;
  padding: 12px 17px;
  font-size: 13px !important;
}

.michel-feature {
  margin: 34px 0 36px;
  padding: 26px;
  border: 1px solid #d8d8d8;
  border-top: 4px solid #1a1a1a;
  border-left: 1px solid #d8d8d8;
  border-radius: 8px;
  background: #fffdfb;
}

.michel-feature-hero {
  display: grid;
  grid-template-columns: minmax(300px, 42%) 1fr;
  gap: 32px;
  align-items: center;
}

.michel-feature-media {
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.michel-feature-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.7;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 14px 30px rgba(26, 26, 26, .12);
}

.michel-feature-media figcaption {
  padding: 9px 2px 0;
  font-family: var(--ff-sans);
  font-size: 12.5px;
  line-height: 1.55;
  color: #6b7280;
}

.michel-feature-media figcaption strong,
.michel-feature-media figcaption span {
  display: block;
}

.michel-feature-media figcaption strong {
  color: #111827;
  font-size: 13px;
  margin-bottom: 2px;
}

.michel-feature-intro {
  padding-top: 4px;
}

.michel-feature-intro h2 {
  margin-top: 0;
  margin-bottom: 18px;
}

.michel-feature-intro p {
  margin-bottom: 13px;
  font-size: 18px;
  line-height: 1.75;
}

.michel-lead {
  margin: 16px 0 0 !important;
  padding: 16px 18px;
  border-left: 3px solid var(--red);
  background: #ffffff;
  font-family: var(--ff-body);
  font-size: 17px !important;
  font-style: italic;
  line-height: 1.7 !important;
  color: #2f2f2f !important;
}

.michel-interview {
  display: grid;
  gap: 18px;
  margin: 36px 0 0;
  padding-top: 2px;
  background: transparent;
}

.michel-interview-item {
  padding: 0;
  border: 1px solid #e5e7eb;
  border-left: 3px solid var(--red);
  border-radius: 8px;
  overflow: hidden;
  background: #fffdfb;
}

.michel-question {
  display: block;
  padding: 15px 17px 7px;
  border: 0;
  background: transparent;
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.45;
  text-transform: uppercase;
  color: var(--red-dark);
  margin-bottom: 0;
}

.michel-interview-item p {
  margin: 0 !important;
  padding: 6px 17px 17px;
  background: transparent;
  font-family: var(--ff-body);
  font-size: 16px !important;
  line-height: 1.82 !important;
  color: #333333 !important;
  max-width: 760px;
}

.michel-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.michel-actions .contact-strip-primary,
.michel-actions .contact-strip-secondary {
  flex: 1 1 240px;
  min-height: 50px;
}

.michel-disclaimer {
  margin: 18px 0 0 !important;
  padding-top: 14px;
  border-top: 1px solid #e5e7eb;
  font-family: var(--ff-sans);
  font-size: 12.5px !important;
  line-height: 1.6 !important;
  color: #6b7280 !important;
}

.test-entry-box,
.faq-box,
.decision-box {
  margin: 26px 0;
  padding: 18px;
  border: 1px solid #dedede;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: #fffdfb;
}

.test-entry-box h2,
.faq-box h2,
.decision-box h2 {
  margin-top: 0;
}

.verify-scan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.verify-intro {
  margin: 0 0 13px;
  font-family: var(--ff-sans);
  font-size: 14px;
  line-height: 1.65;
  color: #374151;
}

.verify-scan-grid div {
  min-height: 126px;
  padding: 15px 15px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
}

.verify-scan-grid strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--ff-sans);
  font-size: 13px;
  color: var(--red-dark);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.verify-scan-grid p {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 13px;
  line-height: 1.55;
  color: #4b5563;
}

.verify-scan-grid p b {
  display: block;
  margin-bottom: 5px;
  color: #111827;
  font-size: 13.5px;
  line-height: 1.35;
}

.function-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 24px;
}

.function-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 4px 10px;
  padding: 14px 14px;
  border: 1px solid #e5e7eb;
  border-left: 3px solid var(--red);
  border-radius: 8px;
  background: #fffdfb;
  font-family: var(--ff-sans);
}

.function-card span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #fff1f1;
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
}

.function-card strong {
  display: block;
  font-size: 13.5px;
  line-height: 1.35;
  color: #111827;
}

.function-card p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: #4b5563;
}

.decision-box {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #303030;
  border-left-color: var(--red);
}

.decision-box h2 {
  color: #ffffff;
  border-bottom-color: rgba(255,255,255,.14);
}

.decision-box p {
  color: #e5e7eb;
}

.test-entry-box > p:first-of-type {
  margin: 12px 0 18px;
  font-size: 18px;
  line-height: 1.75;
  color: #202124;
}

.decision-box .section-eyebrow {
  color: #fca5a5;
}

.decision-box-note {
  margin: 12px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  font-family: var(--ff-sans);
  font-size: 13px;
  line-height: 1.6;
}

.decision-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.decision-actions .contact-strip-primary,
.decision-actions .contact-strip-secondary {
  flex: 1 1 240px;
  min-height: 50px;
}

.decision-actions .contact-strip-secondary {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255,255,255,.34);
}

.decision-actions .contact-strip-secondary:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
}

.test-timeline {
  display: grid;
  gap: 12px;
  margin: 18px 0 18px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 44px minmax(160px, 220px) 1fr;
  gap: 14px;
  align-items: center;
  min-height: 66px;
  padding: 14px 16px;
  border: 1px solid #dfe3e8;
  border-left: 2px solid #d9dde4;
  border-radius: 8px;
  background: #ffffff;
  font-family: var(--ff-sans);
  box-shadow: 0 5px 14px rgba(17, 24, 39, .045);
}

.timeline-step span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #111827;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.timeline-step strong {
  font-size: 15.5px;
  line-height: 1.35;
  color: #111827;
}

.timeline-step em {
  font-style: normal;
  font-size: 14.5px;
  line-height: 1.45;
  color: #374151;
}

.test-entry-box .editorial-note {
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid #dfe3e8;
  font-size: 13px;
}

.withdrawal-box {
  margin: 30px 0;
}

.withdrawal-proof {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 34px;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 70% 15%, rgba(200,16,46,.26), transparent 26%),
    radial-gradient(circle at 50% 0%, #111827 0%, #050b16 45%, #020617 100%);
  box-shadow: 0 24px 60px rgba(2,6,23,.38);
  color: #ffffff;
  font-family: var(--ff-sans);
}

.withdrawal-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,6,23,.54) 0%, rgba(2,6,23,.42) 48%, rgba(2,6,23,.12) 100%),
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  pointer-events: none;
  z-index: 2;
}

.withdrawal-proof::after {
  content: "";
  position: absolute;
  left: 32px;
  bottom: 34px;
  width: 260px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,.20), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 2;
}

.withdrawal-proof-copy {
  position: relative;
  z-index: 3;
  max-width: 610px;
  padding-top: 58px;
  text-shadow: 0 2px 18px rgba(0,0,0,.48);
}

.withdrawal-proof-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: #fb7185;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.withdrawal-proof-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, #fb7185, rgba(251,113,133,.18));
}

.withdrawal-proof-copy h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--ff-sans);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.withdrawal-proof-copy h2 span {
  display: block;
  white-space: nowrap;
}

.withdrawal-proof-copy p {
  max-width: 430px;
  margin: 14px 0 0;
  color: #cbd5e1;
  font-size: 15.5px;
  line-height: 1.6;
}

.withdrawal-proof-stage {
  position: absolute;
  z-index: 4;
  inset: 22px 30px 22px 61%;
  pointer-events: none;
}

.withdrawal-dashboard-shot,
.withdrawal-bank-shot {
  margin: 0;
  transition: transform .25s ease, box-shadow .25s ease;
}

.withdrawal-dashboard-shot {
  position: absolute;
  z-index: 1;
  inset: 70px 205px 42px -34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: #05070a;
  opacity: .72;
  filter: blur(2px) saturate(1.02) contrast(1.14);
  transform: rotate(-2deg) scale(1.08);
  box-shadow: 0 26px 80px rgba(0,0,0,.42);
}

.withdrawal-dashboard-shot img {
  display: block;
  width: 120%;
  max-width: none;
  margin: 0 0 0 -8%;
  object-fit: cover;
}

.withdrawal-bank-shot {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 238px;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow:
    0 34px 80px rgba(0,0,0,.52),
    0 0 86px rgba(200,16,46,.22);
  transform: translateY(-50%);
  pointer-events: auto;
}

.withdrawal-bank-shot:hover {
  transform: translateY(calc(-50% - 3px));
}

.withdrawal-bank-shot img {
  display: block;
  width: 100%;
  border-radius: 20px;
}


.packs-box,
.pack,
.sim-screenshot-item {
  border-radius: 8px;
}

.packs-box {
  background: #fffdfb;
  border-left: 4px solid #1a1a1a;
  padding: 18px;
}

.pack {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 10px;
  border-color: #e1e5ea;
  box-shadow: 0 10px 22px rgba(17, 24, 39, .05);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.pack::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: #1f2937;
}

.pack:nth-child(1)::before,
.pack:nth-child(2)::before,
.pack:nth-child(3)::before,
.pack:nth-child(4)::before { background: var(--red); }

.pack:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(17, 24, 39, .09);
  border-color: #cbd5e1;
}

.pack-top {
  padding-top: 10px;
  margin-bottom: 12px;
}

.pack-name-line {
  display: block;
  margin-bottom: 0;
}

.pack-name,
.pack-price {
  display: block;
}

.pack-name {
  font-size: 15px;
  line-height: 1.25;
  margin-bottom: 7px;
}

.pack-price {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111827;
  font-size: 12px;
  font-weight: 800;
}

.pack:nth-child(1) .pack-price,
.pack:nth-child(2) .pack-price,
.pack:nth-child(3) .pack-price,
.pack:nth-child(4) .pack-price { background: #fff1f2; color: var(--red-dark); }

.pack-list {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-left: 0;
  font-family: var(--ff-sans);
  font-size: 13px;
  line-height: 1.5;
}

.article-body .pack-list li,
.pack-list li {
  margin: 0;
  padding-left: 21px;
}

.article-body .pack-list li::before,
.pack-list li::before {
  content: "";
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.pack:nth-child(1) .pack-list li::before,
.pack:nth-child(2) .pack-list li::before,
.pack:nth-child(3) .pack-list li::before,
.pack:nth-child(4) .pack-list li::before { background: var(--red); }

.pack-badge {
  border-radius: 0 8px 0 8px;
  box-shadow: 0 8px 14px rgba(200, 16, 46, .16);
}

.pack-rendement {
  color: #374151;
  background: #f8fafc;
  border-color: #d1d5db;
  white-space: normal;
  line-height: 1.35;
}

.pack-highlight {
  box-shadow: 0 8px 18px rgba(26,26,26,.08);
}

.packs-note {
  padding: 11px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
}

.pack-table-wrap {
  overflow-x: auto;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
}

.pack-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-family: var(--ff-sans);
}

.pack-table th,
.pack-table td {
  padding: 13px 14px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}

.pack-table th {
  color: #6b7280;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #fafafa;
}

.pack-table tr:last-child td {
  border-bottom: 0;
}

.pack-table td:first-child {
  color: #111827;
}

.faq-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.faq-item {
  padding: 0;
  border: 1px solid #dfe3e8;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(17, 24, 39, .025);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  min-height: 46px;
  border: 0;
  border-left: 2px solid var(--red);
  background: #ffffff;
  cursor: pointer;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  color: #111827;
  text-align: left;
  padding: 12px 42px 12px 15px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 15px;
  color: #9ca3af;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.faq-item.is-open .faq-question::after {
  content: "−";
  color: var(--red);
}

.faq-answer {
  display: none;
  border-top: 1px solid #eef0f3;
  background: #f8f9fb;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
  padding: 11px 15px 13px 17px;
  font-family: var(--ff-sans);
  font-size: 14px;
  line-height: 1.55;
  color: #4b5563;
}

.faq-answer p strong {
  font-weight: 800;
  color: #111827;
}

.contact-strip-secondary[href^="#"] {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

.contact-strip-secondary[href^="#"]:hover {
  background: #333333;
}

@media (max-width: 900px) {
  .verify-scan-grid {
    grid-template-columns: 1fr;
  }

  .function-card {
    grid-template-columns: 38px 1fr;
  }

  .michel-feature-hero {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .michel-feature-media {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 14px;
    align-items: end;
  }

  .michel-feature-media img {
    aspect-ratio: 4 / 5;
    height: auto;
    object-fit: cover;
  }

  .timeline-step {
    grid-template-columns: 40px 1fr;
  }

  .timeline-step em {
    grid-column: 2;
  }

  .withdrawal-proof-copy {
    max-width: calc(100% - 250px);
  }

  .withdrawal-proof-copy h2 {
    font-size: 24px;
  }

  .withdrawal-proof-copy h2 span {
    white-space: normal;
  }

  .withdrawal-proof-stage {
    inset: 22px 26px 22px 50%;
  }

  .withdrawal-bank-shot {
    right: 0;
    width: 220px;
  }

}

@media (max-width: 640px) {
  .function-cards {
    grid-template-columns: 1fr;
  }

  .quick-summary {
    padding: 18px 14px 18px;
  }

  .quick-summary-head {
    margin-bottom: 12px;
  }

  .quick-summary-pills {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quick-summary-card {
    min-height: 68px;
    padding: 10px 11px;
  }

  .quick-summary-card strong {
    font-size: 14px;
  }

  .quick-summary-card span {
    font-size: 12px;
  }

  .quick-summary-actions .contact-strip-primary,
  .quick-summary-actions .contact-strip-secondary {
    flex-basis: 100%;
  }

  .michel-top-note {
    flex-direction: column;
    align-items: stretch;
  }

  .michel-top-note a {
    width: 100%;
  }

  .michel-feature {
    padding: 18px 14px;
    margin: 30px 0;
  }

  .michel-feature-media {
    grid-template-columns: 1fr;
  }

  .michel-feature-media img {
    height: auto;
    max-height: 420px;
  }

  .test-entry-box,
  .withdrawal-box,
  .faq-box,
  .decision-box,
  .packs-box {
    padding: 14px;
    margin: 22px 0;
  }

  .timeline-step {
    grid-template-columns: 40px 1fr;
    align-items: start;
  }

  .timeline-step span {
    margin-bottom: 2px;
  }

  .timeline-step em {
    grid-column: 2;
  }

  .withdrawal-proof {
    padding: 18px;
    min-height: 0;
    border-radius: 14px;
  }

  .withdrawal-proof::before {
    background: linear-gradient(180deg, rgba(2,6,23,.92) 0%, rgba(2,6,23,.74) 54%, rgba(2,6,23,.22) 100%);
  }

  .withdrawal-proof-copy {
    max-width: 100%;
    padding-top: 2px;
  }

  .withdrawal-proof-copy h2 {
    font-size: 20px;
    line-height: 1.24;
    max-width: 100%;
    overflow-wrap: normal;
  }

  .withdrawal-proof-copy h2 span {
    white-space: normal;
  }

  .withdrawal-proof-copy p {
    font-size: 13.5px;
  }

  .withdrawal-proof-stage {
    position: relative;
    inset: auto;
    min-height: 430px;
    margin-top: 18px;
    padding: 0;
    overflow: hidden;
  }

  .withdrawal-dashboard-shot {
    position: absolute;
    inset: 28px -28px 52px -32px;
    opacity: .34;
    transform: rotate(-2deg) scale(1.08);
  }

  .withdrawal-dashboard-shot img {
    width: 132%;
    margin-left: -16%;
  }

  .withdrawal-bank-shot {
    position: absolute;
    top: auto;
    right: 50%;
    bottom: 18px;
    width: min(290px, 90%);
    margin: 0;
    transform: none;
    translate: 50% 0;
  }

  .withdrawal-bank-shot:hover {
    transform: translateY(-2px);
  }

  .packs-ctas .cta-primary,
  .packs-ctas .cta-secondary,
  .decision-actions .contact-strip-primary,
  .decision-actions .contact-strip-secondary,
  .michel-actions .contact-strip-primary,
  .michel-actions .contact-strip-secondary {
    flex-basis: 100%;
    min-height: 50px;
  }
}

@media (max-width: 480px) {
  .quick-summary-pills {
    grid-template-columns: 1fr;
  }

  .quick-summary-card {
    min-height: auto;
  }
}
