/* ==========================================================================
   IHAENG — Dark Metallic System (2026-04-19)
   Palette: pure black surfaces, brushed-gold accents, Cormorant serif + Inter.
   ========================================================================== */

@keyframes metallic-shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes metallic-sheen {
  0%, 100% { filter: brightness(1) saturate(1); }
  50%      { filter: brightness(1.15) saturate(1.1); }
}

/* ---------- CSS Reset + Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: #000000; color-scheme: dark; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; color: var(--color-text); background: var(--color-bg); line-height: 1.6; font-weight: 400; -webkit-font-smoothing: antialiased; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; color: var(--color-heading); font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif; }
ul, ol { list-style: none; }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; border-radius: 6px; }
::selection { background: rgba(245, 197, 24, 0.35); color: #e8e0cc; }

/* Polished scrollbar — dark track, metallic gold thumb */
* { scrollbar-width: thin; scrollbar-color: rgba(212, 160, 23, 0.35) #0a0a0a; }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: #050505; }
*::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #8b6b1f, #d4a017, #8b6b1f); border: 2px solid #050505; border-radius: 10px; }
*::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #d4a017, #f4d35e, #d4a017); }

/* ---------- Design Tokens (dark) ---------- */
:root {
  /* Surfaces — Grand Cru palette: noir profond avec micro-teinte bordeaux */
  --color-bg: #070405;
  --color-bg-soft: #0e080a;
  --color-bg-alt: #140b0d;
  --color-surface: #110708;
  --color-surface-raised: #180c0e;
  --color-ink: #070405;
  --color-ink-soft: #0e080a;

  /* Text — ivoire vieilli, chaleureux, jamais blanc pur */
  --color-text: rgba(237, 228, 206, 0.82);
  --color-heading: #ede4ce;
  --color-muted: rgba(237, 228, 206, 0.58);

  /* Lines — or champagne sur fond wine */
  --color-line: rgba(200, 144, 21, 0.14);
  --color-line-strong: rgba(200, 144, 21, 0.34);

  /* Accents — or champagne + wine burgundy */
  --color-accent: #c89015;
  --color-accent-dark: #a67511;
  --color-accent-soft: rgba(200, 144, 21, 0.12);
  --color-amber: #c89015;
  --color-amber-dark: #a67511;
  --color-amber-soft: rgba(200, 144, 21, 0.12);
  --color-wine: #6b1f2a;
  --color-wine-soft: rgba(107, 31, 42, 0.18);
  --color-copper: #a05a2c;
  --color-blue: #c89015;
  --color-blue-dark: #a67511;
  --color-blue-soft: rgba(200, 144, 21, 0.12);
  --color-green: #c89015;
  --color-green-soft: rgba(200, 144, 21, 0.12);
  --color-pink: #c89015;
  --color-pink-soft: rgba(200, 144, 21, 0.12);
  --color-purple: #c89015;
  --color-purple-soft: rgba(200, 144, 21, 0.12);

  /* Champagne-foil gradients — feuille d'or brossée */
  --grad-metallic: linear-gradient(135deg, #7a5814 0%, #a87511 22%, #d6a336 40%, #e9c571 50%, #d6a336 60%, #a87511 78%, #7a5814 100%);
  --grad-metallic-soft: linear-gradient(135deg, #5a4110 0%, #8a6512 40%, #b0821a 55%, #8a6512 70%, #5a4110 100%);
  --grad-metallic-dark: linear-gradient(135deg, #3a2a0c 0%, #6a4d14 50%, #3a2a0c 100%);
  --grad-wine: linear-gradient(135deg, #3a0e14 0%, #6b1f2a 50%, #3a0e14 100%);
  --grad-hero: var(--grad-metallic);
  --grad-amber: var(--grad-metallic);
  --grad-cool: var(--grad-metallic-soft);
  --grad-dark: linear-gradient(135deg, #070405 0%, #0e080a 50%, #140b0d 100%);
  --grad-glow: radial-gradient(ellipse 80% 50% at 20% 10%, rgba(200, 144, 21, 0.10), transparent 55%), radial-gradient(ellipse 70% 60% at 80% 80%, rgba(107, 31, 42, 0.10), transparent 50%);
  --grad-card-surface: linear-gradient(135deg, #0b0609 0%, #140b0d 50%, #0b0609 100%);

  /* Type scale */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.625rem;
  --fs-5xl: 3.5rem;
  --fs-6xl: 4.5rem;

  /* Spacing */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Shadows (darker) */
  --sh-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --sh-md: 0 6px 18px rgba(0, 0, 0, 0.45);
  --sh-lg: 0 14px 36px rgba(0, 0, 0, 0.55);
  --sh-xl: 0 28px 72px rgba(0, 0, 0, 0.6);
  --sh-glow: 0 12px 40px rgba(245, 197, 24, 0.22);

  /* Transitions */
  --tr-fast: 0.15s ease;
  --tr-med: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --tr-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --max-w: 1280px;
  --max-w-narrow: 960px;
  --max-w-article: 720px;
  --nav-h: 76px;
}

/* ---------- Typography ---------- */
.font-mono { font-family: 'Sono', 'JetBrains Mono', ui-monospace, monospace; letter-spacing: -0.02em; }
.eyebrow { display: inline-flex; align-items: center; gap: var(--s-2); font-family: 'Inter', sans-serif; font-size: var(--fs-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; color: var(--color-accent); padding: 4px 0; margin-bottom: var(--s-5); background: transparent; border: 0; border-radius: 0; }
.eyebrow::before { content: ''; display: inline-block; width: 32px; height: 1px; background: var(--grad-metallic); margin-right: 8px; vertical-align: middle; }
.eyebrow--amber { color: var(--color-amber); }
.eyebrow--amber::before { background: var(--grad-metallic); }
.eyebrow--dark { color: rgba(232, 224, 204, 0.9); }
.eyebrow--dark::before { background: rgba(232, 224, 204, 0.9); }

h1, .h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); line-height: 1.02; letter-spacing: -0.015em; font-weight: 600; }
h2, .h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; letter-spacing: -0.01em; font-weight: 600; }
h3, .h3 { font-size: clamp(1.5rem, 2.5vw, 1.875rem); font-weight: 600; }
h4, .h4 { font-size: 1.25rem; font-weight: 600; }
.lead { font-family: 'Inter', sans-serif; font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--color-muted); line-height: 1.65; max-width: 680px; font-weight: 400; }
.text-balance { text-wrap: balance; }
.text-gradient { background: var(--grad-metallic); background-size: 200% 200%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; font-style: italic; animation: metallic-shimmer 6s ease-in-out infinite alternate; }
.text-amber { color: var(--color-amber); }
.text-muted { color: var(--color-muted); }
.small { font-size: var(--fs-sm); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--s-5); }
.container--narrow { max-width: var(--max-w-narrow); }
.container--article { max-width: var(--max-w-article); }
.section { padding: var(--s-10) 0; }
.section--sm { padding: var(--s-8) 0; }
.section--lg { padding: calc(var(--s-10) + 2rem) 0; }
.section--dark { background: #050505; color: rgba(232, 224, 204, 0.76); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #e8e0cc; }
.section--dark .text-muted { color: rgba(232, 224, 204, 0.58); }
.section--soft { background: transparent; }
.section--alt { background: var(--color-bg-alt); }
.section__head { text-align: center; max-width: 820px; margin: 0 auto var(--s-8); }
.section__head--left { text-align: left; }

.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--s-6); }

.flex { display: flex; gap: var(--s-4); }
.flex-center { align-items: center; justify-content: center; }
.flex-between { justify-content: space-between; align-items: center; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }

.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.25), transparent); margin: var(--s-7) 0; border: 0; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2); padding: 0.875rem 1.5rem; border-radius: var(--r-md); font-weight: 600; font-size: var(--fs-base); transition: transform var(--tr-fast), box-shadow var(--tr-med), background var(--tr-fast), border-color var(--tr-fast); white-space: nowrap; cursor: pointer; border: 2px solid transparent; }
.btn:active { transform: scale(0.98); }
.btn--primary { background: transparent; color: #e9c571; border: 1px solid #c89015; font-weight: 600; letter-spacing: 0.02em; }
.btn--primary:hover { background: rgba(200, 144, 21, 0.12); color: #ede4ce; border-color: #e9c571; transform: translateY(-2px); box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4); }
/* Primary CTA — "wine label foil" style: dark wine fill, gold text, gold border */
.btn--accent { background: linear-gradient(135deg, #1c0f13 0%, #2a1418 50%, #1c0f13 100%); color: #e9c571; font-weight: 600; letter-spacing: 0.03em; border: 1px solid #c89015; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(200, 144, 21, 0.32), 0 0 0 1px rgba(200, 144, 21, 0.18); position: relative; overflow: hidden; text-shadow: 0 0 12px rgba(200, 144, 21, 0.28); }
.btn--accent::before { content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(233, 197, 113, 0.32), transparent); transition: left var(--tr-slow); pointer-events: none; }
.btn--accent:hover { background: linear-gradient(135deg, #2a1418 0%, #3a1c22 50%, #2a1418 100%); color: #f4d58a; border-color: #e9c571; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(233, 197, 113, 0.45), 0 0 0 1px rgba(233, 197, 113, 0.35); }
.btn--accent:hover::before { left: 130%; }
.btn--accent:focus-visible { outline: 3px solid #e9c571; outline-offset: 3px; }
.btn--amber { background: linear-gradient(135deg, #1c0f13 0%, #2a1418 50%, #1c0f13 100%); color: #e9c571; border: 1px solid #c89015; font-weight: 600; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(200, 144, 21, 0.3); }
.btn--amber:hover { background: linear-gradient(135deg, #2a1418 0%, #3a1c22 50%, #2a1418 100%); color: #f4d58a; border-color: #e9c571; transform: translateY(-2px); }
.btn--ghost { background: transparent; border: 1px solid rgba(200, 144, 21, 0.55); color: #ede4ce; font-weight: 600; }
.btn--ghost:hover { background: rgba(200, 144, 21, 0.1); border-color: #c89015; color: #ede4ce; transform: translateY(-2px); }
.btn--ghost-light { background: transparent; border: 1px solid rgba(237, 228, 206, 0.35); color: #ede4ce; font-weight: 600; }
.btn--ghost-light:hover { background: rgba(237, 228, 206, 0.05); border-color: #ede4ce; }
.btn--link { padding: 0; font-weight: 600; color: var(--color-accent); border: 0; }
.btn--link:hover { color: var(--color-accent-dark); }
.btn--lg { padding: 1.125rem 2rem; font-size: var(--fs-lg); border-radius: 12px; }
.btn--sm { padding: 0.5rem 0.875rem; font-size: var(--fs-sm); }
.btn__arrow { transition: transform var(--tr-fast); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ---------- Navigation ---------- */
.site-nav { position: sticky; top: 0; z-index: 100; background: #000000; border-bottom: 1px solid transparent; background-image: linear-gradient(#000000, #000000), linear-gradient(90deg, transparent 10%, rgba(212, 160, 23, 0.28) 50%, transparent 90%); background-origin: border-box; background-clip: padding-box, border-box; }
.site-nav__inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: var(--s-6); }
.site-nav__brand { display: inline-flex; align-items: center; gap: var(--s-3); }
.site-nav__logo { height: 44px; width: auto; display: block; transition: filter var(--tr-med), transform var(--tr-med); }
.site-nav__brand:hover .site-nav__logo { filter: drop-shadow(0 0 14px rgba(212, 160, 23, 0.45)); transform: translateY(-1px); }
.site-nav__menu { display: flex; align-items: center; gap: var(--s-6); list-style: none; }
.site-nav__link { font-size: 0.95rem; font-weight: 500; color: rgba(232, 224, 204, 0.72); position: relative; display: inline-flex; align-items: center; gap: 4px; padding: 6px 0; transition: color var(--tr-fast); }
.site-nav__link:hover { color: var(--color-accent); }
.site-nav__link.is-active { color: #e8e0cc; }
.site-nav__link.is-active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--color-accent); border-radius: 2px; }
.site-nav__caret { font-size: 10px; opacity: 0.7; }

.site-nav__item--dropdown { position: relative; }
.site-nav__item--dropdown::before { content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 14px; }
.site-nav__dropdown { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px); min-width: 720px; background: #030303; border-radius: var(--r-xl); padding: 1.5rem; box-shadow: var(--sh-xl); border: 1px solid var(--color-line); opacity: 0; visibility: hidden; transition: all var(--tr-med); display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.site-nav__item--dropdown:hover .site-nav__dropdown, .site-nav__item--dropdown:focus-within .site-nav__dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.site-nav__dropdown-item { display: grid; grid-template-columns: 44px 1fr; gap: var(--s-3); padding: 0.75rem 1rem; border-radius: var(--r-md); transition: background var(--tr-fast); }
.site-nav__dropdown-item:hover { background: rgba(212, 160, 23, 0.05); }
.site-nav__dropdown-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--color-accent-soft); color: var(--color-accent); display: grid; place-items: center; font-size: 18px; filter: grayscale(0.6) brightness(0.9) sepia(0.4) hue-rotate(-8deg) saturate(1.1); }
.site-nav__dropdown-title { font-weight: 600; color: #e8e0cc; font-size: 0.95rem; margin-bottom: 2px; display: block; }
.site-nav__dropdown-desc { font-size: 0.8rem; color: var(--color-muted); display: block; }

.site-nav__cta { display: flex; gap: var(--s-3); align-items: center; }
.site-nav__toggle { display: none; width: 40px; height: 40px; border-radius: var(--r-md); background: rgba(212, 160, 23, 0.05); align-items: center; justify-content: center; border: 1px solid var(--color-line); }

/* Hamburger */
.hamburger { width: 22px; height: 2px; background: #e8e0cc; position: relative; display: block; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; width: 100%; height: 2px; background: #e8e0cc; transition: transform var(--tr-fast); }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* ---------- Hero ---------- */
.hero { padding: var(--s-10) 0 var(--s-9); position: relative; overflow: hidden; background: #000000; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 45% at 22% 32%, rgba(212, 160, 23, 0.11), transparent 60%), radial-gradient(ellipse 45% 30% at 75% 20%, rgba(212, 160, 23, 0.06), transparent 55%); pointer-events: none; z-index: 0; }
.hero::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.25), transparent); z-index: 1; }
.hero > * { position: relative; z-index: 2; }
.hero--dark { background: #050505; color: #e8e0cc; }
.hero--gradient { background: var(--grad-dark); color: #e8e0cc; }
.hero__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--s-8); align-items: center; }
.hero__grid--center { grid-template-columns: 1fr; text-align: center; max-width: 900px; margin: 0 auto; }
.hero__title { font-size: clamp(2.75rem, 6vw, 4.75rem); line-height: 1.02; letter-spacing: -0.03em; margin-bottom: var(--s-5); color: #e8e0cc; }
.hero__subtitle { font-size: clamp(1.125rem, 1.7vw, 1.375rem); color: var(--color-muted); line-height: 1.55; max-width: 640px; margin-bottom: var(--s-7); }
.hero--dark .hero__subtitle { color: rgba(232, 224, 204, 0.72); }
.hero__cta { display: flex; gap: var(--s-4); flex-wrap: wrap; }
.hero__trust { display: flex; gap: var(--s-4); align-items: center; margin-top: var(--s-6); flex-wrap: wrap; font-size: var(--fs-sm); color: var(--color-muted); }
.hero__trust-item { display: inline-flex; gap: 6px; align-items: center; }
.hero__trust-stars { background: var(--grad-metallic); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; letter-spacing: 2px; font-size: 0.95em; }
.hero__visual { position: relative; }
.hero__visual-card { background: var(--grad-card-surface); border: 1px solid var(--color-line-strong); border-radius: var(--r-lg); padding: var(--s-6); box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(212, 160, 23, 0.08); position: relative; overflow: hidden; }
.hero__visual-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.4), transparent); }
.hero__blob { display: none; }
.hero__blob--1, .hero__blob--2 { display: none; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; border-radius: var(--r-xl); overflow: hidden; background: transparent; border: 1px solid var(--color-line); }
.stat { padding: var(--s-6); border-right: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line); text-align: left; }
.stat:last-child { border-right: 0; }
.stat__value { font-family: 'Sono', monospace; font-size: clamp(2.25rem, 3.5vw, 3rem); font-weight: 800; background: var(--grad-metallic); background-size: 200% 200%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; letter-spacing: -0.03em; line-height: 1; margin-bottom: var(--s-2); animation: metallic-shimmer 10s ease-in-out infinite alternate; }
.stat__label { font-size: var(--fs-sm); color: rgba(232, 224, 204, 0.62); line-height: 1.4; }

.stats-inline { display: flex; flex-wrap: wrap; gap: var(--s-7); margin-top: var(--s-7); }
.stats-inline .stat { padding: 0; border: 0; background: transparent; color: inherit; }
.stats-inline .stat__value { color: inherit; font-size: 2.5rem; }

/* ---------- Cards ---------- */
.card { background: var(--grad-card-surface); border: 1px solid var(--color-line); border-radius: var(--r-lg); padding: var(--s-6); transition: border-color var(--tr-fast), transform var(--tr-med), box-shadow var(--tr-med), background var(--tr-fast); display: flex; flex-direction: column; gap: var(--s-3); position: relative; overflow: hidden; color: var(--color-text); }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.25), transparent); opacity: 0; transition: opacity var(--tr-med); }
.card:hover { border-color: rgba(200, 144, 21, 0.42); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(200, 144, 21, 0.14), inset 0 1px 0 rgba(200, 144, 21, 0.08); background: linear-gradient(135deg, #100709 0%, #170b0d 50%, #100709 100%); }
.card:hover::before { opacity: 1; }
.card__icon { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; font-size: 24px; margin-bottom: var(--s-2); filter: grayscale(0.6) brightness(0.9) sepia(0.4) hue-rotate(-8deg) saturate(1.1); }
.card__icon--blue { background: var(--color-blue-soft); color: var(--color-blue); }
.card__icon--amber { background: var(--color-amber-soft); color: var(--color-amber); }
.card__icon--green { background: var(--color-green-soft); color: var(--color-green); }
.card__icon--pink { background: var(--color-pink-soft); color: var(--color-pink); }
.card__icon--purple { background: var(--color-purple-soft); color: var(--color-purple); }
.card__icon--ink { background: rgba(212, 160, 23, 0.08); color: #e8e0cc; }
.card__title { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--color-heading); line-height: 1.3; letter-spacing: -0.01em; }
.card__desc { font-size: 0.925rem; color: var(--color-muted); line-height: 1.55; margin-bottom: var(--s-2); flex: 1; }
.card__link { font-weight: 600; color: var(--color-accent); display: inline-flex; gap: 6px; align-items: center; font-size: 0.925rem; }
.card__link:hover { color: var(--color-accent-dark); }
.card__link:hover .btn__arrow { transform: translateX(3px); }

.card--feature { padding: var(--s-7); }
.card--dark { background: #050505; color: rgba(232, 224, 204, 0.78); border-color: var(--color-line); }
.card--dark .card__title { color: #e8e0cc; }
.card--dark .card__desc { color: rgba(232, 224, 204, 0.65); }
.card--dark:hover { border-color: rgba(212, 160, 23, 0.35); }
.card--gradient { background: var(--grad-hero); color: #0a0a0a; border: 0; }
.card--gradient .card__title, .card--gradient .card__desc { color: #0a0a0a; }
.card--gradient:hover { transform: translateY(-4px); }

/* Case study card */
.case-card { border-radius: var(--r-lg); overflow: hidden; position: relative; background: var(--grad-card-surface); min-height: 360px; display: flex; flex-direction: column; justify-content: flex-end; padding: var(--s-7); color: #e8e0cc; isolation: isolate; transition: transform var(--tr-med), box-shadow var(--tr-med); border: 1px solid var(--color-line); }
.case-card::before { content: ''; position: absolute; inset: 0; z-index: -2; background: var(--grad-dark); }
.case-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.9) 100%); }
.case-card:hover { transform: translateY(-4px); border-color: var(--color-line-strong); }
.case-card--gradient-1::before { background: linear-gradient(135deg, #0a0a0a, #000000); }
.case-card--gradient-2::before { background: linear-gradient(135deg, #0d0a04, #000000); }
.case-card--gradient-3::before { background: linear-gradient(135deg, #0a0a0a, #000000); }
.case-card--gradient-4::before { background: linear-gradient(135deg, #0a0a0a, #000000); }
.case-card__meta { display: flex; gap: var(--s-3); margin-bottom: var(--s-4); font-size: var(--fs-sm); opacity: 0.8; }
.case-card__title { font-size: clamp(1.25rem, 2vw, 1.625rem); color: #e8e0cc; margin-bottom: var(--s-3); line-height: 1.25; }
.case-card__desc { color: rgba(232, 224, 204, 0.78); font-size: 0.95rem; margin-bottom: var(--s-4); }
.case-card__metrics { display: flex; gap: var(--s-5); margin-bottom: var(--s-4); }
.case-card__metric-value { font-family: 'Sono', monospace; font-size: 1.5rem; font-weight: 800; display: block; background: var(--grad-metallic); background-size: 200% 200%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.case-card__metric-label { font-size: 0.75rem; opacity: 0.7; }
.case-card__cta { color: var(--color-accent); font-weight: 600; display: inline-flex; gap: 6px; align-items: center; }

/* Industry tile */
.industry { padding: var(--s-6); background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--r-lg); transition: all var(--tr-med); display: flex; flex-direction: column; gap: var(--s-2); color: var(--color-text); }
.industry:hover { border-color: var(--color-accent); transform: translateY(-3px); box-shadow: var(--sh-md); }
.industry__emoji { font-size: 2rem; margin-bottom: var(--s-2); filter: grayscale(0.6) brightness(0.9) sepia(0.4) hue-rotate(-8deg) saturate(1.1); }
.industry__title { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; color: #e8e0cc; letter-spacing: -0.01em; }
.industry__tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: var(--s-2); }
.industry__tag { font-size: 0.7rem; padding: 2px 8px; background: rgba(212, 160, 23, 0.06); border-radius: var(--r-pill); color: var(--color-muted); }

/* Process steps */
.process-steps { display: grid; gap: var(--s-5); }
.process-step { display: grid; grid-template-columns: 80px 1fr; gap: var(--s-5); align-items: flex-start; padding: var(--s-6); background: var(--grad-card-surface); border: 1px solid var(--color-line); border-radius: var(--r-lg); transition: border-color var(--tr-fast), box-shadow var(--tr-med); }
.process-step:hover { border-color: rgba(212, 160, 23, 0.28); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4); }
.process-step__num { font-family: 'Sono', monospace; font-size: 2.5rem; font-weight: 800; background: var(--grad-metallic); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; line-height: 1; letter-spacing: -0.03em; }
.process-step__title { font-family: 'Inter', sans-serif; font-size: 1.125rem; font-weight: 600; margin-bottom: var(--s-2); color: #e8e0cc; letter-spacing: -0.01em; }
.process-step__desc { color: var(--color-muted); line-height: 1.6; }

/* Feature list with checks */
.feature-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--s-3); }
.feature-list__item { display: grid; grid-template-columns: 28px 1fr; gap: var(--s-3); font-size: 0.95rem; color: var(--color-text); line-height: 1.5; }
.feature-list__item::before { content: '✓'; width: 24px; height: 24px; border-radius: 50%; background: var(--color-accent-soft); color: var(--color-accent); display: grid; place-items: center; font-weight: 800; font-size: 13px; margin-top: 2px; }
.feature-list--dark .feature-list__item { color: rgba(232, 224, 204, 0.78); }
.feature-list--dark .feature-list__item::before { background: rgba(245, 197, 24, 0.2); color: var(--color-accent); }

/* Testimonials */
.testimonial { padding: var(--s-7); background: var(--grad-card-surface); border: 1px solid var(--color-line); border-radius: var(--r-lg); position: relative; transition: border-color var(--tr-fast), transform var(--tr-med); }
.testimonial:hover { border-color: rgba(212, 160, 23, 0.25); transform: translateY(-2px); }
.testimonial__quote { font-size: 1.125rem; line-height: 1.6; color: #e8e0cc; margin-bottom: var(--s-5); font-weight: 500; }
.testimonial__author { display: grid; grid-template-columns: 44px 1fr; gap: var(--s-3); align-items: center; }
.testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; background: transparent; color: var(--color-accent); border: 1px solid var(--color-accent); display: grid; place-items: center; font-weight: 600; letter-spacing: 0.02em; }
.testimonial__name { font-family: 'Inter', sans-serif; font-weight: 600; color: #e8e0cc; font-size: 0.95rem; }
.testimonial__role { font-size: 0.8rem; color: var(--color-muted); }
.testimonial__stars { background: var(--grad-metallic); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; margin-bottom: var(--s-3); font-size: 1rem; letter-spacing: 2px; }

/* Logo band */
.logos { display: flex; flex-wrap: wrap; gap: var(--s-7); justify-content: center; align-items: center; }
.logos__item { font-size: 0.9rem; font-weight: 500; color: rgba(232, 224, 204, 0.35); letter-spacing: 0.18em; text-transform: uppercase; font-family: 'Inter', sans-serif; padding: 6px 14px; border: 1px solid rgba(212, 160, 23, 0.12); border-radius: 999px; transition: all var(--tr-med); }
.logos__item:hover { color: var(--color-accent); border-color: rgba(212, 160, 23, 0.38); background: rgba(212, 160, 23, 0.04); }

/* CTA band */
.cta-band { background: var(--grad-card-surface); color: #e8e0cc; border-radius: var(--r-lg); padding: var(--s-9) var(--s-7); text-align: center; position: relative; overflow: hidden; border: 1px solid var(--color-line-strong); }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 50% 40%, rgba(212, 160, 23, 0.10), transparent 60%); pointer-events: none; }
.cta-band::after { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.5), transparent); }
.cta-band__title { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: var(--s-4); color: #e8e0cc; position: relative; }
.cta-band__desc { color: rgba(232, 224, 204, 0.76); max-width: 600px; margin: 0 auto var(--s-6); position: relative; }
.cta-band__buttons { display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; position: relative; }

/* Team member */
.team-card { background: var(--grad-card-surface); border: 1px solid var(--color-line); border-radius: var(--r-lg); padding: var(--s-5); text-align: center; transition: all var(--tr-med); }
.team-card:hover { border-color: var(--color-accent); transform: translateY(-4px); box-shadow: var(--sh-md); }
.team-card__avatar { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto var(--s-4); background: transparent; color: var(--color-accent); border: 1px solid var(--color-accent); display: grid; place-items: center; font-weight: 600; font-size: 1.5rem; letter-spacing: 0.02em; }
.team-card__avatar--2 { background: transparent; }
.team-card__avatar--3 { background: transparent; }
.team-card__avatar--4 { background: transparent; }
.team-card__name { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; color: #e8e0cc; letter-spacing: -0.01em; }
.team-card__role { font-size: 0.875rem; color: var(--color-muted); margin-bottom: var(--s-3); }
.team-card__bio { font-size: 0.875rem; color: var(--color-text); line-height: 1.5; }

/* Article card */
.article-card { background: var(--grad-card-surface); border: 1px solid var(--color-line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: all var(--tr-med); }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--color-line-strong); }
.article-card__thumb { aspect-ratio: 16/9; background: #030303; border-bottom: 1px solid var(--color-line); position: relative; overflow: hidden; }
.article-card__thumb--2 { background: #030303; }
.article-card__thumb--3 { background: #030303; }
.article-card__thumb--4 { background: #030303; }
.article-card__thumb-emoji { position: absolute; inset: 0; display: grid; place-items: center; font-size: 3.5rem; filter: grayscale(0.6) brightness(0.9) sepia(0.4) hue-rotate(-8deg) saturate(1.1) drop-shadow(0 4px 12px rgba(0,0,0,0.5)); }
.article-card__body { padding: var(--s-6); display: flex; flex-direction: column; gap: var(--s-2); flex: 1; }
.article-card__meta { display: flex; gap: var(--s-3); font-size: 0.75rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.article-card__title { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600; line-height: 1.3; color: #e8e0cc; letter-spacing: -0.01em; }
.article-card__desc { color: var(--color-muted); font-size: 0.9rem; line-height: 1.55; flex: 1; }

/* Forms */
.form { display: flex; flex-direction: column; gap: var(--s-4); }
.form__row { display: grid; gap: var(--s-4); grid-template-columns: 1fr 1fr; }
.form__row--single { grid-template-columns: 1fr; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__label { font-size: var(--fs-sm); font-weight: 600; color: #e8e0cc; }
.form__input, .form__textarea, .form__select { padding: 12px 14px; border: 1px solid rgba(212, 160, 23, 0.18); border-radius: var(--r-md); background: #050505; color: #e8e0cc; font-size: 0.95rem; transition: border-color var(--tr-fast), box-shadow var(--tr-fast), background var(--tr-fast); }
.form__input::placeholder, .form__textarea::placeholder { color: rgba(232, 224, 204, 0.32); }
.form__input:focus, .form__textarea:focus, .form__select:focus { border-color: var(--color-accent); background: #070707; box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15), inset 0 1px 0 rgba(212, 160, 23, 0.08); outline: none; }
.form__textarea { resize: vertical; min-height: 140px; font-family: inherit; }
.form__checkbox { display: inline-flex; gap: 10px; align-items: flex-start; font-size: var(--fs-sm); color: var(--color-muted); line-height: 1.4; }
.form__checkbox input { margin-top: 3px; accent-color: var(--color-accent); }
.form__status { padding: 12px 16px; border-radius: var(--r-md); font-size: var(--fs-sm); }
.form__status--ok { background: rgba(212, 160, 23, 0.10); color: var(--color-accent); border: 1px solid var(--color-accent); }
.form__status--err { background: #0a0500; color: #e8e0cc; border: 1px solid rgba(220, 50, 50, 0.5); }

/* Badges */
.badge { display: inline-block; padding: 3px 10px; border-radius: var(--r-pill); font-size: 0.75rem; font-weight: 600; }
.badge--blue { background: var(--color-blue-soft); color: var(--color-blue); }
.badge--amber { background: var(--color-amber-soft); color: var(--color-amber); }
.badge--green { background: var(--color-green-soft); color: var(--color-green); }
.badge--pink { background: var(--color-pink-soft); color: var(--color-pink); }

/* Split section (image/text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-8); align-items: center; }
.split--reverse > :first-child { order: 2; }
.split__media { aspect-ratio: 4/3; border-radius: var(--r-xl); overflow: hidden; background: #030303; position: relative; display: grid; place-items: center; color: var(--color-accent); font-size: 4rem; border: 1px solid var(--color-line-strong); }
.split__media > * { filter: grayscale(0.6) brightness(0.9) sepia(0.5) hue-rotate(-8deg) saturate(1.1); }
.split__media--2 { background: #030303; }
.split__media--3 { background: #030303; }
.split__media--4 { background: #030303; }

/* Accordion / FAQ */
.faq { display: flex; flex-direction: column; gap: var(--s-3); }
.faq__item { background: var(--grad-card-surface); border: 1px solid var(--color-line); border-radius: var(--r-lg); overflow: hidden; transition: border-color var(--tr-fast); }
.faq__item[open] { border-color: var(--color-accent); box-shadow: var(--sh-md); }
.faq__question { padding: var(--s-4) var(--s-5); font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--s-4); color: #e8e0cc; }
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after { content: '+'; font-size: 1.5rem; color: var(--color-accent); font-weight: 400; transition: transform var(--tr-fast); }
.faq__item[open] .faq__question::after { transform: rotate(45deg); }
.faq__answer { padding: 0 var(--s-5) var(--s-5); color: var(--color-muted); line-height: 1.6; }

/* Breadcrumb */
.breadcrumb { display: flex; gap: 8px; font-size: var(--fs-sm); color: var(--color-muted); margin-bottom: var(--s-4); flex-wrap: wrap; }
.breadcrumb a { color: var(--color-muted); transition: color var(--tr-fast); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb__sep { opacity: 0.4; }
.breadcrumb__current { color: #e8e0cc; font-weight: 500; }

/* Article prose */
.prose { max-width: 720px; margin: 0 auto; font-size: 1.0625rem; line-height: 1.75; color: var(--color-text); }
.prose h1 { color: #e8e0cc; }
.prose h2 { margin-top: var(--s-8); margin-bottom: var(--s-4); font-size: 1.75rem; color: #e8e0cc; }
.prose h3 { margin-top: var(--s-7); margin-bottom: var(--s-3); font-size: 1.35rem; color: #e8e0cc; }
.prose p { margin-bottom: var(--s-4); }
.prose ul, .prose ol { margin: var(--s-4) 0 var(--s-4) var(--s-5); }
.prose li { margin-bottom: var(--s-2); }
.prose blockquote { border-left: 3px solid var(--color-accent); padding: var(--s-3) var(--s-5); margin: var(--s-6) 0; background: var(--color-surface); color: #e8e0cc; font-weight: 500; border-radius: 0 var(--r-md) var(--r-md) 0; }
.prose img { border-radius: var(--r-lg); margin: var(--s-6) 0; }
.prose a { color: var(--color-accent); text-decoration: underline; text-decoration-color: rgba(245, 197, 24, 0.35); text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: var(--color-accent); }
.prose code { background: var(--color-bg-alt); padding: 2px 6px; border-radius: 4px; font-size: 0.9em; color: var(--color-accent); }

/* ---------- Footer ---------- */
.site-footer { background: #030303; color: rgba(232, 224, 204, 0.65); padding: var(--s-9) 0 var(--s-6); position: relative; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.35), transparent); }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: var(--s-7); margin-bottom: var(--s-7); }
.site-footer__brand { display: flex; flex-direction: column; gap: var(--s-4); }
.site-footer__logo { display: inline-flex; align-items: center; gap: var(--s-3); }
.site-footer__logo-img { height: 56px; width: auto; display: block; transition: filter var(--tr-med); }
.site-footer__logo:hover .site-footer__logo-img { filter: drop-shadow(0 0 16px rgba(212, 160, 23, 0.3)); }
.site-footer__tagline { color: rgba(232, 224, 204, 0.58); font-size: 0.9rem; line-height: 1.65; max-width: 320px; font-family: 'Inter', sans-serif; }
.site-footer__note { font-size: var(--fs-xs); color: rgba(232, 224, 204, 0.4); margin-top: var(--s-3); max-width: 240px; line-height: 1.5; }
.site-footer__col-title { font-family: 'Inter', sans-serif; color: #e8e0cc; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: var(--s-4); }
.site-footer__list { display: flex; flex-direction: column; gap: 10px; }
.site-footer__list a { color: rgba(232, 224, 204, 0.6); font-size: 0.9rem; transition: color var(--tr-fast); }
.site-footer__list a:hover { color: var(--color-accent); }
.site-footer__list li { color: rgba(232, 224, 204, 0.55); font-size: 0.9rem; }
.site-footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: var(--s-5); border-top: 1px solid var(--color-line); flex-wrap: wrap; gap: var(--s-3); }
.site-footer__copy { font-size: var(--fs-sm); color: rgba(232, 224, 204, 0.42); }
.site-footer__legal { display: flex; gap: var(--s-5); font-size: var(--fs-sm); }
.site-footer__legal a { color: rgba(232, 224, 204, 0.42); }
.site-footer__legal a:hover { color: #e8e0cc; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--tr-slow), transform var(--tr-slow); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: initial; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  .site-nav__dropdown { left: auto; right: 0; transform: none; min-width: 520px; }
  .site-nav__item--dropdown:hover .site-nav__dropdown, .site-nav__item--dropdown:focus-within .site-nav__dropdown { transform: none; }
  .process-step { grid-template-columns: 1fr; gap: var(--s-3); }
}

@media (max-width: 768px) {
  .site-nav__menu, .site-nav__cta .btn--primary { display: none; }
  .site-nav__toggle { display: flex; }
  .site-nav.is-open .site-nav__menu { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #000000; padding: var(--s-5); gap: var(--s-3); border-bottom: 1px solid var(--color-line); box-shadow: var(--sh-lg); align-items: flex-start; }
  .site-nav.is-open .site-nav__link { padding: 10px 0; width: 100%; border-bottom: 1px solid var(--color-line); }
  .site-nav.is-open .site-nav__dropdown { position: static; opacity: 1; visibility: visible; transform: none; display: block; box-shadow: none; border: 0; padding: 0 0 0 var(--s-4); min-width: 0; background: transparent; }
  .section { padding: var(--s-8) 0; }
  .hero { padding: var(--s-8) 0 var(--s-7); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 1px solid var(--color-line); }
  .stat:nth-child(even) { border-right: 0; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .cta-band { padding: var(--s-7) var(--s-5); }
  .case-card { min-height: 300px; padding: var(--s-5); }
  .case-card__metrics { gap: var(--s-4); }
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: var(--s-2); }
.mt-4 { margin-top: var(--s-4); }
.mt-6 { margin-top: var(--s-6); }
.mt-8 { margin-top: var(--s-8); }
.mb-4 { margin-bottom: var(--s-4); }
.mb-6 { margin-bottom: var(--s-6); }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   URGENT FIXES — tout élément encore lumineux sur voxeel.ai
   ============================================================ */

/* Guide page — blocs .feature-box en blanc pur + .step-note bleu pâle */
.feature-box, .features-grid .feature-box,
.step-note, .note-box, .info-box,
.benefit-box, .highlight-box, .tip-box, .warning-box,
.guide-card .box, .tutorial-box,
div[style*="background: #ffffff"], div[style*="background:#ffffff"],
div[style*="background: #fff"], div[style*="background:#fff"] {
    background: #140b0d !important;
    color: #ede4ce !important;
    border: 1px solid rgba(200, 144, 21, 0.14) !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4) !important;
}
.feature-box *, .step-note *, .note-box *,
.benefit-box *, .highlight-box *, .tip-box * {
    color: #ede4ce !important;
}
.feature-box h3, .feature-box h4, .feature-box .title,
.step-note strong, .note-box strong,
.benefit-box h3, .benefit-box h4,
.highlight-box h3, .highlight-box h4 {
    color: #e9c571 !important;
    font-family: "Cormorant Garamond", Georgia, serif !important;
}
.feature-box p, .step-note p, .note-box p {
    color: rgba(237, 228, 206, 0.75) !important;
}

/* Any element with inline white bg */
[style*="background-color: white"], [style*="background-color:#fff"],
[style*="background-color: #fff"], [style*="background-color: rgb(255"],
[style*="background: rgb(255, 255, 255)"] {
    background-color: #140b0d !important;
    background: #140b0d !important;
    color: #ede4ce !important;
}

/* Any white-ish bg used by guide/landing sections */
section.features-section, section.benefits-section, section.highlights-section,
section.tutorial-section, section.steps-section {
    background: #070405 !important;
    color: #ede4ce !important;
}

/* Light bluish tint catches (rgb 232 244 248 etc.) */
[style*="rgb(232, 244"], [style*="rgb(240, 244"], [style*="rgb(235, 238"],
.light-bg, .bg-blue-light, .bg-info-light {
    background: #0e080a !important;
    color: #ede4ce !important;
    border: 1px solid rgba(200, 144, 21, 0.14) !important;
}

/* =============================================================
   Ghost buttons — plus visibles
   ============================================================= */

/* Rendre les boutons "ghost" / outline plus évidents */
.btn-ghost, .btn--ghost, .btn-outline, .btn-outline-primary, .btn-outline-light,
.btn-secondary, a.btn--ghost, button.btn--ghost {
    background: rgba(200, 144, 21, 0.06) !important;
    border: 1.5px solid rgba(200, 144, 21, 0.55) !important;
    color: #e9c571 !important;
    font-weight: 600 !important;
    padding: 10px 22px !important;
    border-radius: 8px !important;
    letter-spacing: 0.02em !important;
    transition: all 0.2s ease !important;
}
.btn-ghost:hover, .btn--ghost:hover, .btn-outline:hover, .btn-outline-primary:hover,
.btn-secondary:hover, a.btn--ghost:hover, button.btn--ghost:hover {
    background: rgba(200, 144, 21, 0.14) !important;
    border-color: #c89015 !important;
    color: #ede4ce !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4) !important;
}

/* Any remaining rgb(255,255,255) backgrounds across templates */
*[style*="background-color: rgb(255"], *[style*="background: rgb(255"] {
    background-color: #140b0d !important;
    background: #140b0d !important;
}

/* Body html fallback */
html, body {
    background: #070405 !important;
    color: #ede4ce !important;
}

/* ===== Wine-label style buttons override — applies to all Voxeel primary CTAs ===== */

.btn-primary, .btn.btn-primary, button.btn-primary,
.bg-primary, button.bg-primary,
.btn-login, button.btn-login,
.btn-register, button.btn-register,
.btn-download, button.btn-download,
.cta-button, button.cta-button,
[data-variant="primary"], [data-variant="default"] {
    background: linear-gradient(135deg, #1c0f13 0%, #2a1418 50%, #1c0f13 100%) !important;
    color: #e9c571 !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em !important;
    border: 1px solid #c89015 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(200, 144, 21, 0.32), 0 0 0 1px rgba(200, 144, 21, 0.18) !important;
    text-shadow: 0 0 12px rgba(200, 144, 21, 0.28) !important;
    position: relative;
    overflow: hidden;
    animation: none !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.btn-primary::before, .btn.btn-primary::before, button.btn-primary::before,
.bg-primary::before, .btn-login::before, .btn-register::before,
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 197, 113, 0.32), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.btn-primary:hover, .btn.btn-primary:hover, button.btn-primary:hover,
.bg-primary:hover,
.btn-login:hover, .btn-register:hover, .btn-download:hover,
.cta-button:hover {
    background: linear-gradient(135deg, #2a1418 0%, #3a1c22 50%, #2a1418 100%) !important;
    color: #f4d58a !important;
    border-color: #e9c571 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(233, 197, 113, 0.45), 0 0 0 1px rgba(233, 197, 113, 0.35) !important;
}

.btn-primary:hover::before, .btn-login:hover::before, .btn-register:hover::before,
.cta-button:hover::before {
    left: 130%;
}

/* Nav inscription button in site nav */
.nav-register, a.nav-register {
    background: linear-gradient(135deg, #1c0f13 0%, #2a1418 50%, #1c0f13 100%) !important;
    color: #e9c571 !important;
    border: 1px solid #c89015 !important;
    font-weight: 600 !important;
    animation: none !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(200, 144, 21, 0.3) !important;
    text-shadow: 0 0 10px rgba(200, 144, 21, 0.22) !important;
}
.nav-register:hover {
    background: linear-gradient(135deg, #2a1418 0%, #3a1c22 50%, #2a1418 100%) !important;
    color: #f4d58a !important;
    border-color: #e9c571 !important;
    transform: translateY(-1px);
}

/* ===================================================================
   Raffinements luxe "Grand Cru" — filigrane, ornements, états hover
   =================================================================== */

/* Voxeel logo : tone-shift bleu vers or via filtre (élégance + cohérence) */
.navbar-brand img,
img[src*="/images/logo.png"],
a[class*="brand"] img {
    filter: sepia(1) saturate(4) hue-rotate(1deg) brightness(0.9);
}

/* Section dividers — ornement or central */
section + section,
.section + .section {
    position: relative;
}

/* Gold filigree on hero headlines - corner flourishes */
.hero, .hero-section, section.hero {
    position: relative;
}
.hero::before {
    pointer-events: none;
}

/* Add ornamental corners to CTA-band / featured cards */
.cta-band, .cta-band--dark, [class*="cta-"] {
    position: relative;
}
.cta-band::before, .cta-band::after {
    pointer-events: none;
}

/* Refined hover glow on primary accent buttons */
.btn--accent:hover, .btn-primary:hover, .btn-login:hover, .btn-register:hover,
.cta-button:hover {
    animation: none !important;
}

/* Link hover — gold underline grows */
main a:not(.btn):not(.btn-primary):not(.btn--accent):not(.nav-link):not(.card):not(.site-nav__link):not([class*="btn"]):not([class*="card"]) {
    position: relative;
    color: #e9c571;
    transition: color 0.2s ease;
}
main a:not(.btn):not(.btn-primary):not(.btn--accent):not(.nav-link):not(.card):not([class*="btn"]):not([class*="card"]):hover {
    color: #f4d58a;
}

/* Card hover — subtle burgundy lift */
.card:hover, .team-card:hover, .testimonial:hover, .process-step:hover, .faq-item:hover {
    border-color: rgba(200, 144, 21, 0.45) !important;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(200, 144, 21, 0.18) !important;
}

/* Eyebrow — add a subtle dot after the gold line */
.eyebrow::after {
    content: ' ●';
    color: rgba(200, 144, 21, 0.5);
    font-size: 0.65em;
    margin-left: 6px;
    vertical-align: middle;
}

/* Section head underline */
.section__head, .section-header, .hero__grid--center {
    position: relative;
}

/* First letter dropcap for long-form prose */
.prose > p:first-of-type::first-letter,
.legal-section > p:first-of-type::first-letter,
.article-body > p:first-of-type::first-letter {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 3.2em;
    font-weight: 500;
    float: left;
    line-height: 0.85;
    padding: 4px 10px 0 0;
    background: linear-gradient(135deg, #7a5814 0%, #c89015 40%, #e9c571 55%, #c89015 70%, #7a5814 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtle parchment noise overlay (optional — very low opacity) */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    opacity: 0.25;
    pointer-events: none;
    z-index: 9999;
}

/* Dark input focus : glow with gold + subtle inner shine */
input:focus, textarea:focus, select:focus, .form__input:focus, .form-control:focus {
    background: #180c0e !important;
    border-color: #c89015 !important;
    box-shadow: 0 0 0 3px rgba(200, 144, 21, 0.18), inset 0 1px 0 rgba(200, 144, 21, 0.14) !important;
    outline: none !important;
}

/* Form labels — slight gold accent */
label, .form__label, .form-label {
    color: rgba(237, 228, 206, 0.78) !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    margin-bottom: 6px !important;
}

/* Hr separator with gold filigree */
hr {
    border: 0 !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(200, 144, 21, 0.35), transparent) !important;
    margin: 2rem 0 !important;
    position: relative;
}

/* Selection more luxurious */
::selection { background: rgba(200, 144, 21, 0.35); color: #ede4ce; text-shadow: 0 0 10px rgba(200, 144, 21, 0.5); }

/* Badge polish */
.badge, .tag, [class*="badge-"] {
    border: 1px solid rgba(200, 144, 21, 0.28) !important;
    background: rgba(200, 144, 21, 0.08) !important;
    color: #e9c571 !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
    font-size: 0.72rem !important;
    text-transform: uppercase !important;
}

/* Avatar / images inside dark cards - subtle warm tint */
.testimonial__avatar, .team-card__avatar, .author-avatar {
    background: transparent !important;
    border: 1px solid #c89015 !important;
    color: #e9c571 !important;
}

/* Pricing "featured" card - gold foil gradient border */
.pricing-card.featured, .pricing-plan.featured, .plan-featured, .plan-card[class*="featured"] {
    position: relative;
    background: linear-gradient(135deg, #180c0e 0%, #221014 50%, #180c0e 100%) !important;
    border: 1px solid transparent !important;
    background-clip: padding-box !important;
}
.pricing-card.featured::before,
.pricing-plan.featured::before,
.plan-featured::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, #7a5814 0%, #c89015 40%, #e9c571 55%, #c89015 70%, #7a5814 100%);
    border-radius: inherit;
    z-index: -1;
    padding: 1px;
}

/* Placeholder colors */
::placeholder { color: rgba(237, 228, 206, 0.28) !important; font-style: italic !important; }

/* Table polish */
table thead th, .table thead th {
    background: #0a0607 !important;
    color: #e9c571 !important;
    font-weight: 600 !important;
    border-bottom: 1px solid rgba(200, 144, 21, 0.28) !important;
}

/* Caret / arrow after gold CTAs */
.btn--accent::after, .btn-primary::after {
    display: none;
}
