/* --- YUVO NEW SECTIONS CSS --- */

:root {
  /* Hero / section brand tokens (match homepage design) */
  --yuvo-blue: #0e4fa8;
  --yuvo-blue-dark: #073c86;
  --yuvo-green: #3f724a;
  --yuvo-green-dark: #2f5e3b;
  --yuvo-red: var(--red, #EC1E27);
  --yuvo-text: #111820;
  --yuvo-muted: #4b5560;
  --yuvo-star: #f5aa22;
  --glass: rgba(255, 255, 255, 0.62);
  --glass-border: rgba(255, 255, 255, 0.78);
  --line: rgba(55, 80, 62, 0.16);
  --icon-bg: rgba(218, 234, 213, 0.85);
  --card: rgba(255,255,255,.72);
  --card-border: rgba(255,255,255,.82);
  --shadow: 0 24px 60px rgba(20, 38, 56, .14);
  --white: #ffffff;
  --muted-white: rgba(255,255,255,.82);
  --overlay: rgba(20, 29, 36, .66);
}

/* =========================================
   HERO SECTION — matches design screenshot
   Background: assets/img/hero_area.png
========================================= */
#page-home .hero,
.hero {
  position: relative;
  min-height: min(920px, 100vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 0;
  /* Side inset matches header + why-yuvo panel alignment */
  padding: 0 clamp(20px, 4vw, 48px);
  background: #e8efe6;
}

/* Full-bleed lifestyle background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

/* Soft left wash so glass card stays readable over photo */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.22) 36%,
      rgba(255, 255, 255, 0) 58%
    );
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  /* Match header / .why-yuvo .panel width */
  width: min(1120px, 100%);
  max-width: min(1120px, 100%);
  margin: 0 auto;
  /* Gap below fixed header (~76px bar + top offset + extra spacing) */
  padding: 132px 0 clamp(40px, 6vh, 64px);
}

.hero .glass-card {
  width: min(560px, 100%);
  padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3vw, 40px);
  border-radius: 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 28px 80px rgba(47, 66, 52, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: none;
}

.hero .eyebrow {
  margin: 0 0 14px;
  color: var(--yuvo-green-dark);
  font-size: clamp(12px, 1.1vw, 15px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: #111820;
  max-width: 520px;
}

.hero .rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111820;
}

.hero .stars {
  color: var(--yuvo-star);
  letter-spacing: 2px;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1;
}

.hero .description {
  margin: 16px 0 0;
  max-width: 460px;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.55;
  color: #1f252c;
  font-weight: 400;
}

.hero .cta-stack {
  margin-top: 22px;
  display: grid;
  gap: 12px;
  max-width: 100%;
}

.hero .button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none;
  box-sizing: border-box;
}

.hero .button:hover {
  transform: translateY(-1px);
}

.hero .button.primary {
  font-size: 15px;
  background: #0e4fa8;
  color: #fff;
  box-shadow: 0 10px 28px rgba(14, 79, 168, 0.28);
  padding: 0 18px 0 20px;
  gap: 0;
  min-height: 52px;
  border-radius: 12px;
}

.hero .button.primary:hover {
  background: #073c86;
  box-shadow: 0 14px 34px rgba(14, 79, 168, 0.36);
}

.hero .button.primary .button-left {
  flex: 1 1 auto;
  min-width: 0;
  gap: 10px;
  padding-right: 16px;
}

/* Amazon logo block — divider only, no dark panel (matches design) */
.hero .amazon-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  min-width: 0;
}

.hero .button.primary .arrow {
  margin-left: 4px;
  opacity: 0.95;
  font-size: 12px;
  color: #fff;
}

.hero .button.secondary {
  font-size: 14px;
  color: #17201a;
  border: 1.5px solid var(--yuvo-green-dark);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: none;
}

.hero .button.secondary:hover {
  background: rgba(255, 255, 255, 0.78);
  color: #17201a;
  box-shadow: 0 8px 22px rgba(47, 66, 52, 0.12);
}

.hero .secondary-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero .button-left {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero .button .icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 14px;
  line-height: 1;
}

.hero .button .icon svg {
  width: 100%;
  height: 100%;
}

.hero .button .icon i,
.hero .button .arrow i {
  font-size: inherit;
  line-height: 1;
}

.hero .button .arrow {
  flex: 0 0 auto;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  opacity: 0.75;
  color: inherit;
}

.hero .amazon-wordmark {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  line-height: 1;
  margin: 0;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
}

.hero .amazon-smile {
  display: block;
  width: 52px;
  height: 10px;
  margin-top: 1px;
}

.hero .proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid rgba(55, 80, 62, 0.16);
}

.hero .proof {
  padding: 22px 12px 0;
  text-align: center;
  position: relative;
}

.hero .proof:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 24px;
  bottom: 4px;
  width: 1px;
  background: rgba(55, 80, 62, 0.18);
}

.hero .proof-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(218, 234, 213, 0.9);
  display: grid;
  place-items: center;
  color: #1a2a1f;
  font-size: 18px;
  line-height: 1;
}

.hero .proof-icon i {
  font-size: 18px;
  line-height: 1;
}

.hero .proof-icon svg {
  width: 22px;
  height: 22px;
}

.hero .proof h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 600;
  color: #111820;
}

.hero .proof p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--yuvo-muted);
}

@media (max-width: 980px) {
  #page-home .hero,
  .hero {
    min-height: auto;
  }

  .hero-bg img {
    object-position: 72% center;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.55) 55%,
      rgba(255, 255, 255, 0.35) 100%
    );
  }

  .hero-content-wrap {
    min-height: min(100vh, 900px);
    /* Keep gap under header; horizontal inset comes from .hero padding */
    padding: 120px 0 40px;
  }

  .hero .glass-card {
    margin: 0 auto;
    width: min(560px, 100%);
  }
}

@media (max-width: 680px) {
  .hero-content-wrap {
    padding: 112px 0 32px;
    min-height: auto;
  }

  .hero .glass-card {
    border-radius: 22px;
    padding: 24px 18px;
  }

  .hero .secondary-row {
    grid-template-columns: 1fr;
  }

  .hero .button {
    width: 100%;
    min-height: 52px;
  }

  .hero .amazon-brand {
    min-width: 110px;
  }

  .hero .proof-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero .proof {
    padding: 16px 0 0;
    text-align: left;
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 14px;
    align-items: center;
  }

  .hero .proof:not(:last-child)::after {
    display: none;
  }

  .hero .proof-icon {
    margin: 0;
    grid-row: span 2;
  }

  .hero .proof p br {
    display: none;
  }
}

/* =========================================
   WHY YUVO SECTION — matches design screenshot
========================================= */
.why-yuvo {
  --why-blue: #17468a;
  --why-blue-mid: #2f5fa8;
  --why-red: #ed1c24;
  --why-muted: #5a6570;
  --why-line: rgba(20, 45, 78, 0.12);
  --why-icon-bg: #eef3f9;

  position: relative;
  min-height: auto;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #f4f1ea;
  background-image: url("../img/why-yuvo-section.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Soft wash so the glass panel stays readable over the photo */
.why-yuvo::before {
  content: none;
}

.why-yuvo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.35), transparent 55%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
  pointer-events: none;
  z-index: 0;
}

.why-yuvo .panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px) clamp(32px, 4.5vw, 56px);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  box-shadow:
    0 24px 64px rgba(20, 38, 56, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.why-yuvo .copy {
  max-width: 420px;
}

.why-yuvo .eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--why-blue);
}

.why-yuvo .eyebrow sup {
  font-size: 0.55em;
  letter-spacing: 0;
  top: -0.45em;
  position: relative;
}

.why-yuvo h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.why-yuvo .blue { color: var(--why-blue-mid); }
.why-yuvo .red { color: var(--why-red); }

.why-yuvo .subtitle {
  margin: 22px 0 0;
  max-width: 380px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--why-muted);
  font-weight: 400;
}

.why-yuvo .button {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none;
  background: linear-gradient(180deg, #2f68bd, #0e4aa6);
  color: #fff;
  box-shadow: 0 12px 28px rgba(23, 70, 138, 0.22);
}

.why-yuvo .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(23, 70, 138, 0.3);
}

.why-yuvo .button i {
  font-size: 13px;
  line-height: 1;
}

.why-yuvo .button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.why-yuvo .feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  align-self: stretch;
}

.why-yuvo .feature {
  min-height: 0;
  padding: clamp(20px, 2.5vw, 28px) clamp(12px, 1.5vw, 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.why-yuvo .feature:nth-child(1),
.why-yuvo .feature:nth-child(2) {
  border-bottom: 1px solid var(--why-line);
}

.why-yuvo .feature:nth-child(1),
.why-yuvo .feature:nth-child(3) {
  border-right: 1px solid var(--why-line);
}

.why-yuvo .icon-wrap {
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--why-icon-bg);
  display: grid;
  place-items: center;
  color: var(--why-blue);
  box-shadow: none;
  font-size: 24px;
  line-height: 1;
}

.why-yuvo .icon-wrap i {
  font-size: 22px;
  line-height: 1;
  color: var(--why-blue);
}

.why-yuvo .icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.7;
}

.why-yuvo .feature h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--why-blue);
}

.why-yuvo .feature p {
  margin: 0;
  max-width: 200px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--why-muted);
}

@media (max-width: 900px) {
  .why-yuvo .panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-yuvo .copy {
    max-width: none;
    text-align: center;
  }

  .why-yuvo .subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 560px) {
  .why-yuvo {
    padding: 28px 16px;
  }

  .why-yuvo .panel {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .why-yuvo h2 {
    font-size: 32px;
  }

  .why-yuvo .feature-grid {
    grid-template-columns: 1fr;
  }

  .why-yuvo .feature {
    padding: 24px 8px;
    border-right: 0 !important;
  }

  .why-yuvo .feature:nth-child(1),
  .why-yuvo .feature:nth-child(2),
  .why-yuvo .feature:nth-child(3) {
    border-bottom: 1px solid var(--why-line);
  }

  .why-yuvo .feature:nth-child(4) {
    border-bottom: 0;
  }

  .why-yuvo .icon-wrap {
    width: 56px;
    height: 56px;
  }

  .why-yuvo .button {
    width: 100%;
  }
}

/* =========================================
   MOVE HUB SECTION — matches design screenshot
========================================= */
.move-hub-section {
  --hub-blue: #0e4fa8;
  --hub-blue-dark: #073c86;
  --hub-muted: #5b6470;
  --hub-text: #111820;

  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 72px) clamp(16px, 3vw, 40px);
  background-color: #eef3f9;
  background-image: url("../img/tim-chow-9IcKPSQ9G5Q-unsplash.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.move-hub-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(240, 244, 254, 0.62) 0%, rgba(230, 237, 249, 0.48) 100%),
    radial-gradient(circle at 88% 18%, rgba(46, 90, 166, 0.16), transparent 34%);
  pointer-events: none;
  z-index: 0;
}

/* Content sits directly on the section background — no card wrapper */
.move-hub-section .move-hub-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.move-hub-section .section-header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.move-hub-section .eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hub-blue-dark) !important;
  opacity: 1 !important;
}

.move-hub-section .eyebrow::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: var(--hub-blue);
  margin: 12px auto 0;
  opacity: 0.9;
}

.move-hub-section h2,
.move-hub-section .section-header h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: #111820 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #111820;
}

.move-hub-section .intro {
  margin: 14px auto 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--hub-muted) !important;
  opacity: 1 !important;
}

.move-hub-section .guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.move-hub-section .guide-card {
  position: relative;
  overflow: visible;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 40px rgba(20, 45, 90, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}

.move-hub-section .guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(20, 45, 90, 0.14);
}

.move-hub-section .image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: #dce4f0;
  flex: 0 0 auto;
}

.move-hub-section .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Sits on the image/body seam — outside overflow:hidden so it is not clipped */
.move-hub-section .guide-icon {
  position: absolute;
  left: 18px;
  top: 176px; /* image height 200px − half icon 24px */
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--hub-blue-dark);
  background: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0 8px 20px rgba(14, 79, 168, 0.16);
  z-index: 5;
  font-size: 18px;
  line-height: 1;
  pointer-events: none;
}

.move-hub-section .guide-icon i {
  display: block;
  font-size: 17px;
  line-height: 1;
  width: 1em;
  height: 1em;
  text-align: center;
  color: var(--hub-blue-dark);
}

.move-hub-section .card-body {
  padding: 36px 22px 22px;
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 0 0 20px 20px;
  position: relative;
  z-index: 1;
}

.move-hub-section .card-body h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #111820 !important;
  opacity: 1 !important;
}

.move-hub-section .card-body p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--hub-muted) !important;
  opacity: 1 !important;
}

.move-hub-section .time-pill {
  margin-top: auto;
  padding-top: 18px;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--hub-blue-dark) !important;
  background: #e6eef9;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  opacity: 1 !important;
}

.move-hub-section .time-pill i {
  font-size: 12px;
  color: var(--hub-blue);
}

.move-hub-section .cta-wrap {
  text-align: center;
  margin-top: 32px;
}

.move-hub-section a.button,
.move-hub-section .button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 30px !important;
  border-radius: 999px !important;
  border: 0 !important;
  background: #073c86 !important;
  background-image: linear-gradient(180deg, #0e4fa8, #073c86) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  text-decoration: none !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  box-shadow: 0 12px 28px rgba(14, 79, 168, 0.28) !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
  opacity: 1 !important;
}

.move-hub-section a.button:hover,
.move-hub-section .button:hover {
  transform: translateY(-2px);
  background: #052e68 !important;
  color: #ffffff !important;
  box-shadow: 0 16px 36px rgba(14, 79, 168, 0.36) !important;
}

.move-hub-section .button i {
  font-size: 12px;
  line-height: 1;
  color: #ffffff !important;
}

.move-hub-section .disclaimer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  margin: 22px auto 0;
  max-width: 640px;
  text-align: center;
  color: #6a727c !important;
  font-size: 12px;
  line-height: 1.5;
  opacity: 1 !important;
}

.move-hub-section .disclaimer i {
  flex: 0 0 auto;
  margin-top: 2px;
  font-size: 13px;
  color: #7a828c;
}

.move-hub-section .disclaimer span {
  display: block;
}

@media (max-width: 960px) {
  .move-hub-section .guide-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .move-hub-section .image-wrap {
    height: 200px;
  }

  .move-hub-section h2,
  .move-hub-section .section-header h2 {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .move-hub-section {
    padding: 32px 14px;
  }

  .move-hub-section .move-hub-inner {
    padding: 0;
  }

  .move-hub-section .image-wrap {
    height: 180px;
  }

  .move-hub-section .card-body {
    padding: 34px 18px 20px;
  }

  .move-hub-section .guide-icon {
    left: 16px;
    width: 44px;
    height: 44px;
    top: 158px; /* 180px image − half of 44px */
    bottom: auto;
  }

  .move-hub-section a.button,
  .move-hub-section .button {
    width: 100%;
  }

  .move-hub-section .disclaimer {
    text-align: left;
    font-size: 11.5px;
  }
}

/* =========================================
   FIRST TO KNOW SECTION — design screenshot
   Background: assets/img/be-the-first-to-know.png
========================================= */
.signup-section-wrapper {
  display: grid;
  place-items: center;
  /* equal top + bottom padding like the design */
  padding: clamp(28px, 5vw, 64px) clamp(16px, 3vw, 40px);
  background:
    radial-gradient(circle at 10% 10%, rgba(204, 222, 237, 0.45), transparent 32%),
    linear-gradient(135deg, #f6f3ec 0%, #f9faf7 45%, #eef4f9 100%);
}

.signup-section {
  width: min(1120px, 100%);
  min-height: clamp(400px, 40vw, 560px);
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(20, 38, 56, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  background-color: #1a2420;
  background-image:
    linear-gradient(
      90deg,
      rgba(18, 24, 20, 0.9) 0%,
      rgba(18, 24, 20, 0.78) 28%,
      rgba(18, 24, 20, 0.42) 48%,
      rgba(18, 24, 20, 0.12) 68%,
      rgba(18, 24, 20, 0) 100%
    ),
    url("../img/be-the-first-to-know.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.signup-content {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  padding: clamp(40px, 6vw, 72px) clamp(36px, 5vw, 72px);
  color: #ffffff;
}

/* One-line headline like the design */
.signup-content h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: #ffffff !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #ffffff;
  white-space: nowrap;
}

.signup-content .copy {
  margin: 16px 0 0;
  max-width: 400px;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  opacity: 1 !important;
}

/* Email + button side-by-side (desktop/tablet) */
.signup-content .form-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
  max-width: 100%;
}

.signup-content .email-field {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  max-width: 280px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  color: #6b7280;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.signup-content .email-field i {
  flex: 0 0 auto;
  font-size: 14px;
  color: #747d89;
  line-height: 1;
}

.signup-content .email-field svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: #747d89;
}

.signup-content .email-field .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.signup-content .email-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  color: #111820;
}

.signup-content .email-field input::placeholder {
  color: #8a93a0;
}

.signup-content .join-button {
  flex: 0 0 auto;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: #0e4fa8 !important;
  background-image: linear-gradient(180deg, #0e4fa8, #073c86) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(14, 79, 168, 0.32);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  opacity: 1 !important;
  width: auto !important;
}

.signup-content .join-button:hover {
  transform: translateY(-1px);
  background: #073c86 !important;
  box-shadow: 0 14px 32px rgba(14, 79, 168, 0.4);
}

.signup-content .join-button i {
  font-size: 11px;
  line-height: 1;
  color: #ffffff !important;
}

.signup-content .join-button svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
}

.signup-content .privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 12.5px;
  line-height: 1.4;
  opacity: 1 !important;
}

.signup-content .privacy i {
  flex: 0 0 auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.signup-content .privacy svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

/* Stack only on small phones */
@media (max-width: 640px) {
  .signup-section {
    background-position: 72% center;
    min-height: auto;
    align-items: stretch;
  }

  .signup-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(18, 24, 20, 0.42);
    z-index: 1;
    pointer-events: none;
  }

  .signup-content {
    width: 100%;
    padding: 32px 22px 36px;
  }

  .signup-content h2 {
    white-space: normal;
    font-size: 1.85rem;
  }

  .signup-content .form-row {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .signup-content .email-field {
    max-width: none;
    width: 100%;
  }

  .signup-content .join-button {
    width: 100% !important;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .signup-content h2 {
    white-space: normal;
  }

  .signup-content .email-field {
    max-width: 240px;
  }
}

/* =========================================
   FOOTER SECTION — matches design screenshot
========================================= */
.footer-wrapper {
  color: #18345d;
  background: rgba(255, 255, 255, 0.78);
}

.footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 52px) clamp(28px, 3vw, 40px);

}

.footer .grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.85fr 1.5fr;
  gap: 0;
  align-items: start;
}

.footer .brand {
  min-width: 0;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0; /* no left/right padding — logo flush left */
  box-sizing: border-box;
}

.footer a.footer-logo,
.footer .footer-logo {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  max-width: 100%;
  background: none !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0;
  text-align: left;
}

.footer a.footer-logo img,
.footer .footer-logo img {
  height: 56px;
  width: auto;
  max-width: 100%;
  display: block;
  margin: 0 !important;
}

.footer .tag {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #5a6f92;
  line-height: 1.4;
  text-align: left;
  width: 100%;
}

/* Vertical column dividers (keep borders) */
.footer .col {
  padding: 0 clamp(18px, 2.5vw, 32px);
  border-left: 1px solid #e4e9f2;
  text-align: left;
}

.footer .col.join {
  padding-right: 0;
  text-align: left;
}

.footer h4 {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0e4fa8 !important; /* pure brand blue */
  text-align: left;
}

.footer .col a {
  display: block;
  text-decoration: none;
  color: #5c6b82 !important;
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.18s ease;
  background: none !important;
  padding: 0;
  box-shadow: none !important;
  text-align: left;
}

.footer .col a:last-child {
  margin-bottom: 0;
}

.footer .col a:hover {
  color: #0e4fa8 !important; /* pure brand blue */
}

.footer .join-copy {
  margin: 0 0 16px;
  color: #5c6b82 !important;
  font-size: 14px;
  line-height: 1.55;
  max-width: 280px;
  text-align: left;
}

.footer .join-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 14px;
  max-width: 300px;
  align-items: stretch;
  text-align: left;
}

.footer .join-form .email-field {
  position: relative;
  display: flex;
  align-items: center;
  height: 48px;
  border-radius: 999px;
  border: 1px solid #d7deea;
  background: #ffffff;
  padding: 0 44px 0 18px;
  box-shadow: none;
}

.footer .join-form .email-field .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer .join-form .email-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  color: #111820;
}

.footer .join-form .email-field input::placeholder {
  color: #9aa6b8;
}

.footer .join-form .email-field i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #8a96a8;
  pointer-events: none;
}

.footer .join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: #0e4fa8 !important; /* pure brand blue — no gradient */
  background-image: none !important;
  color: #ffffff !important;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(14, 79, 168, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.footer .join-btn:hover {
  transform: translateY(-1px);
  background: #0e4fa8 !important;
  background-image: none !important;
  filter: brightness(0.94);
  box-shadow: 0 14px 30px rgba(14, 79, 168, 0.3);
}

.footer .join-btn i {
  font-size: 12px;
  line-height: 1;
  color: #ffffff !important;
}

.footer .small {
  margin: 0 0 8px;
  font-size: 12.5px;
  line-height: 1.45;
  color: #7a8799 !important;
  max-width: 280px;
  text-align: left;
}

.footer .privacy-link {
  display: inline-block !important;
  margin: 0 !important;
  font-size: 13px !important;
  font-weight: 500;
  color: #0e4fa8 !important; /* pure brand blue */
  text-decoration: underline !important;
  text-underline-offset: 2px;
  text-align: left;
}

.footer .privacy-link:hover {
  color: #0e4fa8 !important;
  filter: brightness(0.92);
}

.footer .bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid #e4e9f2;
  color: #8a96a8;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
}

@media (max-width: 960px) {
  .footer .grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 0;
  }

  .footer .brand {
    grid-column: 1 / -1;
    padding-right: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #e4e9f2;
    margin-bottom: 8px;
  }

  .footer .col {
    border-left: 0;
    padding: 0 16px 0 0;
  }

  .footer .col:nth-child(3) {
    border-left: 1px solid #e4e9f2;
    padding-left: 16px;
    padding-right: 0;
  }

  .footer .col.join {
    grid-column: 1 / -1;
    max-width: 360px;
    border-left: 0;
    padding: 16px 0 0;
    border-top: 1px solid #e4e9f2;
    margin-top: 8px;
  }

  .footer .join-form,
  .footer .join-copy,
  .footer .small {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .footer-wrapper {
    padding: 20px 14px 32px;
  }

  .footer {
    padding: 28px 20px 24px;
    border-radius: 22px;
  }

  .footer .grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer .brand {
    border-bottom: 1px solid #e4e9f2;
    margin-bottom: 0;
    padding-bottom: 20px;
  }

  .footer .col,
  .footer .col:nth-child(3),
  .footer .col.join {
    border-left: 0;
    border-top: 0;
    padding: 0;
    margin: 0;
    max-width: none;
  }

  .footer .join {
    max-width: none;
  }

  .footer .bottom {
    text-align: left;
  }
}

/* =========================================
   MOVE HUB PAGE (#page-movement)
   From Movement_page_currection design
========================================= */
#page-movement {
  --mh-navy: #10213f;
  /* Brand blue (replaces previous green accents #3d5c1d / #527928) */
  --mh-brand: var(--blue, #2E5AA6);
  --mh-brand-dark: #1d3f7a;
  --mh-sage: #eef3f9;
  --mh-muted: #5c6677;
  --mh-line: rgba(16, 33, 63, 0.10);
  --mh-card: rgba(255, 255, 255, 0.82);
  --mh-blue: #0d4ea3;
  --mh-star: #f6a919;

  padding: 0 0 40px;
  color: var(--mh-navy);
  background:
    radial-gradient(circle at 8% 6%, rgba(220, 232, 213, 0.65), transparent 30%),
    linear-gradient(135deg, #fbfaf7 0%, #fff 48%, #f6f2ea 100%);
  overflow: hidden;
  min-height: auto;
}

/* --- Hero --- */
#page-movement .mh-hero,
#page-products .mh-hero {
  min-height: 450px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.88) 34%,
      rgba(255, 255, 255, 0.2) 67%,
      rgba(255, 255, 255, 0) 100%
    ),
    url("../img/hero.jpg");
  background-size: cover;
  background-position: center right;
  /* Clear fixed header */
  padding-top: 100px;
}

#page-movement .mh-hero-inner,
#page-movement .mh-section,
#page-products .mh-hero-inner,
#page-products .mh-section {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

#page-movement .mh-hero-inner,
#page-products .mh-hero-inner {
  width: min(1120px, calc(100% - clamp(40px, 8vw, 96px)));
  padding: 66px 0;
}

#page-movement .mh-hero-copy,
#page-products .mh-hero-copy {
  max-width: 560px;
}

#page-movement .mh-eyebrow,
#page-products .mh-eyebrow {
  margin: 0 0 18px;
  color: var(--mh-brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 15px;
  font-weight: 700;
}

#page-movement .mh-eyebrow::after,
#page-products .mh-eyebrow::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  background: var(--mh-brand);
  margin-top: 10px;
  border-radius: 999px;
}

#page-movement .mh-hero h1,
#page-products .mh-hero h1 {
  margin: 0;
  font-size: 56px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--mh-navy);
}

#page-movement .mh-hero-text,
#page-products .mh-hero-text {
  margin: 24px 0 0;
  color: var(--mh-muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  font-weight: 400;
  max-width: 520px;
}

/* --- Shared section --- */
#page-movement .mh-section {
  width: min(1120px, calc(100% - clamp(40px, 8vw, 96px)));
}

#page-movement .mh-section-heading {
  text-align: center;
  margin-bottom: 30px;
}

#page-movement h2 {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

#page-movement .mh-section-heading h2 {
  margin: 0;
  font-size: 38px;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--mh-navy);
}

#page-movement .mh-section-heading p {
  margin: 10px auto 0;
  max-width: 760px;
  color: var(--mh-muted);
  font-size: 1rem;
  line-height: 1.55;
}

#page-movement .mh-line {
  width: 50px;
  height: 3px;
  background: var(--mh-brand);
  margin: 14px auto 0;
  border-radius: 999px;
}

/* --- Routines --- */
#page-movement .mh-routines {
  padding: 40px 0 0;
}

#page-movement .mh-routine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

#page-movement .mh-routine-card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--mh-line);
  background: var(--mh-card);
  box-shadow: 0 16px 42px rgba(27, 39, 50, 0.07);
  display: flex;
  flex-direction: column;
}

#page-movement .mh-routine-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}

#page-movement .mh-routine-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#page-movement .mh-time-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--mh-brand);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

#page-movement .mh-routine-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

#page-movement .mh-routine-title-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
}

#page-movement .mh-round-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mh-sage);
  color: var(--mh-brand);
  font-size: 1.15rem;
  flex-shrink: 0;
}

#page-movement .mh-routine-body h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--mh-navy);
  letter-spacing: -0.02em;
}

#page-movement .mh-routine-body > p {
  margin: 0 0 0 68px;
  color: var(--mh-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

#page-movement .mh-routine-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0 68px;
  color: var(--mh-brand);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: gap 0.18s ease, color 0.18s ease;
}

#page-movement .mh-routine-link:hover {
  color: var(--mh-brand-dark);
  gap: 12px;
}

#page-movement .mh-routine-link i {
  font-size: 0.75rem;
}

/* --- Pillars --- */
#page-movement .mh-movement {
  margin-top: 36px;
  padding: 36px 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 33, 63, 0.06);
  box-shadow: 0 16px 42px rgba(27, 39, 50, 0.055);
  box-sizing: border-box;
}

#page-movement .mh-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 26px;
}

#page-movement .mh-pillar {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--mh-line);
}

#page-movement .mh-pillar:last-child {
  border-right: 0;
}

#page-movement .mh-pillar-icon {
  font-size: 2.2rem;
  color: var(--mh-brand);
  margin-bottom: 10px;
  line-height: 1;
}

#page-movement .mh-pillar h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mh-navy);
}

#page-movement .mh-tag {
  margin-top: 6px;
  color: var(--mh-brand);
  font-size: 0.8rem;
  font-weight: 600;
}

#page-movement .mh-pillar p {
  margin: 12px 0 0;
  color: var(--mh-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* --- Product feature (side-by-side: copy left, full kit image right) --- */
#page-movement .mh-product-feature {
  margin-top: 32px;
  margin-bottom: 24px;
  border-radius: 18px;
  border: 1px solid rgba(46, 90, 166, 0.16);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(232, 239, 250, 0.85), transparent 40%),
    linear-gradient(110deg, #f7f5f0 0%, #ffffff 48%, #f4f1ea 100%);
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.2fr);
  align-items: stretch;
  min-height: 280px;
  box-sizing: border-box;
  box-shadow: 0 10px 32px rgba(27, 39, 50, 0.06);
}

#page-movement .mh-product-copy {
  padding: 32px 12px 32px 36px;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  max-width: none;
  z-index: 1;
}

#page-movement .mh-product-kicker {
  margin: 0 0 8px;
  color: var(--mh-brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

#page-movement .mh-product-copy h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--mh-navy);
  max-width: 420px;
}

#page-movement .mh-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--mh-navy);
  line-height: 1;
}

#page-movement .mh-stars {
  color: var(--mh-star);
  letter-spacing: 1px;
  font-size: 1.05rem;
  line-height: 1;
}

#page-movement .mh-product-copy > p {
  margin: 10px 0 0;
  color: var(--mh-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 340px;
}

/* Keep both CTAs on one row (desktop) */
#page-movement .mh-cta-row {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
  gap: 10px;
  margin-top: 18px;
  max-width: none;
  width: auto;
}

#page-movement .mh-btn {
  min-height: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  box-sizing: border-box;
  width: auto;
  flex: 0 0 auto;
}

#page-movement .mh-btn:hover {
  transform: translateY(-1px);
}

#page-movement .mh-btn.mh-amazon {
  color: #fff;
  background: linear-gradient(180deg, #1459b1, #0c4490);
  box-shadow: 0 8px 20px rgba(13, 78, 163, 0.22);
  border: none;
}

#page-movement .mh-btn.mh-secondary {
  color: var(--mh-navy);
  background: rgba(255, 255, 255, 0.9);
  border: 1.2px solid rgba(46, 90, 166, 0.32);
}

/* Full-fit product image in right column */
#page-movement .mh-product-image {
  position: relative;
  min-height: 280px;
  height: 100%;
  width: 100%;
  background: transparent;
  overflow: hidden;
  display: block;
  padding: 0;
  margin: 0;
}

#page-movement .mh-product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  padding: 0;
  margin: 0;
  display: block;
}

/* Responsive */
@media (max-width: 1050px) {
  #page-movement .mh-routine-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #page-movement .mh-pillar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  #page-movement .mh-pillar {
    border-right: 0;
    border-bottom: 1px solid var(--mh-line);
    padding: 24px 16px;
  }

  #page-movement .mh-pillar:nth-child(odd) {
    border-right: 1px solid var(--mh-line);
  }

  #page-movement .mh-pillar:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  #page-movement .mh-product-feature {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  #page-movement .mh-product-copy {
    padding: 28px 28px 12px;
  }

  #page-movement .mh-product-image {
    min-height: 260px;
    height: 260px;
  }

  #page-movement .mh-product-image img {
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 680px) {
  #page-movement .mh-hero,
  #page-products .mh-hero {
    min-height: 480px;
    background-position: 60% center;
    padding-top: 90px;
  }

  #page-movement .mh-hero-inner,
  #page-movement .mh-section,
  #page-products .mh-hero-inner,
  #page-products .mh-section {
    width: min(100% - 32px, 1120px);
  }

  #page-movement .mh-routine-grid,
  #page-movement .mh-pillar-grid,
  #page-movement .mh-cta-row {
    grid-template-columns: 1fr;
  }

  #page-movement .mh-routine-image {
    height: 200px;
  }

  #page-movement .mh-routine-body > p,
  #page-movement .mh-routine-link {
    margin-left: 0;
  }

  #page-movement .mh-movement {
    padding: 26px 18px;
  }

  #page-movement .mh-pillar {
    border-right: 0 !important;
    border-bottom: 1px solid var(--mh-line);
    padding: 22px 8px;
  }

  #page-movement .mh-pillar:last-child {
    border-bottom: 0;
  }

  #page-movement .mh-product-copy {
    padding: 24px 20px 8px;
    max-width: none;
  }

  #page-movement .mh-product-copy h2 {
    font-size: 32px;
  }

  #page-movement h2,
  #page-movement .mh-section-heading h2 {
    font-size: 32px;
  }

  #page-movement .mh-cta-row {
    grid-template-columns: 1fr;
  }

  #page-movement .mh-btn {
    width: 100%;
  }

  #page-movement .mh-product-image {
    min-height: 220px;
    height: 220px;
  }
}

