/* Panel IPTV Pro — palette commune et gabarits existants. */
:root {
  --ink: #101114;
  --anthracite: #1c1d21;
  --slate: #2b2c31;
  --paper: #f7f5ef;
  --paper-shade: #e9e5da;
  --white: #ffffff;
  --black: #000000;
  --gold: #d2ad62;
  --gold-light: #eed6a0;
  --gold-deep: #806025;
  --gold-rgb: 210, 173, 98;
  --white-rgb: 255, 255, 255;
  --black-rgb: 0, 0, 0;
  --muted-light: #bbb8b0;
  --muted-dark: #67645d;
  --primary: var(--gold-deep);
  --primary-dark: var(--gold-deep);
  --secondary: var(--gold);
  --accent: var(--gold-light);
  --background: var(--ink);
  --surface: var(--paper);
  --surface-alt: var(--paper-shade);
  --surface-soft: var(--paper-shade);
  --card-surface: linear-gradient(145deg, var(--white), var(--paper));
  --card-border: rgba(var(--gold-rgb), .22);
  --card-shadow: 0 16px 40px rgba(var(--black-rgb), .2);
  --header-bg: rgba(16, 17, 20, .96);
  --footer-bg: var(--ink);
  --text: var(--ink);
  --text-on-dark: var(--paper);
  --muted: var(--muted-dark);
  --muted-on-dark: var(--muted-light);
  --border: var(--paper-shade);
  --shadow-sm: 0 8px 24px rgba(var(--black-rgb), .14);
  --shadow: 0 20px 48px rgba(var(--black-rgb), .24);
  --radius: 16px;
  --container: 1200px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Manrope",sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
}
.container {
  width: min(calc(100% - 40px),var(--container));
  margin-inline: auto;
}
.section {
  padding: 108px 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--text);
  color: var(--white);
}
.skip-link:focus {
  top: 12px;
}
.kicker,.eyebrow {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
}
.kicker {
  display: inline-block;
  margin-bottom: 13px;
}
.section-heading {
  margin: 0 auto 50px;
  text-align: center;
}
.section-heading h2,.panel-copy h2,.faq-intro h2,.guidance-intro h2,.cta-box h2 {
  margin: 0;
  color: var(--text);
  font-family: "Manrope",sans-serif;
}
.section-heading p,.panel-copy>p,.faq-intro>p,.guidance-intro>p,.cta-box p {
  color: var(--muted);
  font-size: 15px;
}
.section-heading p {
  max-width: 650px;
  margin: 16px auto 0;
}
.reveal {
  opacity: 1;
  transform: none;
}
.js-reveal.reveal-ready .reveal {
  opacity: 0;
  will-change: opacity,transform;
}
.js-reveal.reveal-ready .reveal.visible {
  opacity: 1;
  will-change: auto;
}
.js-reveal.reveal-ready .hero-visual.reveal.visible {
  transform: none;
}
.site-header {
  position: fixed;
  z-index: 100;
  transition: height .3s,box-shadow .3s,border-color .3s;
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
}
.brand-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.desktop-nav {
  display: flex;
  align-items: center;
}
.desktop-nav a {
  position: relative;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  border-radius: 2px;
  background: linear-gradient(90deg,var(--primary),var(--secondary));
  transition: .25s;
}
.desktop-nav a:hover::after {
  left: 0;
  right: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-ghost:hover,.btn-light:hover {
  border-color: var(--primary);
  background: var(--paper);
}
.btn-small {
  min-height: 41px;
  padding: 10px 17px;
}
.language-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.language-toggle i {
  font-style: normal;
}
.language-menu {
  grid-template-columns: 1fr 1fr;
}
.language-menu button {
  justify-content: space-between;
}
.menu-toggle,.mobile-menu,.mobile-language {
  display: none;
}
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
}
.hero::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: 7%;
  bottom: -100px;
  border-radius: 44px;
  transform: rotate(25deg);
  background: rgba(var(--black-rgb), .05);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--paper-shade);
}
.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 5px rgba(var(--black-rgb), .1);
}
h1 {
  margin: 23px 0 20px;
  font-family: "Manrope",sans-serif;
  font-size: clamp(49px,5.4vw,72px);
  line-height: .99;
  letter-spacing: -3.2px;
}
h1 em {
  display: block;
  font-style: normal;
  background: linear-gradient(90deg,var(--primary),var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-actions {
  display: flex;
}
.hero-trust {
  display: flex;
  font-weight: 600;
}
.hero-visual {
  position: relative;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
}
.glow-two {
  width: 180px;
  height: 180px;
  left: 49%;
  bottom: 3%;
  background: rgba(var(--black-rgb), .07);
}
.visual-orbit {
  position: absolute;
  border: 1px dashed rgba(var(--black-rgb), .17);
  border-radius: 50%;
}
.orbit-two {
  inset: 10% 12%;
  transform: rotate(12deg);
}
.dashboard-window {
  position: absolute;
  border: 1px solid rgba(var(--black-rgb), .16);
  overflow: hidden;
}
.window-bar {
  padding: 0 19px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--paper-shade);
}
.window-bar strong {
  font-size: 11px;
}
.product-mark {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}
.window-actions {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.window-actions i,.dash-head>i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dash-body {
  display: grid;
}
.dash-body aside {
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
}
.dash-body aside b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 9px;
}
.dash-body aside span {
  width: 20px;
  height: 7px;
  border-radius: 6px;
}
.dash-body aside span.active {
  height: 20px;
}
.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-head small,.mini-stats small,.chart-heading small {
  display: block;
  font-size: 8px;
}
.dash-head strong {
  font-family: "Manrope";
  font-size: 18px;
}
.dash-head>i {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--paper);
}
.mini-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}
.mini-stats>div {
  padding: 13px;
  border: 1px solid var(--paper-shade);
  border-radius: 12px;
}
.mini-stats span {
  display: block;
  margin: 3px 0;
  font-size: 17px;
  font-weight: 700;
}
.mini-stats em {
  font-size: 7px;
  font-style: normal;
}
.chart {
  height: 125px;
  padding: 12px 15px;
  border-radius: 13px;
}
.chart-heading {
  display: flex;
  justify-content: space-between;
}
.chart-heading b {
  font-size: 9px;
}
.chart svg {
  width: 100%;
  height: 80px;
  overflow: visible;
}
.dash-list {
  display: flex;
  gap: 8px;
  margin-top: 13px;
}
.dash-list i {
  height: 8px;
  flex: 1;
  border-radius: 8px;
}
.float-card {
  position: absolute;
  z-index: 2;
  padding: 13px 16px;
  border: 1px solid var(--paper-shade);
  box-shadow: var(--shadow-sm);
}
.float-card b,.float-card small {
  display: block;
}
.float-card b {
  font-size: 11px;
}
.float-card small {
  font-size: 8px;
}
.live-card {
  padding-left: 34px;
}
.pulse {
  position: absolute;
  left: 15px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(var(--gold-rgb), .12);
}
.quality-card {
  text-align: center;
}
.quality-card b {
  color: var(--primary);
  font: 700 23px "Manrope";
}
.quality-card span {
  color: var(--muted);
  font-size: 8px;
}
.stats {
  position: relative;
  z-index: 3;
  padding-bottom: 38px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.stat {
  text-align: center;
}
.stat strong {
  display: block;
  font: 700 34px/1 "Manrope";
}
.stat span {
  display: block;
  margin-top: 8px;
}
.volume-message {
  max-width: 900px;
  margin: -22px auto 18px;
  padding: 16px 19px;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--paper-shade);
}
.volume-message>span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.volume-message p {
  margin: 0;
  font-size: 12px;
}
.volume-message a {
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.catalogue-note {
  max-width: 760px;
  margin: 0 auto 32px;
  color: var(--muted-dark);
  text-align: center;
  font-size: 10px;
}
.catalogue-note p {
  margin: 0;
}
.catalogue-note>span {
  display: none;
}
.panel-catalogue {
  grid-template-columns: repeat(4,minmax(0,1fr));
}
.catalogue-card {
  position: relative;
  min-width: 0;
  display: grid;
  overflow: hidden;
  transition: .3s;
}
.catalogue-card::before {
  content: "";
  position: absolute;
  opacity: .7;
}
.catalogue-card:hover {
  transform: translateY(-5px);
  border-color: var(--muted-light);
  box-shadow: 0 20px 44px rgba(var(--black-rgb), .11);
}
.catalogue-logo {
  place-items: center;
}
.panel-placeholder {
  color: var(--primary);
}
.catalogue-index {
  display: block;
  text-transform: uppercase;
}
.catalogue-card .btn {
  grid-column: 1/-1;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.feature-card {
  padding: 30px;
  border: 1px solid var(--border);
  transition: .3s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.icon-box {
  width: 49px;
  height: 49px;
  margin-bottom: 23px;
  display: grid;
  place-items: center;
  font: 700 15px "Manrope";
}
.feature-card h3 {
  margin: 0 0 11px;
  font: 600 21px/1.2 "Manrope";
}
.feature-card p {
  min-height: 76px;
  margin: 0 0 20px;
  font-size: 13px;
}
.feature-card a,.text-link {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}
.panel-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
}
.panel-art {
  position: relative;
  padding: 25px;
}
.panel-art::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(var(--black-rgb), .12),transparent 68%);
}
.panel-card {
  position: relative;
  border: 1px solid var(--paper-shade);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.panel-top {
  height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--paper-shade);
  font-size: 10px;
  font-weight: 700;
}
.panel-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.panel-columns {
  min-height: 315px;
  display: grid;
  grid-template-columns: 62px 1fr;
}
.panel-side {
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
}
.panel-side b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 9px;
}
.panel-side i {
  width: 20px;
  height: 8px;
  border-radius: 5px;
}
.panel-side i.active {
  height: 20px;
}
.panel-content {
  padding: 21px;
}
.panel-welcome {
  display: flex;
  justify-content: space-between;
}
.panel-welcome span {
  width: 38%;
  height: 12px;
  border-radius: 7px;
}
.panel-welcome b {
  width: 28px;
  height: 28px;
  border-radius: 9px;
}
.panel-boxes {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 9px;
  margin: 20px 0;
}
.panel-boxes i {
  height: 68px;
  padding: 11px;
  display: block;
  border: 1px solid var(--paper-shade);
  border-radius: 11px;
  font-style: normal;
}
.panel-boxes small {
  display: block;
  font-size: 7px;
}
.panel-boxes b {
  font-size: 15px;
}
.panel-graph {
  height: 125px;
  padding: 12px;
  border-radius: 12px;
}
.panel-graph svg {
  width: 100%;
  height: 100%;
}
.secure-chip {
  position: absolute;
  right: 0;
  bottom: 2px;
  padding: 12px 15px;
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--paper-shade);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.secure-chip span,.secure-chip b,.secure-chip small {
  display: block;
}
.secure-chip b {
  color: var(--text);
  font-size: 10px;
}
.secure-chip small {
  color: var(--muted);
  font-size: 7px;
}
.panel-copy h2 {
  margin-bottom: 18px;
}
.check-list {
  margin: 25px 0 27px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 25px;
  font-size: 12px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--primary);
  font-size: 9px;
}
.guidance-shell {
  border: 1px solid var(--paper-shade);
}
.guidance-intro {
  max-width: 740px;
  margin: 0 auto 42px;
  text-align: center;
}
.guidance-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
}
.guidance-icon i {
  display: none;
}
.guidance-badge {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
}
.guidance-intro h2 {
  margin: 12px 0 16px;
}
.guidance-intro>p {
  max-width: 660px;
  margin: 0 auto 24px;
}
.guidance-points {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.guidance-points::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 24px;
  height: 1px;
  background: var(--paper-shade);
}
.guidance-point {
  position: relative;
  padding: 0 10px;
  text-align: center;
}
.guidance-point-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  margin: 0 auto 17px;
  display: grid;
  place-items: center;
  border: 6px solid var(--white);
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--primary);
  font-size: 10px;
  font-weight: 800;
}
.guidance-point h3 {
  margin: 0 0 8px;
  font: 600 15px "Manrope";
}
.guidance-point p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}
.faq-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 75px;
  align-items: start;
}
.faq-intro {
  position: sticky;
  top: 110px;
}
.faq-intro h2 {
  margin-bottom: 15px;
}
.faq-intro .btn {
  margin-top: 17px;
}
.accordion {
  display: grid;
  gap: 10px;
}
.faq-item {
  overflow: hidden;
  transition: .25s;
}
.faq-item h3 {
  margin: 0;
}
.faq-item button {
  width: 100%;
  padding: 19px 20px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: transparent;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq-item button span {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--surface-soft);
  color: var(--primary);
  font-size: 17px;
}
.faq-answer {
  padding: 0 62px 18px 20px;
}
.faq-answer p {
  margin: 0;
  font-size: 12px;
}
.apps-section {
  overflow: hidden;
}
.app-card {
  width: 166px;
  height: 165px;
  padding: 15px;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(var(--black-rgb), .05);
  transition: .25s;
}
.app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.app-logo {
  height: 112px;
  padding: 8px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--white);
}
.app-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.app-card b {
  text-align: center;
  font-size: 10px;
}
.apps-note {
  text-align: center;
  font-size: 10px;
}
.cta-box {
  position: relative;
  padding: 60px 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  border: 1px solid var(--paper-shade);
  overflow: hidden;
}
.cta-box::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -100px;
  top: -150px;
  border-radius: 50%;
  background: rgba(var(--black-rgb), .09);
}
.cta-box>div {
  position: relative;
  z-index: 1;
}
.cta-box h2 {
  max-width: 680px;
}
.cta-box p {
  margin-bottom: 0;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
}
.cta-actions>a:last-child {
  font-size: 11px;
  font-weight: 700;
}
footer {
  padding: 65px 0 25px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 45px;
}
.footer-logo img {
  height: 70px;
}
.footer-grid p {
  max-width: 330px;
  font-size: 12px;
}
.footer-grid h2 {
  margin: 10px 0 17px;
  font: 600 13px "Manrope";
}
.footer-grid nav {
  display: grid;
  gap: 8px;
}
.footer-grid nav a,.footer-contact {
  font-size: 11px;
}
.footer-bottom {
  margin-top: 45px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  font-size: 10px;
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  padding: 8px 15px 8px 8px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(var(--black-rgb), .18);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(var(--black-rgb), .17);
  font-size: 11px;
  font-weight: 700;
}
.whatsapp-float span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 17px;
}
@media (max-width:1100px) {
  .desktop-nav,.nav-cta,.desktop-language {
    display: none;
  }
  .menu-toggle {
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .menu-toggle span {
    width: 18px;
    height: 2px;
    transition: .25s;
  }
  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .mobile-menu {
    display: flex;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    flex-direction: column;
    padding: 0 20px;
    transition: .35s;
  }
  .mobile-menu.open {
    max-height: 700px;
    overflow: visible;
    opacity: 1;
    padding: 14px 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }
  .mobile-menu>a:not(.btn) {
    padding: 10px 4px;
    color: var(--muted);
  }
  .mobile-menu .btn {
    margin-top: 8px;
  }
  .mobile-language {
    display: block;
    margin-top: 10px;
  }
  .mobile-language .language-toggle {
    width: 100%;
    justify-content: center;
  }
  .mobile-language .language-menu {
    position: static;
    width: 100%;
    margin-top: 7px;
  }
  .panel-catalogue {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
  .panel-grid {
    gap: 45px;
  }
}
@media (max-width:820px) {
  .section {
    padding: 82px 0;
  }
  .hero-grid,.panel-grid,.faq-layout {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    margin: auto;
  }
  .eyebrow {
    justify-content: center;
  }
  .hero-lead {
    margin-inline: auto;
  }
  .hero-visual {
    margin: auto;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .panel-catalogue {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .panel-grid {
    gap: 60px;
  }
  .panel-copy {
    text-align: center;
  }
  .check-list {
    text-align: left;
  }
  .guidance-points {
    grid-template-columns: 1fr 1fr;
    gap: 27px;
  }
  .guidance-points::before {
    display: none;
  }
  .faq-layout {
    gap: 42px;
  }
  .faq-intro {
    position: static;
    text-align: center;
  }
  .cta-box {
    padding: 46px 35px;
    flex-direction: column;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-grid>div:last-child {
    grid-column: 1/-1;
  }
}
@media (max-width:560px) {
  .container {
    width: min(calc(100% - 28px),var(--container));
  }
  .section {
    padding: 70px 0;
  }
  h1 {
    font-size: clamp(39px,12vw,53px);
    letter-spacing: -2.3px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .dash-body aside {
    padding: 14px 8px;
    gap: 15px;
  }
  .mini-stats {
    gap: 5px;
  }
  .mini-stats>div {
    padding: 8px;
  }
  .mini-stats span {
    font-size: 13px;
  }
  .mini-stats em {
    display: none;
  }
  .chart {
    height: 92px;
    padding: 8px;
  }
  .chart svg {
    height: 53px;
  }
  .float-card {
    transform: scale(.82);
  }
  .live-card {
    transform-origin: left bottom;
  }
  .quality-card {
    transform-origin: right top;
  }
  .volume-message {
    grid-template-columns: 34px 1fr;
    margin-top: -15px;
  }
  .volume-message a {
    grid-column: 2;
  }
  .panel-catalogue {
    grid-template-columns: 1fr;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .feature-card p {
    min-height: 0;
  }
  .panel-art {
    padding: 12px;
  }
  .panel-columns {
    min-height: 260px;
    grid-template-columns: 48px 1fr;
  }
  .panel-content {
    padding: 13px;
  }
  .panel-boxes {
    gap: 5px;
  }
  .panel-boxes i {
    height: 60px;
    padding: 7px;
  }
  .secure-chip {
    right: -5px;
    bottom: -17px;
  }
  .check-list {
    grid-template-columns: 1fr;
  }
  .guidance-points {
    grid-template-columns: 1fr;
  }
  .guidance-point {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 13px;
    text-align: left;
  }
  .guidance-point-icon {
    margin: 0;
  }
  .faq-item button {
    padding: 16px;
    font-size: 13px;
  }
  .faq-answer {
    padding: 0 48px 16px 16px;
  }
  .app-card {
    width: 145px;
    height: 150px;
  }
  .app-logo {
    height: 100px;
  }
  .cta-box {
    padding: 39px 20px;
  }
  .cta-actions,.cta-actions .btn {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid>div:first-child,.footer-grid>div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
  .whatsapp-float {
    right: max(14px,env(safe-area-inset-right));
    bottom: max(14px,env(safe-area-inset-bottom));
    padding: 7px;
  }
  .whatsapp-float b {
    display: none;
  }
}
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *,*::before,*::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* Ajustements ciblés : header valorisé et galerie d'applications à deux lignes */
.site-header {
  border-bottom-color: rgba(var(--black-rgb), .08);
}
.site-header.scrolled {
  border-bottom-color: rgba(var(--black-rgb), .12);
}
.nav-wrap {
  gap: 28px;
}
.hero {
  padding-top: 185px;
}
.apps-section {
  position: relative;
  padding-inline: 0;
}
.apps-section::before {
  content: "";
  position: absolute;
  pointer-events: none;
}
.apps-gallery {
  position: relative;
  gap: 18px;
}
.apps-row {
  width: 100%;
  overflow: hidden;
  padding: 7px 0;
}
.apps-ribbon {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: apps-drift-left 64s linear infinite;
}
.apps-row-reverse .apps-ribbon {
  animation-name: apps-drift-right;
  animation-duration: 74s;
}
.apps-set {
  display: flex;
  align-items: stretch;
  gap: 18px;
  padding-right: 18px;
  flex-shrink: 0;
}
.apps-row:nth-child(1) .app-card:nth-child(even),.apps-row:nth-child(2) .app-card:nth-child(odd) {
  transform: none;
}
@media (max-width:1100px) {
  .hero {
    padding-top: 158px;
  }
}
@media (max-width:560px) {
  .hero {
    padding-top: 124px;
  }
  .apps-gallery {
    gap: 11px;
    padding-bottom: 18px;
  }
  .apps-set {
    gap: 12px;
    padding-right: 12px;
  }
  .apps-ribbon {
    animation-duration: 54s;
  }
  .apps-row-reverse .apps-ribbon {
    animation-duration: 62s;
  }
}
@media (prefers-reduced-motion:reduce) {
  .apps-gallery {
    overflow-x: auto;
  }
  .apps-ribbon {
    width: auto;
    transform: none !important;
    animation: none !important;
  }
  .apps-set:first-child {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(130px,1fr));
    width: 100%;
    padding: 0;
  }
  .apps-set[aria-hidden=true] {
    display: none;
  }
  .apps-row {
    overflow: visible;
  }
  .apps-gallery .app-card {
    transform: none !important;
  }
}
/* Galerie premium sur une seule ligne */
.apps-section {
  isolation: isolate;
}
.apps-section::before {
  inset: 18% 5% 8%;
  background: radial-gradient(ellipse at center,rgba(var(--black-rgb), .1),transparent 65%);
}
.apps-gallery {
  width: min(calc(100% - 32px),1440px);
  margin-inline: auto;
  padding: 22px 0;
  display: block;
  border: 1px solid rgba(var(--black-rgb), .11);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right,transparent,var(--black) 5%,var(--black) 95%,transparent);
  mask-image: linear-gradient(to right,transparent,var(--black) 5%,var(--black) 95%,transparent);
}
.apps-gallery .apps-ribbon {
  display: flex;
  width: max-content;
  animation: apps-premium-flow 78s linear infinite;
  will-change: transform;
}
.apps-gallery .apps-set {
  display: flex;
  align-items: stretch;
  gap: clamp(12px,1.15vw,18px);
  padding-right: clamp(12px,1.15vw,18px);
  flex-shrink: 0;
}
.apps-gallery .app-card {
  width: clamp(174px,14vw,205px);
  justify-content: space-between;
  border: 1px solid rgba(var(--black-rgb), .13);
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(var(--black-rgb), .055);
  transform: none;
  transition: transform .28s ease,box-shadow .28s ease,border-color .28s ease;
}
.apps-gallery .app-logo {
  border: 1px solid rgba(var(--black-rgb), .09);
  border-radius: 16px;
}
.apps-gallery .app-logo img {
  transition: transform .28s ease;
}
.apps-gallery .app-card b {
  height: 20px;
  align-items: flex-end;
  justify-content: center;
  color: var(--slate);
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
}
.apps-gallery .app-card:hover {
  z-index: 2;
  transform: translateY(-4px);
  border-color: rgba(var(--black-rgb), .25);
  box-shadow: 0 15px 34px rgba(var(--black-rgb), .11);
}
.apps-gallery .app-card:hover .app-logo img {
  transform: scale(1.03);
}
@keyframes apps-premium-flow {
  to {
    transform: translateX(-50%);
  }
}
@media (max-width:820px) {
  .apps-gallery {
    width: calc(100% - 24px);
    padding: 18px 0;
  }
  .apps-gallery .apps-ribbon {
    animation-duration: 70s;
  }
  .apps-gallery .app-card {
    width: clamp(158px,24vw,178px);
  }
}
@media (max-width:560px) {
  .apps-gallery {
    width: calc(100% - 16px);
    padding: 14px 0;
    -webkit-mask-image: linear-gradient(to right,transparent,var(--black) 3%,var(--black) 97%,transparent);
    mask-image: linear-gradient(to right,transparent,var(--black) 3%,var(--black) 97%,transparent);
  }
  .apps-gallery .apps-ribbon {
    animation-duration: 62s;
  }
  .apps-gallery .apps-set {
    gap: 10px;
    padding-right: 10px;
  }
  .apps-gallery .app-card {
    width: 136px;
    border-radius: 17px;
  }
  .apps-gallery .app-logo {
    border-radius: 12px;
  }
  .apps-gallery .app-card b {
    height: 18px;
    font-size: 9px;
  }
  .apps-gallery .app-card:hover {
    transform: none;
  }
  .apps-gallery .app-card:hover .app-logo img {
    transform: none;
  }
}
@media (prefers-reduced-motion:reduce) {
  .apps-gallery {
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .apps-gallery .apps-ribbon {
    width: max-content;
    animation: none !important;
    transform: none !important;
  }
  .apps-gallery .apps-set:first-child {
    display: flex;
    width: auto;
    padding-right: 0;
  }
  .apps-gallery .apps-set[aria-hidden=true] {
    display: none;
  }
  .apps-gallery .app-card {
    width: clamp(136px,20vw,190px);
    transform: none !important;
  }
}
/* Sélecteur de langues : menu vertical unique */
.language-switcher {
  position: relative;
  z-index: 120;
}
.language-toggle {
  min-width: 76px;
  height: 42px;
  padding: 0 11px;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(var(--black-rgb), .16);
  border-radius: 12px;
  background: linear-gradient(180deg,var(--white),var(--paper));
  color: var(--text);
  box-shadow: 0 3px 12px rgba(var(--black-rgb), .035);
  transition: border-color .2s ease,background .2s ease,box-shadow .2s ease;
}
.language-toggle:hover,.language-switcher.open .language-toggle {
  border-color: rgba(var(--black-rgb), .3);
  background: var(--paper);
  box-shadow: 0 5px 16px rgba(var(--black-rgb), .07);
}
.language-toggle:focus-visible,.language-menu button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.language-toggle span {
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 16px;
  line-height: 1;
}
.language-toggle b {
  font-size: 11px;
  letter-spacing: .5px;
}
.language-toggle i {
  color: var(--muted-dark);
  font-size: 11px;
  line-height: 1;
  transition: transform .2s ease;
}
.language-switcher.open .language-toggle i {
  transform: rotate(180deg);
}
.language-menu {
  position: absolute;
  z-index: 1000;
  top: calc(100% + 10px);
  right: 0;
  left: auto;
  width: 224px;
  max-width: calc(100vw - 24px);
  padding: 7px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: visible;
  border: 1px solid rgba(var(--black-rgb), .14);
}
.language-menu[hidden] {
  display: none;
}
.language-menu button {
  position: relative;
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 0;
  border-radius: 10px;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 14px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background-color .18s ease,color .18s ease;
}
.language-menu button span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
}
.language-menu button b {
  min-width: 28px;
  font-size: 9px;
  letter-spacing: .7px;
  text-align: right;
}
.language-menu button.active {
  padding-right: 34px;
}
.language-menu button.active::after {
  content: "✓";
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 700;
}
@media (max-width:1100px) {
  .mobile-language {
    position: relative;
    z-index: 2;
  }
  .mobile-language .language-toggle {
    width: 100%;
    justify-content: center;
  }
  .mobile-language .language-menu {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 8px;
    max-height: min(380px,52vh);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    border-radius: 15px;
  }
  .mobile-menu.open {
    overflow-y: auto;
    max-height: calc(100vh - 94px);
  }
}
@media (max-width:560px) {
  .mobile-language .language-menu {
    max-height: min(340px,48vh);
  }
  .mobile-menu.open {
    max-height: calc(100vh - 80px);
  }
}
/* Catalogue : trois catégories et dix offres */
.panel-catalogue {
  display: block;
}
.catalogue-group+.catalogue-group {
  margin-top: 64px;
}
.catalogue-group-title {
  margin: 0 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font: 700 clamp(20px,2vw,27px)/1.2 "Manrope";
  text-align: center;
  text-transform: uppercase;
}
.catalogue-group-title::before,.catalogue-group-title::after {
  content: "";
  width: clamp(42px,7vw,90px);
}
.catalogue-group-title::after {
  transform: scaleX(-1);
}
.has-category-stats .catalogue-group-title {
  margin-bottom: 16px;
}
.category-stats {
  width: min(100%,650px);
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
}
.category-stat {
  position: relative;
  min-width: 0;
  text-align: center;
}
.category-stat+.category-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  bottom: 7px;
  width: 1px;
}
.category-stat strong {
  display: block;
  font: 700 clamp(20px,2.2vw,27px)/1 "Manrope";
  letter-spacing: -.4px;
  white-space: nowrap;
}
.category-stat strong small {
  margin-left: 2px;
  font: 700 .62em/1 "Manrope";
  vertical-align: top;
}
.category-stat span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .4px;
}
.category-stats-activation {
  width: min(100%,480px);
  grid-template-columns: repeat(2,minmax(0,1fr));
}
.category-stats-activation .category-stat strong small {
  margin-left: 6px;
  font-size: .48em;
  letter-spacing: .7px;
  text-transform: uppercase;
  vertical-align: baseline;
}
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
}
.catalogue-group:last-child .catalogue-grid {
  width: min(100%,920px);
  margin-inline: auto;
  grid-template-columns: repeat(2,minmax(0,1fr));
}
@media (max-width:820px) {
  .catalogue-group+.catalogue-group {
    margin-top: 52px;
  }
  .catalogue-grid,.catalogue-group:last-child .catalogue-grid {
    width: 100%;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 20px;
  }
  .catalogue-grid>.catalogue-card:last-child:nth-child(odd) {
    grid-column: 1/-1;
    width: min(100%,370px);
    justify-self: center;
  }
}
@media (max-width:560px) {
  .catalogue-group+.catalogue-group {
    margin-top: 44px;
  }
  .catalogue-group-title {
    margin-bottom: 20px;
    gap: 10px;
  }
  .has-category-stats .catalogue-group-title {
    margin-bottom: 14px;
  }
  .catalogue-group-title::before,.catalogue-group-title::after {
    width: 28px;
  }
  .category-stats {
    margin-bottom: 24px;
  }
  .category-stat span {
    margin-top: 5px;
    font-size: 10px;
  }
  .catalogue-grid,.catalogue-group:last-child .catalogue-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .catalogue-grid>.catalogue-card:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }
}
/* Cartes d'applications : logos seuls, contenus et centrés */
.apps-gallery .app-card {
  height: clamp(164px,14vw,192px);
  padding: clamp(14px,1.3vw,18px);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-sizing: border-box;
}
.apps-gallery .app-logo {
  width: 100%;
  height: 100%;
  padding: clamp(18px,2vw,28px);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-sizing: border-box;
}
.apps-gallery .app-logo img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.apps-gallery .app-card b {
  display: none;
}
@media (max-width:820px) {
  .apps-gallery .app-card {
    height: 158px;
    padding: 13px;
  }
  .apps-gallery .app-logo {
    height: 100%;
    padding: 20px;
  }
}
@media (max-width:560px) {
  .apps-gallery .app-card {
    height: 132px;
    padding: 10px;
  }
  .apps-gallery .app-logo {
    height: 100%;
    padding: 16px;
  }
}
/* Catalogue panels : gabarit large et lisible */
.pricing-section>.container {
  width: min(calc(100% - 48px),1420px);
}
.panel-catalogue {
  gap: 24px;
}
.catalogue-card {
  grid-template-columns: 1fr;
  align-content: start;
}
.panel-placeholder {
  font: 700 34px "Manrope";
}
.catalogue-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.catalogue-card h3 {
  width: 100%;
  font: 700 22px/1.2 "Manrope";
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}
.catalogue-card p {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.catalogue-card strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  font: 700 39px/1 "Manrope";
}
.catalogue-card strong small {
  font: 700 20px/1 "Manrope";
}
.catalogue-card .btn {
  justify-self: center;
}
@media (max-width:1100px) {
  .pricing-section>.container {
    width: min(calc(100% - 40px),1060px);
  }
  .panel-catalogue {
    gap: 20px;
  }
}
@media (max-width:820px) {
  .pricing-section>.container {
    width: min(calc(100% - 32px),780px);
  }
}
@media (max-width:560px) {
  .pricing-section>.container {
    width: min(calc(100% - 28px),520px);
  }
  .panel-catalogue {
    gap: 18px;
  }
}
/* Catalogue panels : zone d'image carrée sans recadrage */
.catalogue-logo {
  justify-self: center;
  overflow: hidden;
  box-sizing: border-box;
}
.catalogue-logo img {
  display: block;
  object-position: center;
  transform: none;
}
/* Header : proportions renforcées et dimensions stables au scroll */
.brand-logo img,.site-header.scrolled .brand-logo img {
  width: auto;
  height: 96px;
  max-width: 270px;
  object-fit: contain;
}
.desktop-nav {
  margin-left: auto;
}
.nav-cta {
  min-height: 47px;
  padding-inline: 22px;
  font-size: 13px;
}
.desktop-language {
  margin-left: 0;
  flex: 0 0 auto;
}
@media (max-width:1250px) and (min-width:1101px) {
  .brand-logo img,.site-header.scrolled .brand-logo img {
    height: 88px;
    max-width: 238px;
  }
  .nav-cta {
    padding-inline: 17px;
  }
}
@media (max-width:1100px) {
  .brand-logo img,.site-header.scrolled .brand-logo img {
    height: 76px;
    max-width: 205px;
  }
}
@media (max-width:560px) {
  .brand-logo img,.site-header.scrolled .brand-logo img {
    height: 62px;
    max-width: 168px;
  }
  .mobile-menu.open {
    max-height: calc(100vh - 84px);
  }
}
/* Header desktop : dernier ajustement de taille et d'alignement */
@media (min-width:1251px) {
  .brand-logo {
    margin-left: clamp(0px,calc((100vw - 1228px)/2),166px);
  }
  .brand-logo img,.site-header.scrolled .brand-logo img {
    height: 106px;
    max-width: 297px;
  }
}
/* Footer : logo indépendant du gabarit du header */
footer .footer-logo img {
  object-fit: contain;
}
/* Panel IPTV Pro — composition, surfaces et interactions. */
body {
  line-height: 1.75;
}
html {
  scroll-padding-top: 126px;
}
.section {
  padding-block: 100px;
}
.section-heading {
  max-width: 800px;
  margin-bottom: 44px;
}
.section-heading h2,.panel-copy h2,.faq-intro h2,.guidance-intro h2,.cta-box h2 {
  font-weight: 700;
  font-size: clamp(30px,3.6vw,46px);
  line-height: 1.16;
  letter-spacing: -1.4px;
  text-wrap: balance;
}
.section-heading p,.panel-copy>p,.faq-intro>p,.guidance-intro>p,.cta-box p {
  line-height: 1.8;
}
.kicker,.guidance-badge {
  font-size: 10px;
  letter-spacing: 1.5px;
}
.section-heading .kicker,.panel-copy .kicker,.faq-intro .kicker {
  padding: 5px 12px;
  border: 1px solid rgba(var(--gold-rgb), .22);
  border-radius: 999px;
}
.site-header.scrolled {
  border-color: rgba(var(--gold-rgb), .27);
}
.site-header .brand-logo {
  margin-left: 0;
}
.desktop-nav {
  gap: 24px;
}
.desktop-nav a {
  font-size: 12px;
  font-weight: 600;
}
.desktop-nav a::after {
  bottom: -7px;
  height: 1px;
}
.site-header .language-toggle {
  height: 40px;
}
.language-menu {
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(var(--black-rgb), .23);
}
.hero {
  min-height: 0;
  padding: 176px 0 64px;
  border-bottom: 1px solid rgba(var(--gold-rgb), .1);
}
.hero::before {
  width: 76%;
  height: 1px;
  top: auto;
  right: 12%;
  bottom: 0;
  border-radius: 0;
}
.hero::after {
  display: none;
}
.hero-grid {
  grid-template-columns: minmax(0,1fr);
  gap: 52px;
}
.hero-copy {
  max-width: 1000px;
  width: 100%;
  margin-inline: auto;
  text-align: center;
}
.eyebrow {
  padding: 6px 13px;
  letter-spacing: 1.6px;
  font-size: 10px;
  background: rgba(var(--gold-rgb), .045);
}
.hero h1 {
  max-width: 1020px;
  margin: 24px auto;
  font-size: clamp(42px,5vw,68px);
  font-weight: 800;
  line-height: 1.09;
  letter-spacing: -2.4px;
  text-wrap: balance;
}
.hero h1 em {
  font-weight: 600;
}
.hero-lead {
  max-width: 740px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.85;
  text-wrap: pretty;
}
.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-trust {
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  font-size: 11px;
}
.hero-visual {
  width: min(100%,780px);
  min-height: 378px;
  margin-inline: auto;
}
.dashboard-window {
  inset: 0 26px 14px;
  border-radius: 16px;
  transform: none;
  box-shadow: 0 28px 64px rgba(var(--black-rgb), .28);
}
.window-bar {
  height: 46px;
}
.dash-body {
  min-height: 302px;
  grid-template-columns: 58px minmax(0,1fr);
}
.dash-main {
  padding: 18px 24px;
}
.mini-stats {
  margin: 14px 0;
}
.visual-orbit {
  border-style: solid;
  border-color: rgba(var(--gold-rgb), .1);
}
.orbit-one {
  inset: -20px 0 0;
  transform: none;
  border-radius: 26px;
}
.orbit-two {
  display: none;
}
.glow-one {
  width: 350px;
  height: 200px;
  right: calc(50% - 175px);
  top: auto;
  bottom: 90px;
  background: rgba(var(--gold-rgb), .045);
}
.glow-two {
  display: none;
}
.float-card {
  border-radius: 12px;
}
.live-card {
  left: 0;
  bottom: 0;
}
.quality-card {
  right: 0;
  top: 38px;
}
.stats {
  margin-top: 0;
  padding: 0;
}
.stats-grid {
  gap: 0;
  border-bottom: 1px solid rgba(var(--gold-rgb), .15);
}
.stat {
  padding: 32px 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.stat+.stat {
  border-left: 1px solid rgba(var(--gold-rgb), .12);
}
.stat strong {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
}
.stat span {
  font-size: 11px;
}
.btn {
  min-height: 48px;
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  transition: transform .22s ease,box-shadow .22s ease,background .22s ease,border-color .22s ease;
}
.btn-ghost,.btn-light {
  background: transparent;
  box-shadow: none;
}
.volume-message {
  border-radius: 12px;
  box-shadow: none;
}
.volume-message>span {
  border-radius: 50%;
  background: rgba(var(--gold-rgb), .12);
  color: var(--gold-light);
}
.catalogue-group-title {
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 600;
}
.catalogue-group-title::before,.catalogue-group-title::after {
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(var(--gold-rgb), .3));
}
.category-stats {
  padding: 16px 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.category-stat strong {
  font-size: 24px;
}
.category-stat+.category-stat::before {
  background: rgba(var(--gold-rgb), .18);
}
.catalogue-grid {
  gap: 24px;
}
@media (min-width:821px) {
  .catalogue-group[aria-labelledby="catalogue-premium"] .catalogue-grid {
    grid-template-columns: repeat(6,minmax(0,1fr));
  }
  .catalogue-group[aria-labelledby="catalogue-premium"] .catalogue-card {
    grid-column: span 2;
  }
  .catalogue-group[aria-labelledby="catalogue-premium"] .catalogue-card:nth-child(4) {
    grid-column: 2/span 2;
  }
  .catalogue-group[aria-labelledby="catalogue-premium"] .catalogue-card:nth-child(5) {
    grid-column: 4/span 2;
  }
}
.catalogue-card {
  min-height: 0;
  padding: 18px;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  border: 1px solid var(--slate);
  box-shadow: 0 12px 30px rgba(var(--black-rgb), .17);
  color: var(--paper);
}
.catalogue-card::before {
  inset: 0 28px auto;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(var(--gold-rgb), .5),transparent);
}
.catalogue-logo {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  border: 0;
  box-shadow: inset 0 1px 0 var(--white);
}
.catalogue-logo img {
  padding: 0;
}
.catalogue-index {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
}
.catalogue-card h3 {
  margin: 6px 0 14px;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -.5px;
}
.catalogue-subtitle {
  display: block;
  margin: -10px 0 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}
.catalogue-card p {
  min-height: 30px;
  margin-bottom: 18px;
  padding: 6px 12px;
  border: 1px solid rgba(var(--gold-rgb), .28);
  font-size: 11px;
  letter-spacing: .7px;
}
.catalogue-card strong {
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -1.7px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.catalogue-card strong small {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
}
.catalogue-card .btn {
  width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  font-size: 12px;
}
.feature-card,.feature-card.featured {
  box-shadow: none;
}
.feature-card h3 {
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -.5px;
}
.feature-card p {
  line-height: 1.8;
}
.icon-box {
  border: 1px solid rgba(var(--gold-rgb), .2);
  background: rgba(var(--gold-rgb), .12);
}
.panel-section {
  border-block: 1px solid rgba(var(--gold-rgb), .1);
}
.panel-card {
  transform: none;
  border-radius: 16px;
}
.guidance-shell {
  padding: 56px;
  box-shadow: none;
}
.guidance-intro h2 {
  max-width: 660px;
  margin-inline: auto;
}
.guidance-badge {
  padding: 6px 12px;
  border: 1px solid var(--muted-light);
  border-radius: 999px;
}
.guidance-icon {
  border-radius: 50%;
}
.faq-section {
  border-block: 1px solid rgba(var(--gold-rgb), .1);
}
.faq-item {
  border: 0;
  border-bottom: 1px solid var(--slate);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.faq-item:hover,.faq-item.open {
  box-shadow: none;
}
.faq-item button {
  line-height: 1.5;
}
.apps-gallery {
  border-radius: 16px;
  box-shadow: none;
}
.cta-box {
  box-shadow: none;
}
.cta-box .kicker,.cta-actions>a:last-child {
  color: var(--gold-light);
}
.js-reveal.reveal-ready .reveal {
  transform: translateY(12px);
  transition: opacity .44s ease,transform .44s cubic-bezier(.2,.7,.2,1);
}
.js-reveal.reveal-ready .hero-visual.reveal {
  transform: translateY(12px);
}
.js-reveal.reveal-ready .reveal.visible {
  transform: none;
}
@media (hover:hover) and (pointer:fine) {
  .catalogue-card:hover,.js-reveal.reveal-ready .catalogue-card.visible:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 22px 42px rgba(var(--black-rgb), .28),0 0 24px rgba(var(--gold-rgb), .055);
  }
  .feature-card:hover,.js-reveal.reveal-ready .feature-card.visible:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 15px 32px rgba(var(--black-rgb), .17);
  }
}
@media (max-width:1100px) {
  .mobile-menu {
    border-radius: 0 0 18px 18px;
  }
  .mobile-menu.open {
    max-height: calc(100dvh - 116px);
  }
  .hero {
    padding-top: 156px;
  }
  .hero h1 {
    font-size: clamp(42px,6vw,60px);
  }
  .section {
    padding-block: 82px;
  }
  .hero.section {
    padding: 156px 0 54px;
  }
  .guidance-shell {
    padding: 42px 30px;
  }
}
@media (max-width:820px) {
  .hero-copy {
    max-width: 690px;
  }
  .hero h1 {
    letter-spacing: -1.8px;
  }
  .hero-lead {
    font-size: 15px;
    max-width: 620px;
  }
  .hero-grid {
    gap: 42px;
  }
  .stats-grid {
    grid-template-columns: repeat(4,minmax(0,1fr));
  }
  .stat {
    padding: 26px 8px;
  }
  .stat strong {
    font-size: 26px;
  }
  .stat span {
    font-size: 10px;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .feature-card p {
    min-height: 0;
  }
  .catalogue-grid,.catalogue-group:last-child .catalogue-grid {
    gap: 20px;
  }
  .catalogue-card {
    padding: 16px;
  }
  .catalogue-card h3 {
    font-size: 21px;
  }
  .catalogue-card strong {
    font-size: 44px;
  }
}
@media (max-width:560px) {
  html {
    scroll-padding-top: 104px;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .mobile-menu.open {
    max-height: calc(100dvh - 100px);
  }
  .section {
    padding-block: 64px;
  }
  .hero.section {
    padding: 116px 0 38px;
  }
  .hero-grid {
    gap: 36px;
  }
  .eyebrow {
    max-width: 100%;
    font-size: 9px;
    letter-spacing: 1.1px;
    line-height: 1.6;
  }
  .hero h1 {
    font-size: clamp(34px,8.8vw,45px);
    line-height: 1.13;
    letter-spacing: -1.25px;
    margin: 22px auto;
  }
  .hero-lead {
    font-size: 14px;
    line-height: 1.8;
  }
  .hero-actions {
    margin-top: 24px;
    gap: 10px;
  }
  .hero-trust {
    gap: 8px 16px;
    font-size: 10px;
    margin-top: 18px;
  }
  .hero-visual {
    min-height: 320px;
  }
  .dashboard-window {
    inset: 0 5px 18px;
    border-radius: 12px;
  }
  .dash-body {
    min-height: 270px;
    grid-template-columns: 40px minmax(0,1fr);
  }
  .dash-main {
    padding: 14px 10px;
  }
  .window-bar {
    height: 40px;
    padding-inline: 12px;
  }
  .dash-head strong {
    font-size: 15px;
  }
  .mini-stats>div {
    padding: 7px 5px;
  }
  .mini-stats span {
    font-size: 13px;
  }
  .orbit-one {
    inset: -10px 0 4px;
    border-radius: 20px;
  }
  .quality-card {
    top: 18px;
    right: -2px;
  }
  .live-card {
    left: 0;
    bottom: 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .stat {
    padding: 22px 8px;
  }
  .stat:nth-child(3) {
    border-left: 0;
  }
  .stat:nth-child(n+3) {
    border-top: 1px solid rgba(var(--gold-rgb), .12);
  }
  .stat strong {
    font-size: 28px;
  }
  .section-heading {
    margin-bottom: 32px;
  }
  .section-heading h2,.panel-copy h2,.faq-intro h2,.guidance-intro h2,.cta-box h2 {
    font-size: 30px;
    letter-spacing: -.8px;
  }
  .catalogue-group-title {
    font-size: 17px;
    letter-spacing: 1.2px;
  }
  .category-stat strong {
    font-size: 20px;
  }
  .category-stat span {
    font-size: 10px;
    letter-spacing: 0;
  }
  .catalogue-card {
    padding: 18px;
    gap: 20px;
  }
  .catalogue-logo {
    width: 100%;
    aspect-ratio: 4/3;
  }
  .catalogue-card h3 {
    font-size: 23px;
  }
  .catalogue-card strong {
    font-size: 46px;
  }
  .catalogue-card strong small {
    font-size: 18px;
  }
  .catalogue-card .btn {
    min-height: 48px;
  }
  .guidance-shell {
    padding: 34px 20px;
  }
  .cta-box {
    padding: 36px 22px;
  }
}
@media (hover:none) {
  .btn:hover,.catalogue-card:hover,.feature-card:hover,.apps-gallery .app-card:hover {
    transform: none;
  }
}
@media (prefers-reduced-motion:reduce) {
  .js-reveal.reveal-ready .reveal,.js-reveal.reveal-ready .hero-visual.reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }
  .btn,.catalogue-card,.feature-card {
    transition: none !important;
  }
}
.js-reveal.reveal-ready .catalogue-card.reveal,.js-reveal.reveal-ready .feature-card.reveal {
  transition: opacity .44s ease,transform .3s cubic-bezier(.2,.7,.2,1),border-color .25s ease,box-shadow .25s ease;
}
@media (prefers-reduced-motion:reduce) {
  .js-reveal.reveal-ready .catalogue-card.reveal,.js-reveal.reveal-ready .feature-card.reveal {
    transition: none !important;
  }
}
/* Zone logo : cadre stable, image entière sans recadrage. */
.catalogue-logo {
  position: relative;
  display: block;
  padding: 0;
}
.catalogue-logo img {
  position: absolute;
  inset: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  max-width: none;
  max-height: none;
  object-fit: contain;
}
/* Header ouvert : logo agrandi, sans cadre flottant. */
.site-header,.site-header.scrolled {
  inset: 0 0 auto;
  border: 0;
  border-radius: 0;
  backdrop-filter: blur(10px);
  box-shadow: none;
}
.site-header.scrolled {
  box-shadow: none;
}
.site-header .nav-wrap {
  width: min(calc(100% - 40px),var(--container));
  gap: 26px;
}
.site-header .brand-logo img,.site-header.scrolled .brand-logo img {
  object-fit: contain;
}
@media (max-width:1100px) {
  .site-header .nav-wrap {
    width: calc(100% - 40px);
  }
  .site-header .mobile-menu {
    border-radius: 0;
  }
  .site-header .mobile-menu.open {
    max-height: calc(100dvh - 98px);
    box-shadow: 0 10px 18px rgba(var(--black-rgb), .12);
  }
}
@media (max-width:560px) {
  .site-header,.site-header.scrolled {
    inset: 0 0 auto;
    border-radius: 0;
  }
  .site-header .nav-wrap {
    width: calc(100% - 28px);
    gap: 18px;
  }
  .site-header .mobile-menu.open {
    max-height: calc(100dvh - 88px);
  }
}
/* Corrections techniques : petits écrans et navigation clavier. */
.apps-gallery.is-paused .apps-ribbon,.apps-gallery:hover .apps-ribbon,.apps-gallery:focus-within .apps-ribbon {
  animation-play-state: paused;
}
@media (max-width:560px) {
  .hero h1,.section-heading h2,.panel-copy h2,.faq-intro h2,.guidance-intro h2,.cta-box h2 {
    overflow-wrap: anywhere;
  }
  .panel-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .panel-columns {
    grid-template-columns: 48px minmax(0,1fr);
  }
  .panel-boxes,.mini-stats {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
  .panel-boxes small,.mini-stats small {
    overflow-wrap: anywhere;
  }
  .category-stat strong {
    font-size: clamp(16px,6vw,20px);
  }
}
/* Identité finale : noir, anthracite et or. Les couleurs sont définies en tête. */
body {
  background: var(--ink);
}
body::before {
  background: none;
}
.hero h1, .section-heading h2, .panel-copy h2, .faq-intro h2 {
  color: var(--paper);
}
.hero-lead, .section-heading p, .panel-copy > p, .faq-intro > p, .apps-note {
  color: var(--muted-light);
}
.hero-trust, .check-list li {
  color: var(--paper-shade);
}
.section-heading .kicker, .panel-copy .kicker, .faq-intro .kicker, .panel-copy .text-link {
  color: var(--gold);
}
.section-heading .kicker, .panel-copy .kicker, .faq-intro .kicker {
  border-color: var(--card-border);
  background: rgba(var(--gold-rgb), .04);
}
.site-header, .site-header.scrolled {
  height: 160px;
  background: var(--header-bg);
  border-bottom: 1px solid var(--card-border);
}
.site-header .brand-logo img, .site-header.scrolled .brand-logo img {
  height: auto;
  width: 174px;
  max-width: none;
  filter: drop-shadow(0 2px 8px rgba(var(--gold-rgb), .12));
}
.desktop-nav a, .mobile-menu > a:not(.btn) {
  color: var(--paper-shade);
}
.desktop-nav a:hover, .mobile-menu > a:not(.btn):hover {
  color: var(--gold-light);
}
.site-header .language-toggle, .site-header .language-toggle:hover, .site-header .language-switcher.open .language-toggle {
  color: var(--paper);
  background: var(--anthracite);
  border-color: var(--card-border);
  border-radius: 10px;
}
.site-header .language-toggle span, .site-header .language-toggle i {
  color: var(--gold);
}
.mobile-menu {
  background: var(--ink);
}
.menu-toggle {
  border-color: var(--card-border);
  background: var(--anthracite);
}
.menu-toggle span {
  background: var(--paper);
}
.language-menu {
  background: var(--anthracite);
  border-color: var(--card-border);
}
.language-menu button, .language-menu button b {
  color: var(--paper-shade);
}
.language-menu button:hover, .language-menu button.active {
  background: var(--slate);
  color: var(--gold-light);
}
.language-menu button.active b, .language-menu button.active::after {
  color: var(--gold);
}
.hero {
  background: radial-gradient(ellipse at 75% 45%, rgba(var(--gold-rgb), .065), transparent 55%), linear-gradient(135deg, var(--ink), var(--anthracite));
}
.hero h1 em {
  background-image: linear-gradient(110deg, var(--gold-light), var(--gold));
}
.eyebrow {
  color: var(--gold-light);
  border-color: var(--card-border);
  border-radius: 6px;
}
.hero::before {
  background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
}
.btn {
  border-radius: 9px;
}
.btn-primary {
  color: var(--ink);
  border-color: var(--gold);
  background: linear-gradient(115deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 20px rgba(var(--black-rgb), .18);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 24px rgba(var(--gold-rgb), .15);
}
.btn-ghost, .btn-light {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}
.hero .btn-ghost, .faq-intro .btn {
  color: var(--paper);
  border-color: var(--card-border);
  background: transparent;
}
.hero .btn-ghost:hover, .faq-intro .btn:hover {
  background: rgba(var(--gold-rgb), .09);
  border-color: var(--gold);
}
.stats {
  background: var(--ink);
}
.stat strong {
  color: var(--gold-light);
}
.stat span {
  color: var(--muted-light);
}
.pricing-section, .guidance-section {
  background: var(--ink);
}
.catalogue-group-title {
  color: var(--paper);
}
.category-stat strong {
  color: var(--paper);
}
.category-stat strong small {
  color: var(--gold);
}
.category-stat span {
  color: var(--muted-light);
}
.volume-message {
  background: var(--anthracite);
  border-color: var(--card-border);
}
.volume-message p {
  color: var(--muted-light);
}
.volume-message strong {
  color: var(--paper);
}
.volume-message a, .volume-message > span {
  color: var(--gold-light);
}
.catalogue-card {
  border-radius: 14px;
  border-color: var(--card-border);
  background: linear-gradient(150deg, var(--anthracite), var(--ink));
}
.catalogue-logo {
  border-radius: 8px;
  background: linear-gradient(135deg, var(--white), var(--paper-shade));
}
.catalogue-card h3, .catalogue-card strong {
  color: var(--paper);
}
.catalogue-index, .catalogue-subtitle, .catalogue-card strong small {
  color: var(--muted-light);
}
.catalogue-card p {
  color: var(--gold-light);
  background: rgba(var(--gold-rgb), .06);
  border-color: var(--card-border);
  border-radius: 5px;
}
.feature-card, .feature-card.featured {
  background: var(--anthracite);
  border-color: var(--card-border);
  border-radius: 14px;
}
.feature-card h3 {
  color: var(--paper);
}
.feature-card p {
  color: var(--muted-light);
}
.feature-card a, .icon-box {
  color: var(--gold-light);
}
.icon-box {
  border-radius: 10px;
}
.panel-section, .faq-section, .apps-section, .final-cta {
  background: var(--anthracite);
}
.dashboard-window, .panel-card {
  background: var(--anthracite);
  color: var(--paper);
  border-color: var(--card-border);
}
.window-bar, .panel-top {
  background: var(--slate);
  border-color: var(--card-border);
}
.dash-body aside, .panel-side {
  background: var(--ink);
}
.dash-body aside b, .panel-side b {
  background: var(--slate);
  color: var(--gold-light);
}
.dash-body aside span, .panel-side i, .window-actions i, .dash-head > i, .dash-list i, .panel-welcome span, .panel-welcome b {
  background: var(--slate);
}
.dash-body aside span.active, .panel-side i.active, .panel-top i, .pulse {
  background: var(--gold);
}
.mini-stats > div, .panel-boxes i {
  border-color: var(--card-border);
  background: var(--anthracite);
  box-shadow: none;
}
.dash-head small, .mini-stats small, .chart-heading small, .panel-boxes small {
  color: var(--muted-light);
}
.mini-stats em {
  color: var(--gold);
}
.chart, .panel-graph {
  color: var(--gold);
  background: linear-gradient(180deg, rgba(var(--gold-rgb), .06), transparent);
}
.product-mark {
  color: var(--ink);
  background: var(--gold);
}
.float-card, .secure-chip {
  background: var(--paper);
  border-color: var(--paper-shade);
  color: var(--gold-deep);
}
.float-card b {
  color: var(--ink);
}
.float-card small {
  color: var(--muted-dark);
}
.guidance-shell {
  border-radius: 16px;
  background: linear-gradient(130deg, var(--paper), var(--paper-shade));
  border-color: var(--paper-shade);
}
.guidance-icon {
  background: var(--gold-deep);
  color: var(--white);
}
.guidance-badge {
  border-color: var(--card-border);
}
.faq-item {
  border-color: var(--card-border);
}
.faq-item button {
  color: var(--paper);
}
.faq-answer, .faq-answer p {
  color: var(--muted-light);
}
.faq-item:hover, .faq-item.open {
  background: rgba(var(--gold-rgb), .04);
  border-color: var(--gold-deep);
}
.apps-gallery {
  border-color: var(--card-border);
  background: rgba(var(--black-rgb), .1);
}
.apps-gallery .app-card, .apps-gallery .app-logo {
  background: var(--paper);
  border-color: var(--paper-shade);
}
.cta-box {
  border-radius: 16px;
  border-color: var(--gold-deep);
  background: radial-gradient(ellipse at 0 0, rgba(var(--gold-rgb), .09), transparent 60%), var(--ink);
}
.cta-box h2 {
  color: var(--paper);
}
.cta-box p {
  color: var(--muted-light);
}
.cta-box .kicker, .cta-actions > a:last-child {
  color: var(--gold-light);
}
footer {
  background: var(--ink);
  color: var(--paper);
  border-top-color: var(--card-border);
}
footer .footer-logo {
  margin-left: 0;
}
footer .footer-logo img {
  width: 160px;
  height: auto;
  max-width: 100%;
}
.footer-grid p, .footer-grid nav a, .footer-bottom {
  color: var(--muted-light);
}
.footer-grid h2 {
  color: var(--paper);
}
.footer-contact, .footer-grid a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  border-color: var(--card-border);
}
.whatsapp-float {
  background: var(--anthracite);
  border-color: var(--card-border);
  color: var(--paper);
}
.whatsapp-float span {
  color: var(--ink);
  background: var(--gold);
}
a:focus-visible, button:focus-visible, .apps-gallery:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
@media (min-width: 1251px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 52px;
  }
  .hero-copy {
    text-align: left;
  }
  .hero h1 {
    font-size: clamp(42px, 3.7vw, 56px);
    letter-spacing: -1.7px;
  }
  .hero-actions, .hero-trust {
    justify-content: flex-start;
  }
  .hero-trust {
    gap: 12px 20px;
  }
  .hero-visual {
    min-height: 378px;
  }
}
@media (max-width: 1100px) {
  .site-header, .site-header.scrolled {
    height: 140px;
  }
  .site-header .brand-logo img, .site-header.scrolled .brand-logo img {
    width: 151px;
    height: auto;
  }
  .site-header .mobile-menu.open {
    max-height: calc(100dvh - 140px);
  }
  html {
    scroll-padding-top: 126px;
  }
}
@media (max-width: 560px) {
  .site-header, .site-header.scrolled {
    height: 124px;
  }
  .site-header .brand-logo img, .site-header.scrolled .brand-logo img {
    width: 134px;
    height: auto;
  }
  .site-header .mobile-menu.open {
    max-height: calc(100dvh - 124px);
  }
  .hero.section {
    padding-top: 136px;
  }
  html {
    scroll-padding-top: 114px;
  }
  footer .footer-logo img {
    width: 132px;
  }
}
/* Aligner le dessin du logo sur le titre, en compensant sa marge transparente. */
@media (min-width: 1101px) {
  .site-header .brand-logo {
    transform: translateX(-8.23px);
  }
}
@media (min-width: 1101px) and (max-width: 1250px) {
  .site-header .nav-wrap {
    width: min(calc(100% - 40px),1000px);
  }
}

/* Personnalité Panel IPTV Pro : composition, cartes et rythme des sections. */
.hero.section {
  padding-bottom: 88px;
  background: radial-gradient(ellipse at 82% 38%, rgba(var(--gold-rgb), .08), transparent 42%), linear-gradient(115deg, var(--ink) 38%, var(--anthracite));
}
.hero .eyebrow {
  padding: 4px 0 4px 14px;
  border: 0;
  border-left: 2px solid var(--gold);
  border-radius: 0;
  background: transparent;
  letter-spacing: 2px;
}
.hero .eyebrow > span { display: none; }
.hero h1 {
  max-width: none;
  margin-block: 28px 24px;
  font-size: clamp(54px, 5.6vw, 80px);
  line-height: 1.03;
  letter-spacing: -2.8px;
  text-wrap: balance;
}
.hero h1 em { font-weight: 500; }
.hero-lead { max-width: 510px; font-size: 17px; line-height: 1.75; }
.hero-actions { margin-top: 34px; }
.hero-trust { padding-top: 8px; }
.hero-visual { min-height: 400px; }
.hero-visual .dashboard-window {
  inset: 24px 18px 16px;
  transform: rotate(-2deg);
  border-radius: 22px 8px 22px 8px;
  border-color: rgba(var(--gold-rgb), .35);
  box-shadow: 12px 22px 0 -10px rgba(var(--gold-rgb), .06), 0 30px 70px rgba(var(--black-rgb), .3);
}
.hero-visual .window-bar { background: var(--ink); }
.hero-visual .window-actions i:first-child { background: var(--gold-deep); }
.hero-visual .mini-stats > div { border: 0; border-bottom: 1px solid var(--card-border); border-radius: 0; background: transparent; }
.hero-visual .chart { border-radius: 4px; background: linear-gradient(180deg, transparent, rgba(var(--gold-rgb), .08)); }
.hero-visual .orbit-one { inset: -16px 4% -12px; border-radius: 50%; border-style: solid; border-color: rgba(var(--gold-rgb), .1); }
.hero-visual .quality-card { right: 0; top: 4px; background: var(--gold-light); border: 0; border-radius: 14px 4px; }
.hero-visual .live-card { bottom: 0; left: 8px; border-radius: 4px 14px; }
.stats { padding-block: 10px 18px; }
.stats-grid { border-block: 1px solid var(--card-border); border-bottom-color: transparent; }
.stat strong { font-weight: 600; }
.pricing-section { background: linear-gradient(180deg, var(--ink), var(--anthracite)); }
.pricing-section > .container { width: min(calc(100% - 48px), 1280px); }
.pricing-section .section-heading { display: grid; grid-template-columns: 1.15fr 1fr; gap: 12px 64px; max-width: none; text-align: left; align-items: end; margin-bottom: 40px; }
.pricing-section .section-heading .kicker { grid-column: 1 / -1; justify-self: start; margin: 0; }
.pricing-section .section-heading p { max-width: 480px; margin: 0; }
.volume-message { max-width: none; margin: 0 0 42px; border: 0; border-left: 2px solid var(--gold-deep); border-radius: 0; background: rgba(var(--white-rgb), .025); }
.catalogue-group + .catalogue-group { margin-top: 76px; }
.catalogue-group-title { justify-content: flex-start; gap: 14px; font-size: 17px; letter-spacing: 2.5px; }
.catalogue-group-title::before { width: 24px; height: 2px; background: var(--gold); }
.catalogue-group-title::after { flex: 1; width: auto; background: linear-gradient(90deg, var(--card-border), transparent); transform: none; }
.category-stats { margin-bottom: 28px; }
.catalogue-card {
  isolation: isolate;
  padding: 18px;
  gap: 24px;
  border: 1px solid rgba(var(--gold-rgb), .2);
  border-radius: 28px 8px 28px 8px;
  background: linear-gradient(145deg, var(--slate), var(--anthracite) 45%, var(--ink));
  box-shadow: 0 10px 28px rgba(var(--black-rgb), .2), inset 0 1px 0 rgba(var(--white-rgb), .035);
}
.catalogue-card::before { inset: 0 32px auto; height: 2px; background: linear-gradient(90deg, var(--gold-deep), var(--gold-light), transparent); opacity: .65; }
.catalogue-card::after { content: ''; position: absolute; z-index: -1; inset: 0; pointer-events: none; border-radius: inherit; background: radial-gradient(ellipse at 90% 0%, rgba(var(--gold-rgb), .14), transparent 60%); opacity: 0; transition: opacity .35s ease; }
.catalogue-logo { width: 100%; max-width: none; aspect-ratio: 16 / 10; border-radius: 16px 4px 16px 4px; background: linear-gradient(140deg, var(--white), var(--paper-shade)); }
.catalogue-logo img { inset: 24px; width: calc(100% - 48px); height: calc(100% - 48px); }
.catalogue-copy { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-content: start; align-items: center; gap: 6px 12px; text-align: left; }
.catalogue-index, .catalogue-card h3, .catalogue-subtitle { grid-column: 1 / -1; }
.catalogue-index { font-size: 8px; letter-spacing: 2px; color: var(--gold); }
.catalogue-card h3 { margin: 2px 0 12px; font-size: 25px; text-align: left; }
.catalogue-subtitle { margin: -12px 0 12px; text-align: left; font-size: 14px; }
.catalogue-card p { margin: 0; justify-self: start; gap: 4px; padding: 6px 9px; font-size: 10px; letter-spacing: .2px; }
.catalogue-card strong { justify-content: flex-end; gap: 4px; font-size: 40px; letter-spacing: -1.5px; white-space: nowrap; }
.catalogue-card strong small { font-size: 18px; }
.catalogue-card .order-btn { max-width: none; border-radius: 6px 6px 16px 6px; min-height: 48px; }
.catalogue-card:focus-within { border-color: var(--gold); box-shadow: 0 16px 36px rgba(var(--black-rgb), .28); }
.catalogue-card:focus-within::after { opacity: 1; }
#avantages { background: var(--ink); }
#avantages .section-heading { max-width: 680px; margin-left: 0; text-align: left; }
#avantages .section-heading p { margin-left: 0; }
.benefit-grid { gap: 32px; align-items: start; }
.feature-card, .feature-card.featured { padding: 32px 22px; border: 0; border-top: 1px solid var(--card-border); border-radius: 0; background: transparent; box-shadow: none; }
.feature-card.featured { border-radius: 0 0 32px 0; background: linear-gradient(145deg, rgba(var(--gold-rgb), .08), transparent); }
.feature-card .icon-box { background: transparent; border: 0; padding: 0; width: auto; justify-content: start; height: 28px; font-size: 21px; }
.feature-card a, .text-link { text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 6px; transition: color .2s ease, text-decoration-color .2s ease; }
.feature-card a:hover, .text-link:hover { color: var(--gold-light); text-decoration-color: var(--gold); }
.panel-section { background: radial-gradient(ellipse at 80% 45%, rgba(var(--gold-rgb), .05), transparent 50%), var(--anthracite); border-block: 1px solid var(--card-border); }
.panel-copy h2 { max-width: 480px; }
.panel-card { border-radius: 8px 28px; box-shadow: 20px 20px 0 -8px var(--ink), 20px 20px 0 -7px var(--card-border); }
.panel-art::before { border-radius: 0; background: none; }
.check-list { gap: 14px; }
.guidance-section { background: var(--ink); }
.guidance-shell { display: grid; grid-template-columns: .95fr 1.05fr; align-items: start; gap: 76px; padding: 0; border: 0; border-radius: 0; background: none; box-shadow: none; }
.guidance-intro { margin: 0; text-align: left; }
.guidance-icon { display: none; }
.guidance-badge { display: inline-block; padding: 0 0 0 14px; border: 0; border-left: 2px solid var(--gold); border-radius: 0; color: var(--gold); }
.guidance-intro h2 { margin: 22px 0; color: var(--paper); }
.guidance-intro > p { color: var(--muted-light); margin-bottom: 28px; }
.guidance-points { display: grid; grid-template-columns: 1fr; gap: 0; }
.guidance-points::before { display: none; }
.guidance-point { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 22px; padding: 24px 0; border-bottom: 1px solid var(--card-border); text-align: left; }
.guidance-point:first-child { padding-top: 0; }
.guidance-point:last-child { border-bottom: 0; }
.guidance-point-icon { width: 44px; height: 44px; margin: 0; border: 1px solid var(--card-border); border-radius: 50%; background: rgba(var(--gold-rgb), .04); color: var(--gold-light); font-size: 12px; }
.guidance-point h3 { color: var(--paper); font-size: 17px; }
.guidance-point p { color: var(--muted-light); font-size: 13px; line-height: 1.75; }
.faq-section { background: var(--anthracite); }
.faq-layout { gap: 84px; }
.faq-item { border-radius: 8px; border: 1px solid transparent; border-bottom-color: var(--card-border); }
.faq-item.open { border-color: var(--card-border); background: var(--ink); }
.faq-item button span { border-radius: 50%; background: rgba(var(--gold-rgb), .08); color: var(--gold-light); }
.apps-section { background: var(--ink); }
.apps-section .section-heading { max-width: 900px; }
.apps-gallery { border: 0; border-radius: 0; background: transparent; }
.apps-gallery .app-card { border-radius: 20px 6px; }
.final-cta { background: var(--ink); padding-top: 24px; }
.cta-box { width: min(calc(100% - 40px), 1100px); padding: 58px; border: 0; border-left: 3px solid var(--gold); border-radius: 0 36px 36px 0; background: radial-gradient(ellipse at 100% 0, rgba(var(--gold-rgb), .09), transparent 60%), var(--anthracite); }
.btn { transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease; }
.btn > span[aria-hidden] { display: inline-block; transition: transform .25s ease; }
@media (min-width: 821px) {
  .panel-copy { order: -1; }
  .feature-card.featured { margin-top: 24px; }
}
@media (min-width: 1251px) {
  .hero-grid { grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr); gap: 56px; }
  .hero-lead { margin-left: 0; }
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .catalogue-card:hover, .js-reveal.reveal-ready .catalogue-card.visible:hover { transform: translateY(-6px) scale(1.012); border-color: rgba(var(--gold-rgb), .65); box-shadow: 0 24px 44px rgba(var(--black-rgb), .3), 0 0 28px rgba(var(--gold-rgb), .065); }
  .catalogue-card:hover::after { opacity: 1; }
  .catalogue-card:hover .order-btn { background: var(--gold-light); box-shadow: 0 5px 18px rgba(var(--gold-rgb), .12); }
  .btn:hover { transform: translateY(-2px); }
  .btn:hover > span[aria-hidden] { transform: translateX(3px); }
  .btn:active { transform: translateY(0) scale(.985); }
}
@media (max-width: 1100px) {
  .hero.section { padding-bottom: 64px; }
  .hero h1 { font-size: clamp(52px, 7vw, 72px); }
  .hero-visual { width: min(100%, 660px); }
  .pricing-section .section-heading { gap: 12px 32px; }
  .guidance-shell { gap: 40px; }
  .faq-layout { gap: 40px; }
}
@media (max-width: 820px) {
  .pricing-section > .container { width: calc(100% - 32px); }
  .pricing-section .section-heading { grid-template-columns: 1fr; gap: 16px; }
  .pricing-section .section-heading p { max-width: 620px; }
  .guidance-shell { grid-template-columns: 1fr; gap: 40px; }
  .guidance-intro { max-width: 620px; }
  .guidance-points { max-width: 620px; width: 100%; }
  .benefit-grid { gap: 12px; }
  .feature-card, .feature-card.featured { padding: 26px 20px; }
  .panel-copy h2 { margin-inline: auto; }
  .cta-box { padding: 42px 32px; }
}
@media (max-width: 560px) {
  .hero.section { padding-top: 154px; padding-bottom: 44px; }
  .hero h1 { font-size: clamp(40px, 10.8vw, 58px); line-height: 1.08; letter-spacing: -1.7px; margin-block: 24px 20px; }
  .hero-lead { font-size: 15px; }
  .hero .eyebrow { font-size: 9px; letter-spacing: 1.3px; }
  .hero-actions { margin-top: 26px; }
  .hero-visual { min-height: 330px; }
  .hero-visual .dashboard-window { inset: 16px 9px 16px; transform: rotate(-1deg); border-radius: 16px 6px; }
  .hero-visual .orbit-one { inset: -6px 2px; }
  .hero-visual .quality-card { top: 2px; }
  .hero-visual .live-card { left: 0; bottom: 0; }
  .pricing-section > .container { width: calc(100% - 28px); }
  .catalogue-group + .catalogue-group { margin-top: 52px; }
  .catalogue-group-title { font-size: 15px; letter-spacing: 1.3px; }
  .catalogue-card { padding: 16px; gap: 22px; }
  .catalogue-logo img { inset: 20px; width: calc(100% - 40px); height: calc(100% - 40px); }
  .catalogue-card strong { font-size: 36px; }
  .guidance-point { gap: 14px; }
  .cta-box { width: calc(100% - 28px); padding: 36px 24px; border-radius: 0 24px 24px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .catalogue-card, .catalogue-card::after, .btn, .btn > span[aria-hidden] { transition: none !important; }
  .catalogue-card:hover, .js-reveal.reveal-ready .catalogue-card.visible:hover, .btn:hover, .btn:active, .btn:hover > span[aria-hidden] { transform: none !important; }
}

/* Discreet, persistent playback control; reduced motion remains authoritative. */
.apps-motion-toggle {
  display: block;
  margin: 16px auto 0;
  padding: 8px 14px;
  max-width: 100%;
  border: 1px solid rgba(var(--gold-rgb), .4);
  border-radius: 999px;
  background: transparent;
  color: var(--gold-light);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}
.apps-motion-toggle:hover { border-color: var(--gold); }
.apps-motion-toggle[hidden] { display: none; }
.hero-visual .quality-card span { font-size: 9px; color: var(--ink); }
