.s4m-page {
  --s4m-blue: #23408f;
  --s4m-blue-dark: #045cb4;
  --s4m-text: #334155;
  --s4m-muted: #64748b;
  --s4m-soft: #f0f5fa;
  --s4m-line: #d1d5db;
  --s4m-white: #ffffff;
  --s4m-ink: #111827;
  --s4m-shadow: 0 18px 40px rgba(17, 24, 39, 0.1);
  color: var(--s4m-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  overflow: clip;
}

.s4m-page * {
  box-sizing: border-box;
}

.s4m-page a {
  color: inherit;
}

.s4m-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.s4m-skip {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--s4m-blue);
  color: var(--s4m-white);
  padding: 10px 14px;
  border-radius: 4px;
}

.s4m-skip:focus {
  transform: translateY(0);
}

.s4m-hero {
  background:
    radial-gradient(circle at 85% 12%, rgba(35, 64, 143, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f0f5fa 100%);
  padding: clamp(54px, 7vw, 94px) 0;
}

.s4m-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.s4m-eyebrow {
  margin: 0 0 12px;
  color: var(--s4m-blue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.s4m-page h1,
.s4m-page h2,
.s4m-page h3 {
  color: var(--s4m-blue);
  font-weight: 600;
  letter-spacing: 0;
}

.s4m-page h1 {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 4vw, 4.55rem);
  line-height: 1.05;
}

.s4m-page h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
}

.s4m-page h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.s4m-page p {
  margin: 0 0 18px;
  color: var(--s4m-text);
  line-height: 1.7;
}

.s4m-lede {
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  font-weight: 600;
  color: var(--s4m-ink);
}

.s4m-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.s4m-actions--center {
  justify-content: center;
}

.s4m-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 700;
  text-decoration: none !important;
  line-height: 1.2;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.s4m-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.s4m-btn:hover {
  transform: translateY(-1px);
}

.s4m-btn:hover::after {
  transform: translateX(120%);
}

.s4m-btn:focus-visible,
.s4m-field input:focus,
.s4m-field select:focus,
.s4m-field textarea:focus,
.s4m-faq button:focus-visible,
.s4m-mobile-cta a:focus-visible {
  outline: 3px solid rgba(35, 64, 143, 0.28);
  outline-offset: 3px;
}

.s4m-btn--primary {
  background: var(--s4m-blue);
  border-color: var(--s4m-blue);
  color: var(--s4m-white);
}

.s4m-btn--primary:hover {
  background: var(--s4m-blue-dark);
  color: var(--s4m-white);
  box-shadow: var(--s4m-shadow);
}

.s4m-btn--secondary {
  background: var(--s4m-white);
  border-color: rgba(35, 64, 143, 0.35);
  color: var(--s4m-blue);
}

.s4m-btn--secondary:hover {
  border-color: var(--s4m-blue);
  color: var(--s4m-blue-dark);
  box-shadow: 0 10px 24px rgba(35, 64, 143, 0.12);
}

.s4m-btn--light {
  background: var(--s4m-white);
  color: var(--s4m-blue);
}

.s4m-btn--outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--s4m-white);
}

.s4m-btn--full {
  width: 100%;
}

.s4m-btn__loading,
.s4m-form.is-loading .s4m-btn__text {
  display: none;
}

.s4m-form.is-loading .s4m-btn__loading {
  display: inline;
}

/* CTA button (adapted from Uiverse.io by mobinkakei, themed for Smile4Me) */
.cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  text-decoration: none !important;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff !important;
  background: var(--s4m-blue-dark);
  transition: 0.6s;
  box-shadow: 6px 6px 0 rgba(17, 24, 39, 0.85);
  transform: skewX(-12deg);
  border: 2px solid transparent;
  cursor: pointer;
}

.cta:focus {
  outline: none;
}

.cta:focus-visible {
  outline: 3px solid rgba(251, 198, 56, 0.9);
  outline-offset: 4px;
}

.cta:hover {
  transition: 0.4s;
  box-shadow: 10px 10px 0 #fbc638;
}

.cta .span {
  display: inline-block;
  transform: skewX(12deg);
}

.cta .second {
  display: inline-flex;
  align-items: center;
  width: 20px;
  margin-left: 18px;
  transition: 0.5s;
}

.cta:hover .second {
  transition: 0.5s;
  margin-left: 30px;
}

.cta .second svg {
  display: block;
  width: 100%;
  height: auto;
}

.cta .second path {
  fill: #fff;
}

.cta .one {
  transition: 0.4s;
  transform: translateX(-60%);
}

.cta .two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.cta:hover .three {
  animation: s4m-cta-color 1s infinite 0.2s;
}

.cta:hover .one {
  transform: translateX(0%);
  animation: s4m-cta-color 1s infinite 0.6s;
}

.cta:hover .two {
  transform: translateX(0%);
  animation: s4m-cta-color 1s infinite 0.4s;
}

@keyframes s4m-cta-color {
  0% { fill: #fff; }
  50% { fill: #fbc638; }
  100% { fill: #fff; }
}

/* White CTA: readable on light hero AND on the dark final section */
.cta--invert {
  background: #fff;
  color: var(--s4m-blue-dark) !important;
  box-shadow: 6px 6px 0 rgba(17, 24, 39, 0.22);
  border-color: rgba(35, 64, 143, 0.2);
}

.cta--invert .second path {
  fill: var(--s4m-blue-dark);
}

.cta--invert:hover .three {
  animation: s4m-cta-color-blue 1s infinite 0.2s;
}

.cta--invert:hover .one {
  animation: s4m-cta-color-blue 1s infinite 0.6s;
}

.cta--invert:hover .two {
  animation: s4m-cta-color-blue 1s infinite 0.4s;
}

@keyframes s4m-cta-color-blue {
  0% { fill: var(--s4m-blue-dark); }
  50% { fill: #fbc638; }
  100% { fill: var(--s4m-blue-dark); }
}

/* Outline CTA for dark backgrounds */
.cta--outline {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 6px 6px 0 rgba(17, 24, 39, 0.35);
}

/* Full-width, un-skewed CTA for the form submit */
.cta--block {
  width: 100%;
  justify-content: center;
  transform: none;
}

.cta--block .span {
  transform: none;
}

.s4m-check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.s4m-check-list li {
  position: relative;
  padding-left: 34px;
  line-height: 1.45;
  color: var(--s4m-ink);
  font-weight: 600;
}

.s4m-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--s4m-blue);
}

.s4m-check-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  width: 8px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
}

.s4m-check-list li.is-visible::after,
.s4m-check-list--hero li::after {
  animation: s4m-check 420ms ease forwards;
}

.s4m-check-list--hero {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.s4m-check-list--panel {
  background: var(--s4m-white);
  border: 1px solid rgba(209, 213, 219, 0.85);
  border-radius: 6px;
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--s4m-shadow);
  margin: 0;
}

.s4m-form-card {
  background: var(--s4m-white);
  border: 1px solid rgba(209, 213, 219, 0.85);
  border-radius: 6px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--s4m-shadow);
}

.s4m-hero-visual {
  position: relative;
  max-width: 520px;
  margin: 34px 0 0;
  border: 1px solid rgba(35, 64, 143, 0.18);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--s4m-shadow);
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.s4m-hero-visual:hover {
  box-shadow: 0 22px 52px rgba(17, 24, 39, 0.16);
}

.s4m-hero-visual img,
.s4m-visual-story img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.s4m-hero-visual img {
  aspect-ratio: 16 / 9;
}

.s4m-hero-visual figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--s4m-blue);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.12);
}

.s4m-hero-visual figcaption span {
  color: var(--s4m-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.s4m-hero-visual figcaption strong {
  color: var(--s4m-blue);
  font-size: 1rem;
}

.s4m-form-card h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.s4m-form-card p {
  color: var(--s4m-muted);
  font-size: 0.96rem;
}

.s4m-form {
  display: grid;
  gap: 14px;
}

.s4m-field {
  position: relative;
  display: block;
}

.s4m-field input,
.s4m-field select,
.s4m-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--s4m-line);
  border-radius: 4px;
  background: #fff;
  color: var(--s4m-ink);
  padding: 17px 14px 7px;
  font: inherit;
  line-height: 1.35;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.s4m-field textarea {
  resize: vertical;
  min-height: 112px;
}

.s4m-field span {
  position: absolute;
  left: 14px;
  top: 14px;
  color: var(--s4m-muted);
  font-size: 0.95rem;
  line-height: 1;
  pointer-events: none;
  transition: transform 160ms ease, font-size 160ms ease, color 160ms ease;
}

.s4m-field input:focus + span,
.s4m-field input:not(:placeholder-shown) + span,
.s4m-field textarea:focus + span,
.s4m-field textarea:not(:placeholder-shown) + span,
.s4m-field select:focus + span,
.s4m-field select:valid + span,
.s4m-field.is-filled span {
  transform: translateY(-9px);
  font-size: 0.72rem;
  color: var(--s4m-blue);
}

.s4m-field.is-invalid input,
.s4m-field.is-invalid select,
.s4m-field.is-invalid textarea {
  border-color: #b42318;
}

.s4m-error {
  display: block;
  min-height: 18px;
  margin-top: 4px;
  color: #b42318;
  font-size: 0.82rem;
}

.s4m-honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.s4m-form__status {
  min-height: 24px;
  margin: 0;
  font-weight: 700;
}

.s4m-form__status.is-success {
  color: #137333;
}

.s4m-form__status.is-error {
  color: #b42318;
}

.s4m-trust {
  background: var(--s4m-blue);
  color: var(--s4m-white);
}

.s4m-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.s4m-trust__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 86px;
  padding: 18px;
  color: var(--s4m-white);
  font-weight: 700;
  text-align: center;
}

.s4m-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.s4m-section {
  padding: clamp(58px, 8vw, 96px) 0;
  background: #fff;
}

.s4m-section--soft {
  background: var(--s4m-soft);
}

.s4m-section__intro {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.s4m-visual-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 0;
  align-items: stretch;
  margin: 0 0 30px;
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.85);
  border-radius: 6px;
  background: var(--s4m-white);
  box-shadow: var(--s4m-shadow);
}

.s4m-visual-story img {
  height: 100%;
  min-height: 320px;
}

.s4m-story-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 42px);
}

.s4m-story-panel__label {
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-left: 3px solid var(--s4m-blue);
  background: var(--s4m-soft);
  color: var(--s4m-blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.s4m-story-panel h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.s4m-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.s4m-mini-stats span {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 12px;
  border: 1px solid rgba(35, 64, 143, 0.14);
  border-radius: 4px;
  background: #fff;
  color: var(--s4m-muted);
  font-size: 0.82rem;
  text-align: center;
}

.s4m-mini-stats strong {
  color: var(--s4m-blue);
  font-size: 1.45rem;
  line-height: 1;
}

.s4m-card-grid {
  display: grid;
  gap: 18px;
}

.s4m-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.s4m-card {
  min-height: 220px;
  padding: 24px;
  background: var(--s4m-white);
  border: 1px solid rgba(209, 213, 219, 0.85);
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.s4m-card:hover {
  transform: perspective(900px) translateY(-4px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  border-color: rgba(35, 64, 143, 0.24);
  box-shadow: var(--s4m-shadow);
}

.s4m-card .s4m-icon {
  color: var(--s4m-blue);
  margin-bottom: 18px;
}

.s4m-card p {
  margin: 0;
  color: var(--s4m-muted);
}

.s4m-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.s4m-option-explorer {
  display: grid;
  grid-template-columns: minmax(230px, 0.35fr) minmax(0, 1fr);
  gap: 0;
  margin: 0 0 22px;
  border: 1px solid rgba(35, 64, 143, 0.18);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.s4m-option-explorer__tabs {
  display: grid;
  background: var(--s4m-blue);
}

.s4m-option-explorer__tabs button {
  min-height: 58px;
  padding: 15px 18px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, padding-left 160ms ease;
}

.s4m-option-explorer__tabs button:hover,
.s4m-option-explorer__tabs button[aria-selected="true"] {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  padding-left: 24px;
}

.s4m-option-explorer__tabs button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.45);
  outline-offset: -4px;
}

.s4m-option-explorer__panel {
  padding: clamp(24px, 4vw, 38px);
}

.s4m-option-explorer__panel article {
  animation: s4m-panel-in 260ms ease both;
}

.s4m-option-explorer__panel h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.s4m-option-explorer__panel p {
  max-width: 680px;
  margin: 0;
}

.s4m-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(209, 213, 219, 0.85);
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.s4m-compare span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 12px;
  border-radius: 4px;
  background: var(--s4m-soft);
  color: var(--s4m-blue);
  font-weight: 700;
  text-align: center;
}

.s4m-compare strong {
  color: var(--s4m-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.s4m-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.s4m-two-col .s4m-section__intro {
  margin: 0;
  text-align: left;
}

.s4m-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.s4m-timeline::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 34px;
  height: 2px;
  background: rgba(35, 64, 143, 0.18);
}

.s4m-timeline__item {
  position: relative;
  padding: 0 10px;
  text-align: center;
}

.s4m-timeline__number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--s4m-blue);
  color: var(--s4m-white);
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(35, 64, 143, 0.25);
}

.s4m-timeline p {
  margin: 0;
  color: var(--s4m-muted);
}

.s4m-faq-wrap {
  max-width: 900px;
}

.s4m-faq {
  display: grid;
  gap: 12px;
}

.s4m-faq__item {
  background: #fff;
  border: 1px solid rgba(209, 213, 219, 0.85);
  border-radius: 6px;
  overflow: hidden;
}

.s4m-faq h3 {
  margin: 0;
}

.s4m-faq button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: #fff;
  color: var(--s4m-blue);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.s4m-faq button span {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.s4m-faq button span::before,
.s4m-faq button span::after {
  content: "";
  position: absolute;
  background: var(--s4m-blue);
  inset: 8px 0 auto 0;
  height: 2px;
}

.s4m-faq button span::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.s4m-faq button[aria-expanded="true"] span::after {
  transform: rotate(0);
}

.s4m-faq__panel {
  padding: 0 22px 22px;
}

.s4m-faq__panel p {
  margin: 0;
  color: var(--s4m-muted);
}

.s4m-final {
  padding: clamp(58px, 8vw, 92px) 0;
  background: linear-gradient(135deg, var(--s4m-blue) 0%, var(--s4m-blue-dark) 100%);
  color: #fff;
  text-align: center;
}

.s4m-final h2,
.s4m-final p {
  color: #fff;
}

.s4m-final__inner {
  max-width: 820px;
}

.s4m-floating-badge {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 40;
  max-width: 210px;
  padding: 12px 14px;
  border-radius: 4px;
  background: var(--s4m-white);
  color: var(--s4m-blue);
  border: 1px solid rgba(35, 64, 143, 0.22);
  box-shadow: var(--s4m-shadow);
  font-size: 0.9rem;
  font-weight: 800;
  animation: s4m-pulse 2.5s ease-in-out infinite;
}

.s4m-mobile-cta {
  display: none;
}

.s4m-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.s4m-reveal:nth-child(2) {
  transition-delay: 60ms;
}

.s4m-reveal:nth-child(3) {
  transition-delay: 120ms;
}

.s4m-reveal:nth-child(4) {
  transition-delay: 180ms;
}

.s4m-reveal--scale {
  transform: scale(0.98);
}

.s4m-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes s4m-check {
  to {
    transform: rotate(45deg) scale(1);
  }
}

@keyframes s4m-pulse {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes s4m-panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .s4m-hero__grid,
  .s4m-two-col {
    grid-template-columns: 1fr;
  }

  .s4m-card-grid--four,
  .s4m-card-grid--three,
  .s4m-comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .s4m-timeline {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }

  .s4m-timeline::before {
    left: 34px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }

  .s4m-timeline__item {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 18px;
    text-align: left;
    padding: 0;
  }

  .s4m-timeline__number {
    margin: 0;
  }

  .s4m-visual-story,
  .s4m-option-explorer {
    grid-template-columns: 1fr;
  }

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

  .s4m-option-explorer__tabs button {
    text-align: center;
  }

  .s4m-option-explorer__tabs button:hover,
  .s4m-option-explorer__tabs button[aria-selected="true"] {
    padding-left: 18px;
  }
}

@media (max-width: 720px) {
  .s4m-shell {
    width: min(100% - 28px, 1180px);
  }

  .s4m-hero {
    padding-top: 44px;
  }

  .s4m-check-list--hero,
  .s4m-card-grid--four,
  .s4m-card-grid--three,
  .s4m-comparison-grid,
  .s4m-trust__grid {
    grid-template-columns: 1fr;
  }

  .s4m-card {
    min-height: auto;
  }

  .s4m-compare {
    grid-template-columns: 1fr;
  }

  .s4m-compare strong {
    text-align: center;
  }

  .s4m-actions .s4m-btn {
    width: 100%;
  }

  .s4m-actions .cta {
    width: 100%;
    justify-content: center;
    transform: none;
  }

  .s4m-actions .cta .span {
    transform: none;
  }

  .s4m-visual-story img {
    min-height: 230px;
  }

  .s4m-mini-stats,
  .s4m-option-explorer__tabs {
    grid-template-columns: 1fr;
  }

  .s4m-floating-badge {
    display: none;
  }

  .s4m-mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-top: 1px solid rgba(209, 213, 219, 0.9);
    box-shadow: 0 -8px 24px rgba(17, 24, 39, 0.1);
    transform: translateY(110%);
    transition: transform 180ms ease;
  }

  .s4m-mobile-cta.is-visible {
    transform: translateY(0);
  }

  .s4m-mobile-cta a {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--s4m-blue);
    font-weight: 800;
    text-decoration: none;
  }

  .s4m-mobile-cta a + a {
    background: var(--s4m-blue);
    color: #fff;
  }
}

@media (prefers-reduced-motion: reduce) {
  .s4m-page *,
  .s4m-page *::before,
  .s4m-page *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .s4m-reveal {
    opacity: 1;
    transform: none;
  }
}
