:root {
  --ink: #20263a;
  --muted: #667085;
  --navy: #17224d;
  --violet: #5427a7;
  --blue: #168acb;
  --cyan: #23bfd1;
  --orange: #f28b24;
  --line: #e6e9f2;
  --soft: #f6f8fc;
  --white: #fff;
  --shadow: 0 18px 50px rgba(34, 45, 90, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }

.topbar {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 76px;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid #edf0f6;
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { flex: 0 0 auto; height: 58px; width: 47px; display: flex; align-items: center; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.main-nav { display: none; align-items: center; gap: 30px; font-weight: 700; color: #3d455c; }
.main-nav a { position: relative; min-height: 44px; display: grid; place-items: center; }
.main-nav a[aria-current="page"] { color: var(--blue); }
.main-nav a[aria-current="page"]::after { content: ""; position: absolute; right: 0; bottom: 4px; left: 0; height: 3px; border-radius: 3px; background: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.button {
  min-height: 44px;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  white-space: nowrap;
}
.button svg { width: 18px; height: 18px; flex: 0 0 auto; }
.button-outline { border-color: #cad0dc; background: #fff; color: var(--navy); }
.button-orange { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(242, 139, 36, .25); }
.button-violet { background: var(--violet); color: #fff; box-shadow: 0 10px 24px rgba(84, 39, 167, .22); }
.nav-actions .button { font-size: 14px; padding-inline: 12px; }
.menu-button {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #cad0dc;
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}
.menu-button span, .menu-button span::before, .menu-button span::after { width: 21px; height: 2px; display: block; border-radius: 2px; background: currentColor; }
.menu-button span { position: relative; }
.menu-button span::before, .menu-button span::after { content: ""; position: absolute; left: 0; }
.menu-button span::before { top: -7px; }
.menu-button span::after { top: 7px; }
.mobile-menu { position: absolute; top: 100%; right: 0; left: 0; border-top: 1px solid #edf0f6; border-bottom: 1px solid #dfe3eb; background: #fff; box-shadow: 0 16px 28px rgba(34,45,90,.12); }
.mobile-menu[hidden] { display: none; }
.mobile-menu a { min-height: 52px; display: flex; align-items: center; padding: 0 max(16px, calc((100vw - 1180px) / 2)); border-bottom: 1px solid #edf0f6; font-weight: 800; }
.mobile-menu a[aria-current="page"] { color: var(--blue); background: #f3f9fc; }

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background-color: #f9fbff;
  background-image: radial-gradient(#dce6f4 1.2px, transparent 1.2px);
  background-size: 21px 21px;
}
.hero-grid { display: grid; }
.hero-copy { padding: 56px 0 44px; position: relative; z-index: 2; }
.hero h1 { margin: 0; max-width: 760px; font-size: clamp(39px, 10vw, 68px); line-height: 1.03; letter-spacing: -.045em; font-weight: 900; }
.hero h1 .accent { color: #1398c8; }
.hero-copy p { margin: 24px 0 28px; font-size: 19px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions .button { min-height: 52px; padding-inline: 22px; border-radius: 13px; }
.hero-visual {
  position: relative;
  min-height: 300px;
  margin: 0 -16px;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #25c5d5 0%, #3269c9 48%, #6c2ca2 100%);
  color: #fff;
  text-align: center;
}
.hero-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-visual::before, .hero-visual::after { content: none; position: absolute; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; }
.hero-visual::before { width: 260px; height: 260px; top: -85px; right: -35px; }
.hero-visual::after { width: 180px; height: 180px; bottom: -75px; left: 16px; }
.photo-label { position: relative; z-index: 1; max-width: 440px; padding: 15px 18px; border: 1px solid rgba(255,255,255,.28); border-radius: 14px; background: rgba(17,30,72,.34); color: #fff; font-size: 16px; font-weight: 700; backdrop-filter: blur(2px); }

.benefits { position: relative; z-index: 6; margin-top: -56px; }
.benefits-grid { display: grid; gap: 1px; overflow: hidden; border: 1px solid #e8ebf2; border-radius: 20px; background: #e8ebf2; box-shadow: 0 14px 38px rgba(34,45,90,.1); }
.benefit { min-width: 0; display: grid; grid-template-columns: 46px minmax(0,1fr); gap: 13px; align-items: start; padding: 20px 18px; background: #fff; }
.benefit-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: #e9f7fb; color: var(--blue); }
.benefit-icon svg { width: 25px; height: 25px; }
.benefit h2 { margin: 1px 0 3px; font-size: 17px; line-height: 1.25; }
.benefit p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.4; }

.page-heading { padding: 68px 0 42px; background-color: #f9fbff; background-image: radial-gradient(#dce6f4 1.2px, transparent 1.2px); background-size: 21px 21px; text-align: center; }
.page-heading h1 { margin: 0; font-size: clamp(38px, 8vw, 58px); line-height: 1.05; letter-spacing: -.04em; }
.page-heading p { max-width: 720px; margin: 16px auto 0; color: var(--muted); font-size: 19px; }
.page-heading-photo { position: relative; min-height: 150px; display: grid; place-items: center; overflow: hidden; padding: 28px 0; background: #17224d; color: #fff; }
.page-heading-photo::after { content: ""; position: absolute; inset: 0; background: rgba(14,25,59,.52); }
.page-heading-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-heading-photo > .shell { position: relative; z-index: 1; }
.page-heading-photo p { color: rgba(255,255,255,.88); }
.page-heading-photo h1 { font-size: clamp(32px,7vw,58px); text-shadow: 0 2px 16px rgba(0,0,0,.32); }
.section-title { margin: 0; text-align: center; font-size: clamp(30px, 7vw, 44px); line-height: 1.12; letter-spacing: -.035em; }
.section-title .accent { color: var(--blue); }

.applications-section { position: relative; z-index: 5; padding: 54px 0 76px; background: var(--soft); }
.home-applications { margin-top: 28px; padding: 0 0 76px; background: #fff; }
.applications-panel { padding: 34px 18px 28px; border: 1px solid #edf0f7; border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.home-applications .applications-panel { position: relative; }
.home-apps-grid { display: grid; gap: 14px; margin-top: 28px; }
.universe-tabs { display: flex; gap: 10px; margin: 25px -2px 0; padding: 2px 2px 8px; overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: thin; }
.universe-tab { flex: 0 0 auto; min-height: 46px; padding: 10px 18px; border: 1px solid #d9dde8; border-radius: 999px; background: #f5f6f9; color: #596176; font-weight: 800; cursor: pointer; }
.universe-inline-subtitle, .universe-chevron { display: none; }
.universe-tab[aria-selected="true"] { border-color: var(--navy); background: var(--navy); color: #fff; }
.universe-subtitle { margin: 10px 0 22px; color: var(--muted); text-align: center; }
.category-list { display: grid; gap: 12px; }
.category { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.category > summary { min-height: 60px; padding: 12px 16px; display: flex; align-items: center; gap: 12px; cursor: pointer; list-style: none; font-weight: 900; }
.category > summary::-webkit-details-marker { display: none; }
.category-title { min-width: 0; flex: 1; }
.group-count { flex: 0 0 auto; padding: 4px 9px; border-radius: 999px; background: #f0f2f6; color: #687085; font-size: 13px; font-weight: 800; }
.chevron { width: 12px; height: 12px; flex: 0 0 auto; border-right: 2px solid #566077; border-bottom: 2px solid #566077; transform: rotate(45deg); transition: transform .18s ease; }
.category[open] .chevron { transform: rotate(225deg); }
.groups-grid { display: grid; gap: 14px; padding: 0 14px 16px; }
.app-card { min-width: 0; overflow: hidden; display: flex; flex-direction: column; border: 1px solid #e5e8f0; border-radius: 14px; background: #fff; box-shadow: 0 7px 20px rgba(40,50,90,.06); }
.app-image { width: 100%; aspect-ratio: 16 / 10; display: block; object-fit: cover; border-radius: 13px 13px 0 0; background: linear-gradient(135deg,#dff8fb,#ebe3fa); }
.app-image-placeholder { background: linear-gradient(135deg,#dff8fb,#ebe3fa); }
.app-body { flex: 1; display: flex; flex-direction: column; padding: 13px 15px 15px; }
.app-name { margin: 0; font-size: 18px; line-height: 1.25; }
.app-description { min-height: 42px; margin: 10px 0 0; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; color: var(--muted); font-size: 13px; line-height: 1.6; }
.badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.badge { padding: 4px 8px; border-radius: 999px; background: #ebe5fb; color: #5427a7; font-size: 12px; font-weight: 800; }
.badge.level { background: #f1f3f7; color: #697186; }
.catalog-note { margin: 24px 0 0; color: #777f91; text-align: center; }
.catalog-action { margin-top: 18px; text-align: center; }
.load-message { grid-column: 1 / -1; margin: 18px 0; padding: 20px; border-radius: 14px; background: #f0f2f6; color: var(--muted); text-align: center; }
.skeleton-card { pointer-events: none; }
.skeleton-block, .skeleton-line { background: #edf0f5; }
.skeleton-line { height: 13px; display: block; margin-top: 10px; border-radius: 999px; }
.skeleton-line-long { width: 76%; }
.skeleton-line-short { width: 52%; }
.skeleton-price { width: 64%; height: 28px; margin-top: 24px; }

.profiles { padding: 84px 0 70px; }
.profiles-grid { display: grid; gap: 18px; margin-top: 28px; }
.profile-card { min-width: 0; overflow: hidden; display: grid; border: 1px solid rgba(50,65,110,.08); border-radius: 21px; }
.profile-content { padding: 25px 23px 20px; }
.profile-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; color: #fff; }
.profile-icon svg { width: 27px; height: 27px; }
.profile-card h3 { margin: 18px 0 8px; font-size: 25px; line-height: 1.15; }
.profile-card p { margin: 0; color: #5f687d; }
.profile-image { min-height: 190px; display: grid; place-items: center; padding: 0; overflow: hidden; color: #fff; text-align: center; }
.profile-image img { width: 100%; height: 100%; object-fit: cover; }
.profile-image .photo-label { font-size: 14px; }
.homologuees { background: #f6f0ff; }
.homologuees .profile-icon, .homologuees .profile-image { background: linear-gradient(135deg,#8150d1,#5427a7); }
.homologuees h3 { color: #6634ad; }
.francais { background: #f0f8ff; }
.francais .profile-icon, .francais .profile-image { background: linear-gradient(135deg,#17afd0,#307ed1); }
.francais h3 { color: #157fb9; }
.ivoirien { background: #eaf8f7; }
.ivoirien .profile-icon, .ivoirien .profile-image { background: linear-gradient(135deg,#14aebd,#307ed1); }
.ivoirien h3 { color: #14756f; }
.clubs { background: #fff5e9; }
.clubs .profile-icon, .clubs .profile-image { background: linear-gradient(135deg,#f6a63d,#e87020); }
.clubs h3 { color: #d96f17; }

.establishments { padding: 70px 0; }
.establishments-card { overflow: hidden; padding: 34px 22px; border-radius: 24px; background: linear-gradient(135deg,#5427a7 0%,#17224d 100%); color: #fff; box-shadow: var(--shadow); }
.establishments-label { display: inline-flex; min-height: 30px; align-items: center; padding: 4px 11px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(255,255,255,.1); font-size: 13px; font-weight: 900; }
.establishments h1, .establishments h2 { max-width: 790px; margin: 18px 0 14px; font-size: clamp(30px,7vw,46px); line-height: 1.08; letter-spacing: -.035em; }
.establishments-intro { max-width: 930px; margin: 0; color: rgba(255,255,255,.82); font-size: 17px; }
.establishments-points { display: grid; gap: 16px; margin-top: 28px; }
.establishment-point { min-width: 0; display: grid; grid-template-columns: 48px minmax(0,1fr); gap: 13px; align-items: start; }
.establishment-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; background: rgba(255,255,255,.13); }
.establishment-icon svg { width: 25px; height: 25px; }
.establishment-point h3 { margin: 1px 0 3px; font-size: 17px; }
.establishment-point p { margin: 0; color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.4; }
.establishments-reformulation { margin: 28px 0 0; color: rgba(255,255,255,.9); font-size: 16px; font-weight: 700; }
.establishments-capabilities { min-width: 0; display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.establishments-capability { max-width: 100%; padding: 7px 12px; border: 1px solid rgba(255,255,255,.32); border-radius: 999px; background: rgba(255,255,255,.12); color: #fff; font-size: 14px; font-weight: 700; line-height: 1.3; overflow-wrap: anywhere; }
.establishments-non-exhaustive { margin: 12px 0 0; color: rgba(255,255,255,.72); font-size: 14px; font-style: italic; }
.establishments .button { margin-top: 28px; border-radius: 13px; background: #fff; color: var(--navy); }
.establishments-teaser { padding-top: 0; }
.establishments-teaser .establishments-intro { max-width: 980px; }
.establishments-image { width: 100%; height: auto; margin-top: 28px; border-radius: 16px; object-fit: cover; }

.pricing { padding: 70px 0 76px; background: #f7f7fc; }
.pricing-message { max-width: 880px; margin: 18px auto 0; text-align: center; color: #3e465b; font-size: clamp(21px,5vw,30px); font-weight: 800; line-height: 1.3; }
.pricing-grid { display: grid; gap: 16px; margin-top: 32px; }
.price-card { position: relative; padding: 25px 21px; border: 1px solid #e2e5ed; border-radius: 19px; background: #fff; }
.price-card.popular { border: 2px solid var(--violet); box-shadow: 0 14px 34px rgba(84,39,167,.16); }
.popular-label { display: inline-flex; min-height: 30px; align-items: center; margin: -8px 0 14px; padding: 4px 11px; border-radius: 999px; background: var(--violet); color: #fff; font-size: 13px; font-weight: 900; }
.price-card h3 { margin: 0; font-size: 21px; line-height: 1.25; }
.price { margin: 17px 0 3px; color: var(--navy); font-size: 31px; line-height: 1.1; font-weight: 900; letter-spacing: -.03em; white-space: nowrap; }
.duration { color: var(--muted); }
.price-card .button { width: 100%; margin-top: 20px; border-radius: 12px; }
.saving { margin: 15px 0 0; padding: 10px 12px; border-radius: 11px; background: #eaf8f7; color: #14756f; font-weight: 800; }
.free-trial-banner { margin-top: 32px; padding: 25px 21px; border: 1px solid #e2e5ed; border-radius: 19px; background: #fff; text-align: center; }
.free-trial-banner h2 { margin: 0; font-size: 21px; line-height: 1.25; }
.free-trial-banner p { margin: 8px 0 0; color: var(--muted); }
.free-trial-banner .button { margin-top: 20px; border-radius: 12px; }

.closing-cta { padding: 42px 0; background: var(--navy); color: #fff; }
.closing-cta-inner { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.closing-cta h2 { margin: 0 0 5px; font-size: clamp(28px,6vw,40px); line-height: 1.15; }
.closing-cta p { margin: 0; color: rgba(255,255,255,.78); font-size: 18px; }
.closing-cta .button { min-height: 52px; padding-inline: 22px; border-radius: 13px; }

.faq { padding: 70px 0; }
.faq-list { max-width: 820px; margin: 28px auto 0; display: grid; gap: 11px; }
.faq details { border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.faq summary { min-height: 58px; display: flex; align-items: center; padding: 13px 48px 13px 17px; position: relative; list-style: none; cursor: pointer; font-weight: 900; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 18px; color: var(--violet); font-size: 25px; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0; padding: 0 17px 17px; color: var(--muted); }
.faq-cta { margin-top: 24px; text-align: center; }
.support-page { padding-bottom: 76px; }
.contact-grid { display: grid; gap: 18px; margin-top: 16px; }
.contact-card { min-width: 0; padding: 27px 23px; border: 1px solid var(--line); border-radius: 19px; background: #fff; box-shadow: 0 9px 26px rgba(40,50,90,.07); }
.contact-card h2 { margin: 0 0 8px; font-size: 25px; }
.contact-card p { margin: 0 0 20px; color: var(--muted); }
.whatsapp[hidden], .contact-card[hidden] { display: none; }
.whatsapp { border-radius: 13px; background: #168b64; color: #fff; }
.whatsapp:not([href]) { cursor: default; }
.whatsapp-note { margin-left: 9px; color: var(--muted); font-size: 12px; }
.email-button { max-width: 100%; overflow-wrap: anywhere; white-space: normal; border-radius: 13px; background: var(--violet); color: #fff; }

footer { border-top: 1px solid #e8ebf2; background: #fafbfc; }
.footer-inner { padding: 24px 0; display: grid; justify-items: center; gap: 10px; color: #70778a; text-align: center; }
.footer-brand { width: 32px; height: 40px; display: block; }
.footer-brand img { width: 100%; height: 100%; object-fit: contain; }
.footer-nav, .footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 2px 18px; }
.footer-nav a, .footer-legal a, .footer-contact { min-height: 44px; display: inline-flex; align-items: center; }
.footer-contact { color: var(--navy); font-weight: 700; }

.app-card:focus-within, .profile-card:focus-visible, .button:focus-visible, .universe-tab:focus-visible, summary:focus-visible, .main-nav a:focus-visible, .mobile-menu a:focus-visible, .menu-button:focus-visible, .footer-inner a:focus-visible { outline: 3px solid #5ccddd; outline-offset: 3px; }

@media (min-width: 600px) {
  .nav-actions .button { font-size: 15px; padding-inline: 16px; }
  .profile-card { grid-template-columns: 1.1fr .9fr; }
  .profile-image { min-height: 100%; }
  .pricing-grid, .contact-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .closing-cta-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
@media (min-width: 768px) {
  .shell { width: min(1180px,calc(100% - 56px)); }
  .main-nav { display: flex; }
  .menu-button, .mobile-menu { display: none; }
  .benefits { margin-top: -72px; }
  .benefits-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .applications-panel { padding: 46px 34px 34px; }
  .page-heading-photo { min-height: 250px; padding: 42px 0; }
  .groups-grid, .home-apps-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .establishments-card { padding: 48px 42px; }
  .establishments-points { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .hero-visual { margin-inline: -28px; }
  .footer-inner { grid-template-columns: auto 1fr auto; align-items: center; text-align: left; }
  .footer-contact { grid-column: 1 / -1; }
}
@media (min-width: 768px) and (max-width: 939px) {
  .shell { width: min(1180px,calc(100% - 32px)); }
  .nav-wrap { gap: 12px; }
  .main-nav { gap: 12px; font-size: 13px; }
  .nav-actions .button { padding-inline: 8px; font-size: 12px; }
  .nav-actions .button svg { width: 16px; height: 16px; }
}
@media (min-width: 940px) {
  .hero { min-height: 660px; }
  .hero-grid { width: 100%; grid-template-columns: minmax(0,55%) minmax(0,45%); }
  .hero-copy { width: min(650px,calc(100% - 56px)); margin-left: max(28px,calc((100vw - 1180px) / 2)); padding: 105px 18px 150px 0; }
  .hero-visual { min-height: 660px; margin: 0; clip-path: ellipse(86% 72% at 86% 50%); }
  .benefits { margin-top: -90px; }
  .benefits-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .profiles { padding-top: 100px; }
  .profiles-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .profile-card { grid-template-columns: 1fr; }
  .profile-image { min-height: 190px; }
  .pricing-grid { grid-template-columns: repeat(4,minmax(0,1fr)); align-items: stretch; }
  .footer-contact { grid-column: auto; }
  .footer-inner { grid-template-columns: auto 1fr auto auto auto; }
}
@media (min-width: 1100px) { .groups-grid, .home-apps-grid { grid-template-columns: repeat(3,minmax(0,1fr)); } }
@media (max-width: 767px) {
  .nav-actions .button-outline { display: none; }
  .universe-tabs { display: grid; gap: 10px; margin: 24px 0 0; padding: 0; overflow: visible; }
  .universe-option { min-width: 0; display: grid; gap: 10px; }
  .universe-tab { width: 100%; min-height: 56px; display: grid; grid-template-columns: minmax(0,1fr) 18px; align-items: center; gap: 12px; padding: 10px 16px; border-radius: 14px; text-align: left; white-space: normal; }
  .universe-label { min-width: 0; display: grid; gap: 2px; }
  .universe-inline-subtitle { display: block; color: #737b8d; font-size: 13px; font-weight: 400; line-height: 1.3; }
  .universe-tab[aria-selected="true"] .universe-inline-subtitle { color: rgba(255,255,255,.72); }
  .universe-chevron { width: 11px; height: 11px; display: block; justify-self: end; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); }
  .universe-tab[aria-selected="true"] .universe-chevron { transform: rotate(225deg); }
  .universe-subtitle { display: none; }
  .universe-option > .category-list { margin-bottom: 4px; }
  .category-list, .category, .groups-grid, .app-card { min-width: 0; max-width: 100%; }
}
@media (max-width: 430px) {
  .shell { width: min(100% - 24px,1180px); }
  .topbar { height: 72px; }
  .brand { width: 40px; height: 52px; }
  .nav-wrap { gap: 7px; }
  .nav-actions { gap: 6px; margin-left: auto; }
  .nav-actions .button { padding-inline: 10px; font-size: 13px; }
  .hero-visual { margin-inline: -12px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .chevron { transition: none; } }

/* Fiche d'application (B2) */
.application-page { padding: 34px 0 72px; background: var(--soft); }
.application-detail { display: grid; gap: 22px; }
.application-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; }
.application-breadcrumb a { color: var(--blue); font-weight: 800; }
.application-banner { overflow: hidden; display: grid; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow); }
.application-banner .app-image { height: 100%; min-height: 220px; aspect-ratio: 16 / 10; border-radius: 0; }
.application-introduction { min-width: 0; padding: 27px 22px 30px; align-self: center; }
.application-category { margin: 0 0 8px; color: var(--blue); font-size: 14px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.application-introduction h1 { margin: 0; color: var(--navy); font-size: clamp(34px,8vw,56px); line-height: 1.06; letter-spacing: -.04em; overflow-wrap: anywhere; }
.application-lead { max-width: 760px; margin: 16px 0 0; color: var(--muted); font-size: 18px; }
.application-badges { margin-top: -8px; }
.application-content-section { padding: 28px 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.application-content-section .section-title { margin-bottom: 20px; text-align: left; font-size: clamp(26px,6vw,36px); }
.application-content-section p { margin: 0; color: #4e576d; }
.application-content-section p + p { margin-top: 14px; }
.application-content-section ul, .application-content-section ol { margin: 0; padding-left: 24px; display: grid; gap: 12px; }
.application-content-section li { padding-left: 4px; }
.application-variations ul { padding: 0; list-style: none; }
.application-variations li { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.application-variations li:last-child { border-bottom: 0; }
.application-variations li > span:first-child { min-width: 0; overflow-wrap: anywhere; }
.application-variations .badge { flex: 0 0 auto; }
.application-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; padding: 30px 20px; border-radius: 18px; background: var(--navy); }
.application-cta .button { min-height: 50px; padding-inline: 22px; border-radius: 13px; }
.application-state { overflow: hidden; padding: 50px 22px; border-radius: 22px; }
.application-state .button { margin-top: 24px; border-radius: 13px; }
.application-breadcrumb a:focus-visible { outline: 3px solid #5ccddd; outline-offset: 3px; }
.application-skeleton { display: grid; gap: 22px; padding: 20px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow); }
.application-skeleton-image { min-height: 220px; border-radius: 14px; }
.application-skeleton .skeleton-line { margin-top: 18px; }

@media (min-width: 768px) {
  .application-page { padding-top: 46px; }
  .application-banner { grid-template-columns: minmax(280px,42%) minmax(0,1fr); }
  .application-banner .app-image { min-height: 340px; aspect-ratio: auto; }
  .application-introduction { padding: 42px; }
  .application-content-section { padding: 38px 40px; }
  .application-skeleton { grid-template-columns: minmax(280px,42%) minmax(0,1fr); align-items: center; }
  .application-skeleton-image { min-height: 340px; }
}
