/* Read2Me Main Page — polished UI (original brand colors) */
:root {
  --ink: #3c3c3c;
  --ink-soft: #5e5e5e;
  --muted: #7b7b7b;
  --paper: #ebebeb;
  --paper-2: #f5f5f5;
  --surface: #ffffff;
  --brand: #138CCE;
  --brand-deep: #0d6fa8;
  --brand-bright: #00b2e8;
  --brand-soft: #d6effa;
  --accent-red: #f19294;
  --accent-green: #cfda58;
  --accent-teal: #43b8b5;
  --accent-yellow: #ffd635;
  --line: rgba(0, 0, 0, 0.08);
  --shadow: 0 20px 50px rgba(19, 140, 206, 0.14);
  --shadow-lg: 0 28px 70px rgba(19, 140, 206, 0.2);
  --radius: 1.35rem;
  --radius-sm: 0.85rem;
  --max: 1120px;
  --prose: min(100%, clamp(20rem, 90vw, 64rem));
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --font-quote: "Nunito", "Figtree", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.r2m-page {
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Ambient animated mesh background */
body.r2m-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 45% at 8% 0%, rgba(19, 140, 206, 0.16), transparent 55%),
    radial-gradient(ellipse 55% 40% at 95% 8%, rgba(0, 178, 232, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 35% at 50% 100%, rgba(67, 184, 181, 0.1), transparent 55%),
    linear-gradient(180deg, #f0f7fc 0%, var(--paper) 40%, #e6e6e6 100%);
  pointer-events: none;
}

body.r2m-page::after {
  content: "";
  position: fixed;
  width: 42vw;
  height: 42vw;
  max-width: 520px;
  max-height: 520px;
  top: 12%;
  right: -8%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 178, 232, 0.18), transparent 68%);
  filter: blur(40px);
  animation: orbDrift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand-deep);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color 0.25s var(--ease-out);
}

a:hover {
  color: var(--brand-bright);
}

.r2m-wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ——— Header ——— */
.r2m-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--brand);
  box-shadow: 0 4px 24px rgba(19, 140, 206, 0.28);
  transition: box-shadow 0.35s var(--ease-out), background 0.35s ease;
}

.r2m-header.is-scrolled {
  background: linear-gradient(180deg, #1180be, var(--brand));
  box-shadow: 0 8px 32px rgba(13, 111, 168, 0.35);
}

.r2m-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  transition: padding 0.35s var(--ease-out);
}

.r2m-header.is-scrolled .r2m-header__inner {
  padding: 0.35rem 0;
}

.r2m-logo {
  height: 68px;
  width: auto;
  border-radius: 0;
  background: transparent;
  padding: 0;
  transition: transform 0.35s var(--ease-spring), height 0.35s ease;
}

.r2m-header.is-scrolled .r2m-logo {
  height: 56px;
}

.r2m-header a:hover .r2m-logo {
  transform: scale(1.04);
}

/* Header nav */
.r2m-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.35rem;
}

.r2m-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.35rem 0;
  position: relative;
  transition: opacity 0.25s ease;
}

.r2m-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-yellow);
  transition: width 0.3s var(--ease-out);
}

.r2m-nav a:hover,
.r2m-nav a:focus-visible,
.r2m-nav a.is-active {
  color: #fff;
  opacity: 1;
}

.r2m-nav a:hover::after,
.r2m-nav a:focus-visible::after,
.r2m-nav a.is-active::after {
  width: 100%;
}

.r2m-header .store-badges a {
  background: transparent;
  border-radius: 10px;
  border: none;
  padding: 0;
  overflow: hidden;
}

.r2m-header .store-badges {
  gap: 0.5rem;
}

.r2m-header .store-badges img {
  height: 36px;
}

/* ——— Store badges ——— */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.store-badges a {
  display: inline-flex;
  border-radius: 0.55rem;
  overflow: hidden;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease, filter 0.35s ease;
  will-change: transform;
}

.store-badges a:hover {
  transform: translateY(-4px) scale(1.04);
  filter: brightness(1.03);
  box-shadow: 0 12px 24px rgba(19, 140, 206, 0.22);
}

.store-badges a:active {
  transform: translateY(-1px) scale(0.98);
}

.store-badges img {
  height: 44px;
  width: auto;
  border-radius: 0.55rem;
}

.store-badges--sm img {
  height: 36px;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  /* color: var(--muted); */
	color:#fff;
	text-shadow:1px 1px #999;
}

.meta-line li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.35rem 0.75rem;
  list-style: none;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  animation: riseIn 0.7s var(--ease-out) both;
}

.meta-line li:nth-child(1) { animation-delay: 0.35s; background:#f19294; color:#fff; }
.meta-line li:nth-child(2) { animation-delay: 0.45s; background:#cfda58; color:#fff; }
.meta-line li:nth-child(3) { animation-delay: 0.55s; background:#43b8b5; color:#fff; }

/*.meta-line li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dot-color, var(--brand));
  flex-shrink: 0;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--dot-color, var(--brand)) 22%, transparent);
} */

/* ——— Hero ——— */
.r2m-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}

.r2m-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.r2m-hero__orb--1 {
  width: 280px;
  height: 280px;
  top: -40px;
  left: -60px;
  background: rgba(19, 140, 206, 0.18);
  animation: orbFloat 12s ease-in-out infinite;
}

.r2m-hero__orb--2 {
  width: 220px;
  height: 220px;
  bottom: 0;
  right: 35%;
  background: rgba(255, 214, 53, 0.2);
  animation: orbFloat 14s ease-in-out infinite reverse;
}

.r2m-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.r2m-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 0.85rem;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(19, 140, 206, 0.2);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(19, 140, 206, 0.08);
  animation: riseIn 0.7s var(--ease-out) both;
}

.r2m-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-yellow);
  box-shadow: 0 0 0 0 rgba(255, 214, 53, 0.5);
  animation: pulseDot 2.2s ease-out infinite;
}

.r2m-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
  color: var(--ink);
  animation: riseIn 0.85s var(--ease-out) 0.08s both;
}

.r2m-hero h1 .accent {
  white-space: nowrap;
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-bright) 55%, var(--accent-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: shimmerText 6s ease-in-out infinite;
}

.r2m-hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 36rem;
  margin: 0 0 1.5rem;
  animation: riseIn 0.85s var(--ease-out) 0.16s both;
}

.r2m-hero__cta {
  animation: riseIn 0.85s var(--ease-out) 0.24s both;
}

.r2m-hero__visual {
  position: relative;
  animation: floatIn 1s var(--ease-out) 0.2s both;
}

.r2m-hero__glow {
  position: absolute;
  inset: 8% -8% -8% 0;
  background: radial-gradient(circle at 50% 40%, rgba(19, 140, 206, 0.28), transparent 65%);
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
  animation: glowPulse 5s ease-in-out infinite;
}

/* Slider */
.r2m-hero .dSlider.slider {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 !important;
}

.r2m-hero .slider .hiddenr {
  display: none;
}

.r2m-hero .slider .image-container {
  height: clamp(280px, 42vw, 420px);
  position: relative;
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(900px) rotateY(-2deg);
  transition: transform 0.6s var(--ease-out);
}

.r2m-hero .slider:hover .image-container {
  transform: perspective(900px) rotateY(0deg) scale(1.01);
}

.r2m-hero .slider .image-container .image {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  border-radius: 1.6rem;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.7s var(--ease-out), transform 0.9s var(--ease-out);
  background: var(--surface);
}

.r2m-hero .slider .caption-container {
  position: relative;
  margin-top: 1rem;
  min-height: 2.75rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.r2m-hero .slider .caption-container .caption {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}

.r2m-hero .slider .caption-container .dContents01 {
  font-family: var(--font-body);
  font-weight: 550;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.r2m-hero .slider .hiddenr#r1:checked ~ .slider-content .image.img1,
.r2m-hero .slider .hiddenr#r2:checked ~ .slider-content .image.img2,
.r2m-hero .slider .hiddenr#r3:checked ~ .slider-content .image.img3,
.r2m-hero .slider .hiddenr#r4:checked ~ .slider-content .image.img4,
.r2m-hero .slider .hiddenr#r5:checked ~ .slider-content .image.img5 {
  opacity: 1;
  transform: scale(1);
}

.r2m-hero .slider .hiddenr#r1:checked ~ .slider-content .caption.c1,
.r2m-hero .slider .hiddenr#r2:checked ~ .slider-content .caption.c2,
.r2m-hero .slider .hiddenr#r3:checked ~ .slider-content .caption.c3,
.r2m-hero .slider .hiddenr#r4:checked ~ .slider-content .caption.c4,
.r2m-hero .slider .hiddenr#r5:checked ~ .slider-content .caption.c5 {
  opacity: 1;
  transform: none;
}

.r2m-hero .slider .nav-container {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.r2m-hero .slider .nav-label {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(19, 140, 206, 0.25);
  cursor: pointer;
  transition: transform 0.35s var(--ease-spring), background 0.35s ease, width 0.35s var(--ease-out);
}

.r2m-hero .slider .hiddenr#r1:checked ~ .nav-container #l1,
.r2m-hero .slider .hiddenr#r2:checked ~ .nav-container #l2,
.r2m-hero .slider .hiddenr#r3:checked ~ .nav-container #l3,
.r2m-hero .slider .hiddenr#r4:checked ~ .nav-container #l4,
.r2m-hero .slider .hiddenr#r5:checked ~ .nav-container #l5 {
  background: var(--brand);
  width: 28px;
  border-radius: 999px;
  transform: none;
}

/* ——— Trust band ——— */
.r2m-trust {
  padding: 1.25rem 0 2.5rem;
}

.r2m-trust__band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  padding: 1.15rem 1.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 40px rgba(19, 140, 206, 0.1);
  backdrop-filter: blur(14px);
}

.r2m-trust__stat {
  font-family: var(--font-quote, var(--font-body));
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--brand-deep);
  margin: 0;
  line-height: 1.3;
}

.r2m-trust__faces {
  display: flex;
  align-items: center;
}

.r2m-trust__faces img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s var(--ease-spring), z-index 0s;
  position: relative;
}

.r2m-trust__faces img:first-child {
  margin-left: 0;
}

.r2m-trust__faces img:hover {
  transform: scale(1.15) translateY(-3px);
  z-index: 2;
}

/* ——— Sections ——— */
.r2m-section {
  padding: clamp(3rem, 7vw, 5.25rem) 0;
}

.r2m-section--alt {
  position: relative;
}

.r2m-section--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(19, 140, 206, 0.07), rgba(0, 178, 232, 0.1) 50%, rgba(67, 184, 181, 0.08));
  z-index: -1;
  border-radius: 2.5rem;
  margin: 0 clamp(0.5rem, 3vw, 2rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.r2m-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.55rem);
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--ink);
  max-width: var(--prose);
}

.r2m-pricing h2,
.r2m-final h2,
.r2m-step h3,
.r2m-flow__item h3,
.r2m-journey__item h3,
.r2m-age strong {
  max-width: none;
}

.r2m-section h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 0.75rem;
}

.r2m-section p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.r2m-section p:last-child {
  margin-bottom: 0;
	text-align:center;
}

.r2m-section p.r2m-align-left{
	text-align:left;
}

/* Keep body copy in one consistent flush-left column */
.r2m-section .r2m-wrap > p,
.r2m-section .r2m-wrap > .r2m-lead,
.r2m-split > div > p,
.r2m-split > div > .r2m-lead {
  width: 100%;
  max-width: var(--prose);
  text-align: left;
  hyphens: manual;
}

.r2m-lead {
  font-size: 1.125rem;
  max-width: var(--prose);
  text-align: left;
  hyphens: manual;
}

/* Centered sections keep the same prose width */
.r2m-wrap[style*="text-align:center"] > h2,
.r2m-wrap[style*="text-align: center"] > h2,
.r2m-wrap[style*="text-align:center"] > .r2m-lead,
.r2m-wrap[style*="text-align: center"] > .r2m-lead,
.r2m-section h2[style*="text-align:center"],
.r2m-section h2[style*="text-align: center"] {
  margin-inline: auto;
}

/* Quotes stay left-aligned for readability */
.r2m-quote {
  max-width: min(30rem, 100%);
}

.r2m-quote p {
  max-width: none;
  text-align: left;
  hyphens: manual;
}

/* Small card / step copy stays left-aligned and full card width */
.r2m-step p,
.r2m-age p,
.r2m-flow__item p,
.r2m-journey__item p,
.r2m-faq__a p,
.r2m-stat span,
.r2m-pricing p,
.r2m-final p,
.r2m-brand p {
  max-width: none;
  text-align: center;
  hyphens: manual;
}

.r2m-brand p {
  max-width: var(--prose);
  margin-inline: auto;
  text-align: center;
}

.r2m-brand h2 {
  max-width: none;
  margin-inline: auto;
}

/* FAQ heading centered but same measure as other section titles when left-aligned */
.r2m-faq,
.r2m-steps,
.r2m-ages,
.r2m-flow,
.r2m-journey,
.r2m-stats,
.r2m-safety,
.r2m-link {
  max-width: none;
}

.r2m-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

.r2m-split--reverse > :first-child {
  order: 2;
}

.r2m-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.r2m-shots img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--surface);
  transition: transform 0.55s var(--ease-out), box-shadow 0.55s ease;
}

.r2m-shots img:nth-child(2) {
  transform: translateY(1.5rem);
}

.r2m-shots:hover img:nth-child(1) {
  transform: translateY(-6px) rotate(-1.5deg);
  box-shadow: var(--shadow-lg);
}

.r2m-shots:hover img:nth-child(2) {
  transform: translateY(0.9rem) rotate(1.5deg);
  box-shadow: var(--shadow-lg);
}

.r2m-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
  font-weight: 650;
  color: var(--brand);
  text-decoration: none;
  position: relative;
}

.r2m-link::after {
  content: "→";
  transition: transform 0.3s var(--ease-spring);
}

.r2m-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-bright));
  transition: width 0.35s var(--ease-out);
}

.r2m-link:hover::after {
  transform: translateX(6px);
}

.r2m-link:hover::before {
  width: calc(100% - 1.4rem);
}

/* ——— Quote ——— */
.r2m-quote {
  margin: 1.75rem 0 1.75rem;
  padding: 2.15rem 1.35rem 1.85rem;
  width: min(45rem, 100%);
  max-width: min(45rem, 100%);
  border-left: 4px solid var(--accent-yellow);
  background: linear-gradient(165deg, #fff 0%, rgba(255, 255, 255, 0.88) 100%);
  border-radius: 1.25rem;
  box-shadow: 0 12px 32px rgba(19, 140, 206, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}

.r2m-quote + p,
.r2m-quote + .r2m-lead {
  margin-top: 0.5rem;
}

.r2m-quote::before {
  content: "“";
  position: absolute;
  top: 0.15rem;
  right: 0.75rem;
  font-family: var(--font-quote);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(19, 140, 206, 0.1);
  pointer-events: none;
}

.r2m-quote:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(19, 140, 206, 0.14);
}

.r2m-quote p {
  font-family: var(--font-quote);
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.55;
  letter-spacing: 0.01em;
  margin: 0 0 1rem;
  position: relative;
  z-index: 1;
}

.r2m-quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  display: block;
  position: relative;
  z-index: 1;
}

/* ——— Steps ——— */
.r2m-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  counter-reset: step;
}

.r2m-step {
  position: relative;
  padding: 1.45rem 1.2rem 1.35rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, border-color 0.4s ease, filter 0.35s ease;
  overflow: hidden;
}

.r2m-step:nth-child(1) { background: #f19294; }
.r2m-step:nth-child(2) { background: #cfda58; }
.r2m-step:nth-child(3) { background: #43b8b5; }
.r2m-step:nth-child(4) { background: #ffd635; }

.r2m-step::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.r2m-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  filter: brightness(0.97);
}

.r2m-step:hover::after {
  opacity: 1;
}

.r2m-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease-spring), background 0.4s ease, color 0.4s ease;
}

.r2m-step:hover::before {
  transform: scale(1.12);
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
}

.r2m-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  position: relative;
  z-index: 1;
}

.r2m-step p {
  font-size: 0.95rem;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Journey */
.r2m-journey {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.r2m-journey__item {
  flex: 1 1 140px;
  max-width: 200px;
  text-align: center;
  padding: 1.6rem 1.1rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, filter 0.35s ease;
}

.r2m-journey__item:nth-child(1) { background: #f19294; }
.r2m-journey__item:nth-child(3) { background: #cfda58; }
.r2m-journey__item:nth-child(5) { background: #43b8b5; }

.r2m-journey__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  filter: brightness(0.97);
}

.r2m-journey__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.35s ease;
}

.r2m-journey__item:hover .r2m-journey__icon {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.r2m-journey__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  min-width: 2.75rem;
  transform: scaleX(1.35);
  align-self: center;
  animation: arrowNudge 1.8s ease-in-out infinite;
  transition: color 0.35s ease;
}

.r2m-journey__arrow:nth-child(2) { color: #ffd635; }
.r2m-journey__arrow:nth-child(4) { color: #f19294; }

/* Flow */
.r2m-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 1.75rem;
}

.r2m-flow__item {
  padding: 1.75rem 1.55rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, filter 0.35s ease;
}

.r2m-flow__item:nth-child(1) { background: #f19294; }
.r2m-flow__item:nth-child(2) { background: #cfda58; }
.r2m-flow__item:nth-child(3) { background: #43b8b5; }

.r2m-flow__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  filter: brightness(0.97);
}

.r2m-flow__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.45rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.65rem;
}

/* Stats */
.r2m-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0 0;
}

.r2m-stat {
  text-align: center;
  padding: 1.65rem 1rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--brand-deep), var(--brand) 55%, var(--brand-bright));
  background-size: 160% 160%;
  animation: gradientShift 8s ease infinite;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
  box-shadow: 0 12px 30px rgba(19, 140, 206, 0.25);
  text-decoration: none;
  display: block;
  cursor: default;
}

a.r2m-stat {
  cursor: pointer;
}

.r2m-stat::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;
  width: 60%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(20deg);
  transition: left 0.7s var(--ease-out);
}

.r2m-stat:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(19, 140, 206, 0.35);
}

.r2m-stat:hover::before {
  left: 120%;
}

.r2m-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 650;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.r2m-stat span {
  font-size: 0.9rem;
  opacity: 0.92;
}

/* Safety — 4 on top row, up to 3 on bottom */
.r2m-safety {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 1.75rem;
  padding: 0;
}

.r2m-safety li {
  list-style: none;
  margin: 0;
  padding: 1.05rem 1.15rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: transform 0.35s var(--ease-out), border-color 0.35s ease, box-shadow 0.35s ease;
}

.r2m-safety li:hover {
  transform: translateY(-3px);
  border-color: rgba(19, 140, 206, 0.3);
  box-shadow: 0 10px 24px rgba(19, 140, 206, 0.1);
}

.r2m-safety li img {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 50%;
}

.r2m-safety li span {
  line-height: 1.3;
}

/* Ages */
.r2m-ages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.r2m-age {
  display: block;
  padding: 1.35rem 1.1rem 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-spring),
    box-shadow 0.4s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.r2m-age:nth-child(2) { border-top-color: var(--brand-bright); }
.r2m-age:nth-child(3) { border-top-color: var(--accent-teal); }
.r2m-age:nth-child(4) { border-top-color: var(--accent-green); }
.r2m-age:nth-child(5) { border-top-color: var(--accent-yellow); }

.r2m-age::after {
  content: "Explore →";
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.35s ease, transform 0.4s var(--ease-spring);
}

.r2m-age:hover,
.r2m-age:focus-visible {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: rgba(19, 140, 206, 0.35);
  background: linear-gradient(180deg, #fff 0%, var(--brand-soft) 100%);
  outline: none;
}

.r2m-age:hover::after,
.r2m-age:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.r2m-age:active {
  transform: translateY(-3px) scale(1.01);
  transition-duration: 0.15s;
}

.r2m-age strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--brand-deep);
  transition: color 0.3s ease;
}

.r2m-age:hover strong,
.r2m-age:focus-visible strong {
  color: var(--brand);
}

.r2m-age p {
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.45;
}

/* Pricing */
.r2m-pricing {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 1.85rem;
  background: #0a5f92;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.r2m-pricing::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -80px;
  right: -40px;
  animation: orbFloat 10s ease-in-out infinite;
}

.r2m-pricing .r2m-eyebrow {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.r2m-pricing h2,
.r2m-pricing p {
  color: #fff;
  position: relative;
  z-index: 1;
}

.r2m-pricing p {
  opacity: 0.92;
}

.r2m-price {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 650;
  line-height: 1;
  margin: 0.5rem 0 0.25rem;
}

.r2m-price span {
  font-size: 1.15rem;
  font-weight: 500;
  opacity: 0.85;
}

.r2m-pricing .store-badges {
  margin-top: 1.25rem;
  position: relative;
  z-index: 1;
}

.r2m-qr {
  text-align: center;
  background: rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease-out), background 0.4s ease;
}

.r2m-qr:hover {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.2);
}

.r2m-qr img {
  width: 160px;
  height: 160px;
  margin: 0 auto 0.85rem;
  border-radius: 0.75rem;
  background: #fff;
  padding: 0.5rem;
  transition: transform 0.4s var(--ease-spring);
}

.r2m-qr:hover img {
  transform: scale(1.04);
}

.r2m-qr a {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.r2m-qr a:hover {
  text-decoration: underline;
  color: #fff;
}

/* FAQ */
.r2m-faq {
  max-width: 760px;
  margin: 1.75rem auto 0;
}

.r2m-faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.15rem 0;
  transition: background 0.3s ease;
}

.r2m-faq details[open] {
  background: rgba(255, 255, 255, 0.45);
  margin: 0 -0.75rem;
  padding: 0.15rem 0.75rem;
  border-radius: var(--radius-sm);
  border-bottom-color: transparent;
}

.r2m-faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  font-weight: 650;
  font-size: 1.05rem;
  color: var(--ink);
  transition: color 0.25s ease;
}

.r2m-faq summary:hover {
  color: var(--brand);
}

.r2m-faq summary::-webkit-details-marker {
  display: none;
}

.r2m-faq summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 500;
  transition: transform 0.35s var(--ease-spring), background 0.35s ease, color 0.35s ease;
}

.r2m-faq details[open] summary::after {
  content: "−";
  background: linear-gradient(145deg, var(--brand), var(--brand-bright));
  color: #fff;
  transform: rotate(180deg);
}

.r2m-faq .r2m-faq__a {
  padding: 0 0 1.25rem;
  color: var(--ink-soft);
  animation: faqOpen 0.35s var(--ease-out);
}

.r2m-faq .r2m-faq__a p,
.r2m-faq .r2m-faq__a ul {
  margin: 0 0 0.75rem;
}

.r2m-faq .r2m-faq__a ul {
  padding-left: 1.25rem;
}

/* Final CTA */
.r2m-final {
  text-align: center;
  padding: clamp(3rem, 6vw, 4.75rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: 1.85rem;
  background:
    radial-gradient(ellipse at 20% 15%, rgba(255, 214, 53, 0.28), transparent 45%),
    radial-gradient(ellipse at 85% 85%, rgba(19, 140, 206, 0.14), transparent 45%),
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.r2m-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(19, 140, 206, 0.05) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: sheen 7s linear infinite;
  pointer-events: none;
}

.r2m-final h2 {
  margin-bottom: 0.5rem;
  position: relative;
}

.r2m-final .store-badges {
  justify-content: center;
  margin: 1.5rem 0 0.75rem;
  position: relative;
}

.r2m-final .r2m-price-note {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brand-deep);
  margin: 0.5rem 0 0;
  position: relative;
}

/* Brand */
.r2m-brand {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.r2m-brand .r2m-logo {
  width: min(100%, 240px);
  height: auto;
  margin: 0 auto 1.5rem;
  background: transparent;
}

/* Footer */
.r2m-footer {
  margin-top: 3rem;
  padding: 1.75rem 0 2rem;
  background: linear-gradient(180deg, #1180be, var(--brand));
}

.r2m-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.r2m-footer__nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.r2m-footer__nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: opacity 0.25s ease;
}

.r2m-footer__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1.5px;
  background: #fff;
  transition: width 0.3s var(--ease-out);
}

.r2m-footer__nav a:hover {
  color: #fff;
  opacity: 0.9;
}

.r2m-footer__nav a:hover::after {
  width: 100%;
}

.r2m-footer__copy {
  text-align: center;
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Color stripe */
.r2m-color-stripe {
  height: 6px;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.r2m-color-stripe span {
  flex: 1;
  height: 100%;
  transition: flex 0.5s var(--ease-out);
}

.r2m-color-stripe:hover span:hover {
  flex: 1.6;
}

.r2m-color-stripe .red { background: var(--accent-red); }
.r2m-color-stripe .yellow { background: var(--accent-yellow); }
.r2m-color-stripe .blue { background: var(--accent-teal); }
.r2m-color-stripe .green { background: var(--accent-green); }

.r2m-color-stripe::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: stripeShine 3.5s ease-in-out infinite;
}

.r2m-cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ——— Reveal animations ——— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: none;
}

.stagger > .reveal,
.stagger > .r2m-step,
.stagger > .r2m-stat,
.stagger > .r2m-age,
.stagger > .r2m-flow__item,
.stagger > .r2m-journey__item,
.stagger > .r2m-safety li {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.stagger.is-visible > .reveal,
.stagger.is-visible > .r2m-step,
.stagger.is-visible > .r2m-stat,
.stagger.is-visible > .r2m-age,
.stagger.is-visible > .r2m-flow__item,
.stagger.is-visible > .r2m-journey__item,
.stagger.is-visible > .r2m-safety li {
  opacity: 1;
  transform: none;
}

.stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }
.stagger.is-visible > *:nth-child(7) { transition-delay: 0.47s; }

/* Journey arrows shouldn't animate independently oddly */
.stagger.is-visible > .r2m-journey__arrow {
  opacity: 1;
  transform: none;
  transition-delay: 0.15s;
}

/* ——— Keyframes ——— */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(32px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -22px) scale(1.08); }
}

@keyframes orbDrift {
  from { transform: translate(0, 0); }
  to { transform: translate(-40px, 60px); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(255, 214, 53, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(255, 214, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 214, 53, 0); }
}

@keyframes shimmerText {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 40%; }
  50% { background-position: 100% 60%; }
}

@keyframes arrowNudge {
  0%, 100% { transform: translateX(0); opacity: 0.7; }
  50% { transform: translateX(5px); opacity: 1; }
}

@keyframes stripeShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes sheen {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* Scroll progress bar */
.r2m-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 60;
  background: linear-gradient(90deg, var(--accent-yellow), var(--brand-bright), var(--accent-teal));
  box-shadow: 0 0 12px rgba(0, 178, 232, 0.5);
  transform-origin: left;
  pointer-events: none;
}

/* Back to top */
.r2m-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 50;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand), var(--brand-bright));
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(19, 140, 206, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s var(--ease-out), visibility 0.35s ease;
}

.r2m-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.r2m-top:hover {
  transform: translateY(-3px) scale(1.05);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .r2m-hero__grid,
  .r2m-split,
  .r2m-pricing {
    grid-template-columns: 1fr;
  }

  .r2m-split--reverse > :first-child {
    order: 0;
  }

  .r2m-shots img:nth-child(2),
  .r2m-shots:hover img:nth-child(2) {
    transform: none;
  }

  .r2m-hero .slider .image-container,
  .r2m-hero .slider:hover .image-container {
    transform: none;
  }

  .r2m-steps {
    grid-template-columns: 1fr 1fr;
  }

  .r2m-stats {
    grid-template-columns: 1fr 1fr;
  }

  .r2m-ages {
    grid-template-columns: 1fr 1fr;
  }

  .r2m-safety {
    grid-template-columns: repeat(3, 1fr);
  }

  .r2m-flow {
    grid-template-columns: 1fr;
  }

  .r2m-journey__arrow {
    transform: rotate(90deg) scaleX(1.35);
    width: 100%;
    justify-content: center;
    animation: none;
  }
}

@media (max-width: 640px) {
  .r2m-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .r2m-nav {
    width: 100%;
    gap: 0.25rem 1rem;
  }

  .r2m-nav a {
    font-size: 0.92rem;
  }

  .r2m-trust__band {
    border-radius: var(--radius);
    flex-direction: column;
    text-align: center;
  }

  .r2m-steps,
  .r2m-stats,
  .r2m-ages,
  .r2m-safety {
    grid-template-columns: 1fr;
  }

  .r2m-shots {
    grid-template-columns: 1fr 1fr;
  }

  .r2m-header .store-badges img {
    height: 32px;
  }

  .store-badges img {
    height: 40px;
  }

  .r2m-section--alt::before {
    border-radius: 1.5rem;
    margin: 0;
  }

  body.r2m-page::after {
    display: none;
  }
}
