@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;
  }
}
.academy-article {
  --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;
  padding-bottom: 80px;
  color: var(--article-navy);
  background: var(--article-white);
}
.academy-article * {
  box-sizing: border-box;
}
.academy-article img {
  display: block;
  max-width: 100%;
  height: auto;
}
.academy-article__breadcrumb {
  padding: 27px 0;
}
.academy-article__breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  padding: 0;
  color: var(--article-muted);
  font-size: 0.83rem;
  list-style: none;
}
.academy-article__breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.academy-article__breadcrumb a:hover {
  color: var(--article-orange);
}
.academy-article__breadcrumb li[aria-current=page] {
  color: var(--article-orange);
  font-weight: 600;
}
.academy-article__layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 55px;
  align-items: start;
}
.academy-article__button {
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 19px;
  border-radius: 9px;
  color: #ffffff;
  background: var(--article-orange);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}
.academy-article__button:hover {
  background: var(--article-orange-hover);
  transform: translateY(-1px);
}

/* ==========================================================
   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;
}

.academy-article-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 60px;
  align-items: center;
  padding: 15px 0 55px;
}
.academy-article-header__step {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--article-orange);
  background: #fff0ea;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.academy-article-header h1 {
  max-width: 750px;
  margin: 16px 0 18px;
  color: var(--article-navy);
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.academy-article-header__metadata {
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  color: var(--article-text);
  font-size: 0.8rem;
  list-style: none;
}
.academy-article-header__metadata .material-symbols-outlined {
  vertical-align: middle;
  font-size: 20px;
}
.academy-article-header__metadata li {
  position: relative;
  padding-left: 22px;
}
.academy-article-header__metadata li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}
.academy-article-header__introduction {
  max-width: 680px;
  margin: 23px 0 0;
  color: var(--article-text);
  font-size: 1.05rem;
  line-height: 1.7;
}
.academy-article-header__visual {
  margin: 0;
}

/* ==========================================================
   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;
  }
  .academy-article-header {
    grid-template-columns: minmax(0, 1fr) 250px;
    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-header {
    grid-template-columns: 1fr;
  }
  .academy-article-header__visual {
    max-width: 500px;
  }
  .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-header {
    padding-bottom: 30px;
  }
  .academy-article-header h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }
  .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-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 2rem;
}

.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;
}

.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;
  }
}

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