@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
}

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

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

body {
  color: #1e293b;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #344255;
  font-family: "Manrope", sans-serif;
  line-height: 1.1;
}

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

p {
  margin-bottom: 1rem;
}

body {
  background: #ffffff;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.page-hero {
  padding: 6rem 0 5rem;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #d85a30;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.container {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #162A3F;
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.site-logo img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.site-logo__text {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.72rem;
  line-height: 1;
}

.site-logo__spot {
  color: #ffffff;
}

.site-logo__card {
  color: #d85a30;
}

.site-preview-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.2rem 0.55rem;
  color: #d85a30;
  background: rgba(216, 90, 48, 0.1);
  border: 1px solid rgba(216, 90, 48, 0.18);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav,
.header-actions {
  display: none;
}

.site-nav a,
.mobile-menu a {
  color: #ffffff;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.mobile-menu a:hover,
.mobile-menu a.is-active {
  color: #64748b;
}

.header-actions {
  align-items: center;
  gap: 0.75rem;
}

.header-login {
  font-weight: 600;
  color: #344255;
}

.site-header--home {
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.site-header--trial {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.site-header--trial .site-nav a,
.site-header--trial .mobile-menu a,
.site-header--trial .menu-toggle,
.site-header--trial .header-login,
.site-header--trial .site-logo__spot {
  color: #344255;
}

.site-header--trial .site-nav a:hover,
.site-header--trial .site-nav a.is-active,
.site-header--trial .mobile-menu a:hover,
.site-header--trial .mobile-menu a.is-active {
  color: #d85a30;
}

.site-header--home .site-nav a,
.site-header--home .header-login,
.site-header--home .menu-toggle {
  color: #ffffff;
}

.site-header--home .site-logo__spot {
  color: #ffffff;
}

.site-header--home .site-nav a:hover,
.site-header--home .site-nav a.is-active {
  color: rgba(255, 255, 255, 0.88);
}

.site-header--home .menu-toggle {
  border-color: rgba(255, 255, 255, 0.18);
}

.site-header--home .btn-primary {
  box-shadow: 0 14px 28px rgba(216, 90, 48, 0.24);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.65rem;
  color: #344255;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  padding: 0 0 1.25rem;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu__panel {
  padding: 1rem;
  background: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.mobile-menu nav,
.mobile-menu__actions {
  display: grid;
  gap: 0.9rem;
}

.mobile-menu__actions {
  margin-top: 1rem;
}

.site-header--home .mobile-menu__panel {
  background: rgba(20, 31, 48, 0.96);
  border-color: rgba(255, 255, 255, 0.1);
}

.site-header--home .mobile-menu a,
.site-header--home .mobile-menu .btn-link {
  color: #ffffff;
}

@media (min-width: 960px) {
  .site-nav,
  .header-actions {
    display: flex;
  }
  .site-nav {
    align-items: center;
    gap: 1.5rem;
  }
  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }
}
.site-footer {
  padding: 4rem 0 2rem;
  background: #344255;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
}

.site-footer__brand p {
  max-width: 20rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__title {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1rem;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

.site-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
}

@media (min-width: 960px) {
  .site-footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.45rem 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 400;
  transition: all 180ms ease;
  font-size: 0.8rem;
}

.btn-primary {
  color: #ffffff;
  background: #d85a30;
}

.btn-primary:hover {
  background: #c94f28;
}

.btn-secondary,
.btn-outline {
  color: #344255;
  background: transparent;
  border-color: #344255;
}

.btn-secondary:hover,
.btn-outline:hover {
  background: rgba(52, 66, 85, 0.06);
}

.btn-link {
  padding-inline: 0;
  color: #344255;
}

.card {
  border-radius: 8px;
}

.badge {
  display: inline-flex;
}

.pricing-cards {
  display: grid;
  gap: 1rem;
}

.pricing-card {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.pricing-card--highlighted {
  border-color: rgba(216, 90, 48, 0.55);
  box-shadow: 0 20px 50px rgba(216, 90, 48, 0.12);
}

.pricing-card__badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.38rem 0.7rem;
  color: #d85a30;
  background: rgba(216, 90, 48, 0.1);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  align-items: center;
}

.pricing-card h2 {
  margin-bottom: 0;
  font-size: 1.6rem;
}

.pricing-card__description,
.pricing-card__billing-note {
  margin-bottom: 0;
  color: #64748b;
}

.pricing-card__comparison-hint {
  margin: -0.25rem 0 0;
  color: #d85a30;
  font-size: 0.92rem;
  font-weight: 600;
}

.pricing-card__price {
  display: flex;
  align-items: end;
  gap: 0.35rem;
}

.pricing-card__amount {
  color: #344255;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
}

.pricing-card__period {
  color: #64748b;
  font-weight: 600;
}

.pricing-card__features {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card__features li {
  display: flex;
  gap: 0.7rem;
  color: #1e293b;
}

.pricing-card__feature-mark {
  color: #d85a30;
  font-weight: 800;
}

.pricing-value-icon {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  color: #16a34a;
}

.pricing-value-icon .material-symbols-rounded {
  font-size: 1.15rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .pricing-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .pricing-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.pricing-block {
  display: grid;
  gap: 2rem;
}

.pricing-tabs {
  display: grid;
  gap: 1.5rem;
}

.pricing-tabs__nav {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 520px);
  padding: 0.4rem;
  background: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  margin: auto;
}

.pricing-tabs__button {
  min-height: 3rem;
  color: #344255;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  background: transparent;
}

.pricing-tabs__button.is-active {
  color: #ffffff;
  background: #344255;
}

.pricing-tabs__panel {
  display: none;
  gap: 2rem;
}

.pricing-tabs__panel.is-active {
  display: grid;
}

.pricing-empty {
  padding: 2rem;
  text-align: center;
  background: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}

.pricing-comparison {
  display: grid;
  gap: 1rem;
}

.pricing-comparison__header h2 {
  margin-bottom: 0;
  font-size: 1.65rem;
}

.pricing-comparison__table-wrap {
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #ffffff;
}

.pricing-comparison__table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.pricing-comparison__table th,
.pricing-comparison__table td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  vertical-align: middle;
}

.pricing-comparison__table thead th {
  color: #344255;
  background: #f7f9fc;
}

.pricing-comparison__section-row td {
  color: #d85a30;
  background: rgba(216, 90, 48, 0.05);
  font-weight: 700;
}

.pricing-comparison__check {
  color: #16a34a;
  font-weight: 800;
}

.pricing-comparison__dash {
  color: #64748b;
}

.pricing-comparison .pricing-value-icon {
  color: #16a34a;
}

.home-gallery {
  position: relative;
  overflow: clip;
  margin-top: -84px;
  background: #162A3F;
  --home-gallery-transition-duration: 700ms;
}

.home-gallery__viewport {
  position: relative;
  min-height: 720px;
  height: clamp(720px, 86vh, 940px);
}

.home-gallery__track {
  position: relative;
  min-height: inherit;
  height: 100%;
}

.home-gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--home-gallery-transition-duration) ease, visibility var(--home-gallery-transition-duration) ease;
}

.home-gallery__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.home-gallery__media,
.home-gallery__media img,
.home-gallery__overlay,
.home-gallery__content-wrapper {
  position: absolute;
  inset: 0;
}

.home-gallery__media {
  overflow: hidden;
}

.home-gallery__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform var(--home-gallery-transition-duration) ease;
}

.home-gallery__slide.is-active .home-gallery__media img {
  transform: scale(1);
}

.home-gallery__overlay {
  background: linear-gradient(90deg, rgba(20, 28, 38, 0.78) 0%, rgba(20, 28, 38, 0.52) 40%, rgba(20, 28, 38, 0.12) 72%, rgba(20, 28, 38, 0.04) 100%);
}

.home-gallery__content-wrapper {
  display: grid;
  align-items: center;
}

.home-gallery__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
  width: min(100%, 45rem);
  padding-top: 5.5rem;
}

.home-gallery__eyebrow {
  margin-bottom: 0;
  color: #d85a30;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-gallery__title {
  margin-bottom: 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 1.02;
}

.home-gallery__subtitle {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 1.6;
}

.home-gallery__cta {
  width: fit-content;
  min-height: 3.4rem;
  margin-top: 0.4rem;
  padding-inline: 1.4rem;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(216, 90, 48, 0.24);
}

.home-gallery__slide .home-gallery__content > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity calc(var(--home-gallery-transition-duration) - 180ms) ease, transform calc(var(--home-gallery-transition-duration) - 180ms) ease;
}

.home-gallery__slide.is-active .home-gallery__content > * {
  opacity: 1;
  transform: translateY(0);
}

.home-gallery__slide.is-active .home-gallery__eyebrow {
  transition-delay: 90ms;
}

.home-gallery__slide.is-active .home-gallery__title {
  transition-delay: 120ms;
}

.home-gallery__slide.is-active .home-gallery__subtitle {
  transition-delay: 150ms;
}

.home-gallery__slide.is-active .home-gallery__cta {
  transition-delay: 180ms;
}

.home-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.home-gallery__arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.04);
}

.home-gallery__arrow:focus-visible,
.home-gallery__dot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.home-gallery__arrow--previous {
  left: clamp(1rem, 2vw, 2rem);
}

.home-gallery__arrow--next {
  right: clamp(1rem, 2vw, 2rem);
}

.home-gallery__arrow svg {
  width: 1.3rem;
  height: 1.3rem;
}

.home-gallery__pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.4rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.home-gallery__dot {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  border: 0;
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease;
}

.home-gallery__dot.is-active {
  background: #d85a30;
  transform: scale(1.06);
}

.home-gallery__progress {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 3;
  width: min(100% - 2rem, 10rem);
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  transform: translateX(-50%);
}

.home-gallery__progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: #d85a30;
  transform: scaleX(0);
  transform-origin: left center;
}

.home-intro,
.home-how-it-works,
.home-advantages,
.home-faq {
  padding: 4.5rem 0;
  background: #ffffff;
}

.home-intro__grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.home-intro__content h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.home-intro__content p,
.home-step-card p,
.home-advantage-card p,
.home-faq__item p {
  color: #64748b;
  line-height: 1.75;
}

.home-intro__highlights,
.home-step-card,
.home-advantage-card,
.home-faq__item {
  padding: 1.4rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.05);
}

.home-intro__highlights h3,
.home-step-card h3,
.home-advantage-card h3,
.home-faq__item h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.home-intro__highlights ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-intro__highlights li {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.6;
}

.home-intro__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.45rem;
  height: 0.45rem;
  background: #d85a30;
  border-radius: 999px;
}

.home-steps-grid,
.home-advantages__grid,
.home-faq__list {
  display: grid;
  gap: 1rem;
}

.home-step-card__index {
  display: inline-flex;
  width: fit-content;
  min-height: 2rem;
  align-items: center;
  padding: 0.35rem 0.7rem;
  margin-bottom: 0.9rem;
  color: #d85a30;
  background: rgba(216, 90, 48, 0.1);
  border-radius: 999px;
  font-weight: 800;
}

.home-platform {
  padding: 3rem 0 4.5rem;
  background: #ffffff;
}

.home-section-heading {
  margin: 0 auto 2.5rem;
  text-align: center;
}

.home-section-heading .section-kicker {
  justify-content: center;
}

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

.home-feature-grid {
  display: grid;
  gap: 1rem;
}

.home-feature-card {
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.home-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1.4rem;
  color: #344255;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.home-feature-card__icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.home-feature-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.18rem;
}

.home-feature-card p {
  margin-bottom: 0;
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.65;
}

.home-use-cases {
  padding: 1rem 0 5rem;
  background: #ffffff;
}

.home-use-case-grid {
  display: grid;
  gap: 1.25rem;
}

.home-use-case-card {
  position: relative;
  padding-top: 0.35rem;
}

.home-use-case-card__media {
  aspect-ratio: 1.48/1;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.home-use-case-card__media--restaurant {
  background: linear-gradient(180deg, rgba(18, 25, 34, 0.14), rgba(18, 25, 34, 0.55)), url("/assets/images/home/restaurant.png") center center/cover no-repeat;
}

.home-use-case-card__media--commerce {
  background: linear-gradient(180deg, rgba(9, 23, 39, 0.18), rgba(9, 23, 39, 0.44)), url("/assets/images/home/commerce.png") center center/cover no-repeat;
}

.home-use-case-card__media--event {
  background: linear-gradient(180deg, rgba(14, 8, 32, 0.12), rgba(14, 8, 32, 0.58)), url("/assets/images/home/spectacle.png") center center/cover no-repeat;
}

.home-use-case-card__media--artisan {
  background: linear-gradient(180deg, rgba(31, 22, 14, 0.14), rgba(31, 22, 14, 0.5)), url("/assets/images/home/artisan.png") center center/cover no-repeat;
}

.home-use-case-card__media--tourism {
  background: linear-gradient(180deg, rgba(12, 33, 45, 0.1), rgba(12, 33, 45, 0.42)), url("/assets/images/home/tourisme.png") center center/cover no-repeat;
}

.home-use-case-card__media--more {
  background: linear-gradient(180deg, rgba(14, 22, 35, 0.18), rgba(14, 22, 35, 0.55)), url("/assets/images/home/more.png") center center/cover no-repeat;
}

.home-use-case-card h3 {
  margin: 1rem 0 0.55rem;
  font-size: 1.2rem;
}

.home-use-case-card p {
  margin-bottom: 0.9rem;
  color: #64748b;
  line-height: 1.65;
}

.home-use-case-card__link {
  color: #d85a30;
  font-weight: 700;
}

.home-cta {
  padding: 0 0 5rem;
  background: #ffffff;
}

.home-cta__panel {
  display: grid;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.home-cta__content {
  max-width: 32rem;
}

.home-cta__content h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.03;
}

.home-cta__content p {
  margin-bottom: 1.75rem;
  color: #64748b;
  font-size: 1.04rem;
  line-height: 1.65;
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.home-cta__actions .btn {
  min-height: 3.35rem;
  padding-inline: 1.45rem;
  border-radius: 12px;
}

.home-cta__benefits {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #64748b;
  font-size: 0.95rem;
}

.home-cta__benefits li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.home-cta__benefits li::before {
  width: 0.45rem;
  height: 0.45rem;
  content: "";
  background: #d85a30;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(216, 90, 48, 0.12);
}

.home-cta__visual {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
}

.home-cta__screen {
  width: min(100%, 680px);
  overflow: hidden;
  border-radius: 26px;
}

.home-cta__screen img {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .home-intro__grid,
  .home-steps-grid,
  .home-advantages__grid,
  .home-faq__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-cta__benefits {
    grid-template-columns: repeat(3, max-content);
    gap: 1.2rem;
  }
}
@media (min-width: 960px) {
  .home-gallery__content {
    padding-top: 6rem;
  }
  .home-intro__grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  }
  .home-steps-grid,
  .home-advantages__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .home-platform {
    padding-top: 4rem;
  }
  .home-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .home-use-case-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.4rem;
  }
  .home-cta__panel {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    padding: 2.3rem 2.5rem 2.3rem 2.6rem;
  }
  .home-cta__visual {
    justify-content: end;
  }
}
@media (min-width: 1200px) {
  .home-feature-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .home-faq__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 959.98px) {
  .home-gallery__viewport {
    min-height: 660px;
  }
  .home-gallery__content {
    width: min(100%, 38rem);
    padding-top: 4.75rem;
  }
}
@media (max-width: 767.98px) {
  .home-gallery__viewport {
    min-height: 620px;
    height: min(780px, 88svh);
  }
  .home-gallery__overlay {
    background: linear-gradient(180deg, rgba(20, 28, 38, 0.2) 0%, rgba(20, 28, 38, 0.42) 36%, rgba(20, 28, 38, 0.78) 68%, rgba(20, 28, 38, 0.92) 100%), linear-gradient(90deg, rgba(20, 28, 38, 0.78) 0%, rgba(20, 28, 38, 0.34) 52%, rgba(20, 28, 38, 0.12) 100%);
  }
  .home-gallery__content-wrapper {
    align-items: end;
  }
  .home-gallery__content {
    width: 100%;
    gap: 0.85rem;
    padding: 7rem 0 7.25rem;
  }
  .home-gallery__title {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }
  .home-gallery__subtitle {
    font-size: 1rem;
  }
  .home-gallery__cta {
    width: 100%;
    justify-content: center;
  }
  .home-gallery__arrow {
    top: auto;
    bottom: 5.25rem;
    width: 2.9rem;
    height: 2.9rem;
    transform: none;
  }
  .home-gallery__arrow:hover {
    transform: scale(1.04);
  }
  .home-gallery__arrow--previous {
    left: 1rem;
  }
  .home-gallery__arrow--next {
    right: 1rem;
  }
  .home-gallery__pagination {
    justify-content: flex-start;
    padding-left: 1rem;
    bottom: 1.8rem;
  }
  .home-gallery__progress {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-gallery__slide,
  .home-gallery__media img,
  .home-gallery__slide .home-gallery__content > *,
  .home-gallery__arrow,
  .home-gallery__dot {
    transition-duration: 1ms !important;
  }
  .home-gallery__media img {
    transform: none !important;
  }
}
.features-hero {
  position: relative;
  overflow: clip;
  margin-top: -84px;
  padding: 0;
}

.site-header--features {
  background-color: #091326;
}

.features-hero__inner {
  display: grid;
  align-items: center;
  width: 100%;
  min-height: clamp(620px, 80vh, 900px);
  padding: 8.75rem clamp(1.25rem, 4vw, 4rem) 4.5rem;
  background: url("/assets/images/fonction/hero.png") center center/cover no-repeat;
}

.features-hero__content {
  position: relative;
  z-index: 2;
  max-width: 38rem;
  justify-self: start;
}

.features-hero__content .section-kicker {
  margin-bottom: 1.25rem;
}

.features-hero__content h1 {
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-size: clamp(2.75rem, 5.7vw, 5.05rem);
  font-weight: 800;
  line-height: 0.99;
}

.features-hero__content h1 span {
  color: #d85a30;
}

.features-hero__content p {
  margin-bottom: 2rem;
  max-width: 33rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.45vw, 1.38rem);
  line-height: 1.55;
}

.features-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.features-hero__actions .btn {
  min-height: 3.5rem;
  padding-inline: 1.55rem;
  border-radius: 12px;
}

.features-hero__actions .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
}

.features-hero__actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.features-tools {
  padding: 2.4rem 0 3rem;
  background: #ffffff;
}

.features-section-heading {
  margin: 0 auto 2rem;
  text-align: center;
}

.features-section-heading .section-kicker {
  justify-content: center;
}

.features-section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.08;
}

.features-card-grid {
  display: grid;
  gap: 1rem;
}

.features-card {
  display: grid;
  gap: 1.35rem;
  padding: 1.25rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.features-card__top h3 {
  margin-bottom: 0.65rem;
  font-size: 1.7rem;
  line-height: 1.08;
}

.features-card__top p {
  margin-bottom: 0;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
}

.features-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 4.2rem;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: rgba(226, 232, 240, 0.35);
}

.features-card__icon svg {
  width: 1.7rem;
  height: 1.7rem;
}

.features-card__icon--orange {
  color: #d85a30;
}

.features-card__icon--blue {
  color: #5573f2;
}

.features-card__icon--red {
  color: #ff5a6b;
}

.features-card__icon--green {
  color: #39a74b;
}

.features-card__icon--purple {
  color: #8b4dff;
}

.features-card__icon--pink {
  color: #ff5d7e;
}

.features-card__icon--yellow {
  color: #ffac14;
}

.features-card__icon--violet {
  color: #7258ff;
}

.features-card__list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #344255;
}

.features-card__list li {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
  line-height: 1.45;
}

.features-card__list li::before {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  content: "";
  border: 1.7px solid currentColor;
  border-radius: 999px;
  opacity: 0.55;
}

.features-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  color: #64748b;
  font-size: 0.95rem;
  border: 1px dashed rgba(52, 66, 85, 0.22);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(247, 249, 252, 0.88), rgba(255, 255, 255, 0.94));
}

@media (min-width: 960px) {
  .features-hero__inner {
    padding-left: clamp(2rem, 5vw, 5rem);
  }
  .features-tools {
    padding-top: 3rem;
  }
  .features-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .features-card {
    grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
    align-items: end;
    min-height: 355px;
    padding: 1.4rem 1.45rem 1.35rem;
  }
}
.use-cases-page {
  padding: 2.6rem 0 5rem;
  background: radial-gradient(circle at top center, rgba(216, 90, 48, 0.09), transparent 24%), linear-gradient(180deg, #fbfcfe 0%, #ffffff 20%);
}

.use-cases-intro,
.use-case-section-heading {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.use-cases-intro {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.use-cases-intro__kicker {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  color: #d85a30;
  background: rgba(216, 90, 48, 0.1);
  border: 1px solid rgba(216, 90, 48, 0.14);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.use-cases-intro h1,
.use-case-section-heading h2 {
  margin-bottom: 0;
  color: #344255;
  line-height: 1.02;
}

.use-cases-intro h1 {
  font-size: clamp(2.7rem, 5vw, 4.9rem);
}

.use-case-section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.use-cases-intro p,
.use-case-final > p {
  max-width: 44rem;
  margin-inline: auto;
  color: #64748b;
  font-size: 1.02rem;
  line-height: 1.75;
}

.use-cases-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.use-case-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.use-case-card__image {
  aspect-ratio: 16/9;
  position: relative;
  background: radial-gradient(circle at top right, rgba(216, 90, 48, 0.16), transparent 35%), linear-gradient(160deg, rgba(52, 66, 85, 0.98), rgba(33, 43, 57, 0.92));
}

.use-case-card__image-surface {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.use-case-card__image-surface img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.use-case-card__content {
  display: grid;
  gap: 0.75rem;
  padding: 0 1.15rem 1rem;
}

.use-case-card__badge {
  display: inline-flex;
  width: fit-content;
  min-height: 2rem;
  align-items: center;
  padding: 0.38rem 0.72rem;
  color: #d85a30;
  background: rgba(216, 90, 48, 0.1);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
}

.use-case-card__icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-top: -1.5rem;
  color: #ffffff;
  background: #344255;
  border: 4px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  font-size: 1.2rem;
}

.use-case-card__content h2 {
  margin-bottom: 0;
  color: #344255;
  font-size: 1.25rem;
}

.use-case-card__description {
  color: #64748b;
  font-size: 0.96rem;
  line-height: 1.65;
}

.use-case-card__features {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.use-case-card__features li {
  position: relative;
  padding-left: 1.35rem;
  color: #1e293b;
  font-size: 0.92rem;
  line-height: 1.5;
}

.use-case-card__features li::before {
  content: "radio_button_checked";
  position: absolute;
  left: 0;
  top: -0.02rem;
  font-family: "Material Symbols Rounded", sans-serif;
  font-size: 0.95rem;
  color: #d85a30;
  font-variation-settings: "FILL" 1;
}

.use-case-card__footer {
  display: flex;
  align-items: center;
  padding: 0 1.15rem 1.15rem;
}

.use-case-card__link {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  color: #d85a30;
  font-size: 0.92rem;
  font-weight: 700;
}

.use-case-locations {
  margin-bottom: 3.25rem;
  padding: 2.25rem 1.35rem;
  background: linear-gradient(180deg, rgb(251, 252, 254), rgb(247, 249, 252));
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 30px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.use-case-locations__grid {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.use-case-location-card {
  display: grid;
  gap: 0.7rem;
  place-items: center;
  min-height: 6.8rem;
  padding: 0.95rem 0.75rem;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.use-case-location-card .material-symbols-rounded {
  width: 2.9rem;
  height: 2.9rem;
  display: inline-grid;
  place-items: center;
  color: #d85a30;
  background: rgba(216, 90, 48, 0.08);
  border-radius: 12px;
  font-size: 1.35rem;
}

.use-case-location-card h3 {
  margin-bottom: 0;
  color: #344255;
  font-size: 0.88rem;
}

.use-case-journey {
  margin-bottom: 3.25rem;
}

.use-case-journey__track {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.use-case-journey__step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  padding: 0.4rem;
  text-align: center;
}

.use-case-journey__icon {
  display: inline-grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  color: #ffffff;
  background: #344255;
  border-radius: 999px;
  font-size: 1.35rem;
  box-shadow: 0 12px 24px rgba(52, 66, 85, 0.16);
}

.use-case-journey__step p {
  color: #344255;
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1.35;
}

.use-case-final {
  display: grid;
  gap: 1.5rem;
  padding: 1.6rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}

.use-case-final__intro {
  display: grid;
  gap: 1.5rem;
}

.use-case-final__copy h2 {
  margin-bottom: 0.85rem;
  color: #344255;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.use-case-final__copy h2 span,
.use-case-cta__inner h2 span {
  color: #d85a30;
}

.use-case-final__copy p {
  color: #64748b;
  line-height: 1.75;
}

.use-case-final__ideas {
  display: grid;
  gap: 0.85rem;
}

.use-case-final__idea {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 4rem;
  padding: 0.85rem 1rem;
  color: #344255;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.use-case-final__idea .material-symbols-rounded {
  font-size: 1.25rem;
  color: #d85a30;
}

.use-case-cta {
  padding: 0;
}

.use-case-cta__inner {
  display: grid;
  gap: 1.25rem;
  padding: 1.6rem;
  color: #ffffff;
  background: radial-gradient(circle at bottom center, rgba(216, 90, 48, 0.2), transparent 28%), linear-gradient(160deg, rgb(52, 66, 85), rgba(22, 42, 63, 0.98));
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(52, 66, 85, 0.18);
}

.use-case-cta__inner h2 {
  margin-bottom: 0.6rem;
  color: #ffffff;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.use-case-cta__inner p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.use-case-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.use-case-cta__actions .btn {
  min-height: 3.3rem;
  padding-inline: 1.3rem;
  font-weight: 700;
}

.use-case-cta__actions .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}

.use-case-cta__actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.use-case-cta__hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-style: italic;
}

.restaurant-use-case {
  padding-top: 3.5rem;
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 22%);
}

.restaurant-use-case__hero {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.restaurant-use-case__hero-copy {
  display: grid;
  gap: 1rem;
}

.restaurant-use-case__hero-copy h1 {
  margin-bottom: 0;
  color: #344255;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 1.02;
}

.restaurant-use-case__hero-copy p {
  max-width: 42rem;
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.8;
}

.restaurant-use-case__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.restaurant-use-case__hero-actions .btn {
  min-height: 3.3rem;
  padding-inline: 1.3rem;
}

.restaurant-use-case__hero-visual {
  min-width: 0;
}

.restaurant-use-case__hero-surface {
  position: relative;
  min-height: 26rem;
  padding: 1.3rem;
  border-radius: 28px;
}

.restaurant-use-case__hero-surface::after {
  content: "";
  position: absolute;
  inset: auto 12% 2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: rgba(216, 90, 48, 0.18);
  filter: blur(16px);
}

.restaurant-use-case__hero-phone {
  position: relative;
  z-index: 1;
  width: min(100%, 19rem);
  margin: 0 auto;
  padding: 0.75rem;
  border-radius: 2.4rem;
  background: linear-gradient(180deg, #111827, #2a3445);
  box-shadow: 0 24px 45px rgba(15, 23, 42, 0.34);
}

.restaurant-use-case__hero-phone::before {
  content: "";
  display: block;
  width: 5.8rem;
  height: 0.42rem;
  margin: 0 auto 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.restaurant-use-case__hero-phone-screen {
  display: grid;
  align-content: end;
  aspect-ratio: 9/16;
  gap: 0.8rem;
  padding: 1.5rem 1.2rem;
  border-radius: 1.8rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.72)), url("/assets/images/home/restaurant.png") center/cover no-repeat;
  color: #ffffff;
}

.restaurant-use-case__hero-label {
  display: inline-flex;
  width: fit-content;
  min-height: 2rem;
  align-items: center;
  padding: 0.45rem 0.75rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.restaurant-use-case__hero-phone-screen strong {
  font-size: 1.9rem;
  line-height: 1.05;
}

.restaurant-use-case__hero-phone-screen p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

.restaurant-use-case__story {
  margin-bottom: 3rem;
}

.restaurant-use-case__steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.restaurant-use-case__step {
  display: grid;
  gap: 0.75rem;
  padding: 1.35rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.restaurant-use-case__step-index {
  display: inline-flex;
  width: fit-content;
  min-height: 2.4rem;
  align-items: center;
  padding: 0.45rem 0.8rem;
  color: #d85a30;
  background: rgba(216, 90, 48, 0.1);
  border-radius: 999px;
  font-weight: 800;
}

.restaurant-use-case__step h2 {
  margin-bottom: 0;
  color: #344255;
  font-size: 1.25rem;
}

.restaurant-use-case__step p {
  color: #64748b;
  line-height: 1.75;
}

.demo-section {
  margin-bottom: 3rem;
}

.demo-content {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 1.6rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.demo-content__copy {
  display: grid;
  gap: 1rem;
}

.demo-content__copy h2 {
  margin-bottom: 0;
  color: #344255;
  font-size: clamp(1.95rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.demo-content__copy > p {
  color: #64748b;
  line-height: 1.8;
}

.demo-content__hint {
  margin-top: 0.2rem;
  font-size: 0.96rem;
}

.demo-card-wrap {
  min-width: 0;
}

.demo-card {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.demo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 58px rgba(15, 23, 42, 0.14);
}

.demo-card::before {
  content: "";
  position: absolute;
  inset: auto 12% 1.4rem;
  height: 1rem;
  border-radius: 999px;
  background: rgba(216, 90, 48, 0.16);
  filter: blur(14px);
}

.demo-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 2rem;
  align-items: center;
  padding: 0.45rem 0.75rem;
  color: #d85a30;
  background: rgba(216, 90, 48, 0.1);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.demo-card__visual {
  position: relative;
  display: grid;
  gap: 1rem;
  align-items: center;
}

.demo-qrcode {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  animation: demo-card-float 3.6s ease-in-out infinite;
}

.demo-qrcode img {
  display: block;
  width: min(100%, 19rem);
  height: auto;
}

.demo-phone {
  position: relative;
  z-index: 1;
  width: min(100%, 15rem);
  justify-self: end;
  margin-top: -3rem;
  padding: 0.65rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, #182433, #2a3445);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.22);
}

.demo-phone::before {
  content: "";
  display: block;
  width: 4.6rem;
  height: 0.35rem;
  margin: 0 auto 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.demo-phone__screen {
  display: grid;
  align-content: end;
  aspect-ratio: 9/16;
  gap: 0.7rem;
  padding: 1.15rem 1rem;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.72)), url("/assets/images/home/restaurant.png") center/cover no-repeat;
  color: #ffffff;
}

.demo-phone__kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 1.8rem;
  align-items: center;
  padding: 0.35rem 0.65rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
}

.demo-phone__screen strong {
  font-size: 1.2rem;
  line-height: 1.2;
}

.demo-phone__screen p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.6;
}

.demo-card__caption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.3rem;
  text-align: center;
}

.demo-card__caption strong {
  color: #344255;
  font-size: 1.05rem;
}

.demo-card__caption span {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-weight: 600;
}

.demo-card__caption .material-symbols-rounded {
  font-size: 1.25rem;
  color: #d85a30;
}

.demo-features {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-features li {
  position: relative;
  padding-left: 1.8rem;
  color: #1e293b;
  line-height: 1.55;
  font-weight: 500;
}

.demo-features li::before {
  content: "check_circle";
  position: absolute;
  left: 0;
  top: -0.05rem;
  font-family: "Material Symbols Rounded", sans-serif;
  font-size: 1.2rem;
  color: #16a34a;
  font-variation-settings: "FILL" 1;
}

@keyframes demo-card-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
@media (min-width: 768px) {
  .use-cases-grid,
  .use-case-locations__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .use-case-final__ideas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .restaurant-use-case__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .demo-card__visual {
    grid-template-columns: minmax(0, 1fr) minmax(11rem, 14rem);
  }
}
@media (min-width: 960px) {
  .use-cases-page {
    padding-top: 3rem;
  }
  .use-cases-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
  .use-case-locations__grid {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .use-case-journey__track {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    align-items: stretch;
  }
  .use-case-journey__step {
    min-height: 100%;
  }
  .use-case-journey__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 1.6rem;
    left: calc(100% - 0.55rem);
    width: 1.1rem;
    height: 1px;
    background: rgba(52, 66, 85, 0.2);
  }
  .use-case-final__intro {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    align-items: start;
  }
  .use-case-final__ideas {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .use-case-cta__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 2rem;
  }
  .restaurant-use-case__hero,
  .demo-content {
    grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  }
}
@media (max-width: 959.98px) {
  .demo-phone {
    justify-self: center;
    margin-top: 0;
  }
}
@media (max-width: 767.98px) {
  .use-cases-page {
    padding-top: 2rem;
  }
  .use-cases-intro h1 br {
    display: none;
  }
  .use-case-locations,
  .use-case-final {
    padding: 1.2rem;
  }
  .use-case-cta__actions .btn {
    width: 100%;
  }
  .restaurant-use-case {
    padding-top: 2.5rem;
  }
  .restaurant-use-case__hero-surface {
    min-height: 22rem;
  }
  .restaurant-use-case__hero-phone-screen {
    aspect-ratio: 9/16;
  }
  .demo-content {
    padding: 1.25rem;
  }
  .demo-card {
    padding: 1.2rem;
  }
  .demo-qrcode img {
    width: min(100%, 15rem);
  }
}
.spot-locations {
  margin-bottom: 3.25rem;
  padding: 2.4rem 0;
}

.spot-locations__header {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}

.spot-locations__header p {
  max-width: 42rem;
  margin: 0 auto;
  color: #64748b;
  line-height: 1.75;
}

.spot-locations__carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
}

.spot-locations__viewport {
  min-width: 0;
}

.spot-locations__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(82%, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.35rem 0.1rem 0.95rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.spot-locations__track::-webkit-scrollbar {
  display: none;
}

.spot-locations__card {
  scroll-snap-align: start;
}

.spot-locations__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(52, 66, 85, 0.98), rgba(33, 43, 57, 0.92));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.spot-locations__card:hover .spot-locations__image {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.12);
}

.spot-locations__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spot-locations__overlay {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.74) 68%, rgba(15, 23, 42, 0.92));
  pointer-events: none;
}

.spot-locations__title {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.95rem;
  margin: 0;
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 1.25;
}

.spot-locations__arrow {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  color: #344255;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.spot-locations__arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
  background: #f7f9fc;
}

.spot-locations__arrow:disabled {
  opacity: 0.45;
}

.spot-locations__arrow .material-symbols-rounded {
  font-size: 1.3rem;
}

.spot-locations__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
}

.spot-locations__dot {
  width: 0.7rem;
  height: 0.7rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(52, 66, 85, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.spot-locations__dot.is-active {
  transform: scale(1.1);
  background: #d85a30;
}

@media (min-width: 768px) {
  .spot-locations__track {
    grid-auto-columns: minmax(calc(50% - 0.5rem), 1fr);
  }
}
@media (min-width: 960px) {
  .spot-locations__track {
    grid-auto-columns: minmax(calc(33.333% - 0.67rem), 1fr);
  }
}
@media (min-width: 1200px) {
  .spot-locations__track {
    grid-auto-columns: minmax(calc(25% - 0.75rem), 1fr);
  }
}
@media (max-width: 767.98px) {
  .spot-locations {
    padding-block: 1.5rem;
  }
  .spot-locations__carousel {
    grid-template-columns: 1fr;
  }
  .spot-locations__arrow {
    display: none;
  }
}
.pricing-page {
  padding: 3rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
}

.pricing-hero {
  max-width: 50rem;
  margin-bottom: 2.5rem;
}

.pricing-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  line-height: 1.02;
}

.pricing-hero p {
  margin-bottom: 0;
  color: #64748b;
  font-size: 1.08rem;
  line-height: 1.7;
}

.pricing-faq {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}

.pricing-faq__grid {
  display: grid;
  gap: 1rem;
}

.pricing-faq__item {
  padding: 1.4rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}

.pricing-faq__item h3 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.pricing-faq__item p {
  margin-bottom: 0;
  color: #64748b;
}

.pricing-cta {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  margin-top: 4rem;
  padding: 2rem;
  background: #344255;
  border-radius: 24px;
}

.pricing-cta h2,
.pricing-cta p {
  color: #ffffff;
}

.pricing-cta p {
  margin-bottom: 0;
  opacity: 0.82;
}

.pricing-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.pricing-cta .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.pricing-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .pricing-faq__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 960px) {
  .pricing-cta {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}
.trial-page {
  padding: 3rem 0 5rem;
  background: radial-gradient(circle at top left, rgba(216, 90, 48, 0.08), transparent 32%), linear-gradient(180deg, #fbfbfc 0%, #ffffff 100%);
}

.trial-hero {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.trial-hero__content {
  max-width: 760px;
}

.trial-hero__content h1 {
  margin-bottom: 1rem;
  color: #344255;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1.02;
}

.trial-hero__content p {
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #64748b;
}

.trial-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.trial-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
  color: #344255;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  font-size: 0.95rem;
  font-weight: 600;
}

.trial-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.trial-intro,
.trial-form-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.trial-form-card {
  order: -1;
}

.trial-intro h2 {
  margin-bottom: 1rem;
  color: #344255;
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  line-height: 1.1;
}

.trial-intro > p {
  margin-bottom: 1.5rem;
  color: #64748b;
  line-height: 1.75;
}

.trial-steps {
  display: grid;
  gap: 0.9rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  counter-reset: trial-steps;
}

.trial-steps li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.9rem;
  align-items: center;
  color: #344255;
  font-weight: 600;
}

.trial-steps li::before {
  counter-increment: trial-steps;
  content: counter(trial-steps);
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #d85a30;
  background: rgba(216, 90, 48, 0.12);
  border-radius: 999px;
  font-weight: 800;
}

.trial-note {
  padding: 1.2rem 1.25rem;
  background: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}

.trial-note strong {
  display: block;
  margin-bottom: 0.55rem;
  color: #344255;
  font-size: 1rem;
}

.trial-note p {
  color: #64748b;
  line-height: 1.7;
}

.trial-alert {
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
}

.trial-alert strong {
  display: block;
  margin-bottom: 0.35rem;
}

.trial-alert p + p {
  margin-top: 0.5rem;
}

.trial-alert--success {
  color: #166534;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.trial-alert--error {
  color: #991b1b;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.18);
}

.trial-debug {
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
}

.trial-debug strong {
  display: block;
  margin-bottom: 0.65rem;
}

.trial-debug pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.84rem;
  line-height: 1.6;
}

.trial-form {
  display: grid;
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.45rem;
}

.form-group label {
  color: #344255;
  font-weight: 700;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  min-height: 3.3rem;
  padding: 0.9rem 1rem;
  color: #344255;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-control:focus {
  outline: none;
  border-color: rgba(216, 90, 48, 0.55);
  box-shadow: 0 0 0 4px rgba(216, 90, 48, 0.12);
}

.form-select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #344255 50%), linear-gradient(135deg, #344255 50%, transparent 50%);
  background-position: calc(100% - 1.25rem) calc(50% - 2px), calc(100% - 0.95rem) calc(50% - 2px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.form-textarea {
  min-height: 8rem;
  resize: vertical;
}

.trial-activity-other {
  margin-top: 12px;
}

.trial-activity-other.is-hidden {
  display: none;
}

.form-check {
  gap: 0.65rem;
}

.form-check label {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.8rem;
  align-items: start;
  font-weight: 500;
  color: #1e293b;
}

.form-check input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: #d85a30;
}

.form-error {
  color: #dc2626;
  font-size: 0.88rem;
}

.has-error .form-control {
  border-color: rgba(220, 38, 38, 0.5);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.trial-form__actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.trial-form__actions .btn {
  width: 100%;
  min-height: 3.5rem;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.trial-form__actions p,
.trial-form__legal {
  color: #64748b;
  font-size: 0.94rem;
  line-height: 1.7;
}

.trial-form__legal a {
  color: #d85a30;
  font-weight: 600;
}

@media (min-width: 960px) {
  .trial-page {
    padding: 4rem 0 6rem;
  }
  .trial-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 470px);
    gap: 2rem;
  }
  .trial-form-card {
    order: 0;
    position: sticky;
    top: 6.5rem;
  }
  .trial-intro,
  .trial-form-card {
    padding: 2rem;
  }
}
.contact-page {
  padding: 3.5rem 0 5rem;
  background: radial-gradient(circle at top center, rgba(216, 90, 48, 0.08), transparent 30%), linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.contact-intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.contact-intro h1 {
  margin-bottom: 1rem;
  color: #344255;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.04;
}

.contact-intro p {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-layout {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.contact-card h2 {
  margin-bottom: 1.2rem;
  color: #344255;
  font-size: 1.8rem;
}

.contact-info,
.contact-form,
.contact-faq,
.contact-confirmation {
  padding: 1.6rem;
}

.contact-info__list,
.contact-info__reasons ul {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 10px;
}

.contact-info__list li {
  display: grid;
  grid-template-columns: 2.9rem 1fr;
  gap: 0.9rem;
  align-items: start;
}

.contact-info__icon {
  display: inline-grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  color: #d85a30;
  background: rgba(216, 90, 48, 0.1);
  border-radius: 16px;
  font-size: 1.45rem;
}

.contact-info__list strong,
.contact-info__reasons h3 {
  display: block;
  margin-bottom: 0.25rem;
  color: #344255;
}

.contact-info__list a,
.contact-info__list span,
.contact-info__reasons li {
  color: #64748b;
  line-height: 1.7;
}

.contact-info__reasons {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.contact-info__reasons li {
  position: relative;
  padding-left: 1rem;
}

.contact-info__reasons li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.4rem;
  height: 0.4rem;
  background: #d85a30;
  border-radius: 999px;
}

.contact-info__response {
  margin-top: 1.75rem;
  padding: 1rem 1.1rem;
  color: #ffffff;
  background: rgba(52, 66, 85, 0.92);
  border-radius: 14px;
}

.contact-form-wrap {
  display: grid;
  gap: 1.5rem;
}

.contact-form__field {
  position: relative;
}

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

.contact-form__grid {
  display: grid;
  gap: 1rem;
}

.contact-form .form-group {
  display: grid;
  gap: 0.45rem;
}

.contact-form label {
  color: #344255;
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-form .form-control {
  width: 100%;
  min-height: 3.3rem;
  padding: 0.9rem 1rem;
  color: #344255;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: rgba(216, 90, 48, 0.55);
  box-shadow: 0 0 0 4px rgba(216, 90, 48, 0.12);
}

.contact-form__global-error {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  color: #991b1b;
  background: rgba(254, 242, 242, 0.98);
  border: 1px solid rgba(248, 113, 113, 0.35);
  border-radius: 16px;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .form-select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #344255 50%), linear-gradient(135deg, #344255 50%, transparent 50%);
  background-position: calc(100% - 1.25rem) calc(50% - 2px), calc(100% - 0.95rem) calc(50% - 2px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.contact-form .form-textarea {
  min-height: 10rem;
  resize: vertical;
}

.contact-form .form-check label {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.8rem;
  align-items: start;
  font-weight: 500;
  color: #1e293b;
}

.contact-form .form-check input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: #d85a30;
}

.contact-form .form-error {
  color: #dc2626;
  font-size: 0.88rem;
}

.contact-form__error {
  margin: 0;
}

.contact-form .has-error .form-control {
  border-color: rgba(220, 38, 38, 0.5);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.contact-form__actions .btn {
  min-width: 13rem;
  min-height: 3.4rem;
  padding-inline: 1.4rem;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-confirmation {
  display: grid;
  gap: 0.8rem;
  justify-items: start;
}

.contact-confirmation__icon {
  display: inline-grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  color: #ffffff;
  background: #d85a30;
  border-radius: 18px;
  font-size: 1.6rem;
}

.contact-success {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  text-align: center;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.contact-success h1 {
  margin: 0;
  color: #344255;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.contact-success p {
  margin: 0;
  color: #64748b;
  line-height: 1.75;
}

.contact-success__icon {
  display: inline-grid;
  place-items: center;
  width: 4.2rem;
  height: 4.2rem;
  margin: 0 auto;
  color: #ffffff;
  background: #d85a30;
  border-radius: 22px;
  font-size: 2rem;
  box-shadow: 0 16px 34px rgba(216, 90, 48, 0.22);
}

.contact-success__reference {
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 1.2rem;
  background: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
}

.contact-success__reference span {
  color: #64748b;
  font-size: 0.92rem;
}

.contact-success__reference strong {
  color: #344255;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.contact-success__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.contact-faq__items {
  display: grid;
  gap: 0.85rem;
}

.contact-faq__item {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
}

.contact-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  color: #344255;
  font-weight: 700;
  text-align: left;
  border: none;
}

.contact-faq__question .material-symbols-rounded {
  transition: transform 180ms ease;
}

.contact-faq__question[aria-expanded=true] .material-symbols-rounded {
  transform: rotate(180deg);
}

.contact-faq__answer {
  padding: 0 1.1rem 1rem;
  color: #64748b;
  line-height: 1.7;
}

.contact-cta {
  display: grid;
  gap: 1.25rem;
  padding: 1.6rem;
  color: #ffffff;
  background: #344255;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(52, 66, 85, 0.2);
}

.contact-cta h2 {
  margin-bottom: 0.55rem;
  color: #ffffff;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.contact-cta__actions .btn {
  min-height: 3.3rem;
  padding-inline: 1.3rem;
  font-weight: 700;
}

.contact-cta__actions .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}

.contact-cta__actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .contact-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-form__grid > .trial-activity-other {
    grid-column: span 2;
  }
}
@media (min-width: 960px) {
  .contact-page {
    padding: 4rem 0 6rem;
  }
  .contact-layout {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    gap: 2rem;
  }
  .contact-info,
  .contact-form,
  .contact-faq,
  .contact-confirmation {
    padding: 2rem;
  }
  .contact-info {
    position: sticky;
    top: 6.5rem;
  }
  .contact-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 2rem;
  }
}
@media (max-width: 767.98px) {
  .contact-success__actions {
    flex-direction: column;
  }
  .contact-success__actions .btn {
    width: 100%;
  }
}
.construction-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 2rem 0 1.5rem;
  background: #f8f9fb;
}

.construction-page__inner {
  display: grid;
  flex: 1;
  place-items: center;
}

.construction-card {
  display: grid;
  justify-items: center;
  gap: 1.35rem;
  width: min(100%, 42rem);
  padding: 2rem 1.5rem;
  text-align: center;
  animation: construction-fade-in 320ms ease-out;
}

.construction-card__logo {
  width: min(100%, 11.25rem);
  height: auto;
  animation: construction-float 3.6s ease-in-out infinite;
}

.construction-card__copy h1 {
  margin-bottom: 1rem;
  color: #344255;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
}

.construction-card__copy p {
  margin-bottom: 0.85rem;
  color: #64748b;
  font-size: 1.04rem;
  line-height: 1.8;
}

.construction-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0.45rem 0.9rem;
  color: #d85a30;
  background: rgba(216, 90, 48, 0.1);
  border: 1px solid rgba(216, 90, 48, 0.15);
  border-radius: 999px;
  font-weight: 700;
}

.construction-card__contact {
  min-height: 3.15rem;
  padding-inline: 1.25rem;
  border-radius: 999px;
  font-weight: 700;
}

.construction-page__footer {
  padding-top: 1rem;
  color: #64748b;
  text-align: center;
}

@keyframes construction-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes construction-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
.legal-container {
  width: min(100% - 2rem, 860px);
}

.legal-hero {
  padding-bottom: 2rem;
}

.legal-meta {
  margin-bottom: 1rem;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 600;
}

.legal-sheet {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
}

.legal-block {
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}

.legal-block h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

.legal-block h3 {
  margin: 1.25rem 0 0.75rem;
  color: #344255;
  font-size: 1rem;
}

.legal-block p:last-child,
.legal-list:last-child {
  margin-bottom: 0;
}

.legal-list {
  margin: 0;
  padding-left: 1.15rem;
  color: #64748b;
}

.legal-list li + li {
  margin-top: 0.7rem;
}

.legal-block a {
  color: #d85a30;
  font-weight: 600;
}

@media (min-width: 768px) {
  .legal-sheet {
    padding: 2rem;
  }
  .legal-block {
    padding: 1.75rem;
  }
}
.support-wallet-hero .container {
  display: grid;
  gap: 1.5rem;
}

.support-wallet-page {
  padding: 0 0 5rem;
}

.support-wallet-card {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
}

.support-wallet-sections {
  display: grid;
  gap: 1rem;
}

.support-topic,
.support-contact-card {
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}

.support-topic h2,
.support-contact-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.support-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #64748b;
}

.support-list li + li {
  margin-top: 0.75rem;
}

.support-contact-link {
  color: #d85a30;
  font-weight: 700;
}

.support-note {
  margin-bottom: 0;
  color: #64748b;
  font-size: 0.95rem;
}

@media (min-width: 960px) {
  .support-wallet-card {
    grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.85fr);
    align-items: start;
  }
}
/* ==========================================================
   GUIDE — VARIABLES
   ========================================================== */
.guide-levels,
.guide-start,
.guide-featured,
.guide-coach {
  --guide-dark: #101c3d;
  --guide-text: #536078;
  --guide-primary: #5745f5;
  --guide-primary-soft: #f0edff;
  --guide-border: #e7e9f0;
  --guide-background: #f8f9fc;
  --guide-white: #ffffff;
}

.guide-levels *,
.guide-start *,
.guide-featured *,
.guide-coach * {
  box-sizing: border-box;
}

/* ==========================================================
   ACCESSIBILITÉ
   ========================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

/* ==========================================================
   HERO
   ========================================================== */
/* ==========================================================
   ACADÉMIE SPOTCARD — HERO
   ========================================================== */
.academy-hero {
  position: relative;
  display: flex;
  min-height: 720px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-color: #0b1326;
}

.academy-hero__background {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image: var(--academy-hero-image);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*
 * Le voile est fort à gauche pour la lisibilité,
 * puis devient progressivement transparent à droite.
 */
.academy-hero__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 14, 29, 0.94) 0%, rgba(7, 14, 29, 0.88) 27%, rgba(7, 14, 29, 0.69) 47%, rgba(7, 14, 29, 0.27) 72%, rgba(7, 14, 29, 0.12) 100%);
}

.academy-hero__overlay::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 22, 0.08) 0%, rgba(5, 10, 22, 0.02) 56%, rgba(5, 10, 22, 0.3) 100%);
  content: "";
}

.academy-hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.academy-hero__content {
  padding-left: 120px;
}

/* Force la couleur pour éviter les conflits avec les styles globaux */
.academy-hero .academy-hero__eyebrow {
  display: inline-block;
  margin: 0 0 24px;
  color: #ed5b32;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.academy-hero .academy-hero__title {
  max-width: 750px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.2rem, 5.4vw, 5.2rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.academy-hero .academy-hero__description {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  font-weight: 400;
  line-height: 1.65;
}

/* ==========================================================
   RECHERCHE
   ========================================================== */
.academy-search {
  display: flex;
  width: min(100%, 670px);
  align-items: center;
  margin-top: 36px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 15px;
  background: rgba(8, 15, 31, 0.34);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.academy-search:focus-within {
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22), 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.academy-search__icon {
  position: relative;
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  margin-left: 14px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
}

.academy-search__icon::after {
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  content: "";
  transform: rotate(45deg);
  transform-origin: left center;
}

.academy-search .academy-search__input {
  min-width: 0;
  flex: 1;
  padding: 15px 18px;
  border: 0;
  outline: none;
  color: #ffffff;
  background: transparent;
  font: inherit;
  font-size: 1rem;
}

.academy-search .academy-search__input::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.academy-search .academy-search__button {
  flex: 0 0 auto;
  padding: 14px 23px;
  border: 0;
  border-radius: 10px;
  color: #ffffff;
  background: #ed5b32;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.academy-search .academy-search__button:hover {
  background: #d94d28;
}

.academy-search .academy-search__button:active {
  transform: translateY(1px);
}

/* ==========================================================
   LIEN VERS LE PARCOURS
   ========================================================== */
.academy-hero .academy-hero__discover {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.academy-hero__discover-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  transition: background-color 160ms ease, transform 160ms ease;
}

.academy-hero__discover:hover .academy-hero__discover-icon {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(3px);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1100px) {
  .academy-hero {
    min-height: 680px;
  }
  .academy-hero__background {
    background-position: 58% center;
  }
  .academy-hero__overlay {
    background: linear-gradient(90deg, rgba(7, 14, 29, 0.95) 0%, rgba(7, 14, 29, 0.88) 40%, rgba(7, 14, 29, 0.46) 76%, rgba(7, 14, 29, 0.22) 100%);
  }
  .academy-hero__content {
    width: min(100%, 680px);
  }
}
@media (max-width: 760px) {
  .academy-hero {
    min-height: auto;
  }
  .academy-hero__background {
    background-position: 64% center;
  }
  .academy-hero__overlay {
    background: linear-gradient(90deg, rgba(7, 14, 29, 0.94) 0%, rgba(7, 14, 29, 0.81) 100%);
  }
  .academy-hero__content {
    width: 100%;
    padding: 95px 0 70px;
  }
  .academy-hero .academy-hero__title {
    max-width: 600px;
    font-size: clamp(2.6rem, 11vw, 4rem);
    line-height: 1.04;
  }
  .academy-hero .academy-hero__description {
    max-width: 560px;
    font-size: 1.04rem;
  }
  .academy-search {
    align-items: stretch;
    flex-wrap: wrap;
    padding: 8px;
  }
  .academy-search__icon {
    margin-top: 15px;
  }
  .academy-search .academy-search__input {
    flex: 1 1 calc(100% - 55px);
  }
  .academy-search .academy-search__button {
    width: 100%;
    margin-top: 5px;
    padding: 15px 20px;
  }
}
@media (max-width: 480px) {
  .academy-hero__background {
    background-position: 68% center;
  }
  .academy-hero__content {
    padding: 78px 0 55px;
  }
  .academy-hero .academy-hero__eyebrow {
    margin-bottom: 18px;
    font-size: 0.72rem;
  }
  .academy-hero .academy-hero__title {
    font-size: 2.55rem;
  }
  .academy-hero .academy-hero__description {
    margin-top: 20px;
    line-height: 1.55;
  }
}
/* ==========================================================
   ACCESSIBILITÉ
   ========================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

/* ==========================================================
   RESPONSIVE — TABLETTE
   ========================================================== */
@media (max-width: 960px) {
  .guide-hero {
    min-height: 680px;
  }
  .guide-hero__background {
    /*
     * À ajuster selon l’emplacement de la personne
     * sur l’image finale.
     */
    background-position: 58% center;
  }
  .guide-hero__overlay {
    background: linear-gradient(90deg, rgba(8, 14, 29, 0.93) 0%, rgba(8, 14, 29, 0.82) 55%, rgba(8, 14, 29, 0.42) 100%);
  }
  .guide-hero__content {
    max-width: 680px;
  }
}
/* ==========================================================
   RESPONSIVE — MOBILE
   ========================================================== */
@media (max-width: 720px) {
  .guide-hero {
    min-height: auto;
  }
  .guide-hero__background {
    background-position: 66% center;
  }
  .guide-hero__overlay {
    background: linear-gradient(90deg, rgba(8, 14, 29, 0.92), rgba(8, 14, 29, 0.74));
  }
  .guide-hero__content {
    max-width: 100%;
    padding: 100px 0 70px;
  }
  .guide-hero__title {
    font-size: clamp(2.6rem, 12vw, 4rem);
    line-height: 1.05;
  }
  .guide-hero__description {
    margin-top: 22px;
    font-size: 1.05rem;
  }
  .guide-search {
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 30px;
    padding: 8px;
  }
  .guide-search__icon {
    margin-top: 15px;
  }
  .guide-search__input {
    flex: 1 1 calc(100% - 55px);
  }
  .guide-search__button {
    width: 100%;
    margin-top: 5px;
    padding: 15px 20px;
  }
}
/* ==========================================================
   PETITS ÉCRANS
   ========================================================== */
@media (max-width: 480px) {
  .guide-hero__content {
    padding: 80px 0 55px;
  }
  .guide-hero__eyebrow {
    margin-bottom: 17px;
    font-size: 0.72rem;
  }
  .guide-hero__title {
    font-size: 2.55rem;
  }
  .guide-hero__description {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.55;
  }
}
/* ==========================================================
   PRÉFÉRENCE DE MOUVEMENT
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  .guide-search__button,
  .guide-hero__start span {
    transition: none;
  }
}
.guide-hero__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 70px;
  align-items: center;
}

.guide-eyebrow,
.guide-section-heading__eyebrow,
.guide-start__eyebrow,
.guide-coach__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--guide-primary-soft);
  color: var(--guide-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.guide-hero__title {
  max-width: 720px;
  margin: 20px 0;
  color: var(--guide-dark);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.guide-hero__description {
  max-width: 650px;
  margin: 0;
  color: var(--guide-text);
  font-size: 1.1rem;
  line-height: 1.75;
}

.guide-search {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 650px;
  margin-top: 34px;
  padding: 7px;
  border: 1px solid var(--guide-border);
  border-radius: 16px;
  background: var(--guide-white);
  box-shadow: 0 12px 35px rgba(17, 28, 61, 0.08);
}

.guide-search__icon-placeholder {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-left: 13px;
  border: 2px solid #a4aaba;
  border-radius: 50%;
}

.guide-search__input {
  min-width: 0;
  flex: 1;
  padding: 14px;
  border: 0;
  outline: 0;
  color: var(--guide-dark);
  font: inherit;
  background: transparent;
}

.guide-search__button {
  padding: 13px 20px;
  border: 0;
  border-radius: 11px;
  background: var(--guide-primary);
  color: var(--guide-white);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

/* ==========================================================
   EMPLACEMENTS D’ICÔNES
   ========================================================== */
.guide-icon-placeholder {
  display: inline-block;
  width: 42px;
  height: 42px;
  border: 2px dashed currentColor;
  border-radius: 13px;
  opacity: 0.38;
}

/* ==========================================================
   TITRES DE SECTIONS
   ========================================================== */
.guide-section-heading {
  max-width: 750px;
  margin-bottom: 38px;
}

.guide-section-heading h2,
.guide-featured__heading h2,
.guide-start__content h2,
.guide-coach__content h2 {
  margin: 14px 0 10px;
  color: var(--guide-dark);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.guide-section-heading p,
.guide-start__content p,
.guide-coach__content p {
  margin: 0;
  color: var(--guide-text);
  line-height: 1.7;
}

/* ==========================================================
   NIVEAUX
   ========================================================== */
.guide-levels {
  padding: 80px 0;
  background: var(--guide-background);
}

.guide-levels__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.guide-level-card {
  display: flex;
  min-width: 0;
  min-height: 480px;
  flex-direction: column;
  padding: 25px 22px;
  border: 1px solid var(--guide-border);
  border-radius: 20px;
  background: var(--guide-white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.guide-level-card:hover {
  transform: translateY(-5px);
  border-color: rgba(87, 69, 245, 0.35);
  box-shadow: 0 18px 45px rgba(17, 28, 61, 0.09);
}

.guide-level-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.guide-level-card__label {
  color: var(--level-color, var(--guide-primary));
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.guide-level-card__number {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  background: var(--level-soft, var(--guide-primary-soft));
  color: var(--level-color, var(--guide-primary));
  font-weight: 700;
}

.guide-level-card__icon {
  width: 58px;
  height: 58px;
  margin: 35px auto 20px;
  color: var(--level-color, var(--guide-primary));
  border-radius: 18px;
}

.guide-level-card h3 {
  margin: 0 0 12px;
  color: var(--guide-dark);
  text-align: center;
  font-size: 1.25rem;
}

.guide-level-card > p {
  min-height: 90px;
  margin: 0;
  color: var(--guide-text);
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.6;
}

.guide-level-card__topics {
  display: grid;
  gap: 9px;
  margin: 25px 0;
  padding: 0;
  color: var(--guide-text);
  font-size: 0.86rem;
  list-style: none;
}

.guide-level-card__topics li {
  position: relative;
  padding-left: 18px;
}

.guide-level-card__topics li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--level-color, var(--guide-primary));
  content: "";
}

.guide-level-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--guide-border);
  color: var(--level-color, var(--guide-primary));
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.guide-level-card--start {
  --level-color: #654bf4;
  --level-soft: #eeebff;
}

.guide-level-card--communicate {
  --level-color: #d84d8c;
  --level-soft: #fff0f7;
}

.guide-level-card--loyalty {
  --level-color: #159d68;
  --level-soft: #e8faf2;
}

.guide-level-card--analyse {
  --level-color: #3478e5;
  --level-soft: #eaf2ff;
}

.guide-level-card--animate {
  --level-color: #e67817;
  --level-soft: #fff3e7;
}

/* ==========================================================
   PARCOURS RECOMMANDÉ
   ========================================================== */
.guide-start {
  padding: 70px 0 20px;
}

.guide-start__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 25px;
  align-items: center;
  padding: 30px 35px;
  border: 1px solid rgba(87, 69, 245, 0.15);
  border-radius: 22px;
  background: linear-gradient(120deg, #f5f2ff, #fbfaff);
}

.guide-start__icon {
  width: 68px;
  height: 68px;
  color: var(--guide-primary);
}

.guide-start__button {
  white-space: nowrap;
}

/* ==========================================================
   GUIDES MIS EN AVANT
   ========================================================== */
.guide-featured {
  padding: 80px 0;
}

.guide-featured__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 35px;
}

.guide-featured__all {
  color: var(--guide-primary);
  font-weight: 700;
  text-decoration: none;
}

.guide-featured__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.guide-card {
  overflow: hidden;
  border: 1px solid var(--guide-border);
  border-radius: 20px;
  background: var(--guide-white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(17, 28, 61, 0.09);
}

.guide-card__visual {
  padding: 14px;
}

.guide-card__image-placeholder {
  display: grid;
  min-height: 175px;
  place-items: center;
  border: 2px dashed #dce0ec;
  border-radius: 14px;
  color: #a2a9bb;
  background: var(--guide-background);
  font-size: 0.82rem;
}

.guide-card__body {
  padding: 8px 22px 22px;
}

.guide-card__category {
  display: inline-flex;
  margin-bottom: 13px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--guide-primary);
  background: var(--guide-primary-soft);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.guide-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.35;
}

.guide-card h3 a {
  color: var(--guide-dark);
  text-decoration: none;
}

.guide-card p {
  min-height: 85px;
  margin: 13px 0 20px;
  color: var(--guide-text);
  font-size: 0.9rem;
  line-height: 1.65;
}

.guide-card__footer {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--guide-border);
  color: var(--guide-text);
  font-size: 0.78rem;
}

/* ==========================================================
   SPOTCARD COACH
   ========================================================== */
.guide-coach {
  padding: 0 0 90px;
}

.guide-coach__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 35px 42px;
  border-radius: 22px;
  color: var(--guide-white);
  background: var(--guide-dark);
}

.guide-coach__visual {
  width: 78px;
  height: 78px;
  color: #a99cff;
}

.guide-coach__eyebrow {
  color: #d7d1ff;
  background: rgba(255, 255, 255, 0.1);
}

.guide-coach__content h2 {
  color: var(--guide-white);
}

.guide-coach__content p {
  color: rgba(255, 255, 255, 0.72);
}

.guide-coach__status {
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  color: var(--guide-white);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1180px) {
  .guide-levels__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .guide-featured__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .guide-hero__container {
    grid-template-columns: 1fr;
  }
  .guide-start__card,
  .guide-coach__card {
    grid-template-columns: auto 1fr;
  }
  .guide-start__button,
  .guide-coach__status {
    grid-column: 1/-1;
    width: fit-content;
    margin-left: auto;
  }
}
@media (max-width: 720px) {
  .guide-search {
    align-items: stretch;
    flex-wrap: wrap;
  }
  .guide-search__input {
    flex: 1 1 calc(100% - 50px);
  }
  .guide-search__button {
    width: 100%;
  }
  .guide-levels__grid,
  .guide-featured__grid {
    grid-template-columns: 1fr;
  }
  .guide-level-card {
    min-height: initial;
  }
  .guide-featured__heading {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 520px) {
  .guide-floating-item {
    font-size: 0;
  }
  .guide-start__card,
  .guide-coach__card {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 25px;
  }
  .guide-start__button,
  .guide-coach__status {
    width: 100%;
    margin: 0;
    text-align: center;
  }
}
:root {
  --article-navy: #101a3c;
  --article-text: #536078;
  --article-muted: #858da0;
  --article-orange: #ed5b32;
  --article-orange-hover: #d94d28;
  --article-purple: #5848d8;
  --article-border: #e5e8ef;
  --article-soft: #f7f8fb;
  --article-blue-soft: #f4f6ff;
  --article-warm: #fff8f1;
  --article-white: #ffffff;
}

.academy-article {
  min-height: 100%;
  padding-bottom: 80px;
  background: #f6f7f9;
  color: #202733;
}
.academy-article *,
.academy-article *::before,
.academy-article *::after {
  box-sizing: border-box;
}
.academy-article img {
  display: block;
  max-width: 100%;
  max-height: fit-content;
}
.academy-article__breadcrumb {
  padding: 24px 0 30px;
}
.academy-article__breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #687181;
  font-size: 0.9rem;
}
.academy-article__breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.academy-article__breadcrumb a:hover, .academy-article__breadcrumb a:focus-visible {
  color: var(--secondary, #d85a30);
}
.academy-article__breadcrumb [aria-current=page] {
  color: #202733;
  font-weight: 700;
}
.academy-article__layout {
  display: grid;
  grid-template-columns: minmax(230px, 270px) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.academy-article__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--primary, #344255);
  color: #fff;
  font: inherit;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.academy-article__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(52, 66, 85, 0.2);
}
.academy-article__button:focus-visible {
  outline: 3px solid rgba(216, 90, 48, 0.25);
  outline-offset: 3px;
}
.academy-article__button--success {
  background: #297a55;
}
.academy-article__button.is-completed {
  border-color: rgba(41, 122, 85, 0.24);
  background: #e9f5ef;
  color: #297a55;
  box-shadow: none;
}

.academy-article-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
}
.academy-article-sidebar__back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--primary, #344255);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}
.academy-article-sidebar__back .material-symbols-outlined {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}
.academy-article-sidebar__back:hover, .academy-article-sidebar__back:focus-visible {
  color: var(--secondary, #d85a30);
}
.academy-article-sidebar__back:hover .material-symbols-outlined, .academy-article-sidebar__back:focus-visible .material-symbols-outlined {
  transform: translateX(-3px);
}
.academy-article-sidebar__card {
  padding: 22px;
  border: 1px solid #e2e6eb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 34px rgba(33, 43, 54, 0.05);
}
.academy-article-sidebar__card > h2 {
  margin: 0 0 14px;
  color: var(--primary, #344255);
  font-size: 1rem;
  line-height: 1.3;
}
.academy-article-sidebar__level {
  margin: 0 0 18px;
  color: #687181;
  font-size: 0.86rem;
  line-height: 1.45;
}
.academy-article-sidebar__progress-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: #687181;
  font-size: 0.82rem;
}
.academy-article-sidebar__progress-heading strong {
  color: var(--primary, #344255);
}
.academy-article-sidebar__progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf0f3;
}
.academy-article-sidebar__progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--secondary, #d85a30), #ed845d);
}

.academy-article-toc ol {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.academy-article-toc li {
  margin: 0;
}
.academy-article-toc li > a {
  position: relative;
  display: block;
  padding: 9px 10px 9px 17px;
  border-radius: 9px;
  color: #687181;
  font-size: 0.88rem;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.academy-article-toc li > a::before {
  position: absolute;
  top: 50%;
  left: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c1c7d0;
  content: "";
  transform: translateY(-50%);
}
.academy-article-toc li > a:hover, .academy-article-toc li > a:focus-visible, .academy-article-toc li > a.is-active {
  background: rgba(216, 90, 48, 0.09);
  color: var(--secondary, #d85a30);
}
.academy-article-toc li > a.is-active {
  font-weight: 750;
}
.academy-article-toc li > a.is-active::before {
  height: 18px;
  border-radius: 999px;
  background: var(--secondary, #d85a30);
}
.academy-article-toc__help {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #e2e6eb;
}
.academy-article-toc__help strong {
  display: block;
  margin-bottom: 7px;
  color: var(--primary, #344255);
  font-size: 0.9rem;
}
.academy-article-toc__help p {
  margin: 0 0 11px;
  color: #687181;
  font-size: 0.8rem;
  line-height: 1.55;
}
.academy-article-toc__help a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary, #d85a30);
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
}
.academy-article-toc__help a:hover, .academy-article-toc__help a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.academy-article-content {
  min-width: 0;
}

.academy-article-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(30px, 5vw, 62px);
  align-items: center;
  margin-bottom: 54px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid #e2e6eb;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(33, 43, 54, 0.08);
}
.academy-article-header__step {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(216, 90, 48, 0.11);
  color: var(--secondary, #d85a30);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.academy-article-header h1 {
  max-width: 720px;
  margin: 0;
  color: var(--primary, #344255);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}
.academy-article-header__introduction {
  max-width: 670px;
  margin: 24px 0 0;
  color: #687181;
  font-size: clamp(1rem, 2vw, 1.17rem);
  line-height: 1.75;
}
.academy-article-header__visual {
  margin: 0;
}
.academy-article-header__visual img,
.academy-article-header__visual .academy-image-placeholder {
  width: 100%;
  min-height: 300px;
  border-radius: 18px;
  object-fit: cover;
}

.academy-article-section,
.academy-guide-section {
  margin-bottom: 72px;
  scroll-margin-top: 30px;
}
.academy-article-section__heading,
.academy-guide-section__heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.academy-article-section__heading > span,
.academy-guide-section__heading > span {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--secondary, #d85a30);
  font-size: 0.9rem;
  font-weight: 850;
}
.academy-article-section__heading h2,
.academy-guide-section__heading h2 {
  margin: 1px 0 0;
}
.academy-article-section__eyebrow,
.academy-guide-section__eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--secondary, #d85a30);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.academy-article-section__lead,
.academy-guide-section__lead {
  max-width: 780px;
  margin-bottom: 30px;
  color: #687181;
  font-size: 1.08rem;
  line-height: 1.75;
}
.academy-article-section__media,
.academy-guide-section__media {
  margin: 30px 0;
  overflow: hidden;
  border: 1px solid #e2e6eb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(33, 43, 54, 0.06);
}
.academy-article-section__media img,
.academy-guide-section__media img {
  width: 100%;
}
.academy-article-section__caption,
.academy-guide-section__caption {
  display: block;
  padding: 14px 18px;
  color: #687181;
  font-size: 0.86rem;
  text-align: center;
}

.academy-article-content h2,
.academy-article-content h3,
.academy-article-content h4,
.academy-article-prose h2,
.academy-article-prose h3,
.academy-article-prose h4 {
  color: var(--primary, #344255);
  text-wrap: balance;
}
.academy-article-content h2,
.academy-article-prose h2 {
  margin: 0 0 22px;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.academy-article-content h3,
.academy-article-prose h3 {
  margin: 28px 0 10px;
  font-size: 1.28rem;
}
.academy-article-content p,
.academy-article-content li,
.academy-article-prose p,
.academy-article-prose li {
  color: #4d5866;
  font-size: 0.8rem;
  line-height: 1.78;
}
.academy-article-content p,
.academy-article-prose p {
  margin: 0 0 20px;
}
.academy-article-content ul,
.academy-article-content ol,
.academy-article-prose ul,
.academy-article-prose ol {
  margin: 0 0 24px;
  margin-top: 24px;
}
.academy-article-content strong,
.academy-article-prose strong {
  color: #202733;
}

.academy-guide-introduction {
  margin-bottom: 64px;
  padding: 25px 28px;
  border-left: 5px solid var(--secondary, #d85a30);
  border-radius: 0 18px 18px 0;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(33, 43, 54, 0.05);
}
.academy-guide-introduction p:last-child {
  margin-bottom: 0;
}

.academy-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin: 28px 0;
  padding: 22px;
  border: 1px solid transparent;
  border-radius: 18px;
}
.academy-callout > .material-symbols-outlined {
  font-size: 1.7rem;
}
.academy-callout h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}
.academy-callout p:last-child {
  margin-bottom: 0;
}
.academy-callout--info {
  border-color: #cdddf2;
  background: #f1f6fc;
}
.academy-callout--info > .material-symbols-outlined {
  color: #3b70ad;
}
.academy-callout--tip {
  border-color: #f1d4c9;
  background: #fff5f0;
}
.academy-callout--tip > .material-symbols-outlined {
  color: var(--secondary, #d85a30);
}
.academy-callout--warning {
  border-color: #efd9a9;
  background: #fff9e9;
}
.academy-callout--warning > .material-symbols-outlined {
  color: #a87005;
}
.academy-callout--success {
  border-color: #c7e4d7;
  background: #eff9f4;
}
.academy-callout--success > .material-symbols-outlined {
  color: #297a55;
}

.academy-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0;
}

.academy-feature-card {
  padding: 22px;
  border: 1px solid #e2e6eb;
  border-radius: 18px;
  background: #ffffff;
}
.academy-feature-card .material-symbols-outlined {
  margin-bottom: 14px;
  color: var(--secondary, #d85a30);
  font-size: 2rem;
}
.academy-feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}
.academy-feature-card p:last-child {
  margin-bottom: 0;
}

.academy-checklist {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0 !important;
  list-style: none;
}
.academy-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 15px 18px;
  border: 1px solid #e2e6eb;
  border-radius: 12px;
  background: #ffffff;
}
.academy-checklist .material-symbols-outlined {
  flex: 0 0 auto;
  color: #297a55;
}

.academy-guide-summary {
  margin-bottom: 62px;
  padding: 32px;
  border-radius: 28px;
  background: var(--primary, #344255);
  color: #fff;
}
.academy-guide-summary h2,
.academy-guide-summary h3,
.academy-guide-summary p,
.academy-guide-summary li,
.academy-guide-summary strong {
  color: inherit;
}
.academy-guide-summary h2 {
  margin-bottom: 18px;
}
.academy-guide-summary .academy-checklist li {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}
.academy-guide-summary .academy-checklist .material-symbols-outlined {
  color: #ccebdc;
}

.academy-article-nav,
.article-nav {
  margin-top: 36px;
}

@media (max-width: 1050px) {
  .academy-article__layout {
    grid-template-columns: 1fr;
  }
  .academy-article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .academy-article-sidebar__back {
    grid-column: 1/-1;
  }
  .academy-article-toc ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  .academy-article-header {
    grid-template-columns: 1fr;
  }
  .academy-article-header__visual {
    max-width: 620px;
  }
  .academy-feature-grid {
    grid-template-columns: 1fr;
  }
  .academy-article-completion {
    align-items: stretch;
    flex-direction: column;
  }
}
@media (max-width: 620px) {
  .academy-article {
    padding-bottom: 54px;
  }
  .academy-article__breadcrumb {
    padding: 18px 0 24px;
  }
  .academy-article__button {
    width: 100%;
  }
  .academy-article-sidebar {
    grid-template-columns: 1fr;
  }
  .academy-article-toc ol {
    grid-template-columns: 1fr;
  }
  .academy-article-header {
    margin-bottom: 42px;
    padding: 25px 22px;
  }
  .academy-article-header h1 {
    font-size: clamp(2.3rem, 13vw, 3.6rem);
  }
  .academy-guide-introduction,
  .academy-guide-summary,
  .academy-article-completion {
    padding: 24px 21px;
  }
  .academy-callout {
    grid-template-columns: 1fr;
  }
}
.academy-article-illustration {
  margin: 2.25rem 0;
}
.academy-article-illustration img, .academy-article-illustration__placeholder {
  display: block;
  width: 100%;
  border: 1px solid rgba(52, 66, 85, 0.12);
  border-radius: 1.25rem;
  box-shadow: 0 1.25rem 3rem rgba(52, 66, 85, 0.09);
}
.academy-article-illustration img {
  height: auto;
  object-fit: cover;
}
.academy-article-illustration__placeholder {
  position: relative;
  display: flex;
  min-height: 24rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  border-style: dashed;
  background: linear-gradient(135deg, rgba(52, 66, 85, 0.035), rgba(216, 90, 48, 0.075));
  color: var(--primary);
  text-align: center;
}
.academy-article-illustration__placeholder > i {
  color: var(--secondary);
  font-size: 2.5rem;
}
.academy-article-illustration__placeholder strong {
  font-size: 1.05rem;
}
.academy-article-illustration__placeholder small {
  max-width: 32rem;
  color: rgba(52, 66, 85, 0.65);
  line-height: 1.5;
}
.academy-article-illustration__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 0.7rem;
  border-radius: 99rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.academy-article-illustration figcaption {
  margin-top: 0.75rem;
  color: rgba(52, 66, 85, 0.65);
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: center;
}
.academy-article-illustration--portrait {
  max-width: 38rem;
  margin-right: auto;
  margin-left: auto;
}
.academy-article-illustration--portrait .academy-article-illustration__placeholder {
  min-height: 34rem;
}

@media (max-width: 700px) {
  .academy-article-illustration__placeholder {
    min-height: 18rem;
    padding: 1.5rem;
  }
  .academy-article-illustration--portrait .academy-article-illustration__placeholder {
    min-height: 28rem;
  }
}
/* ==========================================================
   SIDEBAR
   ========================================================== */
.academy-article-sidebar {
  position: sticky;
  top: 30px;
  display: grid;
  gap: 18px;
}
.academy-article-sidebar__back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--article-text);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}
.academy-article-sidebar__back:hover {
  color: var(--article-orange);
}
.academy-article-sidebar__card {
  padding: 20px;
  border: 1px solid var(--article-border);
  border-radius: 14px;
  background: #ffffff;
}
.academy-article-sidebar__card h2 {
  margin: 0;
  font-size: 0.88rem;
}
.academy-article-sidebar__level {
  margin: 7px 0 17px;
  color: var(--article-text);
  font-size: 0.76rem;
}
.academy-article-sidebar__progress-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--article-text);
  font-size: 0.72rem;
}
.academy-article-sidebar__progress-heading strong {
  color: var(--article-navy);
}
.academy-article-sidebar__progress {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7e9ef;
}
.academy-article-sidebar__progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--article-orange);
}

.academy-article-toc ol {
  display: grid;
  gap: 15px;
  margin: 20px 0 0;
  padding-left: 22px;
  color: var(--article-text);
  font-size: 0.75rem;
}
.academy-article-toc a {
  color: inherit;
  line-height: 1.4;
  text-decoration: none;
}
.academy-article-toc a:hover, .academy-article-toc a.is-active {
  color: var(--article-orange);
}
.academy-article-toc a.is-active {
  font-weight: 700;
}
.academy-article-toc__help {
  margin-top: 25px;
  padding: 17px;
  border-radius: 12px;
  background: var(--article-blue-soft);
}
.academy-article-toc__help strong {
  font-size: 0.78rem;
}
.academy-article-toc__help p {
  margin: 9px 0;
  color: var(--article-text);
  font-size: 0.7rem;
  line-height: 1.55;
}
.academy-article-toc__help a {
  color: var(--article-orange);
  font-size: 0.72rem;
  font-weight: 700;
}

/* ==========================================================
   EN-TÊTE DE L’ARTICLE
   ========================================================== */
.academy-article-content {
  min-width: 0;
}

.guide-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 2rem;
  padding: 0;
}

.guide-article-meta__item {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  color: #718096;
  font-size: 0.9rem;
}

.guide-article-meta__item > span {
  color: #56708f;
  font-size: 1.05rem;
}

/* ==========================================================
   PLACEHOLDERS D’IMAGES
   ========================================================== */
.academy-image-placeholder {
  display: grid;
  min-height: 165px;
  place-items: center;
  padding: 20px;
  border: 1px dashed #ccd1dc;
  border-radius: 15px;
  color: #9ba3b4;
  background: linear-gradient(135deg, #fafbfc, #f5f6f9);
  font-size: 0.74rem;
  line-height: 1.5;
  text-align: center;
}
.academy-image-placeholder--hero {
  min-height: 290px;
  border-radius: 24px;
}
.academy-image-placeholder--landscape {
  min-height: 270px;
}
.academy-image-placeholder--example {
  min-height: 180px;
}

/* ==========================================================
   SECTIONS
   ========================================================== */
.academy-article-section {
  padding: 42px 0;
  scroll-margin-top: 30px;
}
.academy-article-section__heading {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 27px;
}
.academy-article-section__heading > span {
  color: var(--article-orange);
  font-size: 1.35rem;
  font-weight: 800;
}
.academy-article-section__heading h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.7vw, 2.3rem);
  letter-spacing: -0.025em;
}
.academy-article-section__lead {
  max-width: 750px;
  margin: -10px 0 27px;
  color: var(--article-text);
  line-height: 1.65;
}

.academy-article-two-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 55px;
  align-items: center;
}

.academy-article-prose p {
  margin: 0;
  color: var(--article-text);
  font-size: 0.94rem;
  line-height: 1.75;
}
.academy-article-prose p + p {
  margin-top: 17px;
}

.academy-article-figure {
  margin: 0;
}
.academy-article-figure figcaption {
  margin-top: 10px;
  color: var(--article-muted);
  font-size: 0.7rem;
  line-height: 1.5;
}

/* ==========================================================
   NAVIGATION BASSE
   ========================================================== */
.academy-article-navigation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--article-border);
  border-radius: 14px;
}
.academy-article-navigation__item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--article-navy);
  text-decoration: none;
}
.academy-article-navigation__item small,
.academy-article-navigation__item strong {
  display: block;
}
.academy-article-navigation__item small {
  margin-bottom: 4px;
  color: var(--article-muted);
  font-size: 0.67rem;
}
.academy-article-navigation__item strong {
  font-size: 0.78rem;
}
.academy-article-navigation__item:hover strong {
  color: var(--article-orange);
}
.academy-article-navigation__item--next {
  justify-content: flex-end;
  text-align: right;
}
.academy-article-navigation__progress {
  color: var(--article-text);
  font-size: 0.73rem;
  font-weight: 700;
}

/* ==========================================================
   RESPONSIVE COMMUN
   ========================================================== */
@media (max-width: 1180px) {
  .academy-article__layout {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 35px;
  }
}
@media (max-width: 900px) {
  .academy-article__layout {
    grid-template-columns: 1fr;
  }
  .academy-article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .academy-article-sidebar__back {
    grid-column: 1/-1;
  }
  .academy-article-toc ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .academy-article-two-columns {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .academy-article__breadcrumb ol {
    flex-wrap: wrap;
  }
  .academy-article-sidebar,
  .academy-article-toc ol {
    grid-template-columns: 1fr;
  }
  .academy-article-navigation {
    grid-template-columns: 1fr;
  }
  .academy-article-navigation__progress {
    grid-row: 1;
    text-align: center;
  }
  .academy-article-navigation__item--next {
    justify-content: flex-start;
    text-align: left;
  }
}
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.academy-level {
  --academy-navy: #101a3c;
  --academy-text: #4f5b73;
  --academy-muted: #7e8799;
  --academy-orange: #ed5b32;
  --academy-orange-hover: #d94d28;
  --academy-purple: #5745d9;
  --academy-border: #e5e8ef;
  --academy-surface: #ffffff;
  --academy-soft: #f7f8fb;
  --academy-warm: #fff8f1;
  padding-bottom: 90px;
  color: var(--academy-navy);
  background: #ffffff;
}
.academy-level * {
  box-sizing: border-box;
}
.academy-level__breadcrumb {
  padding: 28px 0;
}
.academy-level__breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--academy-muted);
  font-size: 0.86rem;
  list-style: none;
}
.academy-level__breadcrumb a {
  color: var(--academy-muted);
  text-decoration: none;
}
.academy-level__breadcrumb a:hover {
  color: var(--academy-orange);
}
.academy-level__breadcrumb li[aria-current=page] {
  color: var(--academy-orange);
  font-weight: 600;
}
.academy-level__button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.academy-level__button:hover {
  transform: translateY(-1px);
}
.academy-level__button--primary {
  color: #ffffff;
  background: var(--academy-orange);
}
.academy-level__button--primary:hover {
  background: var(--academy-orange-hover);
}
.academy-level__button--outline {
  border-color: var(--academy-orange);
  color: var(--academy-orange);
  background: #ffffff;
}
.academy-level__button--outline:hover {
  color: #ffffff;
  background: var(--academy-orange);
}
.academy-level__button--secondary {
  color: #ffffff;
  background: var(--academy-purple);
}
.academy-level__button--secondary:hover {
  background: #4836c5;
}

/* =========================================================
   HERO
   ========================================================= */
.academy-level-hero {
  padding: 20px 0 40px;
}
.academy-level-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(560px, 1.2fr);
  gap: 65px;
  align-items: center;
}
.academy-level-hero__badges {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.academy-level-hero__eyebrow {
  color: var(--academy-orange);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.academy-level-hero__badge {
  padding: 6px 11px;
  border-radius: 999px;
  color: #9a482f;
  background: #fff0ea;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}
.academy-level-hero__title {
  max-width: 590px;
  margin: 0;
  color: var(--academy-navy);
  font-size: clamp(3rem, 4.6vw, 5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.academy-level-hero__description {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--academy-text);
  font-size: 1.1rem;
  line-height: 1.65;
}
.academy-level-hero__metadata {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}
.academy-level-hero__metadata li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  color: var(--academy-text);
  font-size: 0.85rem;
  line-height: 1.35;
}
.academy-level-hero__metadata li:first-child {
  padding-left: 0;
}
.academy-level-hero__metadata li:not(:last-child) {
  border-right: 1px solid var(--academy-border);
}
.academy-level-hero__metadata strong {
  display: block;
  color: var(--academy-navy);
  font-weight: 600;
}
.academy-level-hero__meta-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid var(--academy-border);
  border-radius: 50%;
  color: var(--academy-navy);
  font-size: 0.68rem;
  font-weight: 700;
}
.academy-level-hero__visual {
  padding: 50px 38px 42px;
  border-radius: 34px;
  background: radial-gradient(circle at 50% 45%, #ffffff 0%, #fffaf7 52%, #faf5f2 100%);
}

/* =========================================================
   FLUX DU HERO
   ========================================================= */
.academy-level-flow {
  display: grid;
  grid-template-columns: minmax(100px, 1fr) auto minmax(100px, 1fr) auto minmax(100px, 1fr) auto minmax(100px, 1fr);
  gap: 17px;
  align-items: center;
}
.academy-level-flow__item {
  min-width: 0;
  text-align: center;
}
.academy-level-flow__item strong,
.academy-level-flow__item small {
  display: block;
}
.academy-level-flow__item strong {
  margin-top: 19px;
  color: var(--academy-navy);
  font-size: 0.92rem;
}
.academy-level-flow__item small {
  margin-top: 6px;
  color: var(--academy-muted);
  font-size: 0.78rem;
}
.academy-level-flow__media {
  display: grid;
  min-height: 190px;
  place-items: center;
  padding: 15px;
  border: 1px solid rgba(229, 232, 239, 0.8);
  border-radius: 18px;
  color: #a2a9b7;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  line-height: 1.4;
  box-shadow: 0 14px 40px rgba(18, 29, 61, 0.06);
}
.academy-level-flow__arrow {
  color: var(--academy-navy);
  font-size: 1.3rem;
}

/* =========================================================
   PROGRESSION
   ========================================================= */
.academy-level-progress {
  padding: 20px 0 35px;
}
.academy-level-progress__card {
  display: grid;
  grid-template-columns: auto auto minmax(180px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px 30px;
  border: 1px solid var(--academy-border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(16, 26, 60, 0.05);
}
.academy-level-progress__card strong,
.academy-level-progress__card span {
  font-size: 0.86rem;
}
.academy-level-progress__value {
  color: var(--academy-orange);
  font-weight: 800;
}
.academy-level-progress__track {
  position: relative;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #dfe3eb 0, #dfe3eb 46px, transparent 46px, transparent 56px);
}
.academy-level-progress__bar {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: var(--academy-orange);
}
.academy-level-progress__count {
  color: var(--academy-text);
}

/* =========================================================
   TITRES DE SECTION
   ========================================================= */
.academy-section-heading {
  margin-bottom: 28px;
}
.academy-section-heading h2 {
  margin: 0;
  color: var(--academy-navy);
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  letter-spacing: -0.025em;
}
.academy-section-heading p {
  margin: 8px 0 0;
  color: var(--academy-text);
  line-height: 1.6;
}

/* =========================================================
   TIMELINE
   ========================================================= */
.academy-path {
  padding: 35px 0 40px;
}
.academy-path__timeline {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 120px;
}
.academy-path__timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 62px;
  width: 2px;
  background: var(--academy-border);
  content: "";
}

.academy-path-card {
  position: relative;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 210px;
  gap: 32px;
  align-items: center;
  min-height: 165px;
  padding: 25px 30px;
  border: 1px solid var(--academy-border);
  border-radius: 18px;
  background: #ffffff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.academy-path-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(16, 26, 60, 0.07);
}
.academy-path-card__step {
  position: absolute;
  top: 50%;
  left: -82px;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 5px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  background: var(--academy-orange);
  box-shadow: 0 3px 12px rgba(16, 26, 60, 0.16);
  font-weight: 700;
  transform: translateY(-50%);
}
.academy-path-card__media {
  display: grid;
  width: 115px;
  height: 115px;
  place-items: center;
  border-radius: 50%;
  color: #a1a8b7;
  background: #faf5f2;
  font-size: 0.72rem;
  text-align: center;
}
.academy-path-card__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--academy-orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.academy-path-card h3 {
  margin: 0;
  color: var(--academy-navy);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.academy-path-card p {
  max-width: 630px;
  margin: 11px 0 0;
  color: var(--academy-text);
  font-size: 0.93rem;
  line-height: 1.6;
}
.academy-path-card__aside {
  display: grid;
  align-self: stretch;
  align-content: center;
  gap: 19px;
  padding-left: 35px;
  border-left: 1px solid var(--academy-border);
}
.academy-path-card__metadata {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--academy-text);
  font-size: 0.8rem;
  list-style: none;
}
.academy-path-card__metadata li {
  position: relative;
  padding-left: 25px;
}
.academy-path-card__metadata li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 13px;
  height: 13px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

/* =========================================================
   CE QUE VOUS ALLEZ APPRENDRE
   ========================================================= */
.academy-learning {
  padding: 20px 0 35px;
}
.academy-learning__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.academy-learning-card {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 120px;
  padding: 20px;
  border: 1px solid var(--academy-border);
  border-radius: 16px;
  background: #ffffff;
}
.academy-learning-card__media {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  color: #a2a9b7;
  background: var(--academy-soft);
  font-size: 0.67rem;
}
.academy-learning-card h3 {
  margin: 0;
  font-size: 0.98rem;
}
.academy-learning-card p {
  margin: 7px 0 0;
  color: var(--academy-text);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* =========================================================
   BLOCS D’INFORMATION
   ========================================================= */
.academy-information {
  padding: 10px 0 40px;
}
.academy-information__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.academy-information-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 25px;
  align-items: center;
  min-height: 220px;
  padding: 30px;
  border-radius: 18px;
  background: #f6f8ff;
}
.academy-information-card--warm {
  background: var(--academy-warm);
}
.academy-information-card__content {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
}
.academy-information-card__symbol {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--academy-purple);
  border-radius: 50%;
  color: var(--academy-purple);
  font-size: 0.72rem;
  font-weight: 800;
}
.academy-information-card h2 {
  margin: 0 0 14px;
  color: var(--academy-navy);
  font-size: 1rem;
}
.academy-information-card p {
  margin: 0;
  color: var(--academy-text);
  font-size: 0.84rem;
  line-height: 1.6;
}
.academy-information-card p + p {
  margin-top: 10px;
}
.academy-information-card__media {
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  border-radius: 28px;
  color: #a3aaba;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

/* =========================================================
   NIVEAU SUIVANT
   ========================================================= */
.academy-next-level {
  padding-top: 5px;
}
.academy-next-level__card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, 1fr) auto;
  gap: 35px;
  align-items: center;
  padding: 25px 30px;
  border: 1px solid var(--academy-border);
  border-radius: 18px;
  background: linear-gradient(110deg, #ffffff 0%, #fbfaff 55%, #f5f2ff 100%);
}
.academy-next-level__heading {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--academy-text);
  font-size: 0.78rem;
}
.academy-next-level__badge {
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--academy-purple);
  background: #ece8ff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}
.academy-next-level h2 {
  margin: 8px 0 5px;
  font-size: 1.45rem;
}
.academy-next-level p {
  margin: 0;
  color: var(--academy-text);
  font-size: 0.85rem;
}
.academy-next-level__topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.academy-next-level__topics li {
  display: grid;
  min-height: 65px;
  place-items: center;
  padding: 10px;
  border-left: 1px solid var(--academy-border);
  color: var(--academy-navy);
  font-size: 0.74rem;
  font-weight: 600;
  text-align: center;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1180px) {
  .academy-level-hero__layout {
    grid-template-columns: 1fr;
  }
  .academy-level-hero__content {
    max-width: 720px;
  }
  .academy-path-card {
    grid-template-columns: 110px minmax(0, 1fr) 190px;
  }
  .academy-learning__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .academy-next-level__card {
    grid-template-columns: 1fr auto;
  }
  .academy-next-level__topics {
    grid-column: 1/-1;
    grid-row: 2;
  }
}
@media (max-width: 850px) {
  .academy-level-progress__card {
    grid-template-columns: 1fr auto;
  }
  .academy-level-progress__card .academy-level-progress__track,
  .academy-level-progress__card .academy-level-progress__count {
    grid-column: 1/-1;
  }
  .academy-path__timeline {
    padding-left: 65px;
  }
  .academy-path__timeline::before {
    left: 24px;
  }
  .academy-path-card {
    grid-template-columns: 90px minmax(0, 1fr);
  }
  .academy-path-card__step {
    left: -64px;
  }
  .academy-path-card__media {
    width: 82px;
    height: 82px;
  }
  .academy-path-card__aside {
    grid-column: 2;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding-top: 20px;
    padding-left: 0;
    border-top: 1px solid var(--academy-border);
    border-left: 0;
  }
  .academy-information__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .academy-level-hero {
    padding-top: 0;
  }
  .academy-level-hero__title {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }
  .academy-level-hero__metadata {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
  .academy-level-hero__metadata li {
    padding: 0;
    border-right: 0 !important;
  }
  .academy-level-hero__visual {
    padding: 28px 20px;
    overflow-x: auto;
  }
  .academy-level-flow {
    min-width: 690px;
  }
  .academy-level-progress__card {
    gap: 15px;
    padding: 20px;
  }
  .academy-path__timeline {
    padding-left: 48px;
  }
  .academy-path__timeline::before {
    left: 18px;
  }
  .academy-path-card {
    display: block;
    padding: 22px;
  }
  .academy-path-card__step {
    top: 28px;
    left: -50px;
    width: 38px;
    height: 38px;
    transform: none;
  }
  .academy-path-card__media {
    margin-bottom: 20px;
  }
  .academy-path-card__aside {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  .academy-learning__grid {
    grid-template-columns: 1fr;
  }
  .academy-information-card {
    grid-template-columns: 1fr;
  }
  .academy-information-card__media {
    display: none;
  }
  .academy-next-level__card {
    grid-template-columns: 1fr;
  }
  .academy-next-level__topics {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
  }
  .academy-next-level__topics li {
    justify-items: start;
    min-height: 45px;
    border-top: 1px solid var(--academy-border);
    border-left: 0;
    text-align: left;
  }
}
/* ==========================================================
   PRINCIPE EN 4 ÉTAPES
   ========================================================== */
.academy-principle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 15px;
  align-items: start;
}
.academy-principle__arrow {
  align-self: center;
  color: var(--article-navy);
  font-size: 1.3rem;
  transform: translateY(-25px);
}

.academy-principle-card {
  min-width: 0;
}
.academy-principle-card__visual {
  margin-bottom: 15px;
}
.academy-principle-card__visual .academy-image-placeholder {
  min-height: 175px;
}
.academy-principle-card__number {
  display: inline-grid;
  width: 23px;
  height: 23px;
  place-items: center;
  margin-right: 7px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--article-orange);
  font-size: 0.68rem;
  font-weight: 800;
}
.academy-principle-card h3 {
  display: inline;
  margin: 0;
  font-size: 0.92rem;
}
.academy-principle-card p {
  margin: 10px 0 0;
  color: var(--article-text);
  font-size: 0.76rem;
  line-height: 1.55;
}

/* ==========================================================
   PARCOURS DU VISITEUR
   ========================================================== */
.academy-visitor-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}
.academy-visitor-path::before {
  position: absolute;
  top: 80px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: repeating-linear-gradient(90deg, #cfd4df 0, #cfd4df 7px, transparent 7px, transparent 13px);
  content: "";
}
.academy-visitor-path__item {
  position: relative;
  z-index: 1;
  text-align: center;
}
.academy-visitor-path__number {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  margin: 0 auto 13px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--article-orange);
  font-size: 0.69rem;
  font-weight: 800;
}
.academy-visitor-path__visual {
  display: grid;
  width: 85px;
  height: 85px;
  place-items: center;
  margin: 0 auto;
  border: 1px solid var(--article-border);
  border-radius: 50%;
  color: #a0a7b5;
  background: #ffffff;
  font-size: 0.67rem;
}
.academy-visitor-path h3 {
  margin: 18px 0 7px;
  font-size: 0.9rem;
}
.academy-visitor-path p {
  margin: 0;
  color: var(--article-text);
  font-size: 0.75rem;
  line-height: 1.55;
}

/* ==========================================================
   FONCTIONNALITÉS
   ========================================================== */
.academy-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.academy-feature-card {
  min-height: 215px;
  padding: 22px;
  border: 1px solid var(--article-border);
  border-radius: 15px;
  text-align: center;
}
.academy-feature-card__visual {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  margin: 0 auto 17px;
  border-radius: 15px;
  color: #a0a7b5;
  background: var(--article-soft);
  font-size: 0.67rem;
}
.academy-feature-card h3 {
  margin: 0;
  font-size: 0.91rem;
}
.academy-feature-card p {
  margin: 10px 0 0;
  color: var(--article-text);
  font-size: 0.76rem;
  line-height: 1.55;
}

/* ==========================================================
   EXEMPLE CONCRET
   ========================================================== */
.academy-example-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}
.academy-example-flow__arrow {
  color: var(--article-muted);
  font-size: 1.4rem;
}

.academy-example-card {
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--article-border);
  border-radius: 15px;
}
.academy-example-card h3 {
  margin: 16px 0 7px;
  font-size: 0.9rem;
}
.academy-example-card p,
.academy-example-card li {
  color: var(--article-text);
  font-size: 0.73rem;
  line-height: 1.55;
}
.academy-example-card p {
  margin: 0;
}
.academy-example-card ul {
  margin: 0;
  padding-left: 17px;
}

/* ==========================================================
   CONCLUSION
   ========================================================== */
.academy-article-conclusion {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 42px 0;
}

.academy-article-callout,
.academy-article-try {
  min-height: 220px;
  border-radius: 17px;
}

.academy-article-callout {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 20px;
  padding: 28px;
  background: var(--article-blue-soft);
}
.academy-article-callout__number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--article-purple);
  border-radius: 50%;
  color: var(--article-purple);
  font-weight: 800;
}
.academy-article-callout h2 {
  margin: 0 0 13px;
  font-size: 1.05rem;
}
.academy-article-callout p {
  margin: 0;
  color: var(--article-text);
  font-size: 0.8rem;
  line-height: 1.65;
}

.academy-article-try {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px;
  gap: 20px;
  align-items: center;
  padding: 28px;
  background: var(--article-warm);
}
.academy-article-try__eyebrow {
  color: var(--article-orange);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}
.academy-article-try h2 {
  margin: 8px 0 12px;
  font-size: 1.2rem;
}
.academy-article-try p {
  margin: 0 0 18px;
  color: var(--article-text);
  font-size: 0.8rem;
  line-height: 1.6;
}
.academy-article-try__visual {
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  border-radius: 23px;
  color: #aaa;
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.64rem;
  text-align: center;
}

/* ==========================================================
   RESPONSIVE PROPRE À « DÉCOUVRIR SPOTCARD »
   ========================================================== */
@media (max-width: 1180px) {
  .academy-principle,
  .academy-example-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .academy-principle__arrow,
  .academy-example-flow__arrow {
    display: none;
  }
}
@media (max-width: 900px) {
  .academy-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .academy-principle,
  .academy-example-flow,
  .academy-feature-grid,
  .academy-article-conclusion {
    grid-template-columns: 1fr;
  }
  .academy-visitor-path {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .academy-visitor-path::before {
    display: none;
  }
  .academy-article-try {
    grid-template-columns: 1fr;
  }
  .academy-article-try__visual {
    display: none;
  }
}
/* ==========================================================
   PAGES GÉNÉRALES DE L’ACADÉMIE

   Ce fichier ne contient que les styles des pages d’index et
   de parcours. Les styles des pages article sont centralisés
   dans _guide-article-base.scss.
   ========================================================== */
.academy-hero {
  padding: 70px 0 50px;
  background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
  border-bottom: 1px solid #e8edf2;
}
.academy-hero h1 {
  max-width: 900px;
  margin: 25px 0 15px;
  color: #22303d;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
}

.academy-subtitle {
  max-width: 760px;
  color: #5c6f82;
  font-size: 1.15rem;
  line-height: 1.7;
}

.academy-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: #76879b;
  font-size: 0.9rem;
}
.academy-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}
.academy-breadcrumb a:hover {
  color: var(--primary);
}

.academy-content {
  padding: 70px 0;
}

/* ==========================================================
   ARTICLE : COMPRENDRE LES ÉLÉMENTS

   Les sélecteurs .guide-* sont propres à cette page et ne se
   chevauchent pas avec les sélecteurs .academy-* de
   _guide-article-base.scss.

   Ce fichier peut donc rester spécifique tant que le Twig de
   cette page utilise son propre système de classes.
   ========================================================== */
.guide-article-page {
  background: #ffffff;
  color: #344255;
}

.guide-article-page *,
.guide-article-page *::before,
.guide-article-page *::after {
  box-sizing: border-box;
}

/* =========================================================
   HERO
   ========================================================= */
.guide-article-hero {
  padding: 2rem 0 4.5rem;
  overflow: hidden;
  background: radial-gradient(circle at 82% 38%, rgba(216, 90, 48, 0.08), transparent 32rem), linear-gradient(180deg, #fbfcfe 0%, #ffffff 100%);
  border-bottom: 1px solid #e8edf3;
}

.guide-article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(25rem, 0.95fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  margin-top: 3.5rem;
}

.guide-article-hero__content {
  min-width: 0;
}

.guide-article-category {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  margin-bottom: 1.5rem;
  color: #c64d24;
  font-size: 0.84rem;
  font-weight: 700;
  background: rgba(216, 90, 48, 0.09);
  border: 1px solid rgba(216, 90, 48, 0.18);
  border-radius: 999px;
}

.guide-article-hero h1 {
  max-width: 48rem;
  margin: 0;
  color: #14243b;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.guide-article-hero__description {
  max-width: 44rem;
  margin: 1.75rem 0 0;
  color: #5f7086;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.75;
}

.guide-article-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0;
}

.guide-article-hero__visual::before {
  position: absolute;
  inset: 10% 10%;
  z-index: 0;
  background: rgba(66, 112, 177, 0.08);
  border-radius: 50%;
  filter: blur(4rem);
  content: "";
}

.guide-article-hero__visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 44rem;
  height: auto;
}

/* =========================================================
   FIL D’ARIANE
   ========================================================= */
.guide-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.guide-breadcrumb li {
  display: inline-flex;
  align-items: center;
  color: #76869a;
  font-size: 0.86rem;
}

.guide-breadcrumb li:not(:last-child)::after {
  margin-left: 0.45rem;
  color: #b5bfcb;
  content: "/";
}

.guide-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.guide-breadcrumb a:hover {
  color: #d85a30;
}

/* =========================================================
   LAYOUT
   ========================================================= */
.guide-article-layout {
  display: grid;
  grid-template-columns: 15rem minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.guide-article-sidebar {
  position: sticky;
  top: 6.5rem;
  align-self: start;
}

.guide-article {
  min-width: 0;
}

/* =========================================================
   SOMMAIRE
   ========================================================= */
.guide-article-toc {
  padding: 1.5rem 1.35rem;
  background: #fbfcfe;
  border: 1px solid #e8edf3;
  border-radius: 1rem;
}

.guide-article-toc__title {
  margin: 0 0 1rem;
  color: #1b2b43;
  font-size: 0.9rem;
  font-weight: 800;
}

.guide-article-toc ol {
  display: grid;
  gap: 0.15rem;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: guide-toc;
}

.guide-article-toc li {
  counter-increment: guide-toc;
}

.guide-article-toc a {
  position: relative;
  display: block;
  padding: 0.65rem 0.5rem 0.65rem 1.65rem;
  color: #53647a;
  font-size: 0.88rem;
  line-height: 1.35;
  text-decoration: none;
  border-radius: 0.55rem;
  transition: color 160ms ease, background 160ms ease;
}

.guide-article-toc a::before {
  position: absolute;
  top: 0.65rem;
  left: 0.35rem;
  color: #9aa8b8;
  content: counter(guide-toc) ".";
}

.guide-article-toc a:hover {
  color: #d85a30;
  background: rgba(216, 90, 48, 0.06);
}

/* =========================================================
   AIDE
   ========================================================= */
.guide-help-card {
  display: flex;
  gap: 0.9rem;
  padding: 1.25rem;
  margin-top: 1.25rem;
  background: linear-gradient(135deg, rgba(216, 90, 48, 0.06), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(216, 90, 48, 0.2);
  border-radius: 1rem;
}

.guide-help-card__icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2rem;
  height: 2rem;
  color: #ffffff;
  font-weight: 800;
  background: #d85a30;
  border-radius: 50%;
}

.guide-help-card strong {
  display: block;
  color: #20324a;
  font-size: 0.92rem;
}

.guide-help-card p {
  margin: 0.55rem 0;
  color: #697a8f;
  font-size: 0.82rem;
  line-height: 1.55;
}

.guide-help-card a {
  color: #d85a30;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

/* =========================================================
   INTRODUCTION
   ========================================================= */
.guide-introduction {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem 1.7rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, rgba(64, 126, 218, 0.07), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(64, 126, 218, 0.2);
  border-radius: 1rem;
}

.guide-introduction__icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.3rem;
  background: rgba(64, 126, 218, 0.1);
  border-radius: 50%;
}

.guide-introduction p {
  margin: 0;
  color: #344a66;
  font-size: 1rem;
  line-height: 1.75;
}

/* =========================================================
   SECTIONS
   ========================================================= */
.guide-section {
  padding: 2.25rem 0 3.5rem;
  scroll-margin-top: 7rem;
  border-bottom: 1px solid #edf1f5;
}

.guide-section:last-of-type {
  border-bottom: 0;
}

.guide-section__header {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1.6rem;
}

.guide-section__number {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  color: #d85a30;
  font-size: 1.45rem;
  font-weight: 800;
  background: rgba(216, 90, 48, 0.04);
  border: 1px solid rgba(216, 90, 48, 0.32);
  border-radius: 50%;
}

.guide-section h2 {
  margin: 0;
  color: #162840;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.guide-section__grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 4vw, 3.75rem);
  align-items: center;
}

.guide-section__grid--reverse .guide-section__visual {
  order: 2;
}

.guide-section__grid--reverse .guide-section__content {
  order: 1;
}

.guide-section__content {
  min-width: 0;
}

.guide-section__content p {
  margin: 0 0 1.2rem;
  color: #465970;
  font-size: 1rem;
  line-height: 1.8;
}

.guide-section__content p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   VISUELS
   ========================================================= */
.guide-section__visual {
  position: relative;
  min-height: 18rem;
  padding: 1rem;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #f8fafc, #eef3f8);
  border: 1px solid #e7edf3;
  border-radius: 1.2rem;
}

.guide-section__visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 30rem;
  object-fit: contain;
  border-radius: 0.75rem;
}

.guide-section__visual--phone {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 25rem;
}

.guide-section__visual--phone img {
  width: auto;
  max-width: 100%;
  max-height: 28rem;
}

.guide-section__visual figcaption {
  padding: 0.85rem 0.25rem 0;
  color: #75859a;
  font-size: 0.8rem;
  line-height: 1.5;
}

/* =========================================================
   LISTES
   ========================================================= */
.guide-check-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.2rem 0;
  list-style: none;
}

.guide-check-list li {
  position: relative;
  padding-left: 1.65rem;
  color: #344a63;
  line-height: 1.55;
}

.guide-check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #f26b38;
  font-size: 1rem;
  font-weight: 800;
  content: "✓";
}

.guide-feature-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2rem;
}

.guide-steps {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
  counter-reset: guide-steps;
}

.guide-steps li {
  position: relative;
  min-height: 2.25rem;
  padding-left: 3rem;
  color: #42566e;
  line-height: 1.65;
  counter-increment: guide-steps;
}

.guide-steps li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  color: #d85a30;
  font-weight: 800;
  background: rgba(216, 90, 48, 0.08);
  border-radius: 50%;
  content: counter(guide-steps);
}

/* =========================================================
   ENCADRÉS
   ========================================================= */
.guide-note {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  margin-top: 1.4rem;
  border-radius: 0.75rem;
}

.guide-note p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
}

.guide-note--important {
  color: #6f431d;
  background: rgba(238, 135, 52, 0.07);
  border: 1px solid rgba(238, 135, 52, 0.25);
}

.guide-note--important > span {
  color: #ee8734;
  font-size: 1.15rem;
}

.guide-example-box {
  padding: 1.15rem 1.3rem;
  margin: 1.3rem 0;
  color: #334d70;
  background: rgba(63, 124, 213, 0.06);
  border: 1px solid rgba(63, 124, 213, 0.2);
  border-radius: 0.8rem;
}

.guide-example-box strong {
  display: block;
  margin-bottom: 0.65rem;
  color: #245fb4;
}

.guide-example-box ul {
  padding-left: 1.2rem;
  margin: 0;
}

.guide-example-box li + li {
  margin-top: 0.3rem;
}

/* =========================================================
   CARTES
   ========================================================= */
.guide-feature-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.guide-feature-card {
  padding: 1.1rem;
  background: #fbfcfd;
  border: 1px solid #e4eaf0;
  border-radius: 0.8rem;
}

.guide-feature-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #20334c;
}

.guide-feature-card p {
  margin: 0;
  font-size: 0.9rem;
}

/* =========================================================
   RÉSUMÉ
   ========================================================= */
.guide-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(14rem, 0.85fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  margin-top: 3.5rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(52, 66, 85, 0.06), rgba(216, 90, 48, 0.08));
  border: 1px solid rgba(52, 66, 85, 0.1);
  border-radius: 1.3rem;
}

.guide-summary__label {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: #d85a30;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.guide-summary h2 {
  margin: 0 0 1rem;
  color: #172b43;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.guide-summary p {
  margin: 0;
  color: #53667d;
  line-height: 1.75;
}

.guide-summary__visual {
  margin: 0;
}

.guide-summary__visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================================
   ARTICLE SUIVANT
   ========================================================= */
.guide-next-article {
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid #e8edf3;
}

.guide-next-article > span {
  display: block;
  margin-bottom: 0.65rem;
  color: #8290a2;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.guide-next-article a {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.4rem;
  color: #1b2d45;
  text-decoration: none;
  background: #fbfcfe;
  border: 1px solid #e4eaf1;
  border-radius: 0.9rem;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.guide-next-article a:hover {
  border-color: rgba(216, 90, 48, 0.32);
  box-shadow: 0 0.75rem 2rem rgba(39, 53, 72, 0.08);
  transform: translateY(-2px);
}

.guide-next-article a > span {
  color: #d85a30;
  font-size: 1.4rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .guide-article-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
    gap: 3rem;
  }
  .guide-article-layout {
    grid-template-columns: 13rem minmax(0, 1fr);
    gap: 2.5rem;
  }
  .guide-section__grid {
    gap: 2rem;
  }
}
@media (max-width: 900px) {
  .guide-article-hero {
    padding-bottom: 3rem;
  }
  .guide-article-hero__grid {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }
  .guide-article-hero__visual img {
    max-width: 36rem;
  }
  .guide-article-layout {
    display: block;
    padding-top: 2.5rem;
  }
  .guide-article-sidebar {
    position: static;
    margin-bottom: 2rem;
  }
  .guide-article-toc ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .guide-help-card {
    display: none;
  }
}
@media (max-width: 720px) {
  .guide-article-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.35rem);
  }
  .guide-article-meta {
    display: grid;
    gap: 0.75rem;
  }
  .guide-section {
    padding-top: 2rem;
    padding-bottom: 2.75rem;
  }
  .guide-section__grid,
  .guide-summary {
    grid-template-columns: 1fr;
  }
  .guide-section__grid--reverse .guide-section__visual,
  .guide-section__grid--reverse .guide-section__content {
    order: initial;
  }
  .guide-section__visual {
    min-height: auto;
  }
  .guide-section__visual--phone {
    min-height: 22rem;
  }
  .guide-feature-columns,
  .guide-feature-cards {
    grid-template-columns: 1fr;
  }
  .guide-summary__visual {
    max-width: 22rem;
    margin: auto;
  }
}
@media (max-width: 520px) {
  .guide-article-hero {
    padding-top: 1.25rem;
  }
  .guide-article-hero__grid {
    margin-top: 2rem;
  }
  .guide-article-layout {
    padding-bottom: 4rem;
  }
  .guide-article-toc {
    padding: 1.15rem;
  }
  .guide-article-toc ol {
    grid-template-columns: 1fr;
  }
  .guide-introduction {
    padding: 1.2rem;
  }
  .guide-section__header {
    align-items: flex-start;
  }
  .guide-section__number {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.15rem;
  }
  .guide-section__visual {
    padding: 0.7rem;
    border-radius: 0.9rem;
  }
  .guide-summary {
    padding: 1.5rem;
  }
}
/* ==========================================================
   ARTICLE : CONFIGURER VOTRE MINI-SITE

   Ce fichier contient uniquement les composants propres au
   troisième guide du niveau « Démarrer ».

   Dépendances :
   - _guide-article-base.scss
   - article-meta.html.twig
   ========================================================== */
/* ==========================================================
   INTRODUCTION
   ========================================================== */
.academy-configure-introduction {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem 1.5rem;
  margin-bottom: 3rem;
  color: var(--article-text);
  background: var(--article-blue-soft);
  border: 1px solid rgba(88, 72, 216, 0.13);
  border-radius: 1rem;
}
.academy-configure-introduction > .material-symbols-outlined {
  flex: 0 0 auto;
  color: var(--article-purple);
  font-size: 1.6rem;
}
.academy-configure-introduction p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ==========================================================
   CHECKLISTS
   ========================================================== */
.academy-configure-check-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.35rem 0 0;
  list-style: none;
}
.academy-configure-check-list li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--article-text);
  line-height: 1.6;
}
.academy-configure-check-list li::before {
  position: absolute;
  top: 0.15rem;
  left: 0;
  display: grid;
  width: 1.2rem;
  height: 1.2rem;
  place-items: center;
  color: #ffffff;
  background: var(--article-orange);
  border-radius: 50%;
  content: "✓";
  font-size: 0.68rem;
  font-weight: 800;
}

/* ==========================================================
   NOTES ET EXEMPLES
   ========================================================== */
.academy-configure-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.35rem;
  margin-top: 1.75rem;
  color: var(--article-text);
  background: var(--article-warm);
  border: 1px solid rgba(237, 91, 50, 0.18);
  border-radius: 0.9rem;
}
.academy-configure-note > .material-symbols-outlined {
  flex: 0 0 auto;
  color: var(--article-orange);
  font-size: 1.45rem;
}
.academy-configure-note p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.65;
}
.academy-configure-note strong {
  color: var(--article-navy);
}
.academy-configure-note--warning {
  background: #fffaf0;
  border-color: #f2ddae;
}

.academy-configure-example {
  padding: 1.25rem 1.4rem;
  margin-top: 1.75rem;
  color: var(--article-text);
  background: var(--article-soft);
  border-left: 4px solid var(--article-orange);
  border-radius: 0 0.8rem 0.8rem 0;
}
.academy-configure-example strong {
  color: var(--article-navy);
  font-size: 0.86rem;
}
.academy-configure-example p {
  margin: 0.45rem 0 0;
  font-size: 0.84rem;
  line-height: 1.65;
}

/* ==========================================================
   STRUCTURE DU MINI-SITE
   ========================================================== */
.academy-minisite-structure {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}
.academy-minisite-structure__step {
  min-width: 0;
  text-align: center;
}
.academy-minisite-structure__number {
  display: grid;
  width: 1.6rem;
  height: 1.6rem;
  place-items: center;
  margin: 0 auto 0.8rem;
  color: #ffffff;
  background: var(--article-orange);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}
.academy-minisite-structure__visual {
  display: grid;
  min-height: 8.5rem;
  place-items: center;
  padding: 1rem;
  color: #9aa3b1;
  background: repeating-linear-gradient(-45deg, #fafbfc, #fafbfc 0.7rem, #f3f5f8 0.7rem, #f3f5f8 1.4rem);
  border: 1px dashed #ccd2dc;
  border-radius: 0.9rem;
  font-size: 0.72rem;
}
.academy-minisite-structure h3 {
  margin: 1rem 0 0.45rem;
  color: var(--article-navy);
  font-size: 0.9rem;
}
.academy-minisite-structure p {
  margin: 0;
  color: var(--article-text);
  font-size: 0.75rem;
  line-height: 1.55;
}
.academy-minisite-structure__arrow {
  color: var(--article-muted);
  font-size: 1.35rem;
}

.academy-configure-wide-figure {
  margin: 2rem 0 0;
}
.academy-configure-wide-figure figcaption {
  margin-top: 0.8rem;
  color: var(--article-muted);
  font-size: 0.74rem;
  line-height: 1.5;
  text-align: center;
}

/* ==========================================================
   PARAMÈTRES D’IDENTITÉ
   ========================================================== */
.academy-configure-settings {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}
.academy-configure-settings article {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--article-soft);
  border: 1px solid var(--article-border);
  border-radius: 0.85rem;
}
.academy-configure-settings .material-symbols-outlined {
  flex: 0 0 auto;
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: var(--article-orange);
  background: #fff0ea;
  border-radius: 0.7rem;
  font-size: 1.25rem;
}
.academy-configure-settings h3 {
  margin: 0;
  color: var(--article-navy);
  font-size: 0.86rem;
}
.academy-configure-settings p {
  margin: 0.35rem 0 0;
  color: var(--article-text);
  font-size: 0.76rem;
  line-height: 1.55;
}

/* ==========================================================
   INFORMATIONS UTILES
   ========================================================== */
.academy-configure-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.academy-configure-info-grid article {
  min-height: 12rem;
  padding: 1.3rem;
  background: #ffffff;
  border: 1px solid var(--article-border);
  border-radius: 1rem;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.academy-configure-info-grid article:hover {
  border-color: rgba(237, 91, 50, 0.35);
  box-shadow: 0 0.9rem 2rem rgba(16, 26, 60, 0.06);
  transform: translateY(-2px);
}
.academy-configure-info-grid .material-symbols-outlined {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--article-orange);
  background: #fff0ea;
  border-radius: 0.8rem;
  font-size: 1.35rem;
}
.academy-configure-info-grid h3 {
  margin: 0;
  color: var(--article-navy);
  font-size: 0.92rem;
}
.academy-configure-info-grid p {
  margin: 0.65rem 0 0;
  color: var(--article-text);
  font-size: 0.78rem;
  line-height: 1.6;
}

/* ==========================================================
   MODULES
   ========================================================== */
.academy-configure-module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.academy-configure-module-card {
  min-width: 0;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid var(--article-border);
  border-radius: 1rem;
}
.academy-configure-module-card__visual {
  display: grid;
  min-height: 7.5rem;
  place-items: center;
  padding: 1rem;
  color: #9aa3b1;
  background: repeating-linear-gradient(-45deg, #fafbfc, #fafbfc 0.65rem, #f3f5f8 0.65rem, #f3f5f8 1.3rem);
  border: 1px dashed #ccd2dc;
  border-radius: 0.75rem;
  font-size: 0.68rem;
  text-align: center;
}
.academy-configure-module-card h3 {
  margin: 1rem 0 0.45rem;
  color: var(--article-navy);
  font-size: 0.9rem;
}
.academy-configure-module-card p {
  margin: 0;
  color: var(--article-text);
  font-size: 0.74rem;
  line-height: 1.55;
}

/* ==========================================================
   APERÇU
   ========================================================== */
.academy-configure-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(13rem, 0.55fr);
  gap: 2rem;
  align-items: center;
}
.academy-configure-preview figure {
  margin: 0;
}
.academy-configure-preview figcaption {
  margin-top: 0.75rem;
  color: var(--article-muted);
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: center;
}
.academy-configure-preview__arrow {
  color: var(--article-orange);
  font-size: 2rem;
}

.academy-configure-test-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.academy-configure-test-grid article {
  position: relative;
  padding: 1.25rem;
  background: var(--article-soft);
  border-radius: 1rem;
}
.academy-configure-test-grid article > span {
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  margin-bottom: 0.9rem;
  color: #ffffff;
  background: var(--article-orange);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}
.academy-configure-test-grid h3 {
  margin: 0;
  color: var(--article-navy);
  font-size: 0.85rem;
}
.academy-configure-test-grid p {
  margin: 0.55rem 0 0;
  color: var(--article-text);
  font-size: 0.74rem;
  line-height: 1.55;
}

/* ==========================================================
   BONNES PRATIQUES
   ========================================================== */
.academy-configure-best-practices {
  display: grid;
  grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}
.academy-configure-best-practices__visual {
  margin: 0;
}
.academy-configure-best-practices .academy-configure-check-list {
  margin-top: 0;
}

.academy-configure-do-dont {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.academy-configure-do-dont__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.3rem;
  border: 1px solid;
  border-radius: 1rem;
}
.academy-configure-do-dont__item .material-symbols-outlined {
  flex: 0 0 auto;
  font-size: 1.5rem;
}
.academy-configure-do-dont__item h3 {
  margin: 0;
  font-size: 0.9rem;
}
.academy-configure-do-dont__item p {
  margin: 0.45rem 0 0;
  color: var(--article-text);
  font-size: 0.78rem;
  line-height: 1.6;
}
.academy-configure-do-dont__item--do {
  background: #f4fbf7;
  border-color: #cde8d6;
}
.academy-configure-do-dont__item--do .material-symbols-outlined,
.academy-configure-do-dont__item--do h3 {
  color: #267746;
}
.academy-configure-do-dont__item--dont {
  background: #fff7f5;
  border-color: #f0d3cc;
}
.academy-configure-do-dont__item--dont .material-symbols-outlined,
.academy-configure-do-dont__item--dont h3 {
  color: #bd4e35;
}

/* ==========================================================
   CHECKLIST FINALE
   ========================================================== */
.academy-configure-final-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
  padding: 1.5rem;
  background: var(--article-soft);
  border: 1px solid var(--article-border);
  border-radius: 1rem;
}
.academy-configure-final-checklist > div {
  display: grid;
  gap: 0.85rem;
}
.academy-configure-final-checklist label {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--article-text);
  font-size: 0.82rem;
  line-height: 1.5;
  cursor: pointer;
}
.academy-configure-final-checklist input {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  margin-top: 0.1rem;
  accent-color: var(--article-orange);
}

/* ==========================================================
   FIN DU NIVEAU
   ========================================================== */
.academy-configure-completion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.6fr);
  gap: 2rem;
  align-items: center;
  padding: 2.2rem;
  margin: 3rem 0;
  overflow: hidden;
  color: #ffffff;
  background: radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.16), transparent 13rem), linear-gradient(135deg, var(--article-navy), #25345f);
  border-radius: 1.25rem;
}
.academy-configure-completion__eyebrow {
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.academy-configure-completion h2 {
  margin: 1rem 0 0;
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.15;
}
.academy-configure-completion p {
  max-width: 42rem;
  margin: 1rem 0 1.4rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.7;
}
.academy-configure-completion__visual {
  margin: 0;
}
.academy-configure-completion .academy-image-placeholder {
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ==========================================================
   FORMATS DE PLACEHOLDER PROPRES À CE GUIDE
   ========================================================== */
.academy-image-placeholder--portrait {
  min-height: 25rem;
}
.academy-image-placeholder--panorama {
  min-height: 18rem;
}
.academy-image-placeholder--phone {
  min-height: 27rem;
  max-width: 15rem;
  margin-inline: auto;
  border-radius: 2rem;
}
.academy-image-placeholder--completion {
  min-height: 15rem;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1100px) {
  .academy-minisite-structure {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .academy-minisite-structure__arrow {
    display: none;
  }
  .academy-configure-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .academy-configure-test-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  .academy-configure-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .academy-configure-preview {
    grid-template-columns: 1fr;
  }
  .academy-configure-preview__arrow {
    justify-self: center;
    transform: rotate(90deg);
  }
  .academy-configure-best-practices,
  .academy-configure-completion {
    grid-template-columns: 1fr;
  }
  .academy-configure-completion__visual {
    order: -1;
  }
}
@media (max-width: 620px) {
  .academy-configure-introduction,
  .academy-configure-note {
    padding: 1rem;
  }
  .academy-minisite-structure,
  .academy-configure-info-grid,
  .academy-configure-module-grid,
  .academy-configure-test-grid,
  .academy-configure-do-dont,
  .academy-configure-final-checklist {
    grid-template-columns: 1fr;
  }
  .academy-configure-completion {
    padding: 1.4rem;
  }
  .academy-image-placeholder--portrait, .academy-image-placeholder--panorama {
    min-height: 18rem;
  }
}
.academy-level {
  --academy-primary: #344255;
  --academy-accent: #d85a30;
  --academy-text: #263240;
  --academy-muted: #667384;
  --academy-border: #dfe4ea;
  --academy-background: #f6f8fa;
  --academy-surface: #fff;
  --academy-radius-md: 1.25rem;
  --academy-radius-lg: 2rem;
  --academy-shadow: 0 1rem 2.5rem rgba(52, 66, 85, 0.08);
  color: var(--academy-text);
  background: var(--academy-surface);
}

.academy-level__breadcrumb {
  padding-block: 1.25rem;
}
.academy-level__breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--academy-muted);
  font-size: 0.875rem;
}
.academy-level__breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.academy-level__breadcrumb a:hover, .academy-level__breadcrumb a:focus-visible {
  color: var(--academy-accent);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.academy-level__breadcrumb [aria-current=page] {
  color: var(--academy-primary);
  font-weight: 700;
}

.academy-level-hero {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(52, 66, 85, 0.08);
  background: radial-gradient(circle at 85% 20%, rgba(216, 90, 48, 0.14), transparent 30%), linear-gradient(135deg, #f8fafc 0%, #fff 52%, #fff7f3 100%);
}

.academy-level-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  min-height: 34rem;
  padding-block: clamp(3rem, 7vw, 6rem);
}

.academy-level-hero__content {
  max-width: 44rem;
}
.academy-level-hero__content h1 {
  margin: 0;
  color: var(--academy-primary);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.academy-level-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
  color: var(--academy-muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.academy-level-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  color: var(--academy-accent);
  background: rgba(216, 90, 48, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.academy-level-hero__description {
  margin: 1.5rem 0 0;
  color: var(--academy-muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.academy-level-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  margin-top: 1.8rem;
  color: var(--academy-muted);
  font-size: 0.9rem;
}
.academy-level-hero__meta > span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.academy-level-hero__meta .material-symbols-outlined {
  color: var(--academy-accent);
  font-size: 1.1rem;
}

.academy-level-hero__button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.35rem;
  margin-top: 2rem;
  padding-inline: 1.35rem;
  border-radius: 0.9rem;
  color: #fff;
  background: var(--academy-accent);
  box-shadow: 0 0.8rem 1.8rem rgba(216, 90, 48, 0.22);
  font-weight: 800;
  text-decoration: none;
}

.academy-level-hero__visual {
  display: flex;
  justify-content: center;
  margin: 0;
}

.academy-level-hero__illustration {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 31rem);
  min-height: 29rem;
}
.academy-level-hero__illustration::before {
  position: absolute;
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(52, 66, 85, 0.08), rgba(216, 90, 48, 0.13));
  content: "";
}

.academy-level-hero__phone {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 14rem;
  min-height: 24rem;
  padding: 2rem;
  border: 0.55rem solid var(--academy-primary);
  border-radius: 2.4rem;
  color: #fff;
  background: linear-gradient(160deg, var(--academy-primary), #465a73);
  box-shadow: 0 2rem 4rem rgba(52, 66, 85, 0.22);
  text-align: center;
  transform: rotate(3deg);
}
.academy-level-hero__phone .material-symbols-outlined {
  margin-bottom: 1.2rem;
  color: #ffd9ca;
  font-size: 3.8rem;
}
.academy-level-hero__phone strong {
  font-size: 1.25rem;
  line-height: 1.25;
}
.academy-level-hero__phone small {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.academy-level-hero__floating-card {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(52, 66, 85, 0.08);
  border-radius: 0.9rem;
  color: var(--academy-primary);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1rem 2rem rgba(52, 66, 85, 0.14);
  font-size: 0.85rem;
  font-weight: 800;
}

.academy-level-hero__floating-card--promotion {
  top: 16%;
  left: 0;
}

.academy-level-hero__floating-card--announcement {
  top: 42%;
  right: 0;
}

.academy-level-hero__floating-card--gallery {
  right: 8%;
  bottom: 12%;
}

.academy-level__content {
  padding-block: clamp(3rem, 7vw, 6rem);
}

.academy-level-introduction {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.25rem;
  max-width: 58rem;
  margin-inline: auto;
  padding: 1.5rem;
  border: 1px solid rgba(216, 90, 48, 0.16);
  border-radius: var(--academy-radius-md);
  background: #fff8f4;
}
.academy-level-introduction h2 {
  margin: 0 0 0.4rem;
  color: var(--academy-primary);
  font-size: 1.25rem;
}
.academy-level-introduction p {
  margin: 0;
  color: var(--academy-muted);
  line-height: 1.75;
}

.academy-level-introduction__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  color: var(--academy-accent);
  background: rgba(216, 90, 48, 0.12);
}

.academy-level-guides {
  margin-top: clamp(4rem, 8vw, 7rem);
}

.academy-level-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.academy-level-section-heading span {
  color: var(--academy-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.academy-level-section-heading h2 {
  margin: 0.55rem 0 0;
  color: var(--academy-primary);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
}
.academy-level-section-heading > p {
  max-width: 28rem;
  margin: 0;
  color: var(--academy-muted);
  line-height: 1.7;
}

.academy-level-guide-list {
  display: grid;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.academy-level-guide-card {
  display: grid;
  grid-template-columns: auto 9rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--academy-border);
  border-radius: var(--academy-radius-md);
  background: var(--academy-surface);
  box-shadow: 0 0.6rem 1.5rem rgba(52, 66, 85, 0.04);
}

.academy-level-guide-card__number {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  color: #fff;
  background: var(--academy-primary);
  font-size: 0.9rem;
  font-weight: 800;
}

.academy-level-guide-card__visual {
  display: grid;
  place-items: center;
  min-height: 8rem;
  border-radius: 1rem;
}
.academy-level-guide-card__visual .material-symbols-outlined {
  font-size: 3rem;
}

.academy-level-guide-card__visual--promotion {
  color: #c84f29;
  background: #fff1eb;
}

.academy-level-guide-card__visual--announcement {
  color: #3c5f88;
  background: #edf4fb;
}

.academy-level-guide-card__visual--gallery {
  color: #74539b;
  background: #f5effb;
}

.academy-level-guide-card__content h3 {
  margin: 0.45rem 0 0.65rem;
  color: var(--academy-primary);
  font-size: 1.45rem;
}
.academy-level-guide-card__content p {
  margin: 0;
  color: var(--academy-muted);
  line-height: 1.7;
}
.academy-level-guide-card__content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0.95rem 0 0;
  padding: 0;
  color: var(--academy-text);
  font-size: 0.85rem;
  list-style: none;
}
.academy-level-guide-card__content li {
  position: relative;
  padding-left: 1rem;
}
.academy-level-guide-card__content li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--academy-accent);
  content: "";
}

.academy-level-guide-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.academy-level-guide-card__meta span {
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  color: var(--academy-muted);
  background: var(--academy-background);
  font-size: 0.72rem;
  font-weight: 700;
}

.academy-level-guide-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  color: var(--academy-accent);
  font-weight: 800;
  text-decoration: none;
}

.academy-level-objectives {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--academy-radius-lg);
  color: #fff;
  background: var(--academy-primary);
}

.academy-level-objectives__content > h2 {
  max-width: 47rem;
  margin: 0.65rem 0 2rem;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.15;
}

.academy-level-objectives__eyebrow {
  color: #ffd0bf;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.academy-level-objectives__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.academy-level-objectives__grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.07);
}
.academy-level-objectives__grid .material-symbols-outlined {
  color: #ffd0bf;
  font-size: 1.7rem;
}
.academy-level-objectives__grid h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}
.academy-level-objectives__grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.65;
}

.academy-level-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(3rem, 7vw, 5rem);
}

.academy-level-navigation__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 5.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--academy-border);
  border-radius: var(--academy-radius-md);
  color: var(--academy-primary);
  background: var(--academy-surface);
  text-decoration: none;
}
.academy-level-navigation__item small {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--academy-muted);
}
.academy-level-navigation__item strong {
  display: block;
}

.academy-level-navigation__item--next {
  justify-content: flex-end;
  text-align: right;
}

@media (max-width: 64rem) {
  .academy-level-hero__grid {
    grid-template-columns: 1fr;
  }
  .academy-level-section-heading {
    display: block;
  }
  .academy-level-guide-card {
    grid-template-columns: auto 8rem minmax(0, 1fr);
  }
  .academy-level-guide-card__link {
    grid-column: 3;
    justify-self: start;
  }
  .academy-level-objectives__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 46rem) {
  .academy-level-guide-card {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }
  .academy-level-guide-card__visual {
    grid-column: 1/-1;
  }
  .academy-level-guide-card__link {
    grid-column: 2;
  }
  .academy-level-navigation {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 34rem) {
  .academy-level-introduction {
    grid-template-columns: 1fr;
  }
  .academy-level-guide-card {
    display: block;
  }
  .academy-level-guide-card__number,
  .academy-level-guide-card__visual,
  .academy-level-guide-card__link {
    margin-bottom: 1rem;
  }
  .academy-level-navigation__item--next {
    justify-content: flex-start;
    text-align: left;
  }
}
.academy-article-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.academy-article-comparison__item {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid rgba(52, 66, 85, 0.14);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 1rem 2.5rem rgba(52, 66, 85, 0.07);
}
.academy-article-comparison__item:last-child {
  border-color: rgba(216, 90, 48, 0.24);
  background: linear-gradient(145deg, rgba(216, 90, 48, 0.055), rgba(255, 255, 255, 0.96));
}
.academy-article-comparison__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.academy-article-comparison__header h3 {
  margin: 0;
  color: var(--primary);
  font-size: 1.15rem;
}
.academy-article-comparison__icon {
  display: grid;
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 0.85rem;
  background: rgba(216, 90, 48, 0.1);
  color: var(--secondary);
  font-size: 1.15rem;
}
.academy-article-comparison__example {
  margin: auto 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(52, 66, 85, 0.1);
  color: rgba(52, 66, 85, 0.78);
  font-size: 0.925rem;
  font-style: italic;
}

.academy-article-example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.academy-article-example-card {
  padding: 1.35rem;
  border: 1px solid rgba(52, 66, 85, 0.12);
  border-radius: 1rem;
  background: #fff;
}
.academy-article-example-card__icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 0.85rem;
  background: rgba(216, 90, 48, 0.1);
  color: var(--secondary);
  font-size: 1.1rem;
}
.academy-article-example-card h3 {
  margin: 0 0 0.55rem;
  color: var(--primary);
  font-size: 1rem;
}
.academy-article-example-card p {
  margin: 0;
  color: rgba(52, 66, 85, 0.78);
  font-size: 0.925rem;
  line-height: 1.6;
}

.academy-article-feature__example {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--secondary);
  border-radius: 0 0.7rem 0.7rem 0;
  background: rgba(216, 90, 48, 0.06);
  color: rgba(52, 66, 85, 0.82);
  font-size: 0.925rem;
  font-style: italic;
}

.academy-article-bottom-sheet-demo {
  display: grid;
  grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr);
  gap: 2.5rem;
  align-items: center;
  margin: 2rem 0;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid rgba(52, 66, 85, 0.12);
  border-radius: 1.5rem;
  background: radial-gradient(circle at top left, rgba(216, 90, 48, 0.1), transparent 42%), #f8f9fb;
}
.academy-article-bottom-sheet-demo__phone {
  width: min(100%, 17rem);
  margin: 0 auto;
  padding: 0.65rem;
  border-radius: 2.1rem;
  background: var(--primary);
  box-shadow: 0 1.5rem 3rem rgba(52, 66, 85, 0.18);
}
.academy-article-bottom-sheet-demo__screen {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  border-radius: 1.55rem;
  background: #e8ebef;
}
.academy-article-bottom-sheet-demo__visual {
  display: grid;
  min-height: 28rem;
  place-items: center;
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(52, 66, 85, 0.88), rgba(216, 90, 48, 0.78));
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  text-align: center;
}
.academy-article-bottom-sheet-demo__sheet {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.75rem 1.25rem 1.35rem;
  border-radius: 1.5rem 1.5rem 0 0;
  background: #fff;
  box-shadow: 0 -0.75rem 2rem rgba(52, 66, 85, 0.14);
}
.academy-article-bottom-sheet-demo__sheet strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--primary);
  font-size: 0.95rem;
}
.academy-article-bottom-sheet-demo__sheet p {
  margin: 0;
  color: rgba(52, 66, 85, 0.75);
  font-size: 0.75rem;
  line-height: 1.5;
}
.academy-article-bottom-sheet-demo__handle {
  display: block;
  width: 2.7rem;
  height: 0.25rem;
  margin: 0 auto 1rem;
  border-radius: 99rem;
  background: rgba(52, 66, 85, 0.18);
}
.academy-article-bottom-sheet-demo__optional-cta {
  display: block;
  margin-top: 0.9rem;
  padding: 0.55rem;
  border: 1px dashed rgba(216, 90, 48, 0.4);
  border-radius: 0.6rem;
  color: var(--secondary);
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
}
.academy-article-bottom-sheet-demo__content h3 {
  margin: 0 0 0.85rem;
  color: var(--primary);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}
.academy-article-bottom-sheet-demo__content p {
  margin: 0 0 1rem;
  color: rgba(52, 66, 85, 0.8);
  line-height: 1.75;
}
.academy-article-bottom-sheet-demo__content p:last-child {
  margin-bottom: 0;
}

.academy-article-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.academy-article-action-card {
  padding: 1.25rem;
  border: 1px solid rgba(52, 66, 85, 0.12);
  border-radius: 1rem;
  background: #fff;
}
.academy-article-action-card > i {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  place-items: center;
  border-radius: 0.75rem;
  background: rgba(216, 90, 48, 0.1);
  color: var(--secondary);
}
.academy-article-action-card h4 {
  margin: 0 0 0.45rem;
  color: var(--primary);
  font-size: 1rem;
}
.academy-article-action-card p {
  margin: 0;
  color: rgba(52, 66, 85, 0.75);
  font-size: 0.9rem;
  line-height: 1.55;
}

.academy-article-final-checklist {
  margin: 2rem 0;
  padding: 1.5rem;
  border: 1px solid rgba(216, 90, 48, 0.2);
  border-radius: 1.25rem;
  background: rgba(216, 90, 48, 0.045);
}
.academy-article-final-checklist h3 {
  margin: 0 0 1rem;
  color: var(--primary);
}

@media (max-width: 900px) {
  .academy-article-example-grid {
    grid-template-columns: 1fr;
  }
  .academy-article-bottom-sheet-demo {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .academy-article-comparison,
  .academy-article-action-grid {
    grid-template-columns: 1fr;
  }
  .academy-article-bottom-sheet-demo {
    gap: 1.75rem;
    padding: 1.25rem;
  }
}
.academy-album-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.academy-album-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(52, 66, 85, 0.12);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0.75rem 2rem rgba(52, 66, 85, 0.06);
}
.academy-album-card > .material-symbols-outlined {
  display: grid;
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 0.9rem;
  background: rgba(216, 90, 48, 0.1);
  color: var(--secondary);
  font-size: 1.4rem;
}
.academy-album-card h3 {
  margin: 0 0 0.4rem;
  color: var(--primary);
  font-size: 1rem;
}
.academy-album-card p {
  margin: 0;
  color: rgba(52, 66, 85, 0.76);
  font-size: 0.9rem;
  line-height: 1.55;
}

.academy-gallery-format {
  display: grid;
  grid-template-columns: minmax(12rem, 0.7fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
  padding: 1.5rem;
  border: 1px solid rgba(52, 66, 85, 0.12);
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(52, 66, 85, 0.035), rgba(216, 90, 48, 0.07));
}
.academy-gallery-format__visual {
  display: flex;
  min-height: 17rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--primary);
  color: #fff;
  text-align: center;
  box-shadow: 0 1rem 2.5rem rgba(52, 66, 85, 0.16);
}
.academy-gallery-format__visual .material-symbols-outlined {
  margin-bottom: 1rem;
  font-size: 3.25rem;
}
.academy-gallery-format__visual strong {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}
.academy-gallery-format__visual small {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}
.academy-gallery-format__content h3 {
  margin: 0 0 0.75rem;
  color: var(--primary);
}
.academy-gallery-format__content p {
  margin: 0 0 1rem;
  color: rgba(52, 66, 85, 0.8);
  line-height: 1.7;
}
.academy-gallery-format__content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .academy-album-grid,
  .academy-gallery-format {
    grid-template-columns: 1fr;
  }
  .academy-gallery-format {
    gap: 1.25rem;
    padding: 1.1rem;
  }
  .academy-gallery-format__visual {
    min-height: 13rem;
  }
}
.academy-level--loyalty .academy-level-hero__visual {
  position: relative;
  overflow: hidden;
}
.academy-level--loyalty .academy-level-hero__visual::before,
.academy-level--loyalty .academy-level-hero__visual::after {
  position: absolute;
  z-index: 1;
  content: "";
  border-radius: 999px;
  pointer-events: none;
}
.academy-level--loyalty .academy-level-hero__visual::before {
  top: 8%;
  right: 6%;
  width: 5rem;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.18);
}
.academy-level--loyalty .academy-level-hero__visual::after {
  bottom: 10%;
  left: 8%;
  width: 2.75rem;
  aspect-ratio: 1;
  border: 0.5rem solid rgba(255, 255, 255, 0.16);
}
.academy-level--loyalty .academy-level-hero__visual img,
.academy-level--loyalty .academy-path-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.academy-level--loyalty .academy-path-card__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.academy-level--loyalty .academy-path-card__status {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  background: rgba(52, 66, 85, 0.08);
  color: var(--primary, #344255);
}
.academy-level--loyalty .academy-path-card__status[hidden] {
  display: none;
}
.academy-level--loyalty .academy-path-card.is-in-progress .academy-path-card__step {
  box-shadow: 0 0 0 0.35rem rgba(216, 90, 48, 0.12);
}
.academy-level--loyalty .academy-path-card.is-completed .academy-path-card__status {
  background: rgba(45, 140, 91, 0.12);
  color: #217047;
}
.academy-level--loyalty .academy-path-card.is-completed .academy-path-card__step::after {
  margin-left: 0.25rem;
  font-size: 0.75em;
}
.academy-level--loyalty .academy-learning-card__media {
  display: grid;
  place-items: center;
}
.academy-level--loyalty .academy-learning-card__media .material-symbols-outlined {
  font-size: clamp(2rem, 4vw, 3rem);
}
.academy-level--loyalty .academy-loyalty-cycle {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
}
.academy-level--loyalty .academy-loyalty-cycle span {
  display: grid;
  place-items: center;
  min-height: 4.75rem;
  padding: 0.75rem;
  border-radius: 999px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0.75rem 2rem rgba(52, 66, 85, 0.08);
}
.academy-level--loyalty .academy-loyalty-cycle span + span {
  position: relative;
}
.academy-level--loyalty .academy-loyalty-cycle span + span::before {
  position: absolute;
  top: 50%;
  right: 100%;
  width: 0.5rem;
  height: 0.125rem;
  content: "";
  background: currentColor;
  opacity: 0.25;
}
.academy-level--loyalty .academy-loyalty-reward {
  display: grid;
  place-items: center;
}
.academy-level--loyalty .academy-loyalty-reward .material-symbols-outlined {
  font-size: clamp(4rem, 8vw, 7rem);
  transform: rotate(-6deg);
}

@media (max-width: 48rem) {
  .academy-level--loyalty .academy-path-card__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }
  .academy-level--loyalty .academy-loyalty-cycle {
    grid-template-columns: 1fr;
  }
  .academy-level--loyalty .academy-loyalty-cycle span {
    min-height: 3.75rem;
  }
  .academy-level--loyalty .academy-loyalty-cycle span + span::before {
    top: auto;
    right: 50%;
    bottom: 100%;
    width: 0.125rem;
    height: 0.5rem;
  }
}
/* =========================================================
   Guide — Activer une carte de fidélité
   Les composants génériques restent définis dans le SCSS
   commun des articles de l’Académie.
   ========================================================= */
.academy-loyalty-points {
  display: grid;
  grid-template-columns: minmax(16rem, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin: 2rem 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(52, 66, 85, 0.14);
  border-radius: 1.5rem;
  background: #fff;
}

.academy-loyalty-points__preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 1.25rem;
  background: rgba(216, 90, 48, 0.08);
}

.academy-loyalty-points__item,
.academy-loyalty-points__reward {
  display: grid;
  place-items: center;
  min-height: 4rem;
  border-radius: 1rem;
  font-weight: 700;
}

.academy-loyalty-points__item {
  border: 1px dashed rgba(52, 66, 85, 0.28);
  background: #fff;
  color: #344255;
}

.academy-loyalty-points__reward {
  grid-column: 1/-1;
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 0.5rem;
  background: #344255;
  color: #fff;
}

.academy-loyalty-points__content > :first-child {
  margin-top: 0;
}

.academy-loyalty-example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.academy-loyalty-example-card {
  padding: 1.25rem;
  border: 1px solid rgba(52, 66, 85, 0.14);
  border-radius: 1.25rem;
  background: #fff;
}

.academy-loyalty-example-card > .material-symbols-outlined {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 0.9rem;
  background: rgba(216, 90, 48, 0.1);
  color: #d85a30;
}

.academy-loyalty-example-card h3 {
  margin: 0 0 0.5rem;
}

.academy-loyalty-example-card p {
  margin: 0;
}

.academy-loyalty-description-example {
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 0.3rem solid #d85a30;
  border-radius: 0 1rem 1rem 0;
  background: rgba(216, 90, 48, 0.07);
}

.academy-loyalty-description-example__label {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: #d85a30;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.academy-loyalty-description-example p {
  margin: 0;
  color: #344255;
}

@media (max-width: 800px) {
  .academy-loyalty-points {
    grid-template-columns: 1fr;
  }
  .academy-loyalty-example-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .academy-loyalty-points__preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* =========================================================
   Guide — Récompenser vos clients
   Les composants génériques restent définis dans le SCSS
   commun des articles de l’Académie.
   ========================================================= */
.academy-reward-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.academy-reward-card {
  padding: 1.5rem;
  border: 1px solid rgba(52, 66, 85, 0.14);
  border-radius: 1.25rem;
  background: #fff;
}

.academy-reward-card > .material-symbols-outlined {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 0.9rem;
  background: rgba(216, 90, 48, 0.1);
  color: #d85a30;
}

.academy-reward-card h3 {
  margin: 0 0 0.75rem;
}

.academy-reward-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.academy-reward-card li + li {
  margin-top: 0.45rem;
}

.academy-reward-balance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.academy-reward-balance__item {
  padding: 1.5rem;
  border: 1px solid rgba(52, 66, 85, 0.14);
  border-radius: 1.25rem;
  background: #fff;
  text-align: center;
}

.academy-reward-balance__item > .material-symbols-outlined {
  display: inline-grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(52, 66, 85, 0.08);
  color: #344255;
}

.academy-reward-balance__item--ideal {
  border-color: rgba(216, 90, 48, 0.34);
  background: rgba(216, 90, 48, 0.06);
}

.academy-reward-balance__item--ideal > .material-symbols-outlined {
  background: #d85a30;
  color: #fff;
}

.academy-reward-balance__item h3 {
  margin: 0 0 0.6rem;
}

.academy-reward-balance__item p {
  margin: 0;
}

.academy-reward-example {
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 0.3rem solid #d85a30;
  border-radius: 0 1rem 1rem 0;
  background: rgba(216, 90, 48, 0.07);
}

.academy-reward-example__label {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: #d85a30;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.academy-reward-example p {
  margin: 0;
  color: #344255;
}

.academy-reward-preview {
  display: grid;
  grid-template-columns: minmax(15rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin: 2rem 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(52, 66, 85, 0.14);
  border-radius: 1.5rem;
  background: #fff;
}

.academy-reward-preview__media {
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  background: rgba(52, 66, 85, 0.06);
}

.academy-reward-preview__media img {
  display: block;
  width: 100%;
  height: auto;
}

.academy-reward-preview__content > :first-child {
  margin-top: 0;
}

@media (max-width: 800px) {
  .academy-reward-grid,
  .academy-reward-balance,
  .academy-reward-preview {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   Guide — Créer un mini-jeu
   Les composants génériques restent définis dans l'Académie.
   ========================================================= */
.academy-game-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.academy-game-type-card {
  padding: 1.5rem;
  border: 1px solid rgba(52, 66, 85, 0.14);
  border-radius: 1.25rem;
  background: #fff;
}
.academy-game-type-card h3 {
  margin: 1rem 0 0.5rem;
}
.academy-game-type-card p {
  margin-bottom: 1rem;
}
.academy-game-type-card ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding-left: 1.2rem;
}

.academy-game-type-card__icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 1rem;
  background: rgba(216, 90, 48, 0.12);
  color: #d85a30;
}

.academy-example-box {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid #d85a30;
  border-radius: 0 1rem 1rem 0;
  background: rgba(216, 90, 48, 0.07);
}
.academy-example-box ul {
  display: grid;
  gap: 0.5rem;
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}

.academy-example-box__label {
  font-weight: 700;
  color: #344255;
}

.academy-prize-grid,
.academy-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.academy-prize-grid article {
  display: grid;
  gap: 0.25rem;
  padding: 1.15rem;
  border: 1px solid rgba(52, 66, 85, 0.12);
  border-radius: 1rem;
  background: #fff;
}
.academy-prize-grid article strong {
  color: #344255;
}
.academy-prize-grid article span {
  font-size: 0.9rem;
  color: rgba(52, 66, 85, 0.72);
}

.academy-schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.academy-schedule-card {
  padding: 1.25rem;
  border-radius: 1rem;
  background: rgba(52, 66, 85, 0.06);
}
.academy-schedule-card .material-symbols-outlined {
  color: #d85a30;
}
.academy-schedule-card h3 {
  margin: 0.75rem 0 0.35rem;
}
.academy-schedule-card p {
  margin: 0;
}

.academy-result-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 4.5rem;
  padding: 1rem;
  border: 1px solid rgba(52, 66, 85, 0.12);
  border-radius: 1rem;
  background: #fff;
}
.academy-result-card .material-symbols-outlined {
  color: #d85a30;
}

@media (max-width: 760px) {
  .academy-game-type-grid,
  .academy-prize-grid,
  .academy-schedule-grid,
  .academy-result-grid {
    grid-template-columns: 1fr;
  }
}
.academy-level--analyser {
  --analyser-accent: #2563eb;
  --analyser-accent-soft: #eff6ff;
  --analyser-border: #dbe7f5;
  --analyser-text-soft: #64748b;
}
.academy-level--analyser .academy-path-card__media {
  padding: 0 !important;
}
.academy-level--analyser .academy-level-hero__visual--dashboard {
  position: relative;
  overflow: hidden;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  border: 1px solid var(--analyser-border);
  border-radius: 1.75rem;
  background: radial-gradient(circle at 85% 15%, rgba(37, 99, 235, 0.14), transparent 34%), linear-gradient(145deg, #ffffff, #f8fbff);
  box-shadow: 0 1.5rem 3.5rem rgba(30, 64, 175, 0.12);
}
.academy-level--analyser .academy-level-hero__visual--dashboard::after {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  content: "";
}
.academy-level--analyser .academy-level-hero__visual--dashboard img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 0.75rem 2rem rgba(15, 23, 42, 0.12);
}
.academy-level--analyser .academy-level-progress__bar {
  background: linear-gradient(90deg, var(--analyser-accent), #60a5fa);
}
.academy-level--analyser .academy-path-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.academy-level--analyser .academy-path-card:hover {
  transform: translateY(-0.2rem);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.08);
}
.academy-level--analyser .academy-path-card.is-in-progress {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.08);
}
.academy-level--analyser .academy-path-card.is-completed {
  border-color: rgba(22, 163, 74, 0.3);
}
.academy-level--analyser .academy-path-card__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
}
.academy-level--analyser .academy-path-card__status {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--analyser-accent-soft);
  color: var(--analyser-accent);
  font-size: 0.75rem;
  font-weight: 700;
}
.academy-level--analyser .academy-path-card__status[hidden] {
  display: none;
}
.academy-level--analyser .academy-path-card.is-completed .academy-path-card__status {
  background: #ecfdf3;
  color: #15803d;
}
.academy-level--analyser .academy-path-card__media {
  display: grid;
  min-height: 9rem;
  align-content: center;
  justify-items: center;
  gap: 0.65rem;
  padding: 1.25rem;
  border-radius: 1.25rem;
  text-align: center;
}
.academy-level--analyser .academy-path-card__media .material-symbols-outlined {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}
.academy-level--analyser .academy-path-card__media > span:last-child {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.academy-level--analyser .academy-path-card__media--dashboard {
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
  color: #1d4ed8;
}
.academy-level--analyser .academy-path-card__media--promotions {
  background: linear-gradient(145deg, #fff7ed, #ffedd5);
  color: #c2410c;
}
.academy-level--analyser .academy-path-card__media--actions {
  background: linear-gradient(145deg, #ecfdf5, #d1fae5);
  color: #047857;
}
.academy-level--analyser .academy-learning-card__media {
  display: grid;
  place-items: center;
}
.academy-level--analyser .academy-learning-card__media .material-symbols-outlined {
  font-size: 2rem;
  color: var(--analyser-accent);
}
.academy-level--analyser .academy-information-card__media {
  display: grid;
  place-items: center;
}
.academy-level--analyser .academy-information-card__media .material-symbols-outlined {
  font-size: clamp(3rem, 7vw, 5.5rem);
}
.academy-level--analyser .academy-information-card__media--chart {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(96, 165, 250, 0.22));
  color: #2563eb;
}
.academy-level--analyser .academy-information-card__media--target {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.1), rgba(251, 146, 60, 0.2));
  color: #c2410c;
}
@media (max-width: 62rem) {
  .academy-level--analyser .academy-level-hero__visual--dashboard {
    max-width: 44rem;
    margin-inline: auto;
  }
}
@media (max-width: 48rem) {
  .academy-level--analyser .academy-path-card__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }
  .academy-level--analyser .academy-path-card__media {
    min-height: 7rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .academy-level--analyser .academy-path-card {
    transition: none;
  }
  .academy-level--analyser .academy-path-card:hover {
    transform: none;
  }
}

.academy-article--comprendre-tableau-de-bord {
  --dashboard-blue: #2563eb;
  --dashboard-blue-soft: #eff6ff;
  --dashboard-border: #dbe7f5;
  --dashboard-muted: #64748b;
}
.academy-article--comprendre-tableau-de-bord .academy-guide-media--dashboard {
  margin-top: 2rem;
}
.academy-article--comprendre-tableau-de-bord .academy-guide-media--dashboard .academy-guide-media__frame {
  max-height: 48rem;
  overflow: hidden;
  border: 1px solid var(--dashboard-border);
  border-radius: 1.5rem;
  background: #f8fafc;
  box-shadow: 0 1.25rem 3rem rgba(15, 23, 42, 0.08);
}
.academy-article--comprendre-tableau-de-bord .academy-guide-media--dashboard img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
}
.academy-article--comprendre-tableau-de-bord .academy-dashboard-shot {
  margin: clamp(1.5rem, 3vw, 2.25rem) 0;
  overflow: hidden;
  border: 1px solid var(--dashboard-border);
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #f8fbff, #ffffff);
  box-shadow: 0 0.85rem 2rem rgba(15, 23, 42, 0.07);
}
.academy-article--comprendre-tableau-de-bord .academy-dashboard-shot img {
  display: block;
  width: 100%;
  height: auto;
}
.academy-article--comprendre-tableau-de-bord .academy-dashboard-shot--compact {
  max-width: 52rem;
}
.academy-article--comprendre-tableau-de-bord .academy-kpi-guide-grid,
.academy-article--comprendre-tableau-de-bord .academy-reading-grid,
.academy-article--comprendre-tableau-de-bord .academy-category-grid,
.academy-article--comprendre-tableau-de-bord .academy-diagnostic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.75rem 0;
}
.academy-article--comprendre-tableau-de-bord .academy-kpi-guide-grid article,
.academy-article--comprendre-tableau-de-bord .academy-reading-grid article,
.academy-article--comprendre-tableau-de-bord .academy-category-grid article,
.academy-article--comprendre-tableau-de-bord .academy-diagnostic-grid article {
  padding: 1.25rem;
  border: 1px solid var(--dashboard-border);
  border-radius: 1rem;
  background: #fff;
}
.academy-article--comprendre-tableau-de-bord .academy-kpi-guide-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.academy-article--comprendre-tableau-de-bord .academy-kpi-guide-grid article {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.55rem;
}
.academy-article--comprendre-tableau-de-bord .academy-kpi-guide-grid .material-symbols-outlined {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 0.75rem;
  background: var(--dashboard-blue-soft);
  color: var(--dashboard-blue);
}
.academy-article--comprendre-tableau-de-bord .academy-kpi-guide-grid h3,
.academy-article--comprendre-tableau-de-bord .academy-kpi-guide-grid p {
  margin: 0;
}
.academy-article--comprendre-tableau-de-bord .academy-reading-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.academy-article--comprendre-tableau-de-bord .academy-reading-grid article {
  position: relative;
  padding-top: 3.7rem;
}
.academy-article--comprendre-tableau-de-bord .academy-reading-grid article::before {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  width: 2rem;
  height: 0.25rem;
  border-radius: 999px;
  background: var(--dashboard-blue);
  content: "";
}
.academy-article--comprendre-tableau-de-bord .academy-funnel-explanation {
  display: grid;
  gap: 0.75rem;
  margin: 1.75rem 0;
  padding: 0;
  list-style: none;
}
.academy-article--comprendre-tableau-de-bord .academy-funnel-explanation li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--dashboard-border);
  border-radius: 1rem;
  background: #fff;
}
.academy-article--comprendre-tableau-de-bord .academy-funnel-explanation li > span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--dashboard-blue);
  color: #fff;
  font-weight: 800;
}
.academy-article--comprendre-tableau-de-bord .academy-funnel-explanation h3,
.academy-article--comprendre-tableau-de-bord .academy-funnel-explanation p {
  margin: 0;
}
.academy-article--comprendre-tableau-de-bord .academy-funnel-explanation p {
  margin-top: 0.2rem;
  color: var(--dashboard-muted);
}
.academy-article--comprendre-tableau-de-bord .academy-feature-card--highlight {
  border-color: rgba(15, 138, 112, 0.3);
  background: #f0fdf9;
}
.academy-article--comprendre-tableau-de-bord .academy-feature-card--warning {
  border-color: rgba(234, 88, 12, 0.25);
  background: #fff7ed;
}
.academy-article--comprendre-tableau-de-bord .academy-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.academy-article--comprendre-tableau-de-bord .academy-category-grid h3 {
  margin-top: 0;
}
.academy-article--comprendre-tableau-de-bord .academy-category-grid p {
  margin-bottom: 0;
  color: var(--dashboard-muted);
}
.academy-article--comprendre-tableau-de-bord .academy-metric-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.75rem 0;
}
.academy-article--comprendre-tableau-de-bord .academy-metric-list article {
  display: grid;
  grid-template-columns: minmax(9rem, 0.35fr) 1fr;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--dashboard-border);
  border-radius: 0.85rem;
  background: #fff;
}
.academy-article--comprendre-tableau-de-bord .academy-metric-list span {
  color: var(--dashboard-muted);
}
.academy-article--comprendre-tableau-de-bord .academy-diagnostic-grid article {
  border-left: 0.3rem solid var(--dashboard-blue);
}
.academy-article--comprendre-tableau-de-bord .academy-diagnostic-grid h3 {
  margin-top: 0;
}
.academy-article--comprendre-tableau-de-bord .academy-diagnostic-grid p {
  margin-bottom: 0;
  color: var(--dashboard-muted);
}
.academy-article--comprendre-tableau-de-bord .academy-callout--spotcard {
  border-color: rgba(37, 99, 235, 0.2);
  background: var(--dashboard-blue-soft);
}
.academy-article--comprendre-tableau-de-bord .academy-callout--spotcard .academy-callout__icon {
  color: var(--dashboard-blue);
}
@media (max-width: 70rem) {
  .academy-article--comprendre-tableau-de-bord .academy-kpi-guide-grid,
  .academy-article--comprendre-tableau-de-bord .academy-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 48rem) {
  .academy-article--comprendre-tableau-de-bord .academy-kpi-guide-grid,
  .academy-article--comprendre-tableau-de-bord .academy-reading-grid,
  .academy-article--comprendre-tableau-de-bord .academy-category-grid,
  .academy-article--comprendre-tableau-de-bord .academy-diagnostic-grid {
    grid-template-columns: 1fr;
  }
  .academy-article--comprendre-tableau-de-bord .academy-metric-list article {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .academy-article--comprendre-tableau-de-bord .academy-guide-media--dashboard .academy-guide-media__frame {
    max-height: 30rem;
  }
}

.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] {
  --promotion-blue: #2563eb;
  --promotion-blue-soft: #eff6ff;
  --promotion-green: #0f8a70;
  --promotion-green-soft: #ecfdf5;
  --promotion-orange: #ea580c;
  --promotion-orange-soft: #fff7ed;
  --promotion-purple: #7c3aed;
  --promotion-purple-soft: #f5f3ff;
  --promotion-border: #dbe7f5;
  --promotion-muted: #64748b;
  --promotion-ink: #0f172a;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-guide-media--promotion-performance {
  margin-top: 2.5rem;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-guide-media--promotion-performance .academy-guide-media__frame {
  overflow: hidden;
  border: 1px solid var(--promotion-border);
  border-radius: 1.5rem;
  background: #f8fafc;
  box-shadow: 0 1.25rem 3rem rgba(15, 23, 42, 0.08);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-guide-media--promotion-performance img {
  display: block;
  width: 100%;
  height: auto;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-promotion-shot {
  margin: 2rem 0;
  overflow: hidden;
  border: 1px solid var(--promotion-border);
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.06);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-promotion-shot img {
  display: block;
  width: 100%;
  height: auto;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-promotion-shot--period, .academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-promotion-shot--trend {
  max-width: 52rem;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-promotion-metrics,
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-column-grid,
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-rate-grid,
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-diagnostic-grid,
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-action-grid {
  display: grid;
  gap: 1.1rem;
  margin: 2rem 0;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-promotion-metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-metric-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.2rem;
  border: 1px solid var(--promotion-border);
  border-radius: 1.15rem;
  background: #fff;
  box-shadow: 0 0.85rem 2rem rgba(15, 23, 42, 0.035);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-metric-card span {
  color: var(--promotion-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-metric-card strong {
  color: var(--promotion-ink);
  font-size: 1.02rem;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-metric-card--primary {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), #fff);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-metric-card--blue {
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.9), #fff);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-metric-card--orange {
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.9), #fff);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-metric-card--green {
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.9), #fff);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-metric-card--accent {
  background: linear-gradient(180deg, rgba(245, 243, 255, 0.92), #fff);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-column-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-column-grid article {
  padding: 1rem;
  border: 1px solid var(--promotion-border);
  border-radius: 0.9rem;
  background: #fff;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-column-grid h3,
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-column-grid p {
  margin: 0;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-column-grid p {
  margin-top: 0.3rem;
  color: var(--promotion-muted);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-rate-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-rate-grid article {
  padding: 1.35rem;
  border: 1px solid var(--promotion-border);
  border-radius: 1.2rem;
  background: linear-gradient(145deg, #fff, #f8fbff);
  box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.035);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-rate-grid .material-symbols-outlined {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  margin-bottom: 0.75rem;
  border-radius: 0.75rem;
  background: var(--promotion-blue-soft);
  color: var(--promotion-blue);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-rate-grid code {
  display: inline-block;
  margin: 0.4rem 0 0.65rem;
  color: var(--promotion-blue);
  font-weight: 700;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-example-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 3vw, 2rem);
  margin: 1.75rem 0;
  padding: 1.4rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 1rem;
  background: var(--promotion-blue-soft);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-example-card div {
  text-align: center;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-example-card strong,
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-example-card span {
  display: block;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-example-card strong {
  font-size: 1.6rem;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-example-card > span {
  color: var(--promotion-blue);
  font-size: 1.5rem;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-rate-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 0;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-rate-summary article {
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.85), #fff);
  text-align: center;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-rate-summary strong,
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-rate-summary span {
  display: block;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-rate-summary strong {
  color: var(--promotion-blue);
  font-size: 1.6rem;
  line-height: 1;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-rate-summary span {
  margin-top: 0.35rem;
  color: #36506c;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.75rem 0;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-comparison article {
  padding: 1.3rem;
  border: 1px solid var(--promotion-border);
  border-radius: 1rem;
  background: #fff;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-comparison__winner {
  border-color: rgba(15, 138, 112, 0.35) !important;
  background: #f0fdf9 !important;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-comparison__label {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
  font-size: 0.8rem;
  font-weight: 800;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-comparison dl {
  display: grid;
  gap: 0.45rem;
  margin: 0;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-comparison dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-comparison dt {
  color: var(--promotion-muted);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-comparison dd {
  margin: 0;
  font-weight: 800;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-diagnostic-grid,
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-action-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-diagnostic-card {
  padding: 1.35rem;
  border: 1px solid var(--promotion-border);
  border-radius: 1.2rem;
  background: #fff;
  box-shadow: 0 0.95rem 2rem rgba(15, 23, 42, 0.035);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-diagnostic-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.12rem;
  line-height: 1.35;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-diagnostic-card p {
  margin: 0;
  color: #334155;
  line-height: 1.7;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-diagnostic-card--blue {
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.85), #fff);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-diagnostic-card--blue h3 {
  color: var(--promotion-blue);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-diagnostic-card--green {
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.85), #fff);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-diagnostic-card--green h3 {
  color: var(--promotion-green);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-diagnostic-card--orange {
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.9), #fff);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-diagnostic-card--orange h3 {
  color: var(--promotion-orange);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-diagnostic-card--rose {
  background: linear-gradient(180deg, rgba(255, 241, 242, 0.9), #fff);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-diagnostic-card--rose h3 {
  color: #e11d48;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-action-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-action-grid article {
  padding: 1.25rem;
  border: 1px solid var(--promotion-border);
  border-radius: 1.1rem;
  background: #fff;
  box-shadow: 0 0.85rem 2rem rgba(15, 23, 42, 0.03);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-action-grid .material-symbols-outlined {
  color: var(--promotion-blue);
  font-size: 2rem;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-reading-grid--premium {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-reading-card {
  padding: 1.2rem;
  border: 1px solid var(--promotion-border);
  border-radius: 1.15rem;
  background: #fff;
  box-shadow: 0 0.85rem 2rem rgba(15, 23, 42, 0.03);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-reading-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-reading-card p {
  margin: 0;
  color: #334155;
  line-height: 1.65;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-reading-card--green {
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.85), #fff);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-reading-card--green h3 {
  color: var(--promotion-green);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-reading-card--orange {
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.9), #fff);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-reading-card--orange h3 {
  color: var(--promotion-orange);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-reading-card--blue {
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.85), #fff);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-reading-card--blue h3 {
  color: var(--promotion-blue);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-feature-grid {
  display: grid;
  gap: 1.15rem;
  margin: 2rem 0;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-feature-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-feature-card {
  padding: 1.35rem;
  border: 1px solid var(--promotion-border);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
  box-shadow: 0 1rem 2.4rem rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.35rem 2.6rem rgba(15, 23, 42, 0.065);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-feature-card h3 {
  margin: 0.3rem 0 0.75rem;
  color: var(--promotion-ink);
  font-size: 1.32rem;
  line-height: 1.15;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-feature-card p {
  margin: 0;
  color: #334155;
  line-height: 1.7;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-feature-card--primary .academy-feature-card__label,
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-feature-card--primary .academy-feature-card__value,
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-feature-card--primary .academy-feature-card__tip {
  color: var(--promotion-blue);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-feature-card--primary .academy-feature-card__tip {
  background: rgba(37, 99, 235, 0.08);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-feature-card--success .academy-feature-card__label,
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-feature-card--success .academy-feature-card__value,
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-feature-card--success .academy-feature-card__tip {
  color: var(--promotion-green);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-feature-card--success .academy-feature-card__tip {
  background: rgba(15, 138, 112, 0.08);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-feature-card--accent .academy-feature-card__label,
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-feature-card--accent .academy-feature-card__value,
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-feature-card--accent .academy-feature-card__tip {
  color: var(--promotion-purple);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-feature-card--accent .academy-feature-card__tip {
  background: rgba(124, 58, 237, 0.08);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-feature-card__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-feature-card__value {
  display: block;
  margin-top: 0.35rem;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-feature-card__tip {
  margin-top: 1rem !important;
  padding: 0.8rem 0.9rem;
  border-radius: 0.9rem;
  font-size: 0.92rem;
  font-weight: 700;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-guide-section {
  margin-top: clamp(3.5rem, 7vw, 6rem);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-guide-section__header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(219, 231, 245, 0.9);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-guide-section__header h2 {
  color: var(--promotion-ink);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.08;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-guide-section__intro {
  max-width: 58rem;
  margin: 0 0 2rem;
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.75;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-callout {
  margin-top: 2rem;
  border-radius: 1.15rem;
  box-shadow: 0 0.8rem 2rem rgba(15, 23, 42, 0.04);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-callout h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-callout p {
  margin: 0;
  line-height: 1.65;
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-callout--spotcard {
  border-color: rgba(37, 99, 235, 0.2);
  background: var(--promotion-blue-soft);
}
.academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-callout--spotcard .academy-callout__icon {
  color: var(--promotion-blue);
}
@media (max-width: 72rem) {
  .academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-promotion-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-feature-grid--three,
  .academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-reading-grid--premium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 54rem) {
  .academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-feature-grid--three,
  .academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-column-grid,
  .academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-rate-grid,
  .academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-rate-summary,
  .academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-reading-grid--premium {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 42rem) {
  .academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-promotion-metrics,
  .academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-comparison,
  .academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-diagnostic-grid,
  .academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-action-grid {
    grid-template-columns: 1fr;
  }
  .academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-example-card {
    align-items: stretch;
    flex-direction: column;
  }
  .academy-article[data-academy-guide="analyser/mesurer-les-performances-de-vos-promotions"] .academy-example-card > span {
    transform: rotate(90deg);
  }
}

.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] {
  --results-primary: #2563eb;
  --results-primary-soft: #eff6ff;
  --results-green: #0f8a70;
  --results-green-soft: #ecfdf5;
  --results-orange: #ea580c;
  --results-orange-soft: #fff7ed;
  --results-purple: #7c3aed;
  --results-purple-soft: #f5f3ff;
  --results-border: #dbe7f5;
  --results-muted: #64748b;
  --results-ink: #0f172a;
  --results-surface: #ffffff;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-guide-media--results {
  margin-top: 2.5rem;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-guide-media--results .academy-guide-media__frame {
  overflow: hidden;
  border: 1px solid var(--results-border);
  border-radius: 1.5rem;
  background: #f8fafc;
  box-shadow: 0 1.3rem 3rem rgba(15, 23, 42, 0.08);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-guide-media--results img {
  display: block;
  width: 100%;
  height: auto;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-guide-section {
  position: relative;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-guide-section--coach .academy-guide-section__step {
  background: linear-gradient(135deg, var(--results-purple), #a78bfa);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-guide-section--mcp .academy-guide-section__step {
  background: linear-gradient(135deg, var(--results-green), #34d399);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-guide-section__header {
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(219, 231, 245, 0.9);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-guide-section__header h2 {
  margin: 0;
  color: var(--results-ink);
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  line-height: 1.08;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-guide-section__step {
  display: inline-grid;
  min-width: 5.5rem;
  min-height: 2.25rem;
  place-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--results-primary), #60a5fa);
  box-shadow: 0 0.45rem 1rem rgba(37, 99, 235, 0.22);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-guide-section__intro {
  max-width: 58rem;
  margin: 0 0 2rem;
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.75;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-grid,
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-diagnostic-grid,
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-action-grid,
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-coach-capabilities,
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-ai-comparison {
  display: grid;
  gap: 1.25rem;
  margin: 2rem 0;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-grid,
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-action-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-grid article,
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-action-grid article,
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-coach-capabilities article,
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-ai-comparison article {
  padding: 1.2rem;
  border: 1px solid var(--results-border);
  border-radius: 1.25rem;
  background: #fff;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-action-grid .material-symbols-outlined {
  color: var(--results-primary);
  font-size: 2rem;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem 1.1rem;
  align-items: start;
  min-height: 100%;
  padding: 1.45rem;
  border: 1px solid var(--results-border);
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
  box-shadow: 0 1rem 2.4rem rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.4rem 2.8rem rgba(15, 23, 42, 0.08);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-card--primary .academy-observation-card__icon {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 0.9rem 1.8rem rgba(37, 99, 235, 0.22);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-card--primary .academy-observation-card__label,
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-card--primary .academy-observation-card__tip {
  color: var(--results-primary);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-card--primary .academy-observation-card__tip {
  background: rgba(37, 99, 235, 0.08);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-card--success .academy-observation-card__icon {
  background: linear-gradient(135deg, #22c55e, #0f8a70);
  box-shadow: 0 0.9rem 1.8rem rgba(15, 138, 112, 0.2);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-card--success .academy-observation-card__label,
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-card--success .academy-observation-card__tip {
  color: var(--results-green);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-card--success .academy-observation-card__tip {
  background: rgba(15, 138, 112, 0.08);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-card--accent .academy-observation-card__icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  box-shadow: 0 0.9rem 1.8rem rgba(124, 58, 237, 0.2);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-card--accent .academy-observation-card__label,
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-card--accent .academy-observation-card__tip {
  color: var(--results-purple);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-card--accent .academy-observation-card__tip {
  background: rgba(124, 58, 237, 0.08);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-card__icon {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border-radius: 999px;
  color: #fff;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-card__icon .material-symbols-outlined {
  font-size: 1.8rem;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-card__body h3 {
  margin: 0.2rem 0 0.75rem;
  color: var(--results-ink);
  font-size: 1.7rem;
  line-height: 1.08;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-card__body p {
  margin: 0;
  color: #334155;
  line-height: 1.7;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-card__label {
  display: inline-block;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-card__tip {
  grid-column: 1/-1;
  margin: 0.1rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 0.95rem;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-result-visual {
  margin: 2rem 0;
  overflow: hidden;
  border: 1px solid var(--results-border);
  border-radius: 1.4rem;
  background: #fff;
  box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.06);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-result-visual img {
  display: block;
  width: 100%;
  height: auto;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-result-visual--compact {
  max-width: 54rem;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-diagnostic-heading {
  margin: 2.25rem 0 1rem;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-diagnostic-heading h3 {
  margin: 0 0 0.35rem;
  color: var(--results-ink);
  font-size: 1.2rem;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-diagnostic-heading p {
  margin: 0;
  color: var(--results-muted);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-diagnostic-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-diagnostic-card {
  padding: 1.35rem;
  border: 1px solid var(--results-border);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 1rem 2.2rem rgba(15, 23, 42, 0.045);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-diagnostic-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.15rem;
  line-height: 1.35;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-diagnostic-card p {
  margin: 0;
  color: #334155;
  line-height: 1.7;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-diagnostic-card--blue {
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.8), #fff);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-diagnostic-card--blue .academy-diagnostic-card__icon {
  color: var(--results-primary);
  background: rgba(37, 99, 235, 0.1);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-diagnostic-card--blue h3 {
  color: var(--results-primary);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-diagnostic-card--green {
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.8), #fff);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-diagnostic-card--green .academy-diagnostic-card__icon {
  color: var(--results-green);
  background: rgba(15, 138, 112, 0.1);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-diagnostic-card--green h3 {
  color: var(--results-green);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-diagnostic-card--orange {
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.85), #fff);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-diagnostic-card--orange .academy-diagnostic-card__icon {
  color: var(--results-orange);
  background: rgba(234, 88, 12, 0.1);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-diagnostic-card--orange h3 {
  color: var(--results-orange);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-diagnostic-card--rose {
  background: linear-gradient(180deg, rgba(255, 241, 242, 0.85), #fff);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-diagnostic-card--rose .academy-diagnostic-card__icon {
  color: #e11d48;
  background: rgba(225, 29, 72, 0.09);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-diagnostic-card--rose h3 {
  color: #ea580c;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-diagnostic-card__icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 999px;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-diagnostic-card__icon .material-symbols-outlined {
  font-size: 1.45rem;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-checklist-panel {
  margin-top: 2rem;
  padding: 1.35rem;
  border: 1px solid rgba(15, 138, 112, 0.18);
  border-radius: 1.45rem;
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.88), rgba(255, 255, 255, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-checklist-panel__header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.35rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(15, 138, 112, 0.14);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-checklist-panel__header h3 {
  margin: 0.25rem 0 0.45rem;
  color: #166534;
  font-size: 1.45rem;
  line-height: 1.15;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-checklist-panel__header p {
  margin: 0;
  color: #4d6b5f;
  line-height: 1.7;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-checklist-panel__icon {
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  box-shadow: 0 0.8rem 1.8rem rgba(22, 163, 74, 0.2);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-checklist-panel__icon .material-symbols-outlined {
  font-size: 1.8rem;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-checklist-panel__eyebrow {
  display: inline-block;
  color: #15803d;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-improvement-checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-improvement-checklist strong, .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-improvement-checklist span {
  display: block;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-improvement-checklist div span {
  margin-top: 0.25rem;
  color: var(--results-muted);
  line-height: 1.65;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-improvement-item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  min-height: 100%;
  padding: 1.25rem 1.15rem 1.1rem;
  border: 1px solid rgba(15, 138, 112, 0.12);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0.8rem 1.8rem rgba(15, 23, 42, 0.035);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-improvement-item strong {
  color: var(--results-ink);
  font-size: 1.08rem;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-improvement-item__check {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  color: #16a34a;
  font-size: 1.1rem;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-improvement-item__icon {
  display: grid;
  width: 3.35rem;
  height: 3.35rem;
  margin-top: 0.8rem;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #f8fafc, #edf5ff);
  color: var(--results-primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-improvement-item__icon .material-symbols-outlined {
  font-size: 1.7rem;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-time-example {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  margin: 1.75rem 0;
  padding: 1.5rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 1rem;
  background: var(--results-primary-soft);
  text-align: center;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-time-example strong, .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-time-example span {
  display: block;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-time-example strong {
  margin-top: 0.25rem;
  font-size: 1.5rem;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-time-example > .material-symbols-outlined {
  color: var(--results-primary);
  font-size: 2rem;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-time-example__label {
  color: var(--results-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-test-rule {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.75rem 0;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-test-rule > div {
  padding: 1.25rem;
  border: 1px solid var(--results-border);
  border-radius: 1rem;
  background: #fff;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-test-rule > div:first-child .material-symbols-outlined {
  color: #dc2626;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-test-rule > div:last-child {
  border-color: rgba(15, 138, 112, 0.3);
  background: var(--results-green-soft);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-test-rule > div:last-child .material-symbols-outlined {
  color: var(--results-green);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-result-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.75rem 0;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-result-timeline article {
  padding: 1.2rem;
  border: 1px solid var(--results-border);
  border-radius: 1rem;
  background: #fff;
  text-align: center;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-result-timeline strong, .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-result-timeline span {
  display: block;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-result-timeline span {
  margin-top: 0.25rem;
  color: var(--results-muted);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-coach-capabilities {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-coach-capabilities article {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-coach-capabilities .material-symbols-outlined {
  color: var(--results-purple);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-coach-capabilities p {
  margin: 0;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-prompt-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.75rem 0;
  padding: 1.2rem;
  border: 1px solid var(--results-border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-prompt-list p {
  margin: 0 0 0.25rem;
  font-weight: 800;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-prompt-list code {
  display: block;
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  background: #0f172a;
  color: #e2e8f0;
  white-space: normal;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-guide-note {
  color: var(--results-muted);
  font-size: 0.92rem;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-ai-comparison {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-ai-comparison__badge {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--results-primary-soft);
  color: var(--results-primary);
  font-size: 0.78rem;
  font-weight: 800;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-continuous-cycle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.75rem 0;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-continuous-cycle span {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 999px;
  background: var(--results-primary-soft);
  color: var(--results-primary);
  font-weight: 800;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-level-completion {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  border: 1px solid rgba(124, 58, 237, 0.22);
  border-radius: 1.3rem;
  background: linear-gradient(135deg, #faf5ff, #eff6ff);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-level-completion > .material-symbols-outlined {
  color: var(--results-purple);
  font-size: 2.6rem;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-level-completion h2, .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-level-completion p {
  margin: 0;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-level-completion p {
  margin-top: 0.6rem;
  color: var(--results-muted);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-level-completion__eyebrow {
  color: var(--results-purple);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-callout {
  align-items: start;
  margin-top: 2rem;
  padding: 1.2rem 1.25rem;
  border-radius: 1.2rem;
  box-shadow: 0 0.8rem 2rem rgba(15, 23, 42, 0.04);
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-callout h3 {
  margin: 0 0 0.3rem;
  font-size: 1.2rem;
  line-height: 1.2;
}
.academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-callout p {
  margin: 0;
  line-height: 1.65;
}
@media (max-width: 72rem) {
  .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-improvement-checklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-coach-capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 54rem) {
  .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-grid,
  .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-action-grid,
  .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-improvement-checklist,
  .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-diagnostic-grid,
  .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-ai-comparison {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 42rem) {
  .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-guide-section {
    margin-top: 2.5rem;
  }
  .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-guide-section::before {
    left: 0;
  }
  .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-guide-section__header {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-guide-section__step {
    justify-self: start;
  }
  .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-guide-section__intro {
    font-size: 1rem;
  }
  .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-card,
  .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-checklist-panel__header {
    grid-template-columns: 1fr;
  }
  .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-observation-card__icon {
    width: 3.6rem;
    height: 3.6rem;
  }
  .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-improvement-item {
    grid-template-columns: 1fr;
  }
  .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-improvement-item__icon {
    margin-top: 1rem;
  }
  .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-time-example {
    flex-direction: column;
  }
  .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-time-example > .material-symbols-outlined {
    transform: rotate(90deg);
  }
  .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-test-rule,
  .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-result-timeline,
  .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-coach-capabilities {
    grid-template-columns: 1fr;
  }
  .academy-article[data-academy-guide="analyser/ameliorer-vos-resultats"] .academy-level-completion {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=app.css.map */
