:root {
  --orange: #e8531a;
  --orange-dark: #c84414;
  --steel: #2b3a4a;
  --steel-deep: #17212c;
  --paper: #f4f6f8;
  --muted: #6d7783;
  --border: #dfe4e8;
  --white: #fff;
  --black: #000;
  --header-height: 80px;
  font-family: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--steel);
  background: #fff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: #fff;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 1rem;
  top: 1rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-solid,
.site-header.is-open {
  color: var(--steel);
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(43, 58, 74, 0.08);
  box-shadow: 0 12px 30px rgba(19, 29, 39, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-dark {
  background: rgba(0, 0, 0, 0.94);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.header-inner {
  width: min(100%, 1600px);
  height: var(--header-height);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand img {
  width: auto;
  height: 48px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.desktop-nav > a,
.catalogue-trigger {
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  border: 0;
  border-radius: 0.6rem;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.catalogue-trigger:hover,
.catalogue-menu:focus-within .catalogue-trigger {
  color: var(--orange);
  background: rgba(232, 83, 26, 0.08);
}

.catalogue-trigger i {
  font-size: 1rem;
  transition: transform 0.18s ease;
}

.catalogue-menu {
  position: relative;
}

.catalogue-menu:hover .catalogue-trigger i,
.catalogue-menu:focus-within .catalogue-trigger i {
  transform: rotate(180deg);
}

.catalogue-popover {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.25rem);
  width: max-content;
  min-width: 210px;
  padding: 0.5rem;
  display: grid;
  gap: 0.2rem;
  border: 1px solid rgba(43, 58, 74, 0.1);
  border-radius: 0.8rem;
  background: #fff;
  color: var(--steel);
  box-shadow: 0 16px 36px rgba(18, 27, 36, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -0.35rem);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.catalogue-popover a {
  padding: 0.7rem 0.8rem;
  border-radius: 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.catalogue-menu:hover .catalogue-popover,
.catalogue-menu:focus-within .catalogue-popover {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.language-picker {
  position: relative;
}

.language-button,
.menu-button {
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.language-button {
  min-height: 42px;
  padding: 0 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 0.65rem;
  font-weight: 800;
}

.language-button:hover {
  background: rgba(127, 127, 127, 0.12);
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  width: 170px;
  padding: 0.45rem;
  display: none;
  gap: 0.15rem;
  border: 1px solid rgba(43, 58, 74, 0.1);
  border-radius: 0.75rem;
  color: var(--steel);
  background: #fff;
  box-shadow: 0 16px 36px rgba(18, 27, 36, 0.16);
}

.language-menu.is-open {
  display: grid;
}

.language-menu button {
  width: 100%;
  padding: 0.7rem;
  border: 0;
  border-radius: 0.5rem;
  color: inherit;
  background: transparent;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button.is-active {
  color: var(--orange);
  background: rgba(232, 83, 26, 0.08);
}

.client-button {
  min-height: 43px;
  padding: 0 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease;
}

.client-button:hover {
  color: #fff;
  background: var(--orange);
}

.menu-button,
.mobile-nav {
  display: none;
}

.button {
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-orange {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(232, 83, 26, 0.28);
}

.button-orange:hover {
  background: var(--orange-dark);
}

.button-white {
  color: #111;
  background: #fff;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.button-dark {
  color: #fff;
  background: var(--steel);
}

.button-block {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 2rem) 1.5rem 2rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #000;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.hero-copy {
  width: min(100%, 900px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: none;
}

.hero h1,
.page-hero h1,
.section-heading h2 {
  margin: 0;
  letter-spacing: -0.045em;
}

.hero h1 {
  width: 100%;
  max-width: 768px;
  font-size: clamp(2.35rem, 3.2vw, 3.2rem);
  line-height: 1.03;
  font-weight: 900;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-copy > p:not(.eyebrow) {
  width: 100%;
  max-width: 650px;
  margin: 1.35rem auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.55;
}

.hero .hero-actions,
.hero .app-badges {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hero .hero-actions {
  margin-right: 0.75rem;
}

.hero .button,
.store-badge {
  min-height: 52px;
  border-radius: 999px;
}

.store-badge {
  padding: 0.55rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.store-badge i {
  font-size: 1.55rem;
}

.section {
  padding: clamp(4.5rem, 8vw, 8rem) 1.5rem;
}

.section-soft {
  background: var(--paper);
}

.section-dark {
  color: #fff;
  background: var(--steel);
}

.container {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 900;
}

.section-heading p {
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.67);
}

.feature-grid,
.difference-grid,
.brand-grid,
.contact-info-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.difference-card,
.contact-info-card {
  padding: 1.6rem;
  border: 1px solid rgba(43, 58, 74, 0.1);
  border-radius: 1.15rem;
  background: #fff;
}

.feature-card i,
.difference-card i,
.contact-info-card i {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(232, 83, 26, 0.1);
  font-size: 1.5rem;
}

.feature-card h3,
.difference-card h3,
.contact-info-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.feature-card p,
.difference-card p,
.contact-info-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.split-visual {
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--steel);
}

.split-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.split-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.split-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.comparison-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 1.25rem;
  background: var(--paper);
}

.comparison-card.idmp {
  color: #fff;
  background: var(--steel);
}

.comparison-card h3 {
  margin-top: 0;
}

.check-list {
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  line-height: 1.45;
}

.check-list i {
  color: var(--orange);
}

.difference-grid {
  grid-template-columns: repeat(3, 1fr);
}

.brand-grid {
  grid-template-columns: repeat(4, 1fr);
}

.brand-card {
  min-height: 110px;
  padding: 1rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(43, 58, 74, 0.1);
  border-radius: 1rem;
  background: #fff;
}

.brand-card img {
  width: 100%;
  height: 68px;
  object-fit: contain;
}

.price-banner {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 1.5rem;
  color: #fff;
  background: var(--steel);
  text-align: center;
}

.price-banner strong {
  display: block;
  color: var(--orange);
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.cta-panel {
  padding: clamp(2.5rem, 6vw, 5rem);
  border-radius: 1.5rem;
  color: #fff;
  background: linear-gradient(135deg, var(--steel-deep), var(--steel));
  text-align: center;
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.cta-panel p {
  max-width: 620px;
  margin: 1rem auto 1.7rem;
  color: rgba(255, 255, 255, 0.7);
}

.catalogue-page {
  min-height: 100svh;
  padding-top: var(--header-height);
  color: #fff;
  background: #000;
}

.catalogue-columns {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.catalogue-column {
  position: relative;
  min-height: inherit;
  padding: clamp(2rem, 5vw, 5rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.catalogue-column + .catalogue-column {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.catalogue-column::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 65%, rgba(0, 0, 0, 0.3) 100%);
}

.catalogue-column > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.catalogue-column:hover > img {
  transform: scale(1.035);
}

.catalogue-column-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.catalogue-column h1,
.catalogue-column h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.catalogue-column p {
  max-width: 460px;
  margin: 1rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.73);
  line-height: 1.6;
}

.stock-count {
  margin-bottom: 1rem;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero {
  padding: calc(var(--header-height) + 4.5rem) 1.5rem 5rem;
  color: #fff;
  background: var(--steel);
  text-align: center;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  line-height: 1;
  font-weight: 900;
}

.page-hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.page-hero p {
  max-width: 700px;
  margin: 1.3rem auto 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.contact-hero {
  min-height: 100svh;
  padding: calc(var(--header-height) + 3rem) 1.5rem 3rem;
  display: grid;
  place-items: center;
  color: #fff;
  background-image: linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)), url("https://res.cloudinary.com/dupnzef51/image/upload/v1778778634/1_nknknl.jpg");
  background-position: center;
  background-size: cover;
  text-align: center;
}

.contact-hero h1 {
  max-width: 880px;
  margin: 0 auto;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.contact-hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.contact-hero p {
  max-width: 620px;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.contact-hero .hero-actions {
  justify-content: center;
}

.contact-meta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.1rem 1.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.contact-meta a,
.contact-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-list {
  overflow: hidden;
  border: 1px solid rgba(43, 58, 74, 0.1);
  border-radius: 1.2rem;
  background: #fff;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.4rem;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--steel);
  background: #fff;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-question i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--paper);
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-question i {
  color: #fff;
  background: var(--orange);
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.4rem 1.35rem;
  color: var(--muted);
  line-height: 1.65;
}

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

.legal-page {
  min-height: 100vh;
  padding-top: var(--header-height);
  background: var(--paper);
}

.legal-header {
  padding: 4rem 1.5rem;
  color: #fff;
  background: var(--steel);
  text-align: center;
}

.legal-header h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.legal-header p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.legal-card {
  width: min(calc(100% - 3rem), 860px);
  margin: 3rem auto;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border-radius: 1.2rem;
  background: #fff;
}

.legal-card section + section {
  margin-top: 2.5rem;
}

.legal-card h2 {
  margin: 0 0 0.8rem;
  color: var(--steel);
  font-size: 1.25rem;
}

.legal-card p,
.legal-card li {
  color: #5e6873;
  line-height: 1.75;
}

.legal-card a {
  color: var(--orange);
  text-decoration: underline;
}

.payment-page {
  position: relative;
  min-height: 100svh;
  padding: 2rem 1.5rem;
  display: grid;
  place-items: center;
  color: #fff;
  background-image: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)), url("https://res.cloudinary.com/dupnzef51/image/upload/v1784056188/Page_de_paiement_IDMP_SARL_deskop_dlfayi.jpg");
  background-position: top center;
  background-size: cover;
  text-align: center;
}

.payment-page.confirmation {
  background-image: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)), url("https://res.cloudinary.com/dupnzef51/image/upload/v1784056189/Page_de_remerciement_IDMP_SARL_deskop_sbrihv.jpg");
}

.payment-card {
  width: min(100%, 620px);
}

.payment-logo {
  width: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 0.8rem;
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.2);
}

.payment-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #7ee6a2;
  background: rgba(65, 195, 108, 0.2);
  font-size: 2rem;
}

.payment-card h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: -0.045em;
}

.payment-card > p {
  max-width: 520px;
  margin: 1rem auto 2rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.payment-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.payment-note {
  margin-top: 1.8rem !important;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.38) !important;
}

.not-found {
  min-height: 100svh;
  padding: calc(var(--header-height) + 4rem) 1.5rem 4rem;
  display: grid;
  place-items: center;
  color: #fff;
  background: #000;
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--orange);
  font-size: clamp(5rem, 20vw, 13rem);
  line-height: 0.8;
}

.not-found h1 {
  margin: 1.8rem 0 0.7rem;
}

.site-footer {
  border-top: 3px solid var(--orange);
  color: #fff;
  background: var(--steel);
}

.footer-inner {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 3.5rem 2.5rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 1fr 0.8fr;
  gap: 2.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 900;
}

.footer-brand img {
  height: 44px;
}

.footer-copy,
.footer-column a,
.footer-column p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-copy {
  max-width: 280px;
}

.footer-column h3 {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column nav {
  display: grid;
  gap: 0.6rem;
}

.footer-column a:hover {
  color: #fff;
}

.social-row {
  display: flex;
  gap: 0.7rem;
}

.social-row a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.2rem;
}

.social-row a:hover {
  background: var(--orange);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(232, 83, 26, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  z-index: 70;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  width: min(calc(100% - 2rem), 740px);
  margin-left: auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  color: #fff;
  background: rgba(23, 33, 44, 0.96);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
}

.cookie-banner p {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

.cookie-banner button {
  flex: 0 0 auto;
  padding: 0.7rem 1rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-weight: 800;
  cursor: pointer;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  padding: 1rem;
  display: grid;
  place-items: center;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 550px);
  max-height: min(90svh, 760px);
  overflow: auto;
  border-radius: 1.1rem;
  background: #fff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.modal-panel > header {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 1.2rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.modal-panel h2 {
  margin: 0;
  font-size: 1.2rem;
}

.modal-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  color: var(--steel);
  background: var(--paper);
  cursor: pointer;
}

.contact-form {
  padding: 1.3rem;
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--steel);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid #cfd5da;
  border-radius: 0.65rem;
  color: var(--steel-deep);
  background: #fff;
  outline: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 83, 26, 0.12);
}

.captcha-row {
  grid-template-columns: minmax(0, 1fr) 120px;
  align-items: center;
  padding: 0.8rem;
  border-radius: 0.8rem;
  background: var(--paper);
}

.form-error {
  margin: -0.5rem 0 0;
  color: #c52f2f;
  font-size: 0.82rem;
}

.form-status {
  min-height: 1.2em;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }

  .header-inner {
    padding: 0 1rem;
  }

  .brand img {
    height: 42px;
  }

  .desktop-nav,
  .client-button,
  .header-actions > .language-picker {
    display: none;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 4px;
    border-radius: 0.6rem;
  }

  .menu-button span {
    width: 22px;
    height: 2px;
    display: block;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-nav {
    padding: 0.7rem 1rem 1rem;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
    color: var(--steel);
    background: #fff;
    border-top: 1px solid var(--border);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a,
  .mobile-catalogue summary {
    padding: 0.75rem;
    border-radius: 0.55rem;
    font-size: 0.9rem;
    font-weight: 800;
  }

  .mobile-nav a:hover,
  .mobile-nav a[aria-current="page"],
  .mobile-catalogue summary:hover {
    color: var(--orange);
    background: rgba(232, 83, 26, 0.08);
  }

  .mobile-catalogue {
    grid-column: 1 / -1;
  }

  .mobile-catalogue summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    list-style: none;
  }

  .mobile-catalogue summary::-webkit-details-marker {
    display: none;
  }

  .mobile-catalogue summary i {
    transition: transform 0.18s ease;
  }

  .mobile-catalogue[open] summary i {
    transform: rotate(180deg);
  }

  .mobile-catalogue-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
    padding-top: 0.25rem;
  }

  .mobile-nav .mobile-sub {
    color: var(--muted);
    font-size: 0.82rem;
  }

  .mobile-languages {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem 0;
    border-top: 1px solid var(--border);
  }

  .mobile-languages button {
    min-width: 42px;
    padding: 0.45rem 0.55rem;
    color: var(--muted);
    background: #f6f7f8;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
  }

  .mobile-languages button[aria-current="true"] {
    color: #fff;
    background: var(--orange);
    border-color: var(--orange);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .difference-grid {
    grid-template-columns: 1fr;
  }

  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 100svh;
    padding: calc(var(--header-height) + 2rem) 1.15rem 2rem;
    align-items: center;
  }

  .hero-copy {
    display: block;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10.5vw, 3.5rem);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 0.95rem;
  }

  .hero .hero-actions,
  .hero .app-badges {
    margin: 1rem 0 0;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero .hero-actions {
    margin-top: 1.5rem;
  }

  .hero .hero-actions .button,
  .store-badge {
    width: 100%;
  }

  .section {
    padding: 4rem 1rem;
  }

  .split,
  .comparison-grid,
  .payment-actions {
    grid-template-columns: 1fr;
  }

  .split-visual {
    max-width: 430px;
    margin: 0 auto;
  }

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

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalogue-columns {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .catalogue-column {
    min-height: calc(100svh - var(--header-height));
    padding: 2rem 1.2rem;
  }

  .catalogue-column + .catalogue-column {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .catalogue-column:first-child {
    order: 2;
  }

  .catalogue-column:last-child {
    order: 1;
  }

  .contact-hero {
    padding-right: 1rem;
    padding-left: 1rem;
    background-image: linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)), url("https://res.cloudinary.com/dupnzef51/image/upload/v1778778504/fond_formulaire_mobile_enrssa.jpg");
  }

  .contact-meta {
    display: grid;
    gap: 0.8rem;
  }

  .legal-card {
    width: min(calc(100% - 2rem), 860px);
    margin: 1rem auto;
  }

  .payment-page {
    background-image: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)), url("https://res.cloudinary.com/dupnzef51/image/upload/v1784056188/Page_de_paiement_IDMP_SARL_mobile_moezmk.jpg");
  }

  .payment-page.confirmation {
    background-image: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)), url("https://res.cloudinary.com/dupnzef51/image/upload/v1784056188/Page_de_remerciement_IDMP_SARL_mobile_bqyvyo.jpg");
  }

  .payment-actions .button {
    width: 100%;
  }

  .footer-inner {
    padding: 2.5rem 1rem 1.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand,
  .social-row {
    justify-content: center;
  }

  .footer-copy {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .captcha-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
