/* FiveHeberg 2026 — couche moderne (conserve app.css) */
:root {
  --fh-bg: #060d18;
  --fh-bg-elevated: #0c1829;
  --fh-surface: rgba(255, 255, 255, 0.04);
  --fh-border: rgba(77, 163, 255, 0.22);
  --fh-accent: #3b9eff;
  --fh-accent-2: #1d6fd8;
  --fh-text: #e8f0fc;
  --fh-muted: #8fa3be;
  --fh-success: #34d399;
  --fh-radius: 16px;
  --fh-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --fh-font: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}

.fh-body {
  font-family: var(--fh-font);
  background: var(--fh-bg);
  color: var(--fh-text);
  min-height: 100vh;
}

.fh-body > * {
  position: relative;
  z-index: 1;
}

.fh-body > .fh-header {
  z-index: 1050;
}

.fh-body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 158, 255, 0.12), transparent),
    radial-gradient(ellipse 40% 30% at 100% 50%, rgba(29, 111, 216, 0.06), transparent);
}

/* Scrollbar — uniquement sur la page (évite barres imbriquées sur mobile) */
html {
  scrollbar-color: var(--fh-accent) #0a1220;
  scrollbar-width: thin;
}

html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html::-webkit-scrollbar-track {
  background: #0a1220;
}

html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--fh-accent), var(--fh-accent-2));
  border-radius: 999px;
  border: 2px solid #0a1220;
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--fh-accent);
}

@media (min-width: 992px) {
  html {
    scrollbar-gutter: stable;
  }
}

/* —— Header & navigation (sans Bootstrap collapse) —— */
.fh-header {
  position: sticky;
  top: 0;
  z-index: 1050;
}

.fh-nav {
  position: relative;
}

.fh-nav__surface {
  background: rgba(6, 13, 24, 0.97);
  border-bottom: 1px solid var(--fh-border);
  position: relative;
  /* Pas de z-index ici : sinon le drawer mobile (fixed) reste sous le backdrop */
}

.fh-nav--scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.fh-nav__container {
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  min-height: 64px;
  position: relative;
}

.fh-nav__brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 2;
}

.fh-nav__brand img {
  height: 38px;
  width: auto;
  display: block;
}

.fh-nav__burger {
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--fh-border);
  border-radius: 10px;
  background: var(--fh-surface);
  cursor: pointer;
  z-index: 2;
}

.fh-nav__burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--fh-text);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.fh-nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.fh-nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.fh-nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.fh-nav__desktop-aside {
  flex-shrink: 0;
  margin-left: auto;
}

.fh-nav__aside {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.fh-lang {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 5px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--fh-border);
}

.fh-lang__sep {
  width: 1px;
  align-self: stretch;
  margin: 6px 0;
  background: var(--fh-border);
}

.fh-lang__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 28px;
  padding: 3px 0.55rem;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, box-shadow 0.2s;
}

.fh-lang__btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

.fh-lang__btn.is-active {
  background: rgba(59, 158, 255, 0.12);
  box-shadow: 0 0 0 2px rgba(59, 158, 255, 0.55);
}

.fh-lang__flag {
  display: block;
  flex-shrink: 0;
  width: 26px;
  height: 18px;
  border-radius: 4px;
  object-fit: cover;
}

.fh-lang__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--fh-muted);
  white-space: nowrap;
  transition: color 0.2s;
}

.fh-lang__btn:hover .fh-lang__label,
.fh-lang__btn.is-active .fh-lang__label {
  color: var(--fh-text);
}

.fh-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.fh-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fh-muted);
  text-decoration: none;
  border-radius: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: color 0.15s, background 0.15s;
}

.fh-nav__link:hover,
.fh-nav__link.is-active,
.fh-nav__item--dropdown.is-open > .fh-nav__link--btn {
  color: var(--fh-text);
  background: rgba(59, 158, 255, 0.1);
}

.fh-nav__chevron {
  margin-left: auto;
  font-size: 0.6rem;
  opacity: 0.65;
  transition: transform 0.22s ease;
}

.fh-nav__item--dropdown.is-open .fh-nav__chevron {
  transform: rotate(180deg);
}

/* Dropdown panels */
.fh-dropdown {
  display: none;
  padding: 0.35rem 0 0.5rem 0.75rem;
}

.fh-nav__item--dropdown.is-open > .fh-dropdown {
  display: block;
}

.fh-dropdown__inner {
  padding: 0.5rem;
  background: rgba(12, 24, 41, 0.98);
  border: 1px solid var(--fh-border);
  border-radius: 12px;
}

.fh-dropdown__inner--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.15rem;
}

.fh-dropdown__inner--stack {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.fh-dropdown__divider {
  height: 1px;
  margin: 0.4rem 0.5rem;
  background: rgba(59, 158, 255, 0.15);
  flex-shrink: 0;
}

.fh-dropdown__link--external {
  color: var(--fh-muted);
}

.fh-dropdown__link--external:hover,
.fh-dropdown__link--external.is-active {
  color: var(--fh-text);
}

.fh-dropdown__link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  color: var(--fh-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}

.fh-dropdown__link:hover,
.fh-dropdown__link.is-active {
  background: rgba(59, 158, 255, 0.12);
  color: var(--fh-text);
}

.fh-dropdown__link img {
  flex-shrink: 0;
  border-radius: 4px;
  object-fit: contain;
}

.fh-dropdown__link--plain {
  justify-content: space-between;
}

.fh-dropdown__ext {
  flex-shrink: 0;
  margin-left: auto;
  font-size: 0.62rem;
  opacity: 0.5;
  transition: opacity 0.15s;
}

.fh-dropdown__link--external:hover .fh-dropdown__ext {
  opacity: 0.85;
}

.fh-nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1055;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.fh-nav__backdrop:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}

body.fh-nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  inset-inline: 0;
}

/* —— Desktop —— */
@media (min-width: 992px) {
  .fh-nav__container {
    flex-wrap: nowrap;
    gap: 0.5rem 0.75rem;
  }

  .fh-nav__menu {
    display: flex !important;
    position: static;
    flex: 1 1 auto;
    min-width: 0;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    overflow: visible;
  }

  .fh-nav__menu[hidden] {
    display: flex !important;
  }

  .fh-nav__list {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    flex-wrap: wrap;
  }

  .fh-nav__link {
    width: auto;
    padding: 0.5rem 0.65rem;
    white-space: nowrap;
  }

  .fh-nav__item--dropdown {
    position: relative;
  }

  .fh-nav__item--dropdown .fh-nav__chevron {
    margin-left: 0.25rem;
  }

  .fh-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    z-index: 1060;
    min-width: 220px;
  }

  .fh-dropdown--sm {
    min-width: 200px;
  }

  .fh-dropdown__inner--grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    min-width: 320px;
  }

  .fh-dropdown__inner {
    box-shadow: var(--fh-shadow);
  }

  .fh-nav__mobile-aside {
    display: none !important;
  }

  .fh-nav__desktop-aside {
    flex-shrink: 0;
    margin-left: 0;
  }

  .fh-nav__brand {
    flex-shrink: 0;
  }

  .fh-lang__label {
    display: none;
  }

  .fh-lang__btn {
    width: 34px;
    padding: 3px;
  }
}

/* —— Mobile menu drawer —— */
@media (max-width: 991.98px) {
  .fh-nav__burger {
    margin-left: auto;
    z-index: 1070;
  }

  .fh-nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1065;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    padding: max(0.85rem, env(safe-area-inset-top, 0px)) 3.75rem 2rem 1.25rem;
    background: rgba(6, 13, 24, 0.98);
    -webkit-overflow-scrolling: touch;
  }

  .fh-nav__menu:not([hidden]) {
    display: flex;
    animation: fh-nav-slide 0.28s ease;
  }

  .fh-nav__menu-top {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    min-height: 44px;
    margin-bottom: 0.75rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--fh-border);
  }

  .fh-nav__menu-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }

  .fh-nav__menu-brand img {
    height: 36px;
    width: auto;
    display: block;
  }

  .fh-nav__item--dropdown .fh-dropdown {
    padding-left: 0;
  }

  .fh-nav__item--dropdown .fh-dropdown__inner {
    border: none;
    background: transparent;
    box-shadow: none;
    padding: 0.25rem 0 0.35rem 0.75rem;
  }

  .fh-nav__item--dropdown .fh-dropdown__link {
    width: 100%;
  }

  .fh-nav__mobile-aside {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--fh-border);
  }

  .fh-nav__mobile-aside .fh-nav__aside {
    flex-direction: column;
    align-items: stretch;
  }

  .fh-nav__mobile-aside .fh-btn {
    justify-content: center;
    width: 100%;
  }

  .fh-nav__mobile-aside .fh-lang {
    align-self: center;
    margin-inline: auto;
  }
}

@keyframes fh-nav-slide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fh-btn--sm {
  padding: 0.45rem 0.85rem !important;
  font-size: 0.8rem !important;
}

.fh-btn--lg {
  padding: 0.7rem 1.35rem !important;
  font-size: 0.95rem !important;
}

.fh-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.55rem 1.1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
}

.fh-btn-primary {
  background: linear-gradient(135deg, var(--fh-accent), var(--fh-accent-2));
  color: #fff !important;
  border: none;
  box-shadow: 0 4px 20px rgba(59, 158, 255, 0.35);
}

.fh-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(59, 158, 255, 0.45);
  color: #fff !important;
}

.fh-btn-ghost {
  background: var(--fh-surface);
  color: var(--fh-text) !important;
  border: 1px solid var(--fh-border);
}

.fh-btn-ghost:hover {
  border-color: var(--fh-accent);
  color: var(--fh-accent) !important;
}

/* Hero */
.fh-hero {
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.fh-hero--page {
  padding: 2.5rem 0 2rem;
}

.fh-hero--split {
  overflow: hidden;
}

.fh-hero--page__glow {
  position: absolute;
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  right: 0;
  top: 0;
  background: radial-gradient(circle, rgba(59, 158, 255, 0.2), transparent 70%);
  filter: blur(48px);
  pointer-events: none;
}

.fh-hero-visual--page {
  max-width: 420px;
  margin: 0 auto;
  padding: 0.75rem;
}

.fh-hero-visual__img--svg {
  max-height: 200px;
  object-fit: contain;
}

.fh-hero-visual__img--webp,
.fh-hero-visual__img--png,
.fh-hero-visual__img--gif {
  border-radius: 12px;
}

.fh-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.fh-hero__title span {
  background: linear-gradient(90deg, var(--fh-accent), #7ec8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fh-hero__lead {
  font-size: 1.125rem;
  color: var(--fh-muted);
  max-width: 540px;
  line-height: 1.65;
}

.fh-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--fh-muted);
  margin-bottom: 1rem;
}

.fh-breadcrumb a {
  color: var(--fh-accent);
  text-decoration: none;
}

/* Pricing */
.fh-pricing {
  padding: 2rem 0 4rem;
}

.fh-pricing__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.fh-pricing__header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.fh-pricing__header p {
  color: var(--fh-muted);
  font-size: 1.05rem;
}

.fh-pricing-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 1.25rem;
  color: var(--fh-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fh-card {
  background: var(--fh-bg-elevated);
  border: 1px solid var(--fh-border);
  border-radius: var(--fh-radius);
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.fh-card:hover {
  border-color: rgba(59, 158, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: var(--fh-shadow);
}

.fh-card--featured {
  border-color: rgba(59, 158, 255, 0.55);
  background: linear-gradient(160deg, rgba(29, 111, 216, 0.15), var(--fh-bg-elevated));
}

.fh-card__badge {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fh-accent);
  margin-bottom: 0.35rem;
}

.fh-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.fh-card__price {
  font-size: 2rem;
  font-weight: 800;
  margin: 0.5rem 0 1rem;
  line-height: 1;
}

.fh-card__price small {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fh-muted);
}

.fh-card__img {
  text-align: center;
  margin-bottom: 1rem;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fh-card__img img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

.fh-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.875rem;
}

.fh-spec:last-of-type {
  border-bottom: none;
}

.fh-spec__label {
  color: var(--fh-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.fh-spec__label i {
  color: var(--fh-accent);
  width: 16px;
}

.fh-spec__value {
  font-weight: 600;
  text-align: right;
}

.fh-perks {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: var(--fh-muted);
  line-height: 1.6;
}

.fh-perks i {
  color: var(--fh-success);
  margin-right: 0.25rem;
}

.fh-card__cta {
  margin-top: auto;
  padding-top: 1.25rem;
}

.fh-card__cta .fh-btn {
  width: 100%;
  justify-content: center;
  padding: 0.75rem;
}

.fh-card__tagline {
  font-size: 0.9rem;
  color: var(--fh-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.fh-alert {
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.35);
  color: #fcd34d;
  border-radius: var(--fh-radius);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
}

/* Features block */
.fh-features {
  padding: 3rem 0;
}

.fh-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.fh-feature {
  background: var(--fh-surface);
  border: 1px solid var(--fh-border);
  border-radius: var(--fh-radius);
  padding: 1.5rem;
  text-align: center;
}

.fh-feature i {
  font-size: 1.75rem;
  color: var(--fh-accent);
  margin-bottom: 0.75rem;
}

.fh-feature h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.fh-feature p {
  font-size: 0.875rem;
  color: var(--fh-muted);
  margin: 0;
  line-height: 1.55;
}

/* Footer */
.fh-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--fh-border);
  background: var(--fh-bg-elevated);
  padding: 3rem 0 0;
}

.fh-footer h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fh-muted);
  margin-bottom: 1rem;
}

.fh-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fh-footer li {
  margin-bottom: 0.4rem;
}

.fh-footer a:not(.fh-footer__brand) {
  color: var(--fh-text);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.85;
}

.fh-footer a:not(.fh-footer__brand):hover {
  color: var(--fh-accent);
  opacity: 1;
}

.fh-footer__bottom {
  margin-top: 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--fh-border);
  font-size: 0.8rem;
  color: var(--fh-muted);
  text-align: center;
}

.fh-cta-band {
  background: linear-gradient(135deg, rgba(29, 111, 216, 0.25), rgba(6, 13, 24, 0.9));
  border: 1px solid var(--fh-border);
  border-radius: var(--fh-radius);
  padding: 2.5rem;
  margin: 3rem 0;
  text-align: center;
}

/* Legacy compat */
.deskContent,
.phoneContent {
  display: block !important;
}

.colorblue {
  color: var(--fh-accent) !important;
}

.navbar-main-2 {
  display: none !important;
}

.overlay-content {
  display: none !important;
}

/* Home */
.fh-home-hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex;
  align-items: center;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.fh-home-hero .col-lg-6:last-child {
  overflow: visible;
}

.fh-home-hero__bg {
  position: absolute;
  inset: 0;
  background:
    url("../images/background.png") center / cover no-repeat,
    linear-gradient(165deg, #060d18 0%, #0a1628 45%, #0c1a30 100%);
  opacity: 0.35;
  pointer-events: none;
}

.fh-home-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 158, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 158, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  pointer-events: none;
}

.fh-home-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, var(--fh-bg));
  pointer-events: none;
  z-index: 2;
}

.fh-home-hero::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 50%;
  left: 15%;
  bottom: -10%;
  background: radial-gradient(ellipse, rgba(59, 158, 255, 0.15), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.fh-hero__title--home {
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
}

.fh-trust--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 576px) {
  .fh-trust--grid {
    grid-template-columns: repeat(2, auto);
  }
}

.fh-section-lead {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.65;
}

/* Hero showcase (panel + badges) */
.fh-hero-showcase {
  --fh-tilt-x: 0deg;
  --fh-tilt-y: 0deg;
  position: relative;
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fh-hero-showcase__glow {
  position: absolute;
  inset: 5% 0 25%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 45%, rgba(59, 158, 255, 0.22), transparent 68%);
  filter: blur(32px);
  pointer-events: none;
  animation: fh-glow-pulse 5s ease-in-out infinite;
}

.fh-hero-showcase__frame {
  position: relative;
  z-index: 1;
  padding: 1px;
  border-radius: calc(var(--fh-radius) + 6px);
  background: linear-gradient(
    145deg,
    rgba(59, 158, 255, 0.55),
    rgba(29, 111, 216, 0.2) 45%,
    rgba(59, 158, 255, 0.4)
  );
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(59, 158, 255, 0.1);
  transform: perspective(1000px) rotateX(var(--fh-tilt-x)) rotateY(var(--fh-tilt-y));
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  animation: fh-showcase-float 7s ease-in-out infinite;
}

.fh-hero-showcase__card {
  position: relative;
  border-radius: calc(var(--fh-radius) + 5px);
  background: linear-gradient(165deg, rgba(14, 28, 48, 0.98), rgba(6, 13, 24, 0.99));
  overflow: hidden;
}

.fh-hero-showcase__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 22%);
  pointer-events: none;
  z-index: 2;
}

.fh-hero-showcase__card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(59, 158, 255, 0.12);
  background: rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 3;
}

.fh-hero-showcase__dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.fh-hero-showcase__dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  font-style: normal;
}

.fh-hero-showcase__dots i:first-child {
  background: #ff5f57;
}

.fh-hero-showcase__dots i:nth-child(2) {
  background: #febc2e;
}

.fh-hero-showcase__dots i:nth-child(3) {
  background: #28c840;
}

.fh-hero-showcase__label {
  flex: 1;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.fh-hero-showcase__live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6ee7b7;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.28);
}

.fh-hero-showcase__live .fh-hero-showcase__pulse {
  width: 7px;
  height: 7px;
}

.fh-hero-showcase__screen {
  position: relative;
  line-height: 0;
  overflow: hidden;
}

.fh-hero-showcase__img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.fh-hero-showcase:hover .fh-hero-showcase__img {
  transform: scale(1.02);
}

.fh-hero-showcase__badges {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.fh-hero-showcase__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 0.5rem;
  min-height: 88px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  color: var(--fh-text);
  background: rgba(8, 16, 28, 0.85);
  border: 1px solid rgba(59, 158, 255, 0.18);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.fh-hero-showcase__badge-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(59, 158, 255, 0.14);
  color: var(--fh-accent);
  font-size: 0.9rem;
}

.fh-hero-showcase__badge-icon--live {
  background: rgba(52, 211, 153, 0.15);
}

.fh-hero-showcase__badge-text {
  display: block;
  max-width: 100%;
  padding: 0 0.2rem;
}

.fh-hero-showcase__badge--status {
  border-color: rgba(52, 211, 153, 0.28);
}

.fh-hero-showcase__badge--status .fh-hero-showcase__badge-text {
  color: #a7f3d0;
}

.fh-hero-showcase__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55);
  animation: fh-pulse-ring 2s ease-out infinite;
}

@keyframes fh-showcase-float {
  0%,
  100% {
    transform: perspective(1000px) rotateX(var(--fh-tilt-x)) rotateY(var(--fh-tilt-y)) translateY(0);
  }
  50% {
    transform: perspective(1000px) rotateX(var(--fh-tilt-x)) rotateY(var(--fh-tilt-y)) translateY(-8px);
  }
}

@keyframes fh-pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(52, 211, 153, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
  }
}

/* Engagement confiance */
.fh-promise {
  padding: 3.5rem 0;
  position: relative;
}

.fh-promise__lead {
  max-width: 640px;
}

.fh-promise-card {
  height: 100%;
  padding: 1.75rem;
  border-radius: var(--fh-radius);
  border: 1px solid var(--fh-border);
  background: var(--fh-bg-elevated);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.fh-promise-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 158, 255, 0.45);
  box-shadow: var(--fh-shadow);
}

.fh-promise-card--accent {
  background: linear-gradient(160deg, rgba(29, 111, 216, 0.2), var(--fh-bg-elevated));
  border-color: rgba(59, 158, 255, 0.4);
}

.fh-promise-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(59, 158, 255, 0.12);
  color: var(--fh-accent);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.fh-promise-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.fh-promise-card p {
  font-size: 0.9rem;
  color: var(--fh-muted);
  margin: 0;
  line-height: 1.6;
}

/* Avis clients (accueil) */
.fh-reviews {
  padding: 3.5rem 0;
}

.fh-review-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  border-radius: var(--fh-radius);
  border: 1px solid var(--fh-border);
  background: linear-gradient(165deg, rgba(12, 24, 41, 0.95), rgba(6, 13, 24, 0.98));
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.fh-review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 158, 255, 0.4);
  box-shadow: var(--fh-shadow);
}

.fh-review-card__stars {
  display: flex;
  gap: 0.2rem;
  color: #fbbf24;
  font-size: 0.85rem;
}

.fh-review-card__quote {
  margin: 0;
  flex: 1;
}

.fh-review-card__quote p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--fh-text);
}

.fh-review-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(59, 158, 255, 0.12);
}

.fh-review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(59, 158, 255, 0.35);
}

.fh-review-card__name {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fh-text);
}

.fh-review-card__server {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fh-accent);
}

.fh-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.fh-trust__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--fh-muted);
}

.fh-trust__item i {
  color: var(--fh-success);
}

.fh-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.fh-game-tile {
  background: var(--fh-surface);
  border: 1px solid var(--fh-border);
  border-radius: 12px;
  padding: 1.25rem 0.75rem;
  text-align: center;
  text-decoration: none;
  color: var(--fh-text);
  transition: all 0.2s;
}

.fh-game-tile:hover {
  border-color: var(--fh-accent);
  transform: translateY(-2px);
  color: var(--fh-text);
}

.fh-game-tile:not(.fh-games-grid--pro .fh-game-tile) img,
.fh-games-grid:not(.fh-games-grid--pro) .fh-game-tile img {
  height: 40px;
  width: auto;
  margin-bottom: 0.5rem;
}

.fh-game-tile span {
  font-size: 0.8rem;
  font-weight: 600;
}

/* Promo FiveM */
.fh-promo {
  padding: 0 0 1.5rem;
}

.fh-promo__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.25rem;
  border-radius: var(--fh-radius);
  border: 1px solid var(--fh-border);
  background: linear-gradient(135deg, rgba(29, 111, 216, 0.22), rgba(6, 13, 24, 0.95));
  box-shadow: var(--fh-shadow);
}

.fh-promo__eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fh-accent);
  margin-bottom: 0.35rem;
}

.fh-promo__title {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.fh-promo__text {
  color: var(--fh-muted);
  margin-bottom: 1.25rem;
  max-width: 520px;
}

.fh-promo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.fh-promo__coupon {
  background: rgba(0, 0, 0, 0.25);
  border: 1px dashed rgba(59, 158, 255, 0.5);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
  max-width: 420px;
}

.fh-promo__coupon-label {
  font-size: 0.85rem;
  color: var(--fh-muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.fh-promo__coupon-label strong {
  color: var(--fh-success);
  font-weight: 800;
}

.fh-promo__coupon-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.fh-promo__code {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--fh-accent);
  background: rgba(59, 158, 255, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
}

.fh-promo__copy {
  padding: 0.4rem 0.75rem !important;
  font-size: 0.8rem !important;
}

.fh-promo__expires,
.fh-promo__hint {
  font-size: 0.75rem;
  color: var(--fh-muted);
  margin: 0.35rem 0 0;
}

.fh-highlight {
  background: var(--fh-bg-elevated);
  border: 1px solid var(--fh-border);
  border-radius: var(--fh-radius);
  padding: 1.25rem;
  height: 100%;
}

.fh-highlight i {
  font-size: 1.5rem;
  color: var(--fh-accent);
  margin-bottom: 0.75rem;
}

.fh-highlight h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.fh-highlight p {
  font-size: 0.875rem;
  color: var(--fh-muted);
  margin: 0;
  line-height: 1.55;
}

.fh-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fh-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--fh-muted);
  font-size: 0.9rem;
}

.fh-checklist i {
  color: var(--fh-success);
}

.fh-panel-block {
  background: var(--fh-surface);
  border: 1px solid var(--fh-border);
  border-radius: var(--fh-radius);
  padding: 2rem;
}

.fh-panel-block--media-logo {
  padding: 1.5rem 1.75rem;
}

.fh-panel-block__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
}

.fh-panel-block__visual--logo {
  padding: 1.25rem;
  border-radius: var(--fh-radius);
  background: rgba(59, 158, 255, 0.06);
  border: 1px solid rgba(59, 158, 255, 0.16);
  max-width: 200px;
}

.fh-panel-block__visual--logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 112px;
  margin: 0 auto;
  object-fit: contain;
}

.fh-panel-block__visual--photo img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  border-radius: 12px;
}

.fh-alert--dismissible {
  display: flex;
}

/* Pages statiques */
.fh-static {
  padding: 2rem 0 4rem;
}

.fh-prose {
  max-width: 820px;
  margin: 0 auto;
  color: var(--fh-muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

.fh-prose h2 {
  color: var(--fh-text);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--fh-border);
}

.fh-prose h2:first-child {
  border-top: none;
  margin-top: 0;
}

.fh-prose p {
  margin-bottom: 1rem;
}

.fh-prose a {
  color: var(--fh-accent);
}

.fh-prose ul {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.fh-prose li {
  margin-bottom: 0.35rem;
}

.fh-prose--compact {
  font-size: 0.9rem;
  max-width: none;
  margin: 0;
}

.fh-prose--compact h2 {
  margin-top: 0;
  border-top: none;
  font-size: 1rem;
}

.fh-prose--legal h2 {
  border-top: none;
  margin: 0;
  font-size: 1.1rem;
}

/* Pages statiques — layout pro */
.fh-static-page {
  padding: 0 0 3.5rem;
}

.fh-static-page__body {
  padding-top: 2rem;
}

.fh-static-lead {
  font-size: 1.05rem;
  line-height: 1.65;
}

.fh-stats--compact {
  padding: 1.5rem 0;
  margin-bottom: 0;
}

.fh-stats--compact .fh-stats__item strong {
  font-size: 1.2rem;
}

/* Bandeau contact */
.fh-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  padding: 1rem 1.25rem;
  background: var(--fh-bg-elevated);
  border: 1px solid var(--fh-border);
  border-radius: var(--fh-radius);
}

.fh-contact-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(59, 158, 255, 0.08);
  border: 1px solid rgba(59, 158, 255, 0.2);
  color: var(--fh-text);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.fh-contact-strip__item:hover {
  color: var(--fh-accent);
  border-color: var(--fh-accent);
  background: rgba(59, 158, 255, 0.14);
}

.fh-contact-strip__item i {
  color: var(--fh-accent);
}

/* Panneau info & listes */
.fh-info-panel {
  background: linear-gradient(145deg, rgba(59, 158, 255, 0.1), rgba(12, 24, 41, 0.9));
  border: 1px solid rgba(59, 158, 255, 0.25);
  border-radius: var(--fh-radius);
  padding: 1.75rem;
  height: 100%;
}

.fh-info-panel h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fh-info-panel p {
  color: var(--fh-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.fh-info-panel__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(59, 158, 255, 0.15);
  color: var(--fh-accent);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.fh-check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.fh-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
  color: var(--fh-muted);
  font-size: 0.9rem;
}

.fh-check-list li i {
  color: var(--fh-success);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.fh-check-list--tight li {
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
}

.fh-check-list a {
  color: var(--fh-accent);
}

/* Cartes légales (mentions) */
.fh-legal-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.fh-legal-card {
  background: var(--fh-bg-elevated);
  border: 1px solid var(--fh-border);
  border-radius: var(--fh-radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.fh-legal-card:hover {
  border-color: rgba(59, 158, 255, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.fh-legal-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.25rem 0;
}

.fh-legal-card__num {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--fh-accent);
  opacity: 0.7;
  letter-spacing: 0.05em;
}

.fh-legal-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(59, 158, 255, 0.12);
  color: var(--fh-accent);
  margin-left: auto;
}

.fh-legal-card__head h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  flex: 1;
  color: var(--fh-text);
}

.fh-legal-card__body {
  padding: 0.75rem 1.25rem 1.25rem;
}

.fh-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fh-legal-list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--fh-border);
  font-size: 0.88rem;
  color: var(--fh-muted);
}

.fh-legal-list li:last-child {
  border-bottom: none;
}

/* CGV layout */
.fh-legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.fh-legal-toc {
  position: sticky;
  top: 6rem;
  padding: 1.25rem;
  background: var(--fh-bg-elevated);
  border: 1px solid var(--fh-border);
  border-radius: var(--fh-radius);
}

.fh-legal-toc__title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fh-muted);
  margin-bottom: 0.75rem;
}

.fh-legal-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}

.fh-legal-toc li {
  margin-bottom: 0.15rem;
}

.fh-legal-toc a {
  display: block;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--fh-muted);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.fh-legal-toc a:hover {
  color: var(--fh-accent);
  background: rgba(59, 158, 255, 0.08);
}

.fh-legal-toc__updated {
  margin: 1rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--fh-border);
}

.fh-legal-article {
  scroll-margin-top: 6rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: var(--fh-bg-elevated);
  border: 1px solid var(--fh-border);
  border-radius: var(--fh-radius);
}

.fh-legal-article__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--fh-border);
}

.fh-legal-article__num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--fh-accent);
  opacity: 0.85;
  flex-shrink: 0;
}

.fh-legal-doc__footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
}

/* FAQ page */
.fh-faq-page .fh-static-page__body {
  max-width: 820px;
  margin: 0 auto;
}

.fh-faq-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.fh-faq-quick__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fh-muted);
  background: var(--fh-bg-elevated);
  border: 1px solid var(--fh-border);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.fh-faq-quick__chip:hover {
  color: var(--fh-accent);
  border-color: rgba(59, 158, 255, 0.4);
  background: rgba(59, 158, 255, 0.08);
}

.fh-faq-quick__chip i {
  color: var(--fh-accent);
  font-size: 0.85rem;
}

.fh-faq-group {
  margin-bottom: 2.5rem;
  scroll-margin-top: 5.5rem;
}

.fh-faq-group__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.fh-faq-group__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(59, 158, 255, 0.12);
  color: var(--fh-accent);
  font-size: 1.1rem;
}

.fh-faq-group__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
  color: var(--fh-text);
}

.fh-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fh-faq-item {
  background: var(--fh-bg-elevated);
  border: 1px solid var(--fh-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.fh-faq-item[open] {
  border-color: rgba(59, 158, 255, 0.35);
}

.fh-faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--fh-text);
  list-style: none;
}

.fh-faq-item__q::-webkit-details-marker {
  display: none;
}

.fh-faq-item__chevron {
  color: var(--fh-accent);
  font-size: 0.75rem;
  transition: transform 0.25s;
  flex-shrink: 0;
}

.fh-faq-item[open] .fh-faq-item__chevron {
  transform: rotate(180deg);
}

.fh-faq-item__a {
  padding: 0 1.15rem 1.1rem;
  color: var(--fh-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  border-top: 1px solid var(--fh-border);
}

.fh-faq-item__a p {
  margin: 0.85rem 0 0;
}

/* Recrutement */
.fh-perk-card {
  height: 100%;
  padding: 1.35rem;
  background: var(--fh-bg-elevated);
  border: 1px solid var(--fh-border);
  border-radius: var(--fh-radius);
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.fh-perk-card:hover {
  border-color: rgba(59, 158, 255, 0.35);
  transform: translateY(-2px);
}

.fh-perk-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(59, 158, 255, 0.12);
  color: var(--fh-accent);
  font-size: 1.2rem;
}

.fh-perk-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.fh-perk-card p {
  font-size: 0.82rem;
  color: var(--fh-muted);
  margin: 0;
  line-height: 1.55;
}

.fh-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 640px;
  margin-inline: auto;
}

.fh-steps__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--fh-border);
}

.fh-steps__item:last-child {
  border-bottom: none;
}

.fh-steps__num {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fh-accent), #5a9fd4);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}

.fh-steps__item p {
  margin: 0.35rem 0 0;
  color: var(--fh-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.fh-recruit-cta {
  position: relative;
  margin-top: 3rem;
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: var(--fh-radius);
  border: 1px solid rgba(59, 158, 255, 0.3);
  background: linear-gradient(160deg, rgba(59, 158, 255, 0.12), rgba(12, 24, 41, 0.95));
  overflow: hidden;
}

.fh-recruit-cta__glow {
  position: absolute;
  inset: -40% auto auto 50%;
  width: 280px;
  height: 280px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(59, 158, 255, 0.25), transparent 70%);
  pointer-events: none;
}

.fh-recruit-cta__content {
  position: relative;
  z-index: 1;
}

.fh-recruit-cta h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.fh-recruit-cta p {
  color: var(--fh-muted);
  max-width: 480px;
  margin: 0 auto 1.25rem;
}

.fh-recruit-cta__note {
  font-size: 0.8rem !important;
  margin-top: 1rem !important;
  opacity: 0.85;
}

/* CTA bas de page statique */
.fh-static-cta {
  padding: 0 0 4rem;
}

.fh-static-cta__box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  border-radius: var(--fh-radius);
  border: 1px solid rgba(59, 158, 255, 0.25);
  background: linear-gradient(120deg, rgba(59, 158, 255, 0.1), var(--fh-bg-elevated));
}

.fh-static-cta__title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.fh-static-cta__title span {
  color: var(--fh-accent);
}

.fh-static-cta__lead {
  color: var(--fh-muted);
  font-size: 0.9rem;
  max-width: 520px;
  margin: 0;
  line-height: 1.6;
}

.fh-static-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Équipe */
.fh-team-section {
  padding: 2.5rem 0 1rem;
  margin-top: 1rem;
  border-radius: calc(var(--fh-radius) + 4px);
  background: linear-gradient(180deg, rgba(59, 158, 255, 0.04), transparent 55%);
  border: 1px solid rgba(59, 158, 255, 0.1);
}

.fh-team-section__head {
  margin-bottom: 2rem;
}

.fh-team-section__head .fh-section-lead {
  max-width: 520px;
}

.fh-team-layout {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: center;
}

.fh-team-grid--staff {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
  max-width: 720px;
}

.fh-team-card--member {
  position: relative;
  text-align: center;
  padding: 1.75rem 1.25rem 1.5rem;
  border-radius: var(--fh-radius);
  border: 1px solid var(--fh-border);
  background: linear-gradient(165deg, rgba(12, 24, 41, 0.95), rgba(6, 13, 24, 0.98));
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.fh-team-card--member:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 158, 255, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.fh-team-card--lead {
  border-color: rgba(59, 158, 255, 0.35);
  background: linear-gradient(165deg, rgba(29, 111, 216, 0.14), rgba(6, 13, 24, 0.98));
}

.fh-team-card__avatar-wrap {
  position: relative;
  width: 104px;
  height: 104px;
  margin: 0 auto 1rem;
}

.fh-team-card__avatar {
  width: 100%;
  height: 100%;
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--fh-accent), var(--fh-accent-2));
  box-shadow: 0 8px 24px rgba(59, 158, 255, 0.2);
}

.fh-team-card__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(6, 13, 24, 0.9);
}

.fh-team-card__badge {
  position: absolute;
  right: -2px;
  bottom: 2px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--fh-accent-2), var(--fh-accent));
  color: #fff;
  font-size: 0.72rem;
  border: 2px solid var(--fh-bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.fh-team-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--fh-text);
}

.fh-team-card__role {
  margin: 0;
}

.fh-team-card__role-pill {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fh-accent);
  background: rgba(59, 158, 255, 0.12);
  border: 1px solid rgba(59, 158, 255, 0.25);
  border-radius: 999px;
}

.fh-team-card--lead .fh-team-card__role-pill {
  color: #fcd34d;
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.35);
}

.fh-team-recruit {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 640px;
  padding: 1.75rem;
  text-align: center;
  border-radius: var(--fh-radius);
  border: 1px dashed rgba(59, 158, 255, 0.4);
  background: linear-gradient(145deg, rgba(59, 158, 255, 0.08), rgba(6, 13, 24, 0.6));
  overflow: hidden;
}

.fh-team-recruit__glow {
  position: absolute;
  inset: -30% auto auto 50%;
  width: 280px;
  height: 280px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(59, 158, 255, 0.2), transparent 65%);
  pointer-events: none;
}

.fh-team-recruit__icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.35rem;
  color: var(--fh-accent);
  background: rgba(59, 158, 255, 0.14);
  border: 1px solid rgba(59, 158, 255, 0.35);
  box-shadow: 0 0 24px rgba(59, 158, 255, 0.15);
}

.fh-team-recruit__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.fh-team-recruit__eyebrow {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fh-success);
}

.fh-team-recruit__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--fh-text);
}

.fh-team-recruit__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--fh-muted);
  max-width: 420px;
}

.fh-team-recruit__roles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.fh-team-recruit__roles li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fh-text);
}

.fh-team-recruit__roles li i {
  color: var(--fh-success);
  font-size: 0.7rem;
}

.fh-team-recruit .fh-btn {
  margin-top: 0.25rem;
}

@media (max-width: 991px) {
  .fh-legal-layout {
    grid-template-columns: 1fr;
  }

  .fh-legal-toc {
    position: static;
  }

  .fh-legal-cards {
    grid-template-columns: 1fr;
  }

  .fh-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fh-static-cta__box {
    flex-direction: column;
    text-align: center;
  }

  .fh-static-cta__actions {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .fh-team-grid--staff {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .fh-team-recruit {
    padding: 1.5rem 1.25rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .fh-team-grid--staff {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .fh-team-layout {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
  }

  .fh-team-grid--staff {
    flex: 0 1 720px;
    max-width: none;
    align-self: center;
  }

  .fh-team-recruit {
    flex: 1 1 320px;
    max-width: 360px;
    text-align: left;
    align-items: flex-start;
    padding: 2rem;
  }

  .fh-team-recruit__body {
    align-items: flex-start;
  }

  .fh-team-recruit__roles {
    justify-content: flex-start;
  }
}

.fh-charte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.fh-charte-item {
  background: var(--fh-bg-elevated);
  border: 1px solid var(--fh-border);
  border-radius: var(--fh-radius);
  padding: 1.5rem;
  text-align: center;
}

.fh-charte-item img {
  max-width: 100%;
  height: auto;
}

.fh-404 {
  text-align: center;
  padding: 4rem 0 5rem;
  max-width: 480px;
  margin: 0 auto;
}

.fh-404__code {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, var(--fh-accent), #7ec8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 991px) {
  .fh-promo__inner {
    flex-direction: column;
    text-align: center;
  }
  .fh-promo__text {
    margin-left: auto;
    margin-right: auto;
  }
  .fh-promo__actions {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .fh-body {
    overflow-x: clip;
    max-width: 100%;
  }

  .fh-home-hero .col-lg-6:last-child {
    overflow: clip;
  }

  .fh-home-hero__glow {
    width: min(55vw, 360px);
    height: min(55vw, 360px);
  }

  .fh-hero-showcase {
    max-width: 100%;
  }

  .fh-hero-showcase__frame {
    transform: none;
    animation: none;
  }

  .fh-hero-showcase__badges {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .fh-hero-showcase__badge {
    flex-direction: row;
    justify-content: flex-start;
    min-height: 0;
    padding: 0.65rem 0.85rem;
    text-align: left;
  }

  .fh-hero-showcase__badge-text {
    flex: 1;
  }
}

/* Sections pro */
.fh-section-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fh-accent);
  margin-bottom: 0.5rem;
}

.fh-section-eyebrow--flag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@keyframes fh-flag-flutter {
  0%,
  100% {
    transform: rotate(0deg) skewY(0deg);
  }
  25% {
    transform: rotate(-6deg) skewY(1.5deg);
  }
  50% {
    transform: rotate(2deg) skewY(-1deg);
  }
  75% {
    transform: rotate(6deg) skewY(1deg);
  }
}

.fh-eyebrow__flag {
  display: block;
  flex-shrink: 0;
  width: 22px;
  height: 15px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform-origin: 0% 50%;
  animation: fh-flag-flutter 2.6s ease-in-out infinite;
}

.fh-section-eyebrow--flag:hover .fh-eyebrow__flag {
  animation-duration: 1.8s;
}

.fh-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-transform: none;
  letter-spacing: normal;
  color: var(--fh-text);
}

.fh-section-title span {
  color: var(--fh-accent);
}

.fh-hero-visual {
  position: relative;
  padding: 1rem;
  border-radius: var(--fh-radius);
  border: 1px solid var(--fh-border);
  background: linear-gradient(145deg, rgba(59, 158, 255, 0.08), transparent);
}

/* Stats bar */
.fh-stats {
  padding: 2rem 0;
  border-top: 1px solid var(--fh-border);
  background: rgba(12, 24, 41, 0.6);
}

.fh-stats--home {
  padding: 2.5rem 0 1.25rem;
  border: none;
  background: transparent;
}

.fh-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.fh-stats__grid--home {
  gap: 0.85rem;
}

.fh-stats__item {
  text-align: center;
  padding: 1rem;
}

.fh-stats--home .fh-stats__item {
  padding: 1.15rem 0.75rem;
  background: var(--fh-bg-elevated);
  border: 1px solid var(--fh-border);
  border-radius: var(--fh-radius);
  transition: border-color 0.25s, transform 0.25s;
}

.fh-stats--home .fh-stats__item:hover {
  border-color: rgba(59, 158, 255, 0.35);
  transform: translateY(-2px);
}

.fh-stats__item i {
  color: var(--fh-accent);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.fh-stats__item strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--fh-text);
}

.fh-stats__item span {
  font-size: 0.8rem;
  color: var(--fh-muted);
}

/* —— Accueil : sections —— */
.fh-home-section {
  padding: 3.5rem 0;
}

.fh-home-section__head {
  margin-bottom: 2.25rem;
}

.fh-home-section__head .fh-section-lead {
  margin-top: 0.35rem;
}

/* Infra */
.fh-infra {
  padding: 0;
}

.fh-infra--home {
  padding-top: 0.5rem;
  padding-bottom: 3.5rem;
}

.fh-infra__list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.fh-infra__list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.6rem;
  color: var(--fh-muted);
  font-size: 0.92rem;
}

.fh-infra__list i {
  color: var(--fh-success);
  flex-shrink: 0;
}

.fh-infra__list a {
  color: var(--fh-accent);
  font-weight: 600;
  text-decoration: none;
}

.fh-infra__list a:hover {
  text-decoration: underline;
}

.fh-infra__cards--stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.fh-infra__card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  margin: 0;
  background: var(--fh-bg-elevated);
  border: 1px solid var(--fh-border);
  border-radius: var(--fh-radius);
  padding: 1.35rem 1.5rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.fh-infra__card:hover {
  border-color: rgba(59, 158, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.fh-infra__card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(59, 158, 255, 0.12);
  color: var(--fh-accent);
  font-size: 1.2rem;
}

.fh-infra__card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--fh-text);
}

.fh-infra__card p {
  font-size: 0.88rem;
  color: var(--fh-muted);
  margin: 0;
  line-height: 1.55;
}

/* Catalogue jeux */
.fh-games-grid--home {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (min-width: 576px) {
  .fh-games-grid--home {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .fh-games-grid--home {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1200px) {
  .fh-games-grid--home {
    grid-template-columns: repeat(6, 1fr);
  }
}

.fh-games-grid--pro .fh-game-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.15rem 1rem 1rem;
  text-align: left;
  overflow: hidden;
  min-height: 118px;
}

.fh-games-grid--pro .fh-game-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 158, 255, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}

.fh-games-grid--pro .fh-game-tile:hover::before {
  opacity: 1;
}

.fh-games-grid--pro .fh-game-tile:hover {
  border-color: rgba(59, 158, 255, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}

.fh-game-tile__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0.65rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--fh-border);
}

.fh-game-tile__icon-wrap img {
  height: 32px;
  width: auto;
  margin: 0;
}

.fh-game-tile__name {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
}

.fh-game-tile__desc {
  display: block;
  font-size: 0.72rem;
  color: var(--fh-muted);
  margin-top: 0.25rem;
  font-weight: 500;
  line-height: 1.35;
}

.fh-game-tile__arrow {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  font-size: 0.7rem;
  color: var(--fh-accent);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}

.fh-game-tile:hover .fh-game-tile__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Offres populaires accueil */
.fh-pricing--home {
  padding-top: 0;
}

.fh-offer-card--home {
  height: 100%;
}

.fh-offer-card--home.fh-offer-card--compact .fh-offer-card__top {
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 0.75rem;
}

.fh-offer-card--home.fh-offer-card--compact .fh-offer-card__price-block {
  text-align: left;
}

.fh-offer-card--home.fh-offer-card--compact .fh-offer-card__price {
  justify-content: flex-start;
}

.fh-offer-card--home .fh-offer-card__cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.fh-offer-card__link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fh-muted);
  text-align: center;
  text-decoration: none;
  transition: color 0.2s;
}

.fh-offer-card__link:hover {
  color: var(--fh-accent);
}

.fh-offer-card__link i {
  font-size: 0.65rem;
  margin-left: 0.15rem;
}

/* Features accueil */
.fh-features--home {
  padding-bottom: 4rem;
  border-top: 1px solid var(--fh-border);
  background: linear-gradient(180deg, transparent, rgba(12, 24, 41, 0.5));
}

.fh-features__grid--home {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.15rem;
}

.fh-features__grid--home .fh-feature {
  grid-column: span 2;
  text-align: left;
  padding: 1.35rem;
  transition: border-color 0.25s, transform 0.25s;
}

.fh-features__grid--home .fh-feature:hover {
  border-color: rgba(59, 158, 255, 0.35);
  transform: translateY(-2px);
}

.fh-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(59, 158, 255, 0.12);
  color: var(--fh-accent);
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.fh-features__grid--home .fh-feature i {
  margin-bottom: 0;
}

.fh-features__grid--home .fh-feature h3 {
  font-size: 0.95rem;
  text-align: left;
}

.fh-features__grid--home .fh-feature p {
  font-size: 0.85rem;
  line-height: 1.6;
  text-align: left;
}

/* FAQ */
.fh-faq .accordion-item {
  background: var(--fh-bg-elevated) !important;
  border: 1px solid var(--fh-border) !important;
  margin-bottom: 0.5rem;
  border-radius: 12px !important;
  overflow: hidden;
}

.fh-faq .accordion-button {
  background: transparent !important;
  color: var(--fh-text) !important;
  font-weight: 600;
  box-shadow: none !important;
}

.fh-faq .accordion-button:not(.collapsed) {
  color: var(--fh-accent) !important;
}

.fh-faq .accordion-body {
  color: var(--fh-muted);
  line-height: 1.65;
}

/* Charte graphique */
.fh-charte-page {
  padding: 0 0 4rem;
}

.fh-charte-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  padding: 0.5rem;
  border-radius: 999px;
  background: rgba(8, 16, 28, 0.85);
  border: 1px solid var(--fh-border);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.fh-charte-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fh-muted);
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.fh-charte-nav__link:hover {
  color: var(--fh-text);
  background: rgba(59, 158, 255, 0.12);
}

.fh-charte-section {
  margin-bottom: 3.5rem;
  scroll-margin-top: 6rem;
}

.fh-charte-section__head {
  margin-bottom: 1.75rem;
}

.fh-charte-section__head .fh-section-lead {
  max-width: 560px;
}

.fh-charte-palette {
  max-width: 920px;
  margin: 0 auto;
  padding: 1.25rem;
  border-radius: calc(var(--fh-radius) + 2px);
  border: 1px solid var(--fh-border);
  background: linear-gradient(165deg, rgba(12, 24, 41, 0.6), rgba(6, 13, 24, 0.85));
}

.fh-charte-palette__strip {
  display: flex;
  height: 6px;
  margin: -1.25rem -1.25rem 1.25rem;
  border-radius: calc(var(--fh-radius) + 2px) calc(var(--fh-radius) + 2px) 0 0;
  overflow: hidden;
}

.fh-charte-palette__strip span {
  flex: 1;
}

.fh-charte-palette__group + .fh-charte-palette__group {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(59, 158, 255, 0.12);
}

.fh-charte-palette__label {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fh-muted);
}

.fh-charte-swatches {
  display: grid;
  gap: 0.5rem;
}

.fh-charte-swatches--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fh-charte-swatches--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fh-swatch-card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 0.35rem 0.65rem;
  align-items: center;
  padding: 0.6rem 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(59, 158, 255, 0.12);
  background: rgba(6, 13, 24, 0.65);
  transition: border-color 0.2s, background 0.2s;
}

.fh-swatch-card:hover {
  border-color: rgba(59, 158, 255, 0.35);
  background: rgba(14, 28, 48, 0.9);
}

.fh-swatch-card__chip {
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--swatch);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.fh-swatch-card--light .fh-swatch-card__chip {
  border-color: rgba(0, 0, 0, 0.12);
}

.fh-swatch-card__main {
  min-width: 0;
}

.fh-swatch-card__name {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--fh-text);
  line-height: 1.25;
}

.fh-swatch-card__use {
  display: block;
  font-size: 0.72rem;
  color: var(--fh-muted);
  line-height: 1.3;
}

.fh-swatch-card__codes {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.fh-swatch-card__hex {
  font-size: 0.72rem;
  font-weight: 700;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #93c5fd;
  letter-spacing: 0.03em;
}

.fh-swatch-card__token {
  font-size: 0.65rem;
  font-family: ui-monospace, monospace;
  color: var(--fh-muted);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  background: rgba(59, 158, 255, 0.08);
  border: 1px solid rgba(59, 158, 255, 0.15);
}

.fh-charte-type {
  display: grid;
  grid-template-columns: 1fr minmax(0, 280px);
  gap: 1.25rem;
  align-items: stretch;
}

.fh-charte-type__sample {
  padding: 1.75rem;
  border-radius: var(--fh-radius);
  border: 1px solid var(--fh-border);
  background: linear-gradient(165deg, rgba(14, 28, 48, 0.98), rgba(6, 13, 24, 0.99));
}

.fh-charte-type__display {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--fh-text);
}

.fh-charte-type__lead {
  margin: 0;
  font-size: 1rem;
  color: var(--fh-muted);
  line-height: 1.6;
}

.fh-charte-type__weights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.fh-charte-type__weights li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: var(--fh-bg-elevated);
  border: 1px solid var(--fh-border);
  font-size: 1.1rem;
  color: var(--fh-text);
}

.fh-charte-type__label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fh-muted);
}

.fh-charte-preview--duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.fh-charte-preview__pane {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 140px;
  padding: 1.5rem;
  border-radius: var(--fh-radius);
  border: 1px solid var(--fh-border);
}

.fh-charte-preview__pane--dark {
  background: #060d18;
}

.fh-charte-preview__pane--light {
  background: #f4f7fc;
}

.fh-charte-preview__label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.fh-charte-preview__pane--dark .fh-charte-preview__label {
  color: var(--fh-muted);
}

.fh-charte-preview__pane--light .fh-charte-preview__label {
  color: #64748b;
}

.fh-charte-preview__pane img {
  max-width: min(100%, 220px);
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.fh-charte-assets {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.fh-charte-asset {
  display: flex;
  flex-direction: column;
  border-radius: var(--fh-radius);
  border: 1px solid var(--fh-border);
  background: linear-gradient(165deg, rgba(12, 24, 41, 0.95), rgba(6, 13, 24, 0.98));
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.fh-charte-asset:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 158, 255, 0.4);
  box-shadow: var(--fh-shadow);
}

.fh-charte-asset--wide {
  grid-column: span 2;
}

.fh-charte-asset__preview {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(59, 158, 255, 0.1);
}

.fh-charte-asset--wide .fh-charte-asset__preview {
  min-height: 100px;
}

.fh-charte-asset--compact .fh-charte-asset__preview img {
  max-height: 64px;
}

.fh-charte-asset__preview img {
  max-width: 100%;
  max-height: 96px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.fh-charte-asset--wide .fh-charte-asset__preview img {
  max-height: 72px;
  max-width: min(100%, 480px);
}

.fh-charte-asset__body {
  padding: 1.15rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fh-charte-asset__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fh-text);
}

.fh-charte-asset__desc {
  margin: 0 0 1rem;
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--fh-muted);
}

.fh-charte-asset__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.fh-charte-rule {
  background: var(--fh-bg-elevated);
  border: 1px solid var(--fh-border);
  border-radius: var(--fh-radius);
  padding: 1.5rem 1.5rem 1.25rem;
  height: 100%;
}

.fh-charte-rule h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.fh-charte-rule--ok {
  border-color: rgba(52, 211, 153, 0.28);
  background: linear-gradient(165deg, rgba(52, 211, 153, 0.06), var(--fh-bg-elevated));
}

.fh-charte-rule--ok h3 {
  color: var(--fh-success);
}

.fh-charte-rule--no {
  border-color: rgba(248, 113, 113, 0.28);
  background: linear-gradient(165deg, rgba(248, 113, 113, 0.06), var(--fh-bg-elevated));
}

.fh-charte-rule--no h3 {
  color: #f87171;
}

.fh-charte-rule ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--fh-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.fh-charte-rule li {
  margin-bottom: 0.4rem;
}

.fh-charte-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1.75rem;
  border-radius: calc(var(--fh-radius) + 4px);
  border: 1px solid rgba(59, 158, 255, 0.3);
  background: linear-gradient(145deg, rgba(29, 111, 216, 0.18), rgba(6, 13, 24, 0.95));
  overflow: hidden;
}

.fh-charte-cta__glow {
  position: absolute;
  inset: -20% auto auto 50%;
  width: 320px;
  height: 320px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(59, 158, 255, 0.2), transparent 65%);
  pointer-events: none;
}

.fh-charte-cta__icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--fh-accent);
  background: rgba(59, 158, 255, 0.12);
  border: 1px solid rgba(59, 158, 255, 0.35);
}

.fh-charte-cta__body {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.fh-charte-cta__title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--fh-text);
}

.fh-charte-cta__text {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--fh-muted);
  line-height: 1.6;
}

.fh-charte-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

/* Legacy charte (compat) */
.fh-charte-grid,
.fh-charte-item {
  display: none;
}

@media (max-width: 991px) {
  .fh-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fh-features__grid--home {
    grid-template-columns: repeat(2, 1fr);
  }

  .fh-features__grid--home .fh-feature {
    grid-column: span 1;
  }

  .fh-charte-type {
    grid-template-columns: 1fr;
  }

  .fh-charte-asset--wide {
    grid-column: span 1;
  }
}

@media (max-width: 991.98px) {
  .fh-charte-swatches--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fh-charte-swatches--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .fh-charte-nav {
    border-radius: var(--fh-radius);
  }

  .fh-charte-nav__link {
    flex: 1 1 calc(50% - 0.25rem);
    justify-content: center;
    font-size: 0.75rem;
  }

  .fh-charte-preview--duo {
    grid-template-columns: 1fr;
  }

  .fh-charte-swatches--3,
  .fh-charte-swatches--4 {
    grid-template-columns: 1fr;
  }

  .fh-charte-palette {
    padding: 1rem;
  }
}

@media (max-width: 575px) {
  .fh-home-section {
    padding: 2.5rem 0;
  }

  .fh-features__grid--home {
    grid-template-columns: 1fr;
  }
}

/* —— Promo alerte fermable (bas d’écran) —— */
.fh-promo-alert {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  background: linear-gradient(0deg, rgba(6, 13, 24, 0.98), rgba(29, 111, 216, 0.28));
  border-top: 1px solid var(--fh-border);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
  animation: fh-slide-up-in 0.45s ease-out;
}

.fh-promo-alert--hide {
  animation: fh-slide-down-out 0.35s ease-in forwards;
}

.fh-has-promo-alert {
  padding-bottom: var(--fh-promo-h, 4.25rem);
}

.fh-promo-alert__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1.25rem;
  max-width: 1400px;
  margin: 0 auto;
}

.fh-promo-alert__icon {
  color: var(--fh-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.fh-promo-alert__text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--fh-muted);
  line-height: 1.4;
  min-width: 0;
}

.fh-promo-alert__text strong {
  color: var(--fh-text);
}

.fh-promo-alert__code {
  color: var(--fh-accent);
  font-weight: 800;
  letter-spacing: 0.06em;
  background: rgba(59, 158, 255, 0.12);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}

.fh-promo-alert__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.fh-promo-alert__shop {
  padding: 0.4rem 0.85rem !important;
  font-size: 0.8rem !important;
}

.fh-promo-alert__copy {
  padding: 0.4rem 0.65rem !important;
  font-size: 0.8rem !important;
}

.fh-promo-alert__close {
  background: transparent;
  border: none;
  color: var(--fh-muted);
  padding: 0.35rem 0.5rem;
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.fh-promo-alert__close:hover {
  color: var(--fh-text);
  background: var(--fh-surface);
}

.fh-nav.fh-nav--scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

/* Pills par page */
.fh-pills {
  padding: 0 0 1.25rem;
  margin-top: -0.5rem;
}

.fh-pills__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.fh-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fh-muted);
  background: var(--fh-surface);
  border: 1px solid var(--fh-border);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  transition: border-color 0.2s, color 0.2s;
}

.fh-pill i {
  color: var(--fh-accent);
  font-size: 0.75rem;
}

.fh-pill:hover {
  border-color: rgba(59, 158, 255, 0.45);
  color: var(--fh-text);
}

/* Animations scroll */
.fh-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--fh-delay, 0s);
}

.fh-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.fh-reveal--delay {
  transition-delay: 0.12s;
}

@keyframes fh-slide-up-in {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fh-slide-down-out {
  to {
    opacity: 0;
    transform: translateY(100%);
  }
}

@keyframes fh-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fh-glow-pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.85;
  }
}

.fh-home-hero {
  position: relative;
  overflow: hidden;
}

.fh-home-hero__glow {
  position: absolute;
  z-index: 0;
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  right: 5%;
  top: 10%;
  background: radial-gradient(circle, rgba(59, 158, 255, 0.22), transparent 65%);
  filter: blur(40px);
  animation: fh-glow-pulse 6s ease-in-out infinite;
  pointer-events: none;
}

.fh-home-hero .container {
  position: relative;
  z-index: 1;
}

.fh-hero-visual--float {
  animation: fh-float 5s ease-in-out infinite;
}

.fh-hero-visual__frame {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--fh-radius) + 2px);
  background: linear-gradient(135deg, var(--fh-accent), transparent 50%, var(--fh-accent-2));
  opacity: 0.35;
  z-index: 0;
}

.fh-hero-visual__img {
  position: relative;
  z-index: 1;
  box-shadow: var(--fh-shadow);
}

.fh-highlight,
.fh-game-tile,
.fh-card {
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.fh-highlight:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 158, 255, 0.45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .fh-promo-alert__inner {
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
  }
  .fh-promo-alert__text {
    flex: 1 1 100%;
  }
  .fh-promo-alert__actions {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fh-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .fh-hero-visual--float,
  .fh-home-hero__glow,
  .fh-hero-showcase__frame,
  .fh-hero-showcase__glow,
  .fh-hero-showcase__pulse,
  .fh-offer-card__ribbon,
  .fh-promo-alert,
  .fh-eyebrow__flag {
    animation: none;
  }

  .fh-hero-showcase__frame {
    transform: none;
  }

  .fh-pricing-grid > .fh-offer-card--featured {
    transform: none;
  }
}

/* —— Page hero (offres & pages statiques) —— */
.fh-page-hero {
  position: relative;
  padding: 1.75rem 0 2rem;
  overflow: hidden;
}

.fh-page-hero--simple {
  padding: 2rem 0 2.25rem;
}

.fh-page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    url("../images/background.png") center / cover no-repeat,
    linear-gradient(165deg, #060d18 0%, #0a1628 45%, #0c1a30 100%);
  opacity: 0.35;
  pointer-events: none;
}

.fh-page-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 158, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 158, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  pointer-events: none;
}

.fh-page-hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.fh-page-hero__layout--solo {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.fh-page-hero__content {
  min-width: 0;
}

.fh-hero__title--page {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.fh-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.fh-page-hero__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fh-page-hero__media-frame {
  position: relative;
  padding: 1.25rem;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(59, 158, 255, 0.1), rgba(6, 13, 24, 0.6));
  border: 1px solid var(--fh-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  max-width: 360px;
}

.fh-page-hero__img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.fh-page-hero__img--svg {
  max-height: 200px;
}

.fh-pills--inline {
  padding: 0;
  margin: 1rem 0 0;
}

.fh-pills--inline .fh-pills__row {
  justify-content: flex-start;
}

/* —— Offres VPS (lignes) —— */
.fh-pricing--vps .fh-pricing__header {
  margin-bottom: 2rem;
}

.fh-vps-offers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto 1.5rem;
}

.fh-vps-offer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, 1.05fr) minmax(0, 2fr) minmax(148px, auto);
  align-items: center;
  gap: 1.25rem 1.5rem;
  padding: 1.15rem 1.5rem;
  border-radius: calc(var(--fh-radius) + 2px);
  border: 1px solid rgba(59, 158, 255, 0.16);
  background: linear-gradient(105deg, rgba(14, 28, 48, 0.98), rgba(6, 13, 24, 0.99));
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
  overflow: hidden;
}

.fh-vps-offer::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--fh-accent), var(--fh-accent-2));
  opacity: 0.35;
  transition: opacity 0.28s ease;
}

.fh-vps-offer:hover {
  transform: translateX(4px);
  border-color: rgba(59, 158, 255, 0.42);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(59, 158, 255, 0.1);
}

.fh-vps-offer:hover::before {
  opacity: 1;
}

.fh-vps-offer--featured {
  border-color: rgba(59, 158, 255, 0.45);
  background: linear-gradient(105deg, rgba(22, 48, 82, 0.98), rgba(8, 18, 34, 0.99));
  box-shadow:
    0 8px 32px rgba(29, 111, 216, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.fh-vps-offer--featured::before {
  opacity: 1;
}

.fh-vps-offer--soldout {
  opacity: 0.8;
}

.fh-vps-offer__ribbon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.3rem 0.75rem;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(90deg, var(--fh-accent-2), var(--fh-accent));
  border-bottom-left-radius: 10px;
}

.fh-vps-offer__plan {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.fh-vps-offer__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  padding: 2px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--fh-accent), var(--fh-accent-2));
}

.fh-vps-offer__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(6, 13, 24, 0.95);
  padding: 6px;
}

.fh-vps-offer__name {
  margin: 0 0 0.2rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--fh-text);
  line-height: 1.2;
}

.fh-vps-offer__availability {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
}

.fh-vps-offer__availability--in {
  color: var(--fh-success);
}

.fh-vps-offer__availability--out {
  color: #fbbf24;
}

.fh-vps-offer__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.fh-vps-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
  padding: 0.65rem 0.4rem;
  border-radius: 12px;
  background: rgba(59, 158, 255, 0.06);
  border: 1px solid rgba(59, 158, 255, 0.12);
}

.fh-vps-stat__icon {
  color: var(--fh-accent);
  font-size: 0.95rem;
  line-height: 1;
}

.fh-vps-stat__label {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fh-muted);
}

.fh-vps-stat__value {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--fh-text);
  line-height: 1.25;
}

.fh-vps-stat--cpu .fh-vps-stat__value {
  font-size: 0.78rem;
  font-weight: 600;
}

.fh-vps-stat__value .fh-spec__unlimited {
  font-size: inherit;
}

.fh-vps-offer__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
  padding-left: 0.5rem;
  border-left: 1px solid rgba(59, 158, 255, 0.14);
}

.fh-vps-offer__price {
  line-height: 1.1;
}

.fh-vps-offer__amount {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--fh-accent);
}

.fh-vps-offer__period {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fh-muted);
}

.fh-vps-offer__btn {
  width: 100%;
  min-width: 132px;
  justify-content: center;
  white-space: nowrap;
}

.fh-vps-offer__btn--disabled {
  pointer-events: none;
  opacity: 0.85;
}

@media (max-width: 991.98px) {
  .fh-vps-offer {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }

  .fh-vps-offer__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fh-vps-stat--net {
    grid-column: span 2;
  }

  .fh-vps-offer__aside {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-left: 0;
    padding-top: 0.75rem;
    border-left: none;
    border-top: 1px solid rgba(59, 158, 255, 0.14);
  }

  .fh-vps-offer__price {
    text-align: left;
  }

  .fh-vps-offer__btn {
    width: auto;
    flex: 1 1 auto;
    max-width: 220px;
  }
}

@media (max-width: 479.98px) {
  .fh-vps-offer__stats {
    grid-template-columns: 1fr 1fr;
  }

  .fh-vps-stat--cpu,
  .fh-vps-stat--net {
    grid-column: span 1;
  }
}

/* —— Grille offres —— */
.fh-pricing__section-title {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fh-muted);
  margin: 2.5rem 0 1.25rem;
}

.fh-pricing__section-title:first-of-type {
  margin-top: 0.5rem;
}

.fh-pricing-grid {
  --fh-grid-gap: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--fh-grid-gap);
  margin-bottom: 1.5rem;
}

.fh-pricing-grid > .fh-offer-card {
  flex: 0 0 auto;
  width: min(100%, max(292px, calc((100% - 3 * var(--fh-grid-gap)) / 4)));
  box-sizing: border-box;
}

@media (max-width: 1199px) {
  .fh-pricing-grid > .fh-offer-card {
    width: min(100%, max(272px, calc((100% - 2 * var(--fh-grid-gap)) / 3)));
  }
}

@media (min-width: 1200px) {
  .fh-pricing-grid > .fh-offer-card--featured {
    transform: scale(1.03);
    z-index: 2;
  }

  .fh-pricing-grid > .fh-offer-card--featured:hover {
    transform: scale(1.03) translateY(-6px);
  }
}

/* Carte offre */
.fh-offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem 1.35rem 1.35rem;
  background: linear-gradient(168deg, rgba(16, 32, 54, 0.98) 0%, rgba(6, 13, 24, 0.99) 100%);
  border: 1px solid rgba(59, 158, 255, 0.14);
  border-radius: calc(var(--fh-radius) + 2px);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  overflow: hidden;
}

.fh-offer-card__glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 55%;
  background: radial-gradient(ellipse at 50% 0%, rgba(59, 158, 255, 0.2), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.fh-offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 158, 255, 0.42);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(59, 158, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.fh-offer-card:hover .fh-offer-card__glow {
  opacity: 1;
}

.fh-offer-card--featured {
  border-color: rgba(59, 158, 255, 0.48);
  background: linear-gradient(168deg, rgba(22, 48, 82, 0.98) 0%, rgba(8, 18, 34, 0.99) 100%);
  box-shadow:
    0 8px 36px rgba(29, 111, 216, 0.18),
    0 0 0 1px rgba(59, 158, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.fh-offer-card--featured .fh-offer-card__glow {
  opacity: 0.65;
}

.fh-offer-card--featured:hover .fh-offer-card__glow {
  opacity: 1;
}

.fh-offer-card--soldout {
  opacity: 0.78;
  filter: grayscale(0.15);
}

.fh-offer-card--soldout .fh-offer-card__btn--disabled {
  pointer-events: none;
}

.fh-offer-card__ribbon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: -1.5rem -1.35rem 1rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(90deg, var(--fh-accent-2), var(--fh-accent), var(--fh-accent-2));
  background-size: 200% 100%;
  animation: fh-ribbon-shine 4s ease-in-out infinite;
}

@keyframes fh-ribbon-shine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.fh-offer-card__availability {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  margin: 0.45rem 0 0;
  padding: 0.28rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 999px;
}

.fh-offer-card__availability--in {
  color: #6ee7b7;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.28);
}

.fh-offer-card__availability--in i {
  color: var(--fh-success);
}

.fh-offer-card__availability--out {
  color: #fcd34d;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.fh-offer-card__availability--out i {
  color: #fbbf24;
}

.fh-offer-card__top {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 1;
}

.fh-offer-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  border: 1px solid rgba(59, 158, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.fh-offer-card__icon img {
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
}

.fh-offer-card__meta {
  flex: 1;
  min-width: 0;
  padding-top: 0.15rem;
}

.fh-offer-card__name {
  font-size: 1.12rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  color: var(--fh-text);
  letter-spacing: -0.02em;
}

.fh-offer-card__tagline {
  font-size: 0.78rem;
  color: var(--fh-muted);
  margin: 0.35rem 0 0;
  line-height: 1.45;
}

.fh-offer-card__price-block {
  position: relative;
  z-index: 1;
  margin: 0.85rem 0 1rem;
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.fh-offer-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.15rem 0.35rem;
  line-height: 1;
}

.fh-offer-card__amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--fh-text);
  letter-spacing: -0.03em;
}

.fh-offer-card--featured .fh-offer-card__amount {
  color: #e8f4ff;
  text-shadow: 0 0 24px rgba(59, 158, 255, 0.35);
}

.fh-offer-card__period {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fh-muted);
}

.fh-offer-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.fh-offer-card__specs {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0.65rem 0.75rem;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  flex: 1;
}

.fh-offer-card__spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem;
  padding: 0.42rem 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.fh-offer-card__spec:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fh-offer-card__spec:first-child {
  padding-top: 0;
}

.fh-offer-card__spec-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--fh-muted);
  font-weight: 500;
}

.fh-offer-card__spec-label i {
  width: 14px;
  text-align: center;
  color: var(--fh-accent);
  font-size: 0.72rem;
  opacity: 0.9;
}

.fh-offer-card__spec-value {
  font-weight: 700;
  color: var(--fh-text);
  text-align: right;
  font-size: 0.8rem;
  line-height: 1.3;
}

.fh-spec__unlimited {
  color: var(--fh-accent);
  font-weight: 700;
}

.fh-spec__infinity {
  vertical-align: middle;
}

.fh-offer-card__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}

.fh-offer-card__perk {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--fh-muted);
  background: rgba(59, 158, 255, 0.08);
  border: 1px solid rgba(59, 158, 255, 0.18);
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
}

.fh-offer-card__perk i {
  color: var(--fh-success);
  font-size: 0.62rem;
}

.fh-offer-card__cta {
  margin-top: 1.15rem;
  position: relative;
  z-index: 1;
}

.fh-offer-card__btn {
  width: 100%;
  justify-content: center;
  padding: 0.8rem 1rem !important;
  font-weight: 700;
  border-radius: 11px;
  box-shadow: 0 4px 16px rgba(29, 111, 216, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fh-offer-card__btn:hover:not(.fh-offer-card__btn--disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(29, 111, 216, 0.35);
}

.fh-offer-card__btn--disabled {
  opacity: 0.7;
  cursor: not-allowed;
  box-shadow: none;
}

/* Variante compacte (accueil) */
.fh-offer-card--compact {
  padding: 1.35rem 1.15rem 1.15rem;
}

.fh-offer-card--compact .fh-offer-card__ribbon {
  margin: -1.35rem -1.15rem 0.85rem;
}

.fh-offer-card--compact .fh-offer-card__top {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
}

.fh-offer-card--compact .fh-offer-card__name {
  font-size: 1rem;
}

.fh-offer-card--compact .fh-offer-card__price-block {
  margin: 0.5rem 0 1rem;
  padding: 0.75rem;
  text-align: center;
}

.fh-offer-card--compact .fh-offer-card__price {
  justify-content: center;
}

.fh-offer-card--compact .fh-offer-card__amount {
  font-size: 1.65rem;
}

/* Alerte info */
.fh-alert--info {
  background: rgba(59, 158, 255, 0.1);
  border: 1px solid rgba(59, 158, 255, 0.35);
  color: var(--fh-text);
  border-radius: var(--fh-radius);
  padding: 0;
  margin-bottom: 2rem;
}

.fh-alert__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
}

.fh-alert__inner > i {
  color: var(--fh-accent);
  font-size: 1.25rem;
}

.fh-alert__inner p {
  flex: 1;
  margin: 0;
  min-width: 200px;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* —— Pages offres : contenu enrichi —— */
.fh-offer-stats {
  padding: 2.5rem 0 2rem;
  width: 100%;
}

.fh-offer-stats .container {
  width: 100%;
  max-width: var(--fh-container, 1140px);
  margin-left: auto;
  margin-right: auto;
}

.fh-offer-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
}

.fh-offer-stats__item {
  text-align: center;
  padding: 1.1rem 0.75rem;
  background: var(--fh-bg-elevated);
  border: 1px solid var(--fh-border);
  border-radius: var(--fh-radius);
}

.fh-offer-stats__item i {
  display: block;
  color: var(--fh-accent);
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.fh-offer-stats__item strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--fh-text);
}

.fh-offer-stats__item span {
  display: block;
  font-size: 0.72rem;
  color: var(--fh-muted);
  margin-top: 0.2rem;
  line-height: 1.35;
}

.fh-offer-section {
  padding: 3rem 0;
}

.fh-offer-section--muted {
  background: rgba(8, 16, 28, 0.55);
  border-block: 1px solid var(--fh-border);
}

.fh-offer-section__head {
  margin-bottom: 2rem;
}

.fh-offer-pricing {
  padding-top: 2.5rem;
}

.fh-offer-pricing--first {
  padding-top: 1.25rem;
  padding-bottom: 3rem;
}

.fh-page--offer .fh-page-hero {
  padding-bottom: 1rem;
}

.fh-page--offer .fh-offer-pricing--first {
  padding-bottom: 2.5rem;
  border-bottom: none;
  background: none;
}

.fh-page--offer .fh-offer-stats {
  padding: 2rem 0 1.5rem;
}

.fh-page--offer .fh-offer-section {
  padding: 2.25rem 0;
}

.fh-page--offer .fh-offer-section--muted {
  border: none;
  background: rgba(8, 16, 28, 0.28);
}

.fh-features--offer {
  padding: 3rem 0 2.5rem;
}

.fh-features__grid--offer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.fh-features__grid--offer .fh-feature {
  text-align: left;
  padding: 1.35rem;
  transition: border-color 0.25s, transform 0.25s;
}

.fh-features__grid--offer .fh-feature:hover {
  border-color: rgba(59, 158, 255, 0.35);
  transform: translateY(-2px);
}

.fh-features__grid--offer .fh-feature h3 {
  font-size: 0.95rem;
  text-align: left;
}

.fh-features__grid--offer .fh-feature p {
  font-size: 0.85rem;
  line-height: 1.6;
  text-align: left;
}

.fh-static-cta--closing {
  padding: 3rem 0 4rem;
  position: relative;
  z-index: 2;
}

.fh-page--offer .fh-features--offer {
  padding: 2.5rem 0 2rem;
  border: none;
  background: none;
}

.fh-page--offer .fh-features--offer + .fh-static-cta--closing {
  padding-top: 2rem;
}

.fh-page--offer .fh-static-cta--closing {
  padding: 2rem 0 3.5rem;
}

.fh-page--offer .fh-static-cta--closing + .fh-community-cta {
  margin-top: 0;
  padding-top: 2rem;
}

.fh-page--offer .fh-static-cta--closing + .fh-community-cta .fh-community-cta__bg {
  mask-image: linear-gradient(180deg, transparent 0%, black 18%);
  opacity: 0.35;
}

.fh-page--offer .fh-offer-steps__item {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.fh-highlight--pro {
  height: 100%;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.fh-highlight--pro:hover {
  border-color: rgba(59, 158, 255, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.fh-highlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(59, 158, 255, 0.12);
  color: var(--fh-accent);
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
  flex-shrink: 0;
}

.fh-highlight__icon i,
.fh-highlight--pro .fh-highlight__icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  margin: 0;
  line-height: 1;
  font-size: inherit;
}

.fh-feature__icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  margin: 0;
  line-height: 1;
  font-size: inherit;
}

.fh-highlight--pro h3 {
  font-size: 1rem;
}

.fh-offer-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem;
  background: var(--fh-bg-elevated);
  border: 1px solid var(--fh-border);
  border-radius: calc(var(--fh-radius) + 4px);
}

.fh-offer-panel--reverse .fh-offer-panel__media {
  order: 2;
}

.fh-offer-panel--reverse .fh-offer-panel__content {
  order: 1;
}

.fh-offer-panel__frame {
  border-radius: var(--fh-radius);
  border: 1px solid rgba(59, 158, 255, 0.2);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.fh-offer-panel__frame img {
  display: block;
  width: 100%;
  height: auto;
}

.fh-offer-panel--media-logo {
  grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
  gap: 1.75rem;
  padding: 1.5rem 1.75rem;
}

.fh-offer-panel__frame--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  background: rgba(59, 158, 255, 0.06);
  border: 1px solid rgba(59, 158, 255, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.fh-offer-panel__frame--logo img {
  width: auto;
  max-width: 100%;
  max-height: 112px;
  margin: 0 auto;
  object-fit: contain;
}

.fh-offer-panel__frame--photo img {
  max-height: min(320px, 42vw);
  object-fit: cover;
  object-position: top center;
}

.fh-offer-panel__text {
  color: var(--fh-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.fh-offer-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fh-offer-steps__item {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--fh-border);
}

.fh-offer-steps__item:last-child {
  border-bottom: none;
}

.fh-offer-steps__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fh-accent), var(--fh-accent-2));
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
}

.fh-offer-steps__item strong {
  display: block;
  color: var(--fh-text);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.fh-offer-steps__item p {
  margin: 0;
  color: var(--fh-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.fh-offer-tech {
  margin: 0;
  padding: 0;
  background: var(--fh-bg-elevated);
  border: 1px solid var(--fh-border);
  border-radius: var(--fh-radius);
  overflow: hidden;
}

.fh-offer-tech__row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1rem;
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid var(--fh-border);
}

.fh-offer-tech__row:last-child {
  border-bottom: none;
}

.fh-offer-tech__row dt {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fh-muted);
  margin: 0;
}

.fh-offer-tech__row dd {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fh-text);
  text-align: right;
}

.fh-offer-faq {
  max-width: 720px;
}

.fh-offer-tiles {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

.fh-offer-tiles__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  background: var(--fh-bg-elevated);
  border: 1px solid var(--fh-border);
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--fh-muted);
  line-height: 1.3;
}

.fh-offer-tiles__item img {
  opacity: 0.9;
}

@media (max-width: 991px) {
  .fh-offer-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fh-features__grid--offer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fh-offer-panel {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .fh-offer-panel--media-logo .fh-offer-panel__frame--logo {
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
  }

  .fh-offer-panel--reverse .fh-offer-panel__media,
  .fh-offer-panel--reverse .fh-offer-panel__content {
    order: unset;
  }

  .fh-offer-tiles {
    grid-template-columns: repeat(3, 1fr);
  }

  .fh-offer-tech__row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .fh-offer-tech__row dd {
    text-align: left;
  }
}

@media (max-width: 575px) {
  .fh-offer-tiles {
    grid-template-columns: repeat(2, 1fr);
  }

  .fh-features__grid--offer {
    grid-template-columns: 1fr;
  }

  .fh-offer-pricing--first {
    padding-top: 1rem;
  }
}

/* Communauté CTA */
.fh-community-cta {
  position: relative;
  padding: 4rem 0;
  margin-top: 0;
  overflow: hidden;
}

.fh-community-cta__bg {
  position: absolute;
  inset: 0;
  background:
    url("../images/background.png") center / cover no-repeat,
    linear-gradient(135deg, rgba(29, 111, 216, 0.35), rgba(6, 13, 24, 0.92));
  opacity: 0.45;
}

.fh-community-cta__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 158, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 158, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, black, transparent);
}

.fh-community-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 2.75rem;
  border-radius: calc(var(--fh-radius) + 4px);
  border: 1px solid var(--fh-border);
  background: rgba(6, 13, 24, 0.75);
  backdrop-filter: blur(12px);
  box-shadow: var(--fh-shadow);
}

.fh-community-cta__title {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.fh-community-cta__text {
  color: var(--fh-muted);
  margin: 0;
  max-width: 480px;
  line-height: 1.6;
}

.fh-community-cta__stats {
  font-size: 0.85rem;
  color: var(--fh-muted);
  margin: 0.75rem 0 0;
}

.fh-community-cta__stats i {
  color: var(--fh-accent);
  margin-right: 0.35rem;
}

.fh-community-cta__visual {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fh-community-cta__icon {
  font-size: 4rem;
  color: #5865f2;
  filter: drop-shadow(0 8px 24px rgba(88, 101, 242, 0.45));
  z-index: 1;
}

.fh-community-cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
}

.fh-community-cta__orb--1 {
  width: 80px;
  height: 80px;
  background: rgba(88, 101, 242, 0.4);
}

.fh-community-cta__orb--2 {
  width: 60px;
  height: 60px;
  background: rgba(59, 158, 255, 0.35);
  top: 10%;
  right: 0;
}

/* Footer */
.fh-footer {
  margin-top: 0;
  border-top: 1px solid var(--fh-border);
  background: #050a12;
  padding: 3rem 0 0;
}

.fh-footer__brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  line-height: 0;
  text-decoration: none;
  opacity: 1;
  isolation: isolate;
}

.fh-footer__brand:hover {
  color: inherit;
  opacity: 1;
}

.fh-footer__logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(100%, 200px);
  object-fit: contain;
  vertical-align: middle;
  border: 0;
  opacity: 1;
}

.fh-footer__tagline {
  font-size: 0.9rem;
  color: var(--fh-muted);
  line-height: 1.65;
  max-width: 320px;
  margin-bottom: 1.25rem;
}

.fh-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fh-footer__mail,
.fh-footer__discord {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--fh-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}

.fh-footer__mail:hover,
.fh-footer__discord:hover {
  color: var(--fh-accent);
}

.fh-footer__mail i {
  color: var(--fh-accent);
}

.fh-footer__discord i {
  color: #5865f2;
}

.fh-footer__heading {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fh-text);
  margin-bottom: 1rem;
}

.fh-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fh-footer__links li {
  margin-bottom: 0.45rem;
}

.fh-footer__links a {
  color: var(--fh-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s;
}

.fh-footer__links a:hover {
  color: var(--fh-accent);
}

.fh-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.fh-footer__badges span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fh-muted);
  background: var(--fh-surface);
  border: 1px solid var(--fh-border);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
}

.fh-footer__badges i {
  color: var(--fh-accent);
  margin-right: 0.2rem;
}

.fh-footer__bottom {
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--fh-border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--fh-muted);
}

@media (max-width: 991px) {
  .fh-page-hero__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .fh-page-hero__actions,
  .fh-pills--inline .fh-pills__row {
    justify-content: center;
  }

  .fh-page-hero__media-frame {
    margin: 0 auto;
  }

  .fh-community-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .fh-community-cta__visual {
    margin: 0 auto;
  }

  .fh-pricing-grid > .fh-offer-card {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 575px) {
  .fh-offer-card:not(.fh-offer-card--home) .fh-offer-card__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .fh-offer-card:not(.fh-offer-card--home) .fh-offer-card__meta {
    text-align: center;
  }

  .fh-offer-card__amount {
    font-size: 1.75rem;
  }

  .fh-trust--grid {
    grid-template-columns: 1fr;
  }
}
