/* ============================================================
   ROMCOLLECT — Style v2
   Couleurs calées sur l'app (--bg: #0f1115, panel sombre)
   Police : Space Grotesk (titres) + DM Sans (corps)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
  /* Palette exacte de l'app RomCollect */
  --bg:        #0b0f16;
  --bg-1:      #0f1420;
  --bg-2:      #141926;
  --panel:     rgba(17, 22, 34, 0.82);
  --border:    rgba(42, 49, 66, 0.9);
  --border-soft: rgba(42, 49, 66, 0.5);
  --text:      #e5e7eb;
  --muted:     #9aa3b2;
  --cyan:      #62d8ff;
  --cyan-2:    #2b8cff;
  --green:     #22c55e;
  --green-2:   #0ea5e9;
  --orange:    #f97316;
  --red:       #ef4444;

  /* Boutons */
  --btn-primary-bg: linear-gradient(135deg, #22c55e 0%, #0ea5e9 60%, #6366f1 100%);
  --btn-primary-shadow: 0 0 30px rgba(34,197,94,0.25), 0 0 60px rgba(14,165,233,0.12);

  /* Effets */
  --shadow:    0 24px 60px rgba(0,0,0,0.55);
  --shadow-lg: 0 40px 100px rgba(0,0,0,0.7);
  --radius-xl: 8px;
  --radius-lg: 6px;
  --radius-md: 5px;
  --radius-sm: 4px;

  /* Typo */
  --font-title: 'Space Grotesk', system-ui, sans-serif;
  --font-body:  'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 60% 40% at 15% 10%, rgba(34,197,94,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 85% 15%, rgba(14,165,233,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 75% 80%, rgba(99,102,241,0.06) 0%, transparent 50%);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Fond animé ── */
.site-bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.site-bg::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  left: -200px; top: -100px;
  background: radial-gradient(circle, rgba(34,197,94,0.06) 0%, transparent 70%);
  animation: driftA 18s ease-in-out infinite alternate;
}
.site-bg::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  right: -150px; top: 200px;
  background: radial-gradient(circle, rgba(14,165,233,0.07) 0%, transparent 70%);
  animation: driftB 22s ease-in-out infinite alternate;
}
@keyframes driftA { from { transform: translate(0,0); } to { transform: translate(40px, 60px); } }
@keyframes driftB { from { transform: translate(0,0); } to { transform: translate(-30px, 40px); } }

/* Grille de fond subtile */
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* ── Glass ── */
.glass {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

/* ── Spotlight hover ── */
.spotlight { position: relative; overflow: hidden; }
.spotlight::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.04), transparent 40%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  z-index: 0;
}
.spotlight:hover::before { opacity: 1; }
.spotlight > * { position: relative; z-index: 1; }

/* ── Layout ── */
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* ── Topbar ── */
.topbar {
  position: sticky; top: 12px;
  z-index: 100;
  width: min(1180px, calc(100% - 40px));
  margin: 12px auto 0;
  border-radius: var(--radius-xl);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; }
.brand-logo {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(1);
  transition: opacity .2s ease;
}
.brand:hover .brand-logo { opacity: .85; }

.nav { display: flex; gap: 28px; align-items: center; }
.nav a {
  color: var(--muted); font-size: 0.92rem; font-weight: 500;
  transition: color .2s ease;
}
.nav a:hover { color: var(--text); }

/* ── Boutons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 22px;
  border-radius: var(--radius-lg);
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer; border: none;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease, color .35s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--btn-primary-bg);
  color: #fff;
  box-shadow: var(--btn-primary-shadow);
}
.btn-primary:hover {
  box-shadow: 0 0 40px rgba(34,197,94,0.35), 0 0 80px rgba(14,165,233,0.18);
}

/* ✅ Bouton secondaire style RomCollect : fond sombre, transition lente vers noir */
.btn-secondary {
  background: rgba(17, 22, 34, 0.80);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}
.btn-secondary:hover {
  background: rgba(6, 8, 14, 0.95);
  border-color: rgba(98, 216, 255, 0.3);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(98,216,255,0.35);
}
.btn-outline:hover {
  background: rgba(98,216,255,0.08);
}

/* ── Sections ── */
.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 43px 0;
  position: relative; z-index: 1;
}

/* ── Eyebrow ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}

/* ── Typo ── */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  line-height: 1.06;
  margin-bottom: 16px;
}
h1 { font-size: clamp(2.6rem, 5vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }

p, li { color: var(--muted); line-height: 1.8; font-size: 0.97rem; }
p + p { margin-top: 12px; }

.gradient-text {
  background: var(--btn-primary-bg);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px; min-height: 52vh;
  align-items: center; padding-top: 28px;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 12px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-top: 12px;
}
.stat {
  border-radius: var(--radius-lg); padding: 16px;
  border: 1px solid var(--border-soft);
  background: rgba(17,22,34,0.6);
}
.stat strong {
  display: block; font-family: var(--font-title);
  font-size: 0.95rem; font-weight: 700; color: #fff;
  margin-bottom: 4px;
}
.stat span { font-size: 0.8rem; color: var(--muted); }

/* ── Hero visuel ── */
.hero-visual {
  position: relative; min-height: 340px;
}
.orb {
  position: absolute; border-radius: 4px;
  filter: blur(70px); pointer-events: none;
}
.orb-a { width: 260px; height: 260px; top: 40px; right: 60px; background: rgba(34,197,94,0.18); opacity: .5; }
.orb-b { width: 200px; height: 200px; bottom: 80px; left: 30px; background: rgba(14,165,233,0.14); opacity: .5; }

.shot {
  position: absolute; overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(4,8,16,0.7);
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.04) inset;
}
.shot-main {
  z-index: 3; width: min(580px, 100%);
  top: -120px; left: 20px;
  transform: perspective(1400px) rotateY(-7deg) rotateX(3deg) rotate(-2deg);
}
.shot-left {
  z-index: 2; width: 420px;
  bottom: 10px; left: -20px;
  transform: rotate(-7deg);
}
.shot-right {
  z-index: 1; width: 420px;
  top: 200px; right: -20px;
  transform: rotate(6deg);
}

/* ── Trust bar ── */
.trust-bar {
  display: flex; gap: 0; padding: 0;
  border-radius: var(--radius-xl); overflow: hidden;
}
.trust-bar-inner {
  display: flex; gap: 32px;
  padding: 16px 28px; white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.trust-bar span {
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; color: #c5d5ee;
  text-transform: uppercase;
  padding-right: 32px; position: relative;
}
.trust-bar span::after {
  content: ''; position: absolute;
  right: 14px; top: 50%;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--muted); transform: translateY(-50%);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Split ── */
.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.panel {
  border-radius: var(--radius-xl); padding: 16px;
}
.panel.success { border-color: var(--border-soft); }

/* ── Cards ── */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  border-radius: var(--radius-xl); padding: 14px;
  min-height: 120px;
  transition: border-color .3s ease, transform .3s ease;
}
.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.feature-icon {
  font-size: 1.6rem; display: inline-block;
  margin-bottom: 16px;
}

/* ── Callout ── */
.callout-box, .donate-box {
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
  border-radius: var(--radius-xl); padding: 16px 22px;
}
.callout-box { border-color: var(--border-soft); }

/* ── Showcase ── */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.showcase-card {
  border-radius: var(--radius-xl); overflow: hidden; padding: 0;
  cursor: zoom-in;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #080c12;
  will-change: transform;
}

/* Chaque carte : rotation + translateX + translateY amples = effet apesanteur */
.showcase-card:nth-child(1) { animation: scF1 16.2s ease-in-out infinite; animation-delay:  0s; }
.showcase-card:nth-child(2) { animation: scF2 17.5s ease-in-out infinite; animation-delay: -2.1s; }
.showcase-card:nth-child(3) { animation: scF3 15.8s ease-in-out infinite; animation-delay: -4.3s; }
.showcase-card:nth-child(4) { animation: scF4 16.9s ease-in-out infinite; animation-delay: -1.4s; }
.showcase-card:nth-child(5) { animation: scF5 17.1s ease-in-out infinite; animation-delay: -3.7s; }
.showcase-card:nth-child(6) { animation: scF6 15.5s ease-in-out infinite; animation-delay: -5.2s; }
.showcase-card:nth-child(7) { animation: scF7 16.6s ease-in-out infinite; animation-delay: -0.8s; }
.showcase-card:nth-child(8) { animation: scF8 17.3s ease-in-out infinite; animation-delay: -3.1s; }
.showcase-card:nth-child(9) { animation: scF9 15.9s ease-in-out infinite; animation-delay: -6.0s; }

/* Mouvements amples et asynchrones — translation Y importante pour l'apesanteur */
@keyframes scF1 {
  0%   { transform: rotate(-1.5deg) translate(  0px,   0px); }
  25%  { transform: rotate( 0.3deg) translate(  4px, -14px); }
  55%  { transform: rotate(-1deg)   translate( -3px,  -8px); }
  80%  { transform: rotate( 0.8deg) translate(  2px, -16px); }
  100% { transform: rotate(-1.5deg) translate(  0px,   0px); }
}
@keyframes scF2 {
  0%   { transform: rotate( 2deg)   translate(  0px,   0px); }
  30%  { transform: rotate(-0.5deg) translate( -5px, -18px); }
  60%  { transform: rotate( 1.5deg) translate(  3px,  -6px); }
  85%  { transform: rotate(-0.3deg) translate( -2px, -13px); }
  100% { transform: rotate( 2deg)   translate(  0px,   0px); }
}
@keyframes scF3 {
  0%   { transform: rotate(-0.8deg) translate(  0px,   0px); }
  35%  { transform: rotate( 1.2deg) translate(  4px, -12px); }
  65%  { transform: rotate(-1.8deg) translate( -4px, -20px); }
  90%  { transform: rotate( 0.5deg) translate(  2px,  -7px); }
  100% { transform: rotate(-0.8deg) translate(  0px,   0px); }
}
@keyframes scF4 {
  0%   { transform: rotate( 1.8deg) translate(  0px,   0px); }
  20%  { transform: rotate(-0.6deg) translate( -4px, -16px); }
  50%  { transform: rotate( 1.2deg) translate(  5px,  -9px); }
  75%  { transform: rotate(-1deg)   translate( -2px, -19px); }
  100% { transform: rotate( 1.8deg) translate(  0px,   0px); }
}
@keyframes scF5 {
  0%   { transform: rotate(-2deg)   translate(  0px,   0px); }
  40%  { transform: rotate( 0.8deg) translate(  3px, -15px); }
  70%  { transform: rotate(-1.2deg) translate( -5px, -10px); }
  88%  { transform: rotate( 0.4deg) translate(  2px, -18px); }
  100% { transform: rotate(-2deg)   translate(  0px,   0px); }
}
@keyframes scF6 {
  0%   { transform: rotate( 1.2deg) translate(  0px,   0px); }
  33%  { transform: rotate(-0.8deg) translate( -3px, -13px); }
  62%  { transform: rotate( 1.5deg) translate(  4px, -21px); }
  85%  { transform: rotate(-0.3deg) translate( -1px,  -8px); }
  100% { transform: rotate( 1.2deg) translate(  0px,   0px); }
}
@keyframes scF7 {
  0%   { transform: rotate(-1.2deg) translate(  0px,   0px); }
  28%  { transform: rotate( 1deg)   translate(  5px, -17px); }
  58%  { transform: rotate(-1.8deg) translate( -3px, -11px); }
  82%  { transform: rotate( 0.5deg) translate(  2px, -20px); }
  100% { transform: rotate(-1.2deg) translate(  0px,   0px); }
}
@keyframes scF8 {
  0%   { transform: rotate( 1.6deg) translate(  0px,   0px); }
  32%  { transform: rotate(-0.7deg) translate( -4px, -14px); }
  64%  { transform: rotate( 1.3deg) translate(  3px, -19px); }
  88%  { transform: rotate(-1deg)   translate( -2px,  -7px); }
  100% { transform: rotate( 1.6deg) translate(  0px,   0px); }
}
@keyframes scF9 {
  0%   { transform: rotate(-0.6deg) translate(  0px,   0px); }
  37%  { transform: rotate( 1.4deg) translate(  4px, -16px); }
  67%  { transform: rotate(-2deg)   translate( -5px, -10px); }
  90%  { transform: rotate( 0.6deg) translate(  1px, -15px); }
  100% { transform: rotate(-0.6deg) translate(  0px,   0px); }
}
.showcase-card.large { grid-column: span 1; } /* toutes pareil */
.showcase-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top left;
  border-radius: 0;
  display: block;
  transition: filter .7s ease;
}
.showcase-card:hover img {
  filter: saturate(1) brightness(1) hue-rotate(0deg) sepia(0);
}
.showcase-card figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 18px 14px;
  background: linear-gradient(transparent, rgba(4,8,16,0.88));
  font-size: .82rem; color: #c5d5ee;
  opacity: 0; transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
  border-radius: 0;
}
.showcase-card:hover figcaption { opacity: 1; transform: translateY(0); }

/* Icône zoom */
.showcase-card::after {
  content: '⤢';
  position: absolute; top: 12px; right: 12px;
  width: 30px; height: 30px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: rgba(255,255,255,0.7);
  opacity: 0; transition: opacity .3s ease;
  line-height: 30px; text-align: center;
}
.showcase-card:hover::after { opacity: 1; }

/* ── Lightbox ── */
.rc-lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
  cursor: zoom-out;
  animation: lbFadeIn .25s ease;
}
.rc-lightbox.is-open { display: flex; }
@keyframes lbFadeIn { from { opacity:0; } to { opacity:1; } }
.rc-lightbox img {
  max-width: min(92vw, 1400px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 40px 120px rgba(0,0,0,.8);
  animation: lbZoomIn .3s cubic-bezier(.22,1,.36,1);
}
@keyframes lbZoomIn { from { transform: scale(.92); opacity:0; } to { transform: scale(1); opacity:1; } }
.rc-lightbox-caption {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: #9aa3b2; font-size: .85rem; white-space: nowrap;
}
.rc-lightbox-close {
  position: absolute; top: 20px; right: 24px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: #fff; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s ease;
}
.rc-lightbox-close:hover { background: rgba(255,255,255,0.16); }

/* ── Highlight grid ── */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.mini-panel {
  border-radius: var(--radius-xl); padding: 14px;
  min-height: 100px;
  transition: border-color .3s ease;
}
.mini-panel:hover { border-color: var(--border); }

/* ── TABLEAU COMPARATIF ── */
.pricing-section {
  background: rgba(9,12,18,0.6);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  overflow: hidden;
}
.pricing-header {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border-soft);
}
.pricing-col-head {
  padding: 12px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.pricing-col-head:first-child {
  text-align: left;
  align-items: flex-start;
  justify-content: center;
}
.pricing-col-head .plan-name {
  font-family: var(--font-title);
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 4px;
}
.pricing-col-head .plan-price {
  font-size: 1.6rem; font-weight: 700;
  font-family: var(--font-title);
}
.pricing-col-head .plan-price span {
  font-size: 0.8rem; font-weight: 400;
  color: var(--muted); display: block;
}
.plan-featured {
  background: linear-gradient(180deg, rgba(34,197,94,0.08), rgba(14,165,233,0.05));
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

/* ── Pastille Version Full (feature cards) ── */
.feature-card { position: relative; }
.feature-badge-full {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #62d8ff;
  border: 1px solid #62d8ff;
  color: #000;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 0;
  white-space: nowrap;
  line-height: 1.4;
}
.feature-badge-full::before {
  content: "✦";
  color: #000;
  font-size: 0.6rem;
}
.pricing-badge {
  display: inline-block;
  background: var(--btn-primary-bg);
  color: #fff; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 4px;
  margin-bottom: 8px;
}
.pricing-group { border-bottom: 1px solid var(--border-soft); }
.pricing-group:last-child { border-bottom: none; }
.pricing-group-title {
  padding: 14px 14px 10px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.015);
}
.pricing-row {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  border-bottom: 1px solid rgba(42,49,66,0.3);
  transition: background .2s ease;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { background: rgba(255,255,255,0.02); }
.pricing-feature {
  padding: 8px 14px;
  font-size: 0.88rem;
}
.pricing-feature strong { color: var(--text); display: block; font-weight: 500; }
.pricing-feature small { color: var(--muted); font-size: 0.78rem; line-height: 1.5; }
.pricing-check {
  padding: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.pricing-check.featured {
  background: linear-gradient(180deg, rgba(34,197,94,0.04), rgba(14,165,233,0.02));
}
.check-yes { color: var(--green); }
.check-no  { color: rgba(255,255,255,0.15); font-size: 0.9rem; }
.pricing-cta {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  padding: 10px 14px; gap: 10px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border-soft);
}
.pricing-cta-cell {
  display: flex; align-items: center; justify-content: center;
}
.pricing-cta-cell:first-child { justify-content: flex-start; }
.pricing-note { font-size: 0.82rem; color: var(--muted); }

/* ── Page hero ── */
.page-hero { padding-top: 28px; }

/* ── Footer ── */
.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 43px auto 10px;
  border-radius: var(--radius-xl);
  padding: 10px 20px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  position: relative; z-index: 1;
}
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--muted); font-size: 0.88rem; transition: color .2s ease; }
.footer-links a:hover { color: var(--text); }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── Animations ── */
.float-y { animation: floatY 7s ease-in-out infinite; }
.float-x { animation: floatX 9s ease-in-out infinite; }
.delay-2 { animation-delay: 1.2s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-10px) rotate(-1deg); }
}
@keyframes floatX {
  0%, 100% { transform: translateX(0) rotate(-7deg); }
  50%       { transform: translateX(8px) rotate(-5deg); }
}

/* ── Timeline (features) ── */
.timeline-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.timeline-card {
  border-radius: var(--radius-xl); padding: 14px;
  transition: border-color .3s ease, transform .3s ease;
}
.timeline-card:hover { border-color: var(--border-soft); transform: translateY(-3px); }

/* ── Legal ── */
.legal-box { border-radius: var(--radius-xl); padding: 22px; }
.legal-list { padding-left: 20px; }
.legal-list li { margin-bottom: 8px; }
.steps { padding-left: 20px; }
.steps li { margin-bottom: 10px; }

/* ── Responsive ── */
@media (max-width: 1060px) {
  .hero, .split, .timeline-grid, .highlight-grid, .cards-3,
  .pricing-header, .pricing-row, .pricing-cta { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 32px; }
  .hero-visual { min-height: 400px; }
  .hero-stats { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-card { grid-column: span 1; }
  .callout-box, .donate-box { flex-direction: column; align-items: flex-start; }
  .pricing-col-head { display: none; }
  .pricing-col-head:first-child { display: block; }
  .pricing-check { justify-content: flex-start; padding-left: 28px; }
  .pricing-check::before { content: attr(data-label) ': '; color: var(--muted); font-size: 0.8rem; margin-right: 6px; }
}
@media (max-width: 700px) {
  .shot-left, .shot-right { display: none; }
  .shot-main { left: 0; width: 100%; transform: none; }
}

/* ══════════════════════════════════════════════════════════
   BOUTONS STYLE ROMCOLLECT (.rc-btn)
   Fond sombre, transition lente .6s vers noir au hover
   ══════════════════════════════════════════════════════════ */
:root {
  --btn-neutral-bg:       #1b2130;
  --btn-neutral-hover:    #10141e;
  --btn-shadow:           0 2px 0 #0e121b, 2px 4px 6px rgba(0,0,0,.24);
  --btn-shadow-hover:     0 2px 0 #0e121b, 1px 3px 6px rgba(0,0,0,.18);
  --btn-textshadow-hover: -1px -1px 0 #0b0f17;
}

.rc-btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 8px;
  height: 36px;
  min-width: 140px;
  padding: 0 18px;
  font-family: 'Ubuntu', var(--font-body), system-ui, sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: .03em;
  color: #fff;
  background: var(--btn-bg, var(--btn-neutral-bg));
  border: 0; border-radius: 0;
  cursor: pointer;
  box-shadow: var(--btn-shadow);
  transition: all .6s ease;
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
  line-height: 36px;
  box-sizing: border-box;
}
.rc-btn:hover {
  background: rgba(12,13,15,.90) !important;
  box-shadow: var(--btn-shadow-hover);
  color: #d8dee9;
  text-shadow: var(--btn-textshadow-hover);
  transform: none;
}

/* Variantes exactes de RomCollect */
.rc-btn--base      { --btn-bg: rgba(27, 33, 48, 1); }
.rc-btn--bleu      { --btn-bg: rgba(21, 30, 60, .60); }
.rc-btn--turquoise { --btn-bg: rgba(23, 41, 48, .60); }
.rc-btn--vert      { --btn-bg: rgba(23, 48, 44, .60); }
.rc-btn--bordeau   { --btn-bg: rgba(48, 23, 26, .70); }
.rc-btn--violet    { --btn-bg: rgba(48, 23, 41, .60); }
.rc-btn--indigo    { --btn-bg: rgba(39, 31, 50, .70); }
.rc-btn--rouge     { --btn-bg: rgba(50, 31, 40, .60); }

/* Bouton d'achat : turquoise foncé (accentué mais pas gradient criard) */
.rc-btn--acheter   { --btn-bg: rgba(15, 40, 55, 1); border: 1px solid var(--border); border: none; }
/* Grille 5 colonnes pour les modules */
.cards-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.cards-5 .feature-card {
  min-height: 110px;
  padding: 12px;
}
@media (max-width: 1060px) {
  .cards-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .cards-5 { grid-template-columns: repeat(2, 1fr); }
}
main > section:last-of-type { padding-bottom: 0; }
/* ══════════════════════════════════════════════════════════
   RC-SELECT (dropdown) + LANG SELECTOR
   ══════════════════════════════════════════════════════════ */
:root {
  --border-rc:    #2a3142;
  --control-h:    36px;
  --control-fs:   13px;
  --control-px:   10px;
  --scroll-track: #10131b;
  --scroll-thumb: #2a3142;
  --scroll-r:     6px;
}

.lang-selector {
  position: relative;
}

.rc-select-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: var(--control-h);
  min-width: 140px;
  padding: 0 var(--control-px);
  background: rgba(17, 22, 34, 0.80);
  border: 1px solid var(--border-rc);
  border-radius: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--control-fs);
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: background .6s ease, border-color .2s ease;
  white-space: nowrap;
  user-select: none;
}
.rc-select-btn:hover {
  background: rgba(6, 8, 14, 0.95);
  border-color: rgba(98, 216, 255, 0.3);
}

.rc-select-value {
  flex: 1;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rc-select-caret {
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #9aa3b2;
  flex-shrink: 0;
  opacity: .8;
}

/* Popup partagé */
.rc-select-popup {
  position: fixed;
  z-index: 99999;
  background: #0f1115;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,.55);
  padding: 4px;
  display: none;
}
.rc-select-popup.is-open { display: block; }

.rc-select-popup-list {
  overflow: auto;
  max-height: 340px;
  border-radius: 4px;
}
.rc-select-popup-list::-webkit-scrollbar { width: 6px; }
.rc-select-popup-list::-webkit-scrollbar-track { background: var(--scroll-track); border-radius: var(--scroll-r); }
.rc-select-popup-list::-webkit-scrollbar-thumb { background: var(--scroll-thumb); border-radius: var(--scroll-r); }

.rc-select-option {
  padding: 9px 12px;
  border-radius: 4px;
  color: var(--text);
  font-size: 13px;
  font-family: var(--font-body);
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  transition: background .15s ease;
}
.rc-select-option:hover    { background: #1e2435; }
.rc-select-option.is-selected { background: #2a3246; }

/* Lang popup légèrement plus large */
.lang-popup .rc-select-option { min-width: 150px; }
