/* ============================================================
   On-Demand App Development  (/service/on-demand-app-development)
   White page, single blue accent. BEM-ish `odm-` prefix;
   scroll-reveal via `.odm-anim` on <html>, mirroring
   super-clone.css / social-media.css.
   ============================================================ */

/* Global stylesheets set `overflow-x: hidden` on <body>, which makes it a
   scroll container and disables `position: sticky` inside it. `clip` stops the
   same overflow without creating one. Scoped with :has() to this page. */
body:has(.odm-page) {
  overflow-x: clip;
}

.odm-page {
  --odm-blue: #0b6cf0;
  --odm-blue-deep: #0148c4;
  --odm-ink: #0b0b0f;
  --odm-body: #55575e;
  --odm-muted: #7d8494;
  --odm-line: #e9edf4;

  position: relative;
  background: #fff;
  color: var(--odm-ink);
  overflow-x: clip;
  font-family: "Gabarito", "Poppins", "Inter", system-ui, -apple-system, sans-serif;
}

.odm-page .container {
  max-width: 1240px;
}

.odm-page :where(h1, h2, h3, h4) {
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--odm-ink);
}

.odm-page :where(p) {
  margin: 0;
  color: var(--odm-body);
}

.odm-page :where(ul, ol) {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Blue highlight word in headings. */
.odm-accent {
  color: var(--odm-blue);
}

/* ---------- pill button (label + arrow disc swap on hover) ---------- */
.odm-btn {
  --odm-btn-icon-w: 44px;
  --odm-btn-gap: 14px;
  --odm-btn-pad-l: 30px;
  --odm-btn-pad-r: 10px;

  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--odm-btn-gap);
  width: max-content;
  max-width: 100%;
  padding: 10px var(--odm-btn-pad-r) 10px var(--odm-btn-pad-l);
  border-radius: 999px;
  background: var(--odm-blue);
  color: #fff;
  overflow: hidden;
  text-decoration: none;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    padding 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.odm-btn:hover,
.odm-btn:focus-visible {
  padding-left: var(--odm-btn-pad-r);
  padding-right: var(--odm-btn-pad-l);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(11, 108, 240, 0.35);
}

.odm-btn__label {
  display: inline-block;
  flex: none;
  font-family: "Poppins", "Gabarito", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.odm-btn__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: var(--odm-btn-icon-w);
  height: var(--odm-btn-icon-w);
  border-radius: 50%;
  background: #0b0b0f;
  color: #fff;
  will-change: transform;
  transition:
    transform 0.5s cubic-bezier(0.65, 0, 0.35, 1),
    box-shadow 0.25s ease;
}

.odm-btn__icon svg {
  width: 18px;
  height: 18px;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.odm-btn:hover .odm-btn__icon svg,
.odm-btn:focus-visible .odm-btn__icon svg {
  transform: rotate(45deg);
}

/* Label and disc trade sides; the blade script publishes the measured label
   width as --odm-btn-label-w so the disc knows how far to travel. */
.odm-btn:hover .odm-btn__label,
.odm-btn:focus-visible .odm-btn__label {
  transform: translateX(calc(var(--odm-btn-icon-w) + var(--odm-btn-gap)));
}

.odm-btn:hover .odm-btn__icon,
.odm-btn:focus-visible .odm-btn__icon {
  transform: translateX(calc(-1 * (var(--odm-btn-label-w, 200px) + var(--odm-btn-gap))));
}

/* White pill on the blue FAQ promo card. */
.odm-btn--white {
  background: #fff;
  color: var(--odm-ink);
}

.odm-btn--white:hover,
.odm-btn--white:focus-visible {
  color: var(--odm-ink);
  box-shadow: 0 14px 32px rgba(4, 24, 80, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .odm-btn__label,
  .odm-btn__icon {
    transition: none;
  }

  .odm-btn:hover .odm-btn__label,
  .odm-btn:focus-visible .odm-btn__label,
  .odm-btn:hover .odm-btn__icon,
  .odm-btn:focus-visible .odm-btn__icon,
  .odm-btn:hover .odm-btn__icon svg,
  .odm-btn:focus-visible .odm-btn__icon svg {
    transform: none;
  }
}

/* ---------- scroll reveal ---------- */
.odm-anim .odm-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.32s ease,
    transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.odm-anim .odm-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .odm-anim .odm-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- shared section furniture ---------- */
.odm-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin: 0 auto 52px;
  max-width: 1080px;
}

.odm-title {
  font-weight: 700;
  font-size: clamp(27px, 2.9vw, 40px);
  line-height: 1.3;
}

.odm-lead {
  max-width: 1000px;
  font-size: 16px;
  line-height: 27px;
  color: var(--odm-muted);
}

/* ============================================================
   1. HERO
   ============================================================ */
.odm-hero {
  position: relative;
  padding: 56px 0 80px;
  /* Artwork first, the gradient behind it: the PNG is a soft wash with
     transparent edges, so the gradient still colours the whole band. */
  background:
    var(--odm-hero-bg) right bottom / cover no-repeat,
    linear-gradient(120deg, #fdfdff 0%, #f4f8ff 50%, #e7f0ff 100%);
  overflow: hidden;
}

.odm-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: center;
}

.odm-hero h1 {
  font-weight: 700;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.16;
}

.odm-hero__text {
  margin-top: 22px;
  max-width: 520px;
  font-size: 15.5px;
  line-height: 27px;
}

/* Checklist under the hero copy. */
.odm-hero__points {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.odm-hero__points li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15.5px;
  font-weight: 500;
  color: #2a2d35;
}

.odm-hero__check {
  display: grid;
  place-items: center;
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--odm-blue);
  color: #fff;
}

.odm-hero__check svg {
  width: 14px;
  height: 14px;
}

.odm-hero__actions {
  margin-top: 38px;
}

.odm-hero__art {
  position: relative;
  display: flex;
  justify-content: center;
}

.odm-hero__art img {
  position: relative;
  width: min(100%, 660px);
  height: auto;
}

/* ============================================================
   2. STATS
   ============================================================ */
.odm-stats {
  padding: 60px 0 40px;
  background: #fff;
}

.odm-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--odm-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 50px -40px rgba(15, 22, 38, 0.35);
  overflow: hidden;
}

/* Thin blue bar under the whole strip, like the design. */
.odm-stats__grid::after {
  content: "";
  grid-column: 1 / -1;
  height: 3px;
  background: linear-gradient(90deg, rgba(11, 108, 240, 0) 0%, var(--odm-blue) 50%, rgba(11, 108, 240, 0) 100%);
}

.odm-stat {
  padding: 44px 24px 40px;
  text-align: center;
  border-right: 1px solid var(--odm-line);
}

.odm-stat:last-of-type {
  border-right: 0;
}

.odm-stat__ico {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--odm-blue) 0%, var(--odm-blue-deep) 100%);
  color: #fff;
}

.odm-stat__ico svg {
  width: 24px;
  height: 24px;
}

.odm-stat__num {
  display: block;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: #16324f;
  letter-spacing: -0.02em;
}

.odm-stat__label {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  color: var(--odm-muted);
}

/* ============================================================
   3. AWARDS
   ============================================================ */
.odm-awards {
  padding: 74px 0 90px;
  background: #fff;
  overflow: clip;
}

.odm-awards h2 {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.3;
}

.odm-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.odm-marquee__track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: odm-scroll 46s linear infinite;
}

.odm-marquee:hover .odm-marquee__track {
  animation-play-state: paused;
}

@keyframes odm-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .odm-marquee__track {
    animation: none;
  }
}

.odm-award {
  flex: 0 0 auto;
  width: 172px;
  margin: 0;
  padding: 20px 18px 18px;
  border: 1px solid var(--odm-line);
  border-radius: 14px;
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 34px -28px rgba(15, 22, 38, 0.55);
}

.odm-award img {
  height: 116px;
  width: auto;
  margin: 0 auto 14px;
  object-fit: contain;
}

.odm-award figcaption {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--odm-ink);
  line-height: 1.35;
}

.odm-award__rule {
  display: block;
  width: 34px;
  height: 2px;
  margin: 12px auto 0;
  border-radius: 2px;
  background: #2b3a4d;
}

.odm-award__rule--blue {
  background: var(--odm-blue);
}

/* ============================================================
   4. CLONE BAND  ("Want to develop apps like Uber ...")
   ============================================================ */
/* The artwork URL comes from the blade via --odm-band-bg so it goes through
   asset(), like every other image on the page. The flat colour behind it is the
   fallback if the variable is ever absent. */
.odm-clone {
  padding: 70px 0;
  background:
    var(--odm-clone-bg) center / cover no-repeat,
    #e8f4fe;
}

.odm-clone__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 60px;
  align-items: center;
}

.odm-clone__art {
  display: flex;
  justify-content: center;
}

.odm-clone__art img {
  /* The render is 252px wide; anything larger upscales it. */
  width: min(100%, 250px);
  height: auto;
}

.odm-clone__copy h2 {
  font-weight: 700;
  font-size: clamp(27px, 3.1vw, 42px);
  line-height: 1.28;
}

.odm-clone__copy p {
  margin-top: 22px;
  font-size: 16px;
  line-height: 28px;
  color: #3c414d;
  text-align: justify;
}



/* ============================================================
   5. INDUSTRIES  (photo cards, blurb revealed on hover)
   ============================================================ */
.odm-industries {
  padding: 80px 0 90px;
  background: #eef0fb;
}

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

.odm-industry {
  position: relative;
  display: block;
  aspect-ratio: 285 / 220;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
}

.odm-industry img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.odm-industry:hover img,
.odm-industry:focus-visible img {
  transform: scale(1.06);
}

/* Bottom scrim so the white caption stays legible over any photo. It deepens
   and covers the whole card on hover, when the blurb slides in under the title. */
.odm-industry::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 58%;
  background: linear-gradient(180deg, rgba(9, 10, 20, 0) 0%, rgba(9, 10, 20, 0.72) 100%);
  pointer-events: none;
  transition: height 0.45s ease, background 0.45s ease;
}

.odm-industry:hover::after,
.odm-industry:focus-within::after {
  height: 100%;
  background: linear-gradient(180deg, rgba(9, 10, 20, 0.3) 0%, rgba(9, 10, 20, 0.88) 55%);
}

.odm-industry__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px 26px;
}

.odm-industry h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: #fff;
}

/* Blurb is collapsed until hover / keyboard focus. Clamped so the longest copy
   still fits the fixed 285:220 card instead of pushing the title off the top. */
.odm-industry p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  transform: translateY(6px);
  font-size: 13.5px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.86);
  transition: max-height 0.45s ease, margin-top 0.45s ease, opacity 0.35s ease,
    transform 0.45s ease;
}

.odm-industry:hover p,
.odm-industry:focus-within p {
  max-height: 130px;
  margin-top: 10px;
  opacity: 1;
  transform: none;
}

.odm-industry:focus-visible {
  outline: 2px solid var(--odm-blue);
  outline-offset: 3px;
}

/* Touch devices get no hover, so the blurb stays open. The card drops its fixed
   285:220 ratio and grows to fit the copy — otherwise the caption, which is
   bottom-anchored, runs off the top and bottom of a short card. */
@media (hover: none) {
  /* No fixed min-height. Paired with the `aspect-ratio: 16/11` the 575 block
     sets later in this file, a `min-height` made the ratio resolve the card's
     WIDTH from that height (230 x 16/11 = 335px) and the card overflowed its
     296px column at 320px. The ratio alone sizes it from the column instead, and
     a grid item's automatic minimum is content-based, so a long blurb still
     grows the card rather than being clipped. */
  .odm-industry {
    display: flex;
    align-items: flex-end;
    min-width: 0;
  }

  .odm-industry img {
    position: absolute;
    inset: 0;
  }

  .odm-industry::after {
    height: 100%;
    background: linear-gradient(180deg, rgba(9, 10, 20, 0.3) 0%, rgba(9, 10, 20, 0.88) 55%);
  }

  /* `relative`, not `static`: the caption's z-index only applies to a positioned
     box, and without it the absolutely-positioned photo and scrim paint over the
     blurb — the copy was invisible on every touch device. */
  .odm-industry__caption {
    position: relative;
    z-index: 2;
    /* `width: 100%` on a flex item resolves against a container that is itself
       sized by this item — grow instead, and allow shrinking below max-content. */
    flex: 1 1 auto;
    min-width: 0;
  }

  .odm-industry p {
    -webkit-line-clamp: unset;
    max-height: none;
    margin-top: 10px;
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   6. SUCCESS STORIES  (sticky shot, one card at a time)
   ============================================================ */
.odm-stories {
  padding: 80px 0 90px;
  background: #fff;
}

.odm-stories__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

/* One fixed box that every slide fills. The three shots are near-square but not
   identical (1264x1244 vs 1254x1254); stacked in a grid cell the tallest set the
   row height and the other two sat short of the bottom edge. */
.odm-stories__stage {
  position: relative;
  aspect-ratio: 1264 / 1244;
  border-radius: 18px;
  overflow: hidden;
  background: #f3f6fc;
  /* Drag to scrub between stories. */
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.odm-stories__stage.is-grabbing {
  cursor: grabbing;
}

.odm-stories__stage img {
  -webkit-user-drag: none;
}

/* All slides stack; only the active one is painted, so the stage keeps the
   height of the tallest shot instead of jumping between stories. */
/* Absolute, so the stage's ratio is the only thing sizing them — a grid row
   would still resolve to the tallest slide's intrinsic height. */
.odm-stories__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.odm-stories__slide.is-on {
  opacity: 1;
}

.odm-stories__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.odm-stories__arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--odm-blue);
  color: #fff;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

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

.odm-stories__arrow svg {
  width: 18px;
  height: 18px;
}

/* The card keeps its own height and pins while the taller shot scrolls past. */
.odm-stories__card {
  position: sticky;
  top: 110px;
  padding: 40px 42px;
  border: 1px solid var(--odm-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 50px -44px rgba(15, 22, 38, 0.5);
}

.odm-stories__title {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
}

.odm-stories__facts {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.odm-stories__fact {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 6px;
}

.odm-stories__fact-ico {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--odm-blue);
}

.odm-stories__fact-ico svg {
  width: 22px;
  height: 22px;
}

.odm-stories__fact--solution .odm-stories__fact-ico {
  color: #38b96a;
}

.odm-stories__fact--result .odm-stories__fact-ico {
  color: #a468f5;
}

.odm-stories__fact dt {
  align-self: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--odm-ink);
}

.odm-stories__fact dd {
  margin: 0;
  font-size: 15px;
  color: var(--odm-body);
  text-align: justify;
}

/* ============================================================
   7. CTA BAND  (used three times)
   ============================================================ */
.odm-cta {
  padding: 100px 0;
  background:
    var(--odm-band-bg) center / cover no-repeat,
    #e4f1fd;
  text-align: center;
}

.odm-cta h2 {
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.3;
}

.odm-cta p {
  margin: 20px auto 40px;
  max-width: 800px;
  font-size: 16px;
  line-height: 27px;
  color: #3c414d;
}

.odm-cta__actions {
  display: flex;
  justify-content: center;
}

.odm-clone__actions {
  margin-top: 34px;
}

/* ============================================================
   8. BUILD PROCESS  (zig-zag, outlined numerals)
   ============================================================ */
.odm-build {
  padding: 90px 0 80px;
  background: #fff;
}

.odm-build__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.odm-build__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  width: 100%;
}

.odm-build__num {
  font-family: Poppins, Gabarito, sans-serif;
  font-weight: 700;
  font-size: clamp(64px, 8vw, 104px);
  line-height: 1;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px #dcdfe9;
  text-align: center;
}

.odm-build__art {
  display: grid;
  place-items: center;
}

.odm-build__art img {
  width: 118px;
  height: auto;
}

.odm-build__body h3 {
  font-weight: 700;
  font-size: 19px;
  line-height: 1.4;
}

.odm-build__body p {
  margin-top: 8px;
  max-width: 330px;
  font-size: 14.5px;
  line-height: 24px;
  color: var(--odm-muted);
  text-align: justify;
}

/* Even rows mirror: copy on the left, numeral on the right. */
.odm-build__row--flip .odm-build__body {
  order: 1;
  text-align: right;
  justify-self: end;
}

.odm-build__row--flip .odm-build__body p {
  text-align: justify;
  text-align-last: right;
  margin-left: auto;
}

.odm-build__row--flip .odm-build__art {
  order: 2;
}

.odm-build__row--flip .odm-build__num {
  order: 3;
}

/* Connector between consecutive steps. */
.odm-build__link {
  display: grid;
  place-items: center;
  width: 100%;
  height: 74px;
}

.odm-build__link svg {
  width: 16px;
  height: 60px;
  color: #101010;
}

/* ============================================================
   9. SMART MODULES  (Customer / Provider / Admin)
   ============================================================ */
.odm-modules {
  /* Republished by the blade script from the active tab, so the chips, the
     window chrome and every tick move together. */
  --odm-panel-accent: #1173f5;

  position: relative;
  padding: 90px 0;
  background:
    radial-gradient(60% 50% at 0% 30%, rgba(214, 227, 250, 0.5) 0%, rgba(214, 227, 250, 0) 70%),
    radial-gradient(50% 45% at 100% 85%, rgba(214, 227, 250, 0.55) 0%, rgba(214, 227, 250, 0) 70%),
    #fff;
  overflow: hidden;
}

/* Faint dot field, so the card has something to sit on rather than floating on
   flat colour. */
.odm-modules::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(16, 16, 16, 0.055) 1.1px, transparent 1.2px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 40%, #000 30%, transparent 78%);
  mask-image: radial-gradient(120% 90% at 50% 40%, #000 30%, transparent 78%);
  pointer-events: none;
}

.odm-modules > .container {
  position: relative;
}

/* Chip row and the phone/stage grid share one card, ported from .fd-panels on
   the food delivery page. Each panel carries its own accent, republished on the
   section by the blade script so the chips, the chrome and every tick agree. */
.odm-modules__card {
  padding: 28px;
  /* Frosted glass: the wash and the dot field behind stay visible but blurred,
     so the card reads as a pane over the section rather than a white block cut
     out of it. The inset highlight is the lit top edge. */
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.58);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  box-shadow:
    0 30px 70px rgba(17, 19, 24, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

/* Without backdrop-filter there is nothing to frost, and 58% white over the dot
   field would just look dirty — fall back to the opaque card. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .odm-modules__card {
    border-color: rgba(16, 16, 16, 0.07);
    background: #fff;
  }
}

.odm-modules__layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  margin-top: 22px;
}

/* Stage and CTA share the column. The stage stays exactly as tall as its six
   rows; the CTA takes up the slack beside the device rather than the stage
   stretching to fill it. */
.odm-modules__col {
  display: grid;
  gap: 18px;
  align-content: center;
}

/* ---- chip rail ---- */
.odm-modules__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.odm-modules__tab {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  /* Translucent so the frost shows through, but the edge has to be a dark
     hairline — a white border on a white card is invisible. */
  border: 1px solid rgba(16, 16, 16, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 6px 18px rgba(17, 19, 24, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

/* Accent bar that grows across the bottom edge as the chip takes over. */
.odm-modules__tab::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--tab-accent);
  transform: translateX(-50%);
  transition: width 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.odm-modules__tab:hover {
  border-color: rgba(16, 16, 16, 0.16);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 14px 30px rgba(17, 19, 24, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
}

.odm-modules__tab[aria-selected="true"] {
  border-color: color-mix(in srgb, var(--tab-accent) 42%, transparent);
  background: color-mix(in srgb, var(--tab-accent) 7%, #fff);
  box-shadow:
    0 14px 30px color-mix(in srgb, var(--tab-accent) 16%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: none;
}

.odm-modules__tab[aria-selected="true"]::before {
  width: 64%;
}

/* Hollow numeral, matching the process step numerals. */
.odm-modules__num {
  font-family: "Poppins", "Gabarito", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.3px rgba(16, 16, 16, 0.32);
  transition: -webkit-text-stroke-color 0.3s ease;
}

.odm-modules__tab[aria-selected="true"] .odm-modules__num {
  -webkit-text-stroke-color: var(--tab-accent);
}

.odm-modules__name {
  display: block;
  font-family: "Poppins", "Gabarito", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.25;
  color: var(--odm-ink);
}

.odm-modules__count {
  display: block;
  margin-top: 3px;
  font-family: "Poppins", "Gabarito", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--odm-muted);
}

/* Tick that fades in on the chosen chip. */
.odm-modules__go {
  width: 18px;
  height: 18px;
  color: var(--tab-accent);
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 0.3s ease,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.odm-modules__tab[aria-selected="true"] .odm-modules__go {
  opacity: 1;
  transform: none;
}

/* ---- device ---- */
.odm-modules__device {
  position: relative;
  display: grid;
  place-items: center;
}

/* Accent halo behind the handset, recoloured with the chosen panel. */
.odm-modules__device::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--odm-panel-accent) 22%, transparent) 0%,
    transparent 68%
  );
  transition: background 0.4s ease;
  pointer-events: none;
}

.odm-modules__device img {
  position: relative;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 48px rgba(17, 19, 24, 0.16));
}

/* ---- stage ---- */
.odm-modules__stage {
  position: relative;
  border: 1px solid rgba(16, 16, 16, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 12px 34px rgba(17, 19, 24, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

/* Accent wash bleeding down from the chrome bar. */
.odm-modules__stage::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 190px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--odm-panel-accent) 9%, transparent),
    transparent
  );
  pointer-events: none;
  transition: background 0.4s ease;
}

/* Window chrome: the section is about app panels, so the stage is dressed as
   one. */
.odm-modules__chrome {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(16, 16, 16, 0.07);
  background: rgba(255, 255, 255, 0.75);
}

.odm-modules__dots {
  display: flex;
  gap: 6px;
}

.odm-modules__dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(16, 16, 16, 0.12);
}

.odm-modules__dots i:first-child {
  background: var(--odm-panel-accent);
  transition: background 0.4s ease;
}

.odm-modules__crumb {
  font-family: "Poppins", "Gabarito", sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--odm-ink);
}

.odm-modules__crumb span {
  color: var(--odm-muted);
  font-weight: 500;
}

.odm-modules__pill {
  margin-left: auto;
  padding: 6px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--odm-panel-accent) 12%, transparent);
  color: var(--odm-panel-accent);
  font-family: "Poppins", "Gabarito", sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  white-space: nowrap;
  transition:
    background 0.4s ease,
    color 0.4s ease;
}

/* Every set is rendered up front and stacked in one grid cell, so switching
   neither reflows the section nor changes its height. */
.odm-modules__sets {
  display: grid;
  padding: 30px 28px 34px;
}

.odm-modules__set {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 26px;
  align-content: start;
  visibility: hidden;
  transition: visibility 0.3s ease;
}

.odm-modules__set.is-on {
  visibility: visible;
}

.odm-modules__set li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 10px;
  font-family: "Poppins", "Gabarito", sans-serif;
  font-size: 15.5px;
  line-height: 1.45;
  color: #1a1a1a;
  /* Rows fly in one after the next when their set opens; `--i` is the row
     index, written by the blade. */
  opacity: 0;
  transform: translateY(9px);
  transition:
    opacity 0.34s ease,
    transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1),
    background 0.2s ease;
}

.odm-modules__set.is-on li {
  opacity: 1;
  transform: none;
  transition-delay: calc(var(--i) * 26ms);
}

.odm-modules__set li:hover {
  background: color-mix(in srgb, var(--odm-panel-accent) 7%, transparent);
}

/* ---- CTA pane ---- */
/* Same glass surface as the stage so the two read as one stack, tinted with the
   active panel's accent so it moves with the chips. */
.odm-modules__cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 26px;
  border: 1px solid color-mix(in srgb, var(--odm-panel-accent) 26%, rgba(16, 16, 16, 0.09));
  border-radius: 18px;
  background:
    linear-gradient(
      120deg,
      color-mix(in srgb, var(--odm-panel-accent) 10%, transparent),
      transparent 62%
    ),
    rgba(255, 255, 255, 0.42);
  box-shadow:
    0 12px 34px rgba(17, 19, 24, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    background 0.4s ease,
    border-color 0.4s ease;
}

.odm-modules__cta-copy {
  min-width: 0;
}

.odm-modules__cta h3 {
  font-family: "Poppins", "Gabarito", sans-serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.3;
}

.odm-modules__cta p {
  margin-top: 6px;
  font-size: 14.5px;
  line-height: 22px;
  color: var(--odm-muted);
}

.odm-modules__cta .odm-btn {
  flex: none;
  margin-left: auto;
}

/* Tick drawn in CSS — one glyph per row would be two dozen identical images. */
.odm-modules__set li::before {
  content: "";
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: color-mix(in srgb, var(--odm-panel-accent) 14%, transparent)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E")
    center / 12px 12px no-repeat;
  transition: background-color 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
  .odm-modules__set li {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   10. ADVANCED TECHNOLOGY  (centred slider, photo cards)
   ============================================================ */
.odm-tech {
  padding: 80px 0 90px;
  background: #fff;
}

.odm-tech__slider {
  position: relative;
  overflow: hidden;
  /* Room for the active card to scale up without being clipped. */
  padding: 26px 0 34px;
}

.odm-tech__slider .swiper-wrapper {
  align-items: center;
}

.odm-tech__slider .swiper-slide.odm-techcard {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 460px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  /* Inactive slides sit back; the active one comes forward. */
  opacity: 0.45;
  transform: scale(0.88);
  transition: opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.5s ease;
}

.odm-tech__slider .swiper-slide.swiper-slide-active.odm-techcard {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.odm-techcard img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.odm-techcard:hover img {
  transform: scale(1.06);
}

.odm-techcard::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.75) 100%);
}

.odm-techcard__body {
  width: 100%;
  padding: 26px 24px 30px;
}

.odm-techcard h3 {
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.odm-techcard p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ============================================================
   11. TECH STACK  (single marquee lane)
   ============================================================ */
.odm-stack {
  padding: clamp(60px, 7vw, 100px) 0;
  background: #fff;
}

/* Full-bleed lane. `overflow: hidden` clips the oversized track, so the block is
   padded (and pulled back by an equal negative margin) to leave room for the
   tiles' hover lift and shadow. */
.odm-stack__marquee {
  margin: -18px calc(50% - 50vw);
  padding: 18px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfcff 0%, #f5f8ff 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.odm-stack__track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 22px 0;
  animation: odm-marquee 40s linear infinite;
}

@keyframes odm-marquee {
  to {
    transform: translateX(-50%);
  }
}

.odm-stack__marquee:hover .odm-stack__track {
  animation-play-state: paused;
}

/* Fixed width because the tiles sit in a flex track rather than a grid; flex
   `stretch` keeps every tile in the lane the same height. */
.odm-stack__item {
  display: flex;
  flex: none;
  width: clamp(172px, 15vw, 216px);
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 30px 14px 24px;
  border: 1px solid #eef1f6;
  border-radius: 18px;
  background: #fff;
  text-align: center;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.odm-stack__item:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 108, 240, 0.28);
  box-shadow: 0 18px 34px rgba(15, 40, 90, 0.12);
}

.odm-stack__disc {
  display: grid;
  place-items: center;
}

.odm-stack__item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.odm-stack__item:hover img {
  transform: scale(1.12);
}

.odm-stack__item span {
  font-size: 15px;
  font-weight: 600;
  color: var(--odm-ink);
  transition: color 0.35s ease;
}

.odm-stack__item:hover span {
  color: var(--odm-blue);
}

@media (prefers-reduced-motion: reduce) {
  .odm-stack__track {
    animation: none;
  }
}

/* ============================================================
   12. WHY CHOOSE US  (two-up cards, icon left)
   ============================================================ */
.odm-why {
  padding: 70px 0 90px;
  background: #fff;
}

.odm-why__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.odm-why__card {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 24px;
  padding: 30px 32px;
  border: 1px solid var(--odm-line);
  border-radius: 16px;
  background: #fff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.odm-why__card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 108, 240, 0.28);
  box-shadow: 0 22px 44px -30px rgba(15, 40, 90, 0.55);
}

/* The glyphs ship as white line art sized for this disc. */
.odm-why__ico {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--odm-blue);
}

.odm-why__ico img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.odm-why__card h3 {
  font-weight: 700;
  font-size: 21px;
  line-height: 1.3;
}

.odm-why__card p {
  margin-top: 10px;
  font-size: 15.5px;
  line-height: 25px;
  color: var(--odm-body);
  text-align: justify;
}

/* ============================================================
   13. FAQ
   ============================================================ */
.odm-faq {
  padding: 70px 0 110px;
  background: linear-gradient(140deg, rgb(244, 246, 253) 0%, rgb(238, 242, 252) 45%, rgb(247, 248, 253) 100%);
}

.odm-faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

/* Heading + promo track the list while it scrolls. */
.odm-faq__aside {
  position: sticky;
  top: 110px;
}

.odm-faq__title {
  font-family: "Poppins", "Gabarito", sans-serif;
  font-weight: 600;
  font-size: clamp(38px, 5.3vw, 77px);
  line-height: 1.25;
  color: #000;
}

.odm-faq__title span {
  color: var(--odm-blue);
}

.odm-faq__promo {
  margin-top: 120px;
  padding: 32px 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: linear-gradient(241deg, #196dff 30%, #001da0 100%);
  color: #fff;
}

.odm-faq__promo h3 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
  color: #fff;
}

.odm-faq__promo p {
  margin: 10px 0 26px;
  max-width: 494px;
  font-size: 16px;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.75);
}

.odm-faq__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.odm-faq__item {
  padding: 24px 40px;
  border: 1px solid rgba(16, 16, 16, 0.06);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  overflow: hidden;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.odm-faq__item[open] {
  background: #fff;
  border-color: rgba(55, 55, 55, 0.1);
  box-shadow: 0 10px 30px rgba(17, 19, 24, 0.05);
}

.odm-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  list-style: none;
  font-family: "Poppins", "Gabarito", sans-serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.5;
  color: #000;
}

.odm-faq__q::-webkit-details-marker {
  display: none;
}

/* Plus that becomes a minus when the item is open. */
.odm-faq__mark {
  position: relative;
  flex: none;
  width: 26px;
  height: 26px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.odm-faq__mark::before,
.odm-faq__mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: #101010;
  transform: translate(-50%, -50%);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.odm-faq__mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.odm-faq__item[open] .odm-faq__mark::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(180deg);
}

/* <details> cannot transition its own height, so this wrapper is what animates
   — driven from 0 to its measured height and back by the blade script. */
.odm-faq__a-wrap {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    height 0.3s ease,
    opacity 0.3s ease;
}

.odm-faq__item[open] .odm-faq__a-wrap {
  height: auto;
  opacity: 1;
}

.odm-faq__a {
  padding-top: 14px;
  max-width: 523px;
  font-size: 17px;
  line-height: 25px;
  color: #7d7d7d;
  text-align: justify;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199.98px) {
  .odm-industries__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .odm-build__row {
    grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
  }

  .odm-stories__card {
    padding: 32px 28px;
  }

  .odm-modules__layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 24px;
  }

  .odm-modules__tab {
    gap: 12px;
    padding: 16px 16px;
  }

  .odm-modules__sets {
    padding: 26px 20px 30px;
  }

  /* Copy and button stop sharing a row before the button's fixed width starts
     eating the copy. */
  .odm-modules__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  /* `width: 100%`, not `max-width`: the base button is `width: max-content`,
     which keeps reserving the unwrapped label's width and pushes the pane wider
     than the card it sits in. */
  .odm-modules__cta .odm-btn {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 991.98px) {
  .odm-hero {
    padding: 40px 0 56px;
  }

  .odm-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .odm-hero__copy {
    text-align: center;
  }

  .odm-hero__text {
    margin-inline: auto;
  }

  .odm-hero__points {
    justify-items: center;
  }

  .odm-hero__points li {
    text-align: left;
  }

  .odm-hero__actions {
    display: flex;
    justify-content: center;
  }

  .odm-hero__art {
    order: -1;
  }

  .odm-clone__grid,
  .odm-stories__layout,
  .odm-faq__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  /* Stacked there is nothing beside the card to pin against. */
  .odm-stories__card {
    position: static;
  }

  .odm-clone__copy {
    text-align: center;
  }

  .odm-clone__copy p {
    text-align: justify;
  }

  .odm-clone__actions {
    display: flex;
    justify-content: center;
  }

  .odm-industries__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* The phone drops below the stage and the chip row scrolls: three chips and a
     300px device column leave the feature list too narrow to read here. */
  .odm-modules__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .odm-modules__device {
    order: 1;
  }

  .odm-modules__device::before {
    width: 280px;
    height: 280px;
  }

  .odm-modules__nav {
    display: flex;
    gap: 10px;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .odm-modules__nav::-webkit-scrollbar {
    display: none;
  }

  /* `width: 100%` from the rail layout would make flex-basis:auto resolve to
     the full row, so each chip has to be told to size to its own content. */
  .odm-modules__tab {
    flex: 0 0 auto;
    width: auto;
    gap: 12px;
    padding: 14px 18px;
  }

  .odm-modules__tab:hover {
    transform: none;
  }

  .odm-modules__go {
    display: none;
  }

  /* The chip row scrolls, so a bar pinned to a chip's own width is the only
     active cue that stays visible. */
  .odm-modules__tab[aria-selected="true"]::before {
    width: 50%;
  }

  .odm-why__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .odm-faq__aside {
    position: static;
  }

  .odm-faq__promo {
    margin-top: 34px;
  }
}

@media (max-width: 767.98px) {
  .odm-awards,
  .odm-industries,
  .odm-stories,
  .odm-tech,
  .odm-why {
    padding-bottom: 64px;
  }

  .odm-cta,
  .odm-clone {
    padding: 64px 0;
  }

  .odm-build {
    padding: 64px 0 50px;
  }

  /* The zig-zag collapses to a single centred column on phones. */
  .odm-build__row,
  .odm-build__row--flip {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 18px;
    text-align: center;
  }

  .odm-build__num {
    font-size: 58px;
  }

  .odm-build__row--flip .odm-build__body,
  .odm-build__row--flip .odm-build__art,
  .odm-build__row--flip .odm-build__num {
    order: 0;
  }

  .odm-build__row--flip .odm-build__body {
    text-align: center;
    justify-self: center;
  }

  .odm-build__body p,
  .odm-build__row--flip .odm-build__body p {
    margin-inline: auto;
    text-align: center;
    text-align-last: auto;
  }

  .odm-build__link {
    height: 52px;
  }

  .odm-build__link svg {
    height: 40px;
  }

  .odm-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .odm-stat:nth-child(2n) {
    border-right: 0;
  }

  .odm-stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--odm-line);
  }

  .odm-faq__item {
    padding: 20px 22px;
  }

  .odm-faq__q {
    font-size: 17px;
  }
}

@media (max-width: 575.98px) {
  .odm-stats__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .odm-stat {
    border-right: 0;
    border-bottom: 1px solid var(--odm-line);
  }

  .odm-stat:last-of-type {
    border-bottom: 0;
  }

  .odm-industries__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .odm-industry {
    aspect-ratio: 16 / 11;
  }

  .odm-stories__card {
    padding: 26px 22px;
  }

  .odm-stack__item {
    width: 158px;
  }

  .odm-stack__item img {
    width: 60px;
    height: 60px;
  }

  .odm-techcard h3 {
    font-size: 24px;
  }

  .odm-why__card {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding: 24px 22px;
  }

  /* One column of rows: two 15.5px columns inside a 296px card is unreadable. */
  .odm-modules__set {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
  }

  .odm-modules__card {
    padding: 16px;
    border-radius: 20px;
  }

  .odm-modules__sets {
    padding: 20px 14px 24px;
  }

  .odm-modules__chrome {
    padding: 14px 16px;
    gap: 10px;
  }

  .odm-modules__crumb span {
    display: none;
  }

  /* The button's label is `nowrap` so its swap animation has a stable width,
     which squeezes the disc out of the pill here. Let it shrink and wrap. */
  .odm-modules__cta .odm-btn__label {
    white-space: normal;
    flex: 1 1 auto;
    text-align: left;
  }

  /* Full-width pills so long labels can wrap instead of overflowing. The
     label/disc swap needs room the phone width does not have, so it is off. */
  .odm-btn {
    --odm-btn-pad-l: 22px;
    width: 100%;
    justify-content: center;
  }

  /* `flex: none` from the base rule keeps the label at its max-content width,
     so it runs past the pill on a narrow phone even once it is allowed to wrap.
     It has to be shrinkable for the wrap to take effect. */
  .odm-btn__label {
    flex: 1 1 auto;
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .odm-btn:hover,
  .odm-btn:focus-visible {
    padding-left: var(--odm-btn-pad-l);
    padding-right: var(--odm-btn-pad-r);
  }

  .odm-btn:hover .odm-btn__label,
  .odm-btn:focus-visible .odm-btn__label,
  .odm-btn:hover .odm-btn__icon,
  .odm-btn:focus-visible .odm-btn__icon {
    transform: none;
  }
}
