:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --text: #0b214a;
  --muted: #50627e;
  --line: #d5dfeb;
  --brand: #1e7bef;
  --brand-dark: #145ec1;
  --accent: #e8f2ff;
  --ok: #3ac3a5;
  --site-header-height: 4.25rem;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: "PT Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

body.nav-drawer-open {
  overflow: hidden;
}

@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 400;
  src: url("https://fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79D0KExQ.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "PT Sans";
  font-style: normal;
  font-weight: 700;
  src: url("https://fonts.gstatic.com/s/ptsans/v17/jizfRExUiTo99u79B_mh0O6tLQ.woff2") format("woff2");
  font-display: swap;
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
  padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
}

.section {
  padding: clamp(2.25rem, 6vw, 4rem) 0;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  min-height: var(--site-header-height);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  color: var(--text);
  flex-shrink: 0;
  touch-action: manipulation;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(30, 123, 239, 0.08);
  color: var(--brand);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.nav-toggle__bar {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .nav-toggle__bar {
    transition: none;
  }
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 21;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(11, 33, 74, 0.42);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  cursor: pointer;
}

.nav-backdrop[hidden] {
  display: none !important;
}

@media (min-width: 901px) {
  .site-nav {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    min-width: 0;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 2.1rem;
  width: auto;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.5rem;
  border-radius: 0.45rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--brand);
  background: rgba(30, 123, 239, 0.06);
}

.nav-link:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.nav-link--cta {
  padding: 0.55rem 1rem;
  margin-left: 0.15rem;
  background: linear-gradient(165deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(30, 123, 239, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-link--cta:hover,
.nav-link--cta:focus-visible {
  background: linear-gradient(165deg, #2a87f5 0%, #164fab 100%);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(30, 123, 239, 0.45);
}

.nav-link--cta:focus-visible {
  outline: 2px solid var(--brand-dark);
  outline-offset: 2px;
}

.nav-item--cta {
  margin-left: 0.25rem;
}

.nav-item--dropdown {
  position: relative;
}

.nav-link--parent::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.35rem;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.65;
}

.nav-sub {
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 16rem;
}

.nav-link--sub {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 0.4rem;
}

.nav-link--sub:hover,
.nav-link--sub:focus-visible {
  background: var(--accent);
  color: var(--brand-dark);
}

@media (min-width: 901px) {
  .nav-sub {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    padding: 0.4rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 0.55rem;
    box-shadow: 0 10px 30px rgba(11, 33, 74, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
    z-index: 20;
  }

  .nav-item--dropdown:hover .nav-sub,
  .nav-item--dropdown:focus-within .nav-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    top: var(--site-header-height);
    right: 0;
    bottom: 0;
    width: min(22rem, 100%);
    padding: 1rem 1rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
    background: var(--surface);
    border-left: 1px solid var(--line);
    box-shadow: -8px 0 32px rgba(11, 33, 74, 0.14);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    z-index: 22;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.22s ease, visibility 0.22s;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  @media (prefers-reduced-motion: reduce) {
    .site-nav {
      transition: none;
    }
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: none;
    gap: 0.2rem;
  }

  .nav-item--dropdown .nav-link--parent {
    width: 100%;
    min-height: 2.75rem;
    padding: 0.65rem 0.75rem;
  }

  .nav-sub {
    margin: 0.35rem 0 0.5rem 0.75rem;
    padding-left: 0.5rem;
    border-left: 2px solid var(--line);
  }

  .nav-link {
    min-height: 2.75rem;
  }

  .nav-link--sub {
    padding: 0.55rem 0.65rem;
    min-height: 2.75rem;
    display: flex;
    align-items: center;
  }

  .nav-item--cta {
    margin-left: 0;
    margin-top: 0.35rem;
  }

  .nav-link--cta {
    margin-left: 0;
    justify-content: center;
    text-align: center;
    min-height: 2.75rem;
    width: 100%;
  }

  .header-inner {
    flex-wrap: nowrap;
  }
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  max-width: 47.5rem;
}

.hero-figure {
  margin: 0;
  justify-self: center;
  line-height: 0;
}

.hero-illustration {
  display: block;
  width: min(220px, 85vw);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2.5rem;
  }

  .hero-figure {
    justify-self: end;
  }

  .hero-illustration {
    width: min(240px, 28vw);
  }
}

.ecosystem-inline-cta {
  margin: 1.25rem 0 2rem;
}

.ecosystem-inline-cta .btn {
  display: inline-flex;
  max-width: 100%;
  text-align: center;
  white-space: normal;
  line-height: 1.35;
}

.ecosystem-page__inner {
  max-width: 52rem;
  margin: 0 auto;
}

.ecosystem-page__prose {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.ecosystem-page__prose > h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
}

.ecosystem-page__prose > h2:first-child {
  margin-top: 0;
}

.ecosystem-page__prose > h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-size: 1.15rem;
}

.ecosystem-page__prose p {
  margin: 0 0 1rem;
  max-width: 72ch;
}

.ecosystem-page__prose ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

.ecosystem-page__prose li {
  margin-bottom: 0.35rem;
}

.ecosystem-page__prose strong {
  color: var(--text);
}

.kicker {
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(1.65rem, 5.5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.3rem, 4vw, 2rem);
}

h3 {
  font-size: clamp(1.08rem, 3vw, 1.35rem);
}

.lead {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 480px) {
  .cta-row {
    flex-direction: column;
  }

  .cta-row .btn {
    width: 100%;
  }
}

.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 0.6rem;
  padding: 0.72rem 1rem;
  min-height: 2.75rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  text-align: center;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brand-dark);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--brand);
  color: var(--brand-dark);
}

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

.card,
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 1.25rem;
}

.price-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-repeat: no-repeat;
  background-position: 50% 62%;
  background-size: min(88%, 15rem) auto;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.price-card.featured::before {
  opacity: 0.092;
  background-size: min(92%, 16rem) auto;
}

.price-card--wm-ancre::before {
  background-image: url("../images/illustrations/ancre.svg");
}

.price-card--wm-ile::before {
  background-image: url("../images/illustrations/ile.svg");
}

.price-card--wm-carte::before {
  background-image: url("../images/illustrations/carte.svg");
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.card ul,
.price-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.geo p,
.faq p,
.faq-page__list p {
  max-width: 75ch;
}

.geo-citable {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem;
  border-left: 3px solid var(--brand);
  padding-left: 1rem;
}

.geo-citable li {
  margin-bottom: 0.65rem;
  line-height: 1.55;
  color: var(--muted);
}

.geo-citable li:last-child {
  margin-bottom: 0;
}

.faq-page__inner {
  max-width: 44rem;
}

.faq-page__header {
  margin-bottom: 2rem;
}

.faq-page__intro {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 50ch;
}

.faq-page__group {
  margin-top: 2.25rem;
}

.faq-page__group:first-of-type {
  margin-top: 0.5rem;
}

.faq-page__group-title {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}

.faq-page__item {
  border-bottom: 1px solid var(--line);
  padding: 0.35rem 0;
}

.faq-page__item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.65rem 0;
  list-style-position: outside;
}

.faq-page__item summary:hover,
.faq-page__item summary:focus-visible {
  color: var(--brand);
}

.faq-page__body {
  padding: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

.faq-page__body p {
  margin: 0 0 0.75rem;
  max-width: 75ch;
}

.faq-page__body p:last-child {
  margin-bottom: 0;
}

.faq-page__body ul {
  margin: 0.5rem 0 0.75rem;
  padding-left: 1.25rem;
}

.faq-page__body li {
  margin-bottom: 0.35rem;
}

.faq-page__list details a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.faq-page__list details a:hover,
.faq-page__list details a:focus-visible {
  text-decoration: underline;
}

.faq-teaser {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: linear-gradient(180deg, var(--accent) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
}

.faq-teaser__inner {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.faq-teaser__inner h2 {
  margin-bottom: 0.65rem;
}

.faq-teaser__text {
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.55;
}

.offre-page__inner {
  display: grid;
  gap: 2rem;
  align-items: start;
  max-width: 52rem;
  margin: 0 auto;
}

.offre-page__figure {
  margin: 0;
  width: min(100%, 280px);
  margin-inline: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  min-height: 200px;
}

.offre-page__figure--ancre {
  aspect-ratio: 536 / 699;
}

.offre-page__figure--ile {
  aspect-ratio: 707 / 636;
}

.offre-page__figure--carte {
  aspect-ratio: 1;
}

.offre-page__content .kicker {
  margin-bottom: 0.5rem;
}

.offre-page__body {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.offre-page__body p {
  margin: 0 0 1rem;
}

.offre-page__body p:last-child {
  margin-bottom: 0;
}

.offre-page__body strong {
  color: var(--text);
}

.offre-page__cta-wrap {
  margin: 1.5rem 0 0;
}

.offre-page__cta-wrap .offre-page__cta {
  display: inline-block;
  box-shadow: 0 2px 10px rgba(30, 123, 239, 0.25);
}

@media (min-width: 800px) {
  .offre-page__inner {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 34%);
    gap: 2.5rem;
    align-items: center;
    max-width: 56rem;
  }

  .offre-page__figure {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    justify-self: end;
    order: 1;
  }

  .offre-page__content {
    order: 0;
  }
}

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 0.8rem 1rem;
  margin-bottom: 0.8rem;
}

summary {
  font-weight: 600;
  cursor: pointer;
}

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

.price {
  font-size: 1.35rem;
  font-weight: 700;
}

.price span {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

.featured {
  border-color: var(--brand);
  box-shadow: 0 12px 30px rgba(15, 91, 216, 0.16);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.85rem 0;
}

.brand-footer .brand-logo {
  height: 1.75rem;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: right;
  flex: 1;
  min-width: min(100%, 18rem);
}

.footer-tagline {
  font-size: 0.88rem;
}

.footer-meta a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  text-decoration: underline;
  color: var(--brand-dark);
}

@media (max-width: 639px) {
  .footer-meta {
    text-align: left;
    width: 100%;
  }
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.demo-hero {
  padding-top: 2.5rem;
}

.demo-page {
  max-width: 32rem;
}

@media (min-width: 640px) {
  .demo-page {
    max-width: 38rem;
  }
}

.demo-header h1 {
  margin-bottom: 1.25rem;
}

.demo-benefits {
  margin: 0 0 2.25rem;
  padding: 0;
  list-style: none;
  color: var(--text);
  line-height: 1.55;
}

.demo-benefits li {
  position: relative;
  margin-bottom: 0.65rem;
  padding-left: 1.65rem;
  color: var(--muted);
  font-size: 0.975rem;
}

.demo-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px var(--accent);
}

.demo-form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(11, 33, 74, 0.04),
    0 12px 40px rgba(11, 33, 74, 0.06);
}

.demo-form-card::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, #3ac3a5 100%);
}

.demo-form-card__head {
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fbfcfe 0%, var(--surface) 100%);
}

.demo-form-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.demo-form-sub {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 42ch;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  padding: 1.5rem 1.5rem 1.65rem;
}

.form-row {
  display: grid;
  gap: 1.125rem;
}

@media (min-width: 520px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.form-label::after {
  content: " *";
  color: #c45c5c;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.demo-form input {
  font: inherit;
  font-size: 16px;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: #fafbfd;
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  width: 100%;
  min-height: 2.75rem;
}

.demo-form input::placeholder {
  color: #8a9ab5;
  opacity: 1;
}

.demo-form input:hover {
  border-color: #bcc8dc;
  background: var(--surface);
}

.demo-form input:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--surface);
  box-shadow: 0 0 0 3px var(--accent);
}

.btn-submit-demo {
  margin-top: 0.35rem;
  width: 100%;
  border: none;
  cursor: pointer;
  padding: 0.85rem 1.25rem;
  font-size: 1rem;
  border-radius: 0.55rem;
  box-shadow: 0 2px 10px rgba(30, 123, 239, 0.3);
}

.btn-submit-demo:hover,
.btn-submit-demo:focus-visible {
  box-shadow: 0 4px 16px rgba(30, 123, 239, 0.4);
}

@media (min-width: 520px) {
  .btn-submit-demo {
    width: auto;
    min-width: 14rem;
    align-self: flex-start;
  }
}

.error-page {
  padding-top: 2rem;
  padding-bottom: 3.5rem;
}

.error-page__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
  justify-items: center;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.error-page__figure {
  margin: 0;
  width: min(100%, 320px);
  background-image: url("../images/illustrations/erreur404.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 502 / 711;
  min-height: 220px;
}

.error-page__content {
  max-width: 32ch;
}

.error-page__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 0.75rem;
  color: var(--text);
}

.error-page__lead {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 600;
}

.error-page__hint {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

.error-page__cta {
  display: inline-block;
}

@media (min-width: 700px) {
  .error-page__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 48rem;
    text-align: left;
    justify-items: start;
  }

  .error-page__figure {
    justify-self: end;
    order: 0;
    width: min(100%, 360px);
  }

  .error-page__content {
    order: -1;
    max-width: none;
  }
}

@media (min-width: 760px) {
  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 759px) {
  .cards-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin-inline: auto;
  }
}

@media (max-width: 639px) {
  .price-card .btn {
    width: 100%;
    min-height: 2.75rem;
    box-sizing: border-box;
  }

  .price {
    font-size: clamp(1.15rem, 4vw, 1.35rem);
  }
}
