/*
 * Movers4You site overrides on top of the Webflow export.
 *
 * Kept intentionally minimal so a future Webflow re-import requires
 * minimal patching. Add new rules here rather than editing
 * movers4yous-trendy-site.webflow.css directly.
 */

/* The Webflow template's header is `background:#0000` (transparent) with white
   nav link text — designed to overlay a dark hero. Our site has a white body
   background and light-themed heroes on most pages, so the white nav text
   becomes invisible. Paint the header in brand navy so the menu is always
   readable, regardless of hero variant. */
.header-wrapper {
  background-color: var(--accent--primary-1);
}

/* Show header social icons at tablet sizes too (template hides them with
   .hidden-on-tablet at <=991px). Still hidden on very narrow mobile (<480px)
   so the logo + hamburger have room to breathe. */
@media (max-width: 991px) {
  .header-wrapper .social-media-flex-top.hidden-on-tablet {
    display: flex;
    gap: 10px;
  }
}
@media (max-width: 479px) {
  .header-wrapper .social-media-flex-top.hidden-on-tablet {
    display: none;
  }
}

/* Accordion toggle behavior for pages that use .accordion-item-wrapper
   outside of contact.html / packages.html (which already have working IX2
   interactions baked in). Pairs with /js/accordion-toggle.js, which adds
   .is-open to the wrapper on click. */
.accordion-item-wrapper { cursor: pointer; }
.accordion-item-wrapper .acordion-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .35s ease, opacity .25s ease;
}
.accordion-item-wrapper.is-open .acordion-body {
  max-height: 600px;
  opacity: 1;
}
.accordion-item-wrapper .accordion-btn-line.vertical {
  transition: transform .25s ease;
}
.accordion-item-wrapper.is-open .accordion-btn-line.vertical {
  transform: rotate(0deg);
}

/* ------------------------------------------------------------
   Google-reviews badge: two styles for evaluation on office page.
   Inline icon (.m4y-reviews-link + .m4y-google-g) for body prose.
   Pill badge (.m4y-google-pill) for proof callouts / hero areas.
   Both link to /reviews/ (the internal reviews page) by default.
   ------------------------------------------------------------ */
.m4y-google-g {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: 6px;
  flex-shrink: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%234285F4" d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"/><path fill="%2334A853" d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.99.66-2.26 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"/><path fill="%23FBBC05" d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z"/><path fill="%23EA4335" d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.m4y-reviews-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
  transition: color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.m4y-reviews-link:hover {
  color: var(--secondary--color-1);
  border-bottom-color: var(--secondary--color-1);
}

.m4y-google-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid rgba(8, 14, 36, .12);
  border-radius: 9999px;
  color: var(--accent--primary-1);
  font-weight: 600;
  text-decoration: none;
  font-size: .9em;
  line-height: 1.4;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(8, 14, 36, .06);
  transition: box-shadow .15s ease, transform .15s ease;
}
.m4y-google-pill:hover {
  box-shadow: 0 6px 16px rgba(8, 14, 36, .12);
  transform: translateY(-1px);
  color: var(--accent--primary-1);
}

/* ------------------------------------------------------------
   "Why Movers4You" stat-card grid. Big number / icon anchors,
   gradient top border on hover, subtle lift.
   ------------------------------------------------------------ */
.m4y-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media (min-width: 992px) {
  .m4y-why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 540px) {
  .m4y-why-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.m4y-why-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px;
  background: #fff;
  border: 1px solid rgba(8, 14, 36, .08);
  border-radius: 20px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
.m4y-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent--primary-1), var(--secondary--color-1));
  opacity: 0;
  transition: opacity .2s ease;
}
.m4y-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(8, 14, 36, .08);
  border-color: rgba(118, 181, 255, .35);
}
.m4y-why-card:hover::before {
  opacity: 1;
}

.m4y-why-anchor {
  display: flex;
  align-items: flex-end;
  min-height: 64px;
  margin-bottom: 8px;
}
.m4y-why-stat {
  font-size: 4rem;
  line-height: .9;
  font-weight: 800;
  color: var(--accent--primary-1);
  letter-spacing: -2px;
}
.m4y-why-stat-suffix,
.m4y-why-stat-prefix {
  color: var(--secondary--color-1);
  font-weight: 800;
}
.m4y-why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--secondary--color-1);
  color: var(--accent--primary-1);
  border-radius: 14px;
}
.m4y-why-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

.m4y-why-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent--primary-1);
  margin: 0 0 10px;
  line-height: 1.3;
}
.m4y-why-body {
  font-size: .92rem;
  color: var(--neutral--600);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

/* ------------------------------------------------------------
   Comparison-page table: semantic <table> with light-blue header,
   navy bold accents, hover row tint. Collapses to a per-row card
   stack at <768px so the matrix stays scannable without h-scroll.
   Each <td> needs a data-label="..." for the mobile fallback.
   ------------------------------------------------------------ */
.m4y-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: .95rem;
  table-layout: fixed;
}
.m4y-compare-table th,
.m4y-compare-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(8, 14, 36, .08);
  vertical-align: top;
}
.m4y-compare-table thead th {
  background: var(--accent--primary-1);
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.m4y-compare-table thead th:first-child {
  background: rgba(8, 14, 36, .85);
}
.m4y-compare-table tbody th[scope="row"] {
  background: rgba(118, 181, 255, .08);
  font-weight: 700;
  color: var(--accent--primary-1);
  font-size: .9rem;
}
.m4y-compare-table tbody tr:hover { background: rgba(118, 181, 255, .04); }
.m4y-compare-table .m4y-compare-us { font-weight: 600; color: var(--accent--primary-1); }
.m4y-compare-table .m4y-compare-them { color: #1a1a1a; }
@media (max-width: 767px) {
  .m4y-compare-table thead { display: none; }
  .m4y-compare-table,
  .m4y-compare-table tbody,
  .m4y-compare-table tr,
  .m4y-compare-table th,
  .m4y-compare-table td { display: block; width: 100%; }
  .m4y-compare-table tr {
    border: 1px solid rgba(8, 14, 36, .08);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 14px;
    background: #fff;
  }
  .m4y-compare-table th[scope="row"] {
    background: transparent;
    padding: 0 0 6px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(8, 14, 36, .08);
    margin-bottom: 8px;
  }
  .m4y-compare-table td {
    padding: 6px 0;
    border-bottom: none;
  }
  .m4y-compare-table td::before {
    content: attr(data-label) ":";
    display: block;
    font-weight: 700;
    color: var(--accent--primary-1);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 2px;
  }
}

/* ------------------------------------------------------------
   Shared CTA row: yellow primary "Get a quote" button paired with
   a pill-shaped "Call us" button (circular phone glyph + 2-line
   label). Two themes:
     .on-dark  — for navy CTA cards & dark hero backgrounds
     .on-light — for white/light sections (hub CTAs)
   On screens <480px the row wraps so the call pill drops below.
   ------------------------------------------------------------ */
.m4y-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}
.m4y-cta-row.is-centered { justify-content: center; }
@media (min-width: 480px) {
  .m4y-cta-row { flex-wrap: nowrap; gap: 18px 28px; }
}

.m4y-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 22px 8px 8px;
  text-decoration: none;
  line-height: 1;
  border-radius: 999px;
  border: 1.5px solid;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.m4y-cta-call:hover { transform: translateY(-1px); }
.m4y-cta-call .m4y-cta-call-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background .15s ease, color .15s ease;
}
.m4y-cta-call .m4y-cta-call-icon svg { width: 18px; height: 18px; }
.m4y-cta-call .m4y-cta-call-label {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
}
.m4y-cta-call .m4y-cta-call-label small {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.m4y-cta-call .m4y-cta-call-number {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -.2px;
}

/* on-dark — pill on navy backgrounds (CTA cards, dark heroes). */
.m4y-cta-row.on-dark .m4y-cta-call {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .55);
}
.m4y-cta-row.on-dark .m4y-cta-call:hover {
  background: rgba(255, 255, 255, .16);
  border-color: #fff;
  color: #fff;
}
.m4y-cta-row.on-dark .m4y-cta-call .m4y-cta-call-icon {
  background: var(--secondary--color-1);
  color: var(--accent--primary-1);
}
.m4y-cta-row.on-dark .m4y-cta-call:hover .m4y-cta-call-icon { background: #fff; }
.m4y-cta-row.on-dark .m4y-cta-call .m4y-cta-call-label small { color: rgba(255, 255, 255, .75); }
.m4y-cta-row.on-dark .m4y-cta-call .m4y-cta-call-number { color: #fff; }

/* on-light — pill on white/light backgrounds. Navy outline, navy badge. */
.m4y-cta-row.on-light .m4y-cta-call {
  color: var(--accent--primary-1);
  background: rgba(8, 14, 36, .02);
  border-color: rgba(8, 14, 36, .18);
}
.m4y-cta-row.on-light .m4y-cta-call:hover {
  background: rgba(8, 14, 36, .04);
  border-color: var(--accent--primary-1);
  color: var(--accent--primary-1);
}
.m4y-cta-row.on-light .m4y-cta-call .m4y-cta-call-icon {
  background: var(--accent--primary-1);
  color: #fff;
}
.m4y-cta-row.on-light .m4y-cta-call:hover .m4y-cta-call-icon { background: var(--secondary--color-1); color: var(--accent--primary-1); }
.m4y-cta-row.on-light .m4y-cta-call .m4y-cta-call-label small { color: rgba(8, 14, 36, .55); }
.m4y-cta-row.on-light .m4y-cta-call .m4y-cta-call-number { color: var(--accent--primary-1); }

@media (max-width: 479px) {
  .m4y-cta-row { gap: 12px; }
  .m4y-cta-call { padding: 6px 18px 6px 6px; }
  .m4y-cta-call .m4y-cta-call-icon { width: 36px; height: 36px; }
  .m4y-cta-call .m4y-cta-call-label small { font-size: .65rem; }
  .m4y-cta-call .m4y-cta-call-number { font-size: 1rem; }
}

/* ------------------------------------------------------------
   "How it works" senior-friendly numbered timeline.
   Large numbered badges, generous spacing, big body text,
   high-contrast colors. Designed so an 80-year-old can read it
   on a tablet without leaning in.
   ------------------------------------------------------------ */
.m4y-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .m4y-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

.m4y-step {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(8, 14, 36, .08);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.m4y-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(8, 14, 36, .08);
  border-color: rgba(118, 181, 255, .4);
}

.m4y-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--accent--primary-1);
  background: linear-gradient(135deg, rgba(118, 181, 255, .22), rgba(118, 181, 255, .06));
  border-right: 1px solid rgba(8, 14, 36, .06);
}

.m4y-step-body {
  padding: 24px 26px;
}

.m4y-step-meta {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--secondary--color-1);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.m4y-step-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent--primary-1);
  margin: 0 0 12px;
  line-height: 1.2;
}

.m4y-step-body p,
.m4y-step-body li {
  font-size: 1.18rem;
  line-height: 1.65;
  color: #1a1a1a;
  margin: 0 0 8px;
}
.m4y-step-body p:last-child,
.m4y-step-body li:last-child {
  margin-bottom: 0;
}

.m4y-step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.m4y-step-list li {
  position: relative;
  padding-left: 28px;
}
.m4y-step-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2376B5FF" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.m4y-step.optional {
  background: rgba(118, 181, 255, .06);
  border-style: dashed;
}
.m4y-step.optional .m4y-step-num {
  font-size: 1.6rem;
  letter-spacing: 0;
  background: linear-gradient(135deg, rgba(118, 181, 255, .14), rgba(118, 181, 255, .04));
}

@media (max-width: 640px) {
  .m4y-step {
    grid-template-columns: minmax(0, 1fr);
  }
  .m4y-step-num {
    height: 72px;
    font-size: 2.2rem;
    border-right: none;
    border-bottom: 1px solid rgba(8, 14, 36, .06);
  }
  .m4y-step-body {
    padding: 22px 22px 24px;
  }
  .m4y-step-title {
    font-size: 1.35rem;
  }
  .m4y-step-body p,
  .m4y-step-body li {
    font-size: 1.08rem;
  }
}

/* ------------------------------------------------------------
   Scroll reveal — pairs with /js/scroll-reveal.js
   Only applies when JS is enabled (.w-mod-js set by Webflow's inline
   bootstrap script in <head>), so no-JS visitors see everything.
   Add .m4y-reveal to any element you want to fade + slide in.
   Add .m4y-reveal-stagger to a parent to stagger its .m4y-reveal kids.
   ------------------------------------------------------------ */
.w-mod-js .m4y-reveal {
  opacity: 0;
  transform: translate3d(0, 48px, 0) scale3d(.96, .96, 1);
  transition: opacity .7s cubic-bezier(.2, .8, .25, 1), transform .7s cubic-bezier(.2, .8, .25, 1);
  will-change: opacity, transform;
}
.w-mod-js .m4y-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}
.w-mod-js .m4y-reveal-stagger > .m4y-reveal:nth-child(2)  { transition-delay: .08s; }
.w-mod-js .m4y-reveal-stagger > .m4y-reveal:nth-child(3)  { transition-delay: .16s; }
.w-mod-js .m4y-reveal-stagger > .m4y-reveal:nth-child(4)  { transition-delay: .24s; }
.w-mod-js .m4y-reveal-stagger > .m4y-reveal:nth-child(5)  { transition-delay: .32s; }
.w-mod-js .m4y-reveal-stagger > .m4y-reveal:nth-child(6)  { transition-delay: .40s; }
.w-mod-js .m4y-reveal-stagger > .m4y-reveal:nth-child(7)  { transition-delay: .48s; }
.w-mod-js .m4y-reveal-stagger > .m4y-reveal:nth-child(8)  { transition-delay: .56s; }

@media (prefers-reduced-motion: reduce) {
  .w-mod-js .m4y-reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Packages page (/packages/) — scoped .m4y-pkg-*, .m4y-senior-credit-*,
   .m4y-promo-eval-*. The pricing cards reuse Webflow's .card.plan
   classes; this block adds the badge, tag chip, percent typography,
   exception note, senior credit panel, and reactive evaluator.
   ============================================================ */

/* 3-card pricing grid — same 6-col centering trick as compare hub */
.m4y-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  grid-auto-rows: 1fr;
  max-width: 1180px;
  margin: 0 auto;
}
.m4y-pkg-grid > .card.plan { height: 100%; position: relative; }

@media (max-width: 991px) {
  .m4y-pkg-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
}

/* Tag chip above the package title */
.m4y-pkg-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent--primary-1);
  background: var(--secondary--color-1);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.m4y-pkg-tag.on-dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

/* "Most booked" badge on popular card */
.m4y-pkg-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #ffd24c;
  color: #1a1a1a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

/* Percentage typography for the price slot */
.m4y-pkg-percent {
  font-weight: 700;
  letter-spacing: -0.01em;
}
.m4y-pkg-percent-unit {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  opacity: 0.7;
  margin-top: 4px;
}

/* Bullet list reset (we're using <ul> instead of Webflow's <div>s) */
.m4y-pkg-list { list-style: none; padding: 0; margin: 0; }

/* Exception / eligibility note */
.m4y-pkg-exception {
  font-size: 0.9rem;
  line-height: 1.45;
  background: rgba(118, 181, 255, 0.08);
  border-left: 3px solid var(--secondary--color-1);
  padding: 12px 14px;
  border-radius: 6px;
  margin-bottom: 24px;
  color: #1a1a1a;
}
.m4y-pkg-exception.on-dark {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: #ffd24c;
  color: #fff;
}
.m4y-pkg-exception strong { color: inherit; }

/* ---------- Senior Downsizing Credit full-width navy block ---------- */
.m4y-senior-credit {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--accent--primary-1);
  border-radius: 24px;
  padding: 56px 56px;
  overflow: hidden;
  color: #fff;
}
.m4y-senior-credit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 210, 76, 0.14), transparent 55%);
  pointer-events: none;
}
.m4y-senior-credit > * { position: relative; z-index: 1; }
.m4y-senior-credit-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffd24c;
  margin-bottom: 14px;
}
.m4y-senior-credit h2 { margin: 0 0 18px; }
.m4y-senior-credit-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 28px;
}
.m4y-senior-credit-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
}
.m4y-senior-credit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: #ffd24c;
  border-radius: 50%;
}
.m4y-senior-credit-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.m4y-senior-credit-cta .btn-primary { width: auto; padding-left: 28px; padding-right: 28px; }
.m4y-senior-credit-cta .m4y-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}
.m4y-senior-credit-cta .m4y-cta-call:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-1px); }
.m4y-senior-credit-cta .m4y-cta-call-icon {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 210, 76, 0.18);
  border-radius: 50%;
  color: #ffd24c;
}
.m4y-senior-credit-cta .m4y-cta-call-icon svg { width: 16px; height: 16px; }
.m4y-senior-credit-cta .m4y-cta-call-label { display: flex; flex-direction: column; line-height: 1.1; }
.m4y-senior-credit-cta .m4y-cta-call-label small { font-size: 0.7rem; color: rgba(255, 255, 255, 0.7); letter-spacing: 0.02em; }
.m4y-senior-credit-cta .m4y-cta-call-number { font-weight: 700; font-size: 1rem; }

.m4y-senior-credit-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.m4y-senior-credit-percent {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255, 210, 76, 0.14);
  border: 2px dashed rgba(255, 210, 76, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.m4y-senior-credit-percent-num {
  font-size: 4.5rem;
  font-weight: 800;
  color: #ffd24c;
  line-height: 1;
}
.m4y-senior-credit-percent-label {
  margin-top: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
}

@media (max-width: 991px) {
  .m4y-senior-credit { grid-template-columns: 1fr; padding: 40px 32px; }
  .m4y-senior-credit-right { order: -1; }
  .m4y-senior-credit-percent { width: 180px; height: 180px; }
  .m4y-senior-credit-percent-num { font-size: 3.6rem; }
}

/* ---------- Live promo evaluator ---------- */
.m4y-promo-eval {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(8, 14, 36, 0.08);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(8, 14, 36, 0.06);
}
.m4y-promo-eval-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 20px;
  margin-bottom: 28px;
}
.m4y-promo-eval-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.m4y-promo-eval-field label,
.m4y-promo-eval-field legend {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent--primary-1);
  letter-spacing: 0.01em;
  padding: 0;
  margin: 0;
}
.m4y-promo-eval-field input[type="date"],
.m4y-promo-eval-field select {
  font: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid rgba(8, 14, 36, 0.14);
  border-radius: 10px;
  background: #fff;
  color: #1a1a1a;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.m4y-promo-eval-field input[type="date"]:focus,
.m4y-promo-eval-field select:focus {
  outline: none;
  border-color: var(--secondary--color-1);
  box-shadow: 0 0 0 3px rgba(118, 181, 255, 0.18);
}
.m4y-promo-eval-checks {
  border: 1px solid rgba(8, 14, 36, 0.14);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.m4y-promo-eval-checks legend { padding: 0 6px; margin-left: -6px; }
.m4y-promo-eval-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #1a1a1a;
  cursor: pointer;
}
.m4y-promo-eval-check input { accent-color: var(--accent--primary-1); width: 16px; height: 16px; }

.m4y-promo-eval-result {
  display: block;
  background: linear-gradient(180deg, rgba(118, 181, 255, 0.08), rgba(118, 181, 255, 0.02));
  border: 1px solid rgba(118, 181, 255, 0.18);
  border-radius: 14px;
  padding: 24px;
  min-height: 120px;
}
.m4y-promo-eval-result-empty {
  color: #555c70;
  font-size: 0.95rem;
  text-align: center;
  padding: 28px 0;
}
.m4y-promo-eval-summary-meta {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent--primary-1);
  margin-bottom: 6px;
}
.m4y-promo-eval-flag {
  display: inline-block;
  background: rgba(255, 100, 100, 0.14);
  color: #b32525;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
}
.m4y-promo-eval-summary-headline {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0d1430;
  margin-bottom: 16px;
}
.m4y-promo-eval-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  gap: 10px;
}
.m4y-promo-eval-list li {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(8, 14, 36, 0.08);
  border-radius: 10px;
  padding: 12px 16px;
}
.m4y-promo-eval-list-percent {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent--primary-1);
}
.m4y-promo-eval-list-name { color: #1a1a1a; font-weight: 600; }
.m4y-promo-eval-list-target {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
}
.m4y-promo-eval-warnings {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.m4y-promo-eval-warnings li {
  font-size: 0.9rem;
  color: #8a4a00;
  background: rgba(255, 210, 76, 0.18);
  border-left: 3px solid #ffd24c;
  padding: 10px 12px;
  border-radius: 6px;
}

@media (max-width: 767px) {
  .m4y-promo-eval { padding: 22px; }
  .m4y-promo-eval-grid { grid-template-columns: 1fr; gap: 16px; }
  .m4y-promo-eval-list li { grid-template-columns: 50px 1fr; }
  .m4y-promo-eval-list-target { grid-column: 1 / -1; }
}

/* Hidden machine-scannable AI answer block — visually off-screen
   but available to assistive tech + crawlers + LLM ingest */
.m4y-pkg-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;
}

/* ============================================================
   Promo chips — surfaced above any lead form when the user
   arrived via /packages/. Rendered by /js/promo-intent.js.
   Used on /get-a-quote/ (.m4y-promo-chips) and inside the quote
   popup (.m4y-promo-chips-popup variant for tighter spacing).
   ============================================================ */
.m4y-promo-chips {
  background: linear-gradient(180deg, rgba(255, 210, 76, 0.16), rgba(255, 210, 76, 0.06));
  border: 1px solid rgba(255, 210, 76, 0.5);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 0 0 22px;
}
.m4y-promo-chips[hidden] { display: none; }
.m4y-promo-chips-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a4a00;
  margin-bottom: 8px;
}
.m4y-promo-chips-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.m4y-promo-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(8, 14, 36, 0.10);
  border-radius: 999px;
  padding: 5px 8px 5px 5px;
  box-shadow: 0 2px 4px rgba(8, 14, 36, 0.04);
}
.m4y-promo-chip-pct {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  padding: 0 8px;
  background: var(--accent--primary-1);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: -0.01em;
}
.m4y-promo-chip-label {
  font-size: 0.9rem;
  color: #1a1a1a;
  font-weight: 600;
  padding-right: 2px;
}
.m4y-promo-chip-remove {
  width: 22px;
  height: 22px;
  border: none;
  background: rgba(8, 14, 36, 0.06);
  color: #555c70;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.15s ease, color 0.15s ease;
}
.m4y-promo-chip-remove:hover {
  background: rgba(8, 14, 36, 0.14);
  color: #080e24;
}

/* Tighter spacing inside the modal popup */
.m4y-promo-chips-popup {
  margin-top: -8px;
  margin-bottom: 18px;
  padding: 10px 14px;
}
.m4y-promo-chips-popup .m4y-promo-chips-label { margin-bottom: 6px; }

/* ============================================================
   /business/ — B2B landing page using the MoversX template's
   single-package (/product/[slug]) structure: 2-col hero grid
   with content on the left and a navy .card-add-to-cart on the
   right, tabbed details below, then a 3-col text+icon "why
   choose us" grid (no boxes). The hero uses the template's own
   classes (.grid-2-columns.product-page, .card-add-to-cart,
   .card-add-to-cart-wrapper, .position-absolute.product-page-bg,
   .single-package-hero) which are already defined in
   movers4yous-trendy-site.webflow.css. The rules below only
   cover the form fields INSIDE the navy card + the tabs + the
   3-col why-choose-us grid below the hero.
   ============================================================ */

.m4y-b2b-card-form {
  display: grid;
  gap: 18px;
  text-align: left;
}
.m4y-b2b-card-field { display: flex; flex-direction: column; gap: 6px; }
.m4y-b2b-card-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.m4y-b2b-card-readout {
  font-weight: 800;
  color: var(--secondary--color-1);
  letter-spacing: -0.01em;
}
.m4y-b2b-card-field select {
  font: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid rgba(8, 14, 36, 0.14);
  border-radius: 10px;
  background: #fff;
  color: #1a1a1a;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.m4y-b2b-card-field select:focus {
  outline: none;
  border-color: var(--secondary--color-1);
  box-shadow: 0 0 0 3px rgba(118, 181, 255, 0.18);
}
/* The slider lives inside the navy .card-add-to-cart; unfilled portion
   uses translucent white so it stays visible against the dark background. */
.m4y-b2b-card-field input[type="range"] {
  -webkit-appearance: none;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  outline: none;
  width: 100%;
}
.m4y-b2b-card-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent--primary-1);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(8, 14, 36, 0.25);
  cursor: pointer;
}
.m4y-b2b-card-field input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent--primary-1);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(8, 14, 36, 0.25);
  cursor: pointer;
}
.m4y-b2b-card-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0 2px;
}

/* Tabbed details (About / What's included / Terms & conditions) */
.m4y-b2b-tabs {
  max-width: 880px;
  margin: 0 auto;
}
.m4y-b2b-tabs-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  border-bottom: 1px solid rgba(8, 14, 36, 0.10);
  margin-bottom: 28px;
}
.m4y-b2b-tab {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #5a5e75;
  padding: 14px 22px;
  cursor: pointer;
  position: relative;
  transition: color 0.15s ease;
  border-radius: 8px 8px 0 0;
}
.m4y-b2b-tab:hover { color: var(--accent--primary-1); }
.m4y-b2b-tab:focus-visible {
  outline: 2px solid var(--secondary--color-1);
  outline-offset: 2px;
}
.m4y-b2b-tab.is-active {
  color: var(--accent--primary-1);
}
.m4y-b2b-tab.is-active::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -1px;
  height: 3px;
  background: var(--accent--primary-1);
  border-radius: 3px 3px 0 0;
}
.m4y-b2b-tab-pane {
  font-size: 1rem;
  line-height: 1.65;
  color: #1a1f3a;
}
.m4y-b2b-tab-pane p { margin: 0 0 14px; }
.m4y-b2b-tab-pane p:last-child { margin-bottom: 0; }
.m4y-b2b-tab-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.m4y-b2b-tab-list li {
  position: relative;
  padding-left: 20px;
  color: #1a1f3a;
}
.m4y-b2b-tab-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 8px;
  background: var(--secondary--color-1);
  border-radius: 50%;
}

@media (max-width: 640px) {
  .m4y-b2b-tabs-menu { gap: 0; }
  .m4y-b2b-tab { padding: 12px 14px; font-size: 0.92rem; flex: 1 1 auto; text-align: center; }
}

/* Why-choose-us cards — text + icon only, no boxes (mirrors moversx
   template's borderless treatment). Three equal columns; content is
   center-aligned within each column. */
.m4y-b2b-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1120px;
  margin: 0 auto;
}
.m4y-b2b-value-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  text-align: center;
}
.m4y-b2b-value-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--secondary--color-1);
  color: var(--accent--primary-1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.m4y-b2b-value-icon svg { width: 32px; height: 32px; }
.m4y-b2b-value-card h3 {
  font-size: 1.25rem;
  margin: 0 0 10px;
  color: #0d1430;
}
.m4y-b2b-value-card p {
  margin: 0;
  color: #5a5e75;
  font-size: 0.98rem;
  line-height: 1.55;
}

@media (max-width: 991px) {
  .m4y-b2b-value-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   /agents/ — Real Estate Partner VIP Portal. Scoped .m4y-agent-*.
   Hero CTA row, trust strip pills, 4-card benefit grid with big
   numbered eyebrow, navy intake panel (2-col on desktop), navy
   closing CTA card. Form fields reuse the site's existing
   .input / .w-input Webflow classes so cms-lead-capture picks up.
   ============================================================ */

/* Hero CTA row — primary + secondary side by side, mobile-stacks */
.m4y-agent-hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.m4y-agent-hero-ctas .btn-primary,
.m4y-agent-hero-ctas .btn-secondary {
  width: auto;
  padding-left: 26px;
  padding-right: 26px;
}

/* Trust strip — 5 "proof pills" under the hero */
.m4y-agent-trust-strip {
  list-style: none;
  padding: 22px 28px;
  margin: 56px auto 0;
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px 28px;
  background: rgba(118, 181, 255, 0.06);
  border: 1px solid rgba(118, 181, 255, 0.22);
  border-radius: 14px;
}
.m4y-agent-trust-strip li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  color: #5a5e75;
  font-size: 0.85rem;
}
.m4y-agent-trust-strip li strong {
  font-size: 1.05rem;
  color: var(--accent--primary-1);
  font-weight: 700;
}

@media (max-width: 767px) {
  .m4y-agent-trust-strip { grid-template-columns: repeat(2, 1fr); }
}

/* Benefit cards — 2x2 desktop, single-col mobile, with big numbered eyebrow */
.m4y-agent-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}
.m4y-agent-benefit-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(8, 14, 36, 0.08);
  border-radius: 18px;
  padding: 36px 36px 32px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.m4y-agent-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(8, 14, 36, 0.08);
  border-color: rgba(118, 181, 255, 0.4);
}
.m4y-agent-benefit-num {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--secondary--color-1);
  margin-bottom: 14px;
}
.m4y-agent-benefit-card h3 {
  font-size: 1.4rem;
  margin: 0 0 12px;
  color: #0d1430;
  line-height: 1.25;
}
.m4y-agent-benefit-card p {
  margin: 0;
  color: #4a5063;
  font-size: 1rem;
  line-height: 1.6;
}
.m4y-agent-benefit-card p strong { color: #0d1430; }

@media (max-width: 767px) {
  .m4y-agent-benefit-grid { grid-template-columns: 1fr; }
  .m4y-agent-benefit-card { padding: 28px 24px; }
}

/* Intake — navy 2-col panel: copy left, white form card right */
.m4y-agent-intake {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  background: var(--accent--primary-1);
  border-radius: 24px;
  padding: 64px 64px;
  position: relative;
  overflow: hidden;
}
.m4y-agent-intake::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 210, 76, 0.10), transparent 55%);
  pointer-events: none;
}
.m4y-agent-intake > * { position: relative; z-index: 1; }
.m4y-agent-intake-copy h2 { margin: 12px 0 18px; }
.m4y-agent-intake-copy > p { color: rgba(255, 255, 255, 0.85); margin-bottom: 22px; }
.m4y-agent-intake-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.m4y-agent-intake-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.5;
}
.m4y-agent-intake-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: #ffd24c;
  border-radius: 50%;
}

.m4y-agent-form-panel {
  background: #fff;
  border-radius: 18px;
  padding: 36px;
}
.m4y-agent-form-panel .grid-1-column { gap: 18px; }
.m4y-agent-form-panel label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent--primary-1);
  display: block;
  margin-bottom: 6px;
}
.m4y-agent-form-panel .form-btn---arrow---wrapper { margin-top: 8px; }

@media (max-width: 991px) {
  .m4y-agent-intake { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; }
  .m4y-agent-form-panel { padding: 28px; }
}

/* Closing CTA — navy card with primary CTA + call pill */
.m4y-agent-closing-cta {
  background: var(--accent--primary-1);
  border-radius: 24px;
  padding: 56px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.m4y-agent-closing-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 210, 76, 0.12), transparent 55%);
  pointer-events: none;
}
.m4y-agent-closing-cta > * { position: relative; z-index: 1; }
.m4y-agent-closing-cta p { max-width: 640px; margin-left: auto; margin-right: auto; }
.m4y-agent-closing-ctas {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.m4y-agent-closing-ctas .btn-primary { width: auto; padding-left: 28px; padding-right: 28px; }
.m4y-agent-closing-ctas .m4y-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}
.m4y-agent-closing-ctas .m4y-cta-call:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-1px); }
.m4y-agent-closing-ctas .m4y-cta-call-icon {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 210, 76, 0.18);
  border-radius: 50%;
  color: #ffd24c;
}
.m4y-agent-closing-ctas .m4y-cta-call-icon svg { width: 16px; height: 16px; }
.m4y-agent-closing-ctas .m4y-cta-call-label { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.m4y-agent-closing-ctas .m4y-cta-call-label small { font-size: 0.7rem; color: rgba(255, 255, 255, 0.7); letter-spacing: 0.02em; }
.m4y-agent-closing-ctas .m4y-cta-call-number { font-weight: 700; font-size: 1rem; color: #fff; }

@media (max-width: 640px) {
  .m4y-agent-closing-cta { padding: 40px 28px; }
}

/* ============================================================
   /moving-supplies-store/ + /box-shop/* — e-commerce supply pages.
   Scoped under .m4y-shop-*. Hub category cards, product grid with
   add-to-cart steppers, floating cart trigger + slide-in drawer
   with $50 free-delivery threshold progress bar.
   Cart state lives in /js/shop-cart.js (localStorage).
   ============================================================ */

/* Hub: 3-card category grid (kits / boxes / essentials) */
.m4y-shop-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.m4y-shop-cat-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(8, 14, 36, 0.08);
  border-radius: 18px;
  padding: 36px 32px 32px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.m4y-shop-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(8, 14, 36, 0.10);
  border-color: rgba(118, 181, 255, 0.45);
}
.m4y-shop-cat-card.is-featured {
  background: linear-gradient(180deg, rgba(255, 210, 76, 0.10), rgba(255, 210, 76, 0.04));
  border-color: rgba(255, 210, 76, 0.5);
}
.m4y-shop-cat-card-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a4a00;
  background: #ffd24c;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.m4y-shop-cat-card-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--secondary--color-1);
  color: var(--accent--primary-1);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.m4y-shop-cat-card-icon svg { width: 32px; height: 32px; }
.m4y-shop-cat-card h3 {
  font-size: 1.4rem;
  margin: 0 0 10px;
  color: #0d1430;
}
.m4y-shop-cat-card p {
  color: #4a5063;
  margin: 0 0 22px;
  line-height: 1.55;
  flex-grow: 1;
}
.m4y-shop-cat-card-cta {
  font-weight: 600;
  color: var(--accent--primary-1);
}
@media (max-width: 991px) { .m4y-shop-cat-grid { grid-template-columns: 1fr; } }

/* Cross-sell banner — "Let us do the packing" */
.m4y-shop-cross-sell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  background: var(--accent--primary-1);
  border-radius: 24px;
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
}
.m4y-shop-cross-sell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 210, 76, 0.12), transparent 55%);
  pointer-events: none;
}
.m4y-shop-cross-sell > * { position: relative; z-index: 1; }
.m4y-shop-cross-sell h2 { color: #fff; margin: 0 0 8px; }
.m4y-shop-cross-sell p { color: rgba(255, 255, 255, 0.85); margin: 0; max-width: 640px; }
.m4y-shop-cross-sell .btn-primary { width: auto; padding-left: 28px; padding-right: 28px; }
@media (max-width: 767px) {
  .m4y-shop-cross-sell { grid-template-columns: 1fr; padding: 32px; }
}

/* Product grid (kits / boxes / essentials category pages) */
.m4y-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.m4y-shop-grid.is-kits { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 991px) {
  .m4y-shop-grid, .m4y-shop-grid.is-kits { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .m4y-shop-grid, .m4y-shop-grid.is-kits { grid-template-columns: 1fr; }
}

/* Product card */
.m4y-shop-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(8, 14, 36, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.m4y-shop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(8, 14, 36, 0.08);
  border-color: rgba(118, 181, 255, 0.4);
}
.m4y-shop-card-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--secondary--color-1), rgba(118, 181, 255, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--accent--primary-1);
}
.m4y-shop-card-media svg { width: 56px; height: 56px; }
.m4y-shop-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: #ffd24c;
  color: #1a1a1a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
}
.m4y-shop-card-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.m4y-shop-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d1430;
  margin: 0 0 4px;
}
.m4y-shop-card-meta {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0 0 12px;
}
.m4y-shop-card-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 0.9rem;
  color: #4a5063;
  display: grid;
  gap: 4px;
  line-height: 1.45;
}
.m4y-shop-card-bullets li::before {
  content: '✓';
  color: var(--accent--primary-1);
  font-weight: 700;
  margin-right: 6px;
}
.m4y-shop-card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(8, 14, 36, 0.06);
}
.m4y-shop-card-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent--primary-1);
  letter-spacing: -0.01em;
}
.m4y-shop-card-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(8, 14, 36, 0.14);
  border-radius: 999px;
  overflow: hidden;
}
.m4y-shop-card-stepper button {
  appearance: none;
  border: 0;
  background: transparent;
  width: 32px; height: 32px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--accent--primary-1);
}
.m4y-shop-card-stepper button:hover { background: var(--secondary--color-1); }
.m4y-shop-card-qty {
  width: 36px;
  border: 0;
  background: transparent;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0d1430;
  appearance: textfield;
  -moz-appearance: textfield;
}
.m4y-shop-card-qty::-webkit-outer-spin-button,
.m4y-shop-card-qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.m4y-shop-card-add {
  appearance: none;
  border: 0;
  background: var(--accent--primary-1);
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
  width: 100%;
  margin-top: 12px;
}
.m4y-shop-card-add:hover { background: #0d1430; transform: translateY(-1px); }
.m4y-shop-card-add:focus-visible { outline: 2px solid var(--secondary--color-1); outline-offset: 2px; }

/* Filter pill bar (boxes page) */
.m4y-shop-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.m4y-shop-filter-pill {
  appearance: none;
  border: 1px solid rgba(8, 14, 36, 0.14);
  background: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  color: #4a5063;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.m4y-shop-filter-pill:hover { border-color: var(--secondary--color-1); }
.m4y-shop-filter-pill.is-active {
  background: var(--accent--primary-1);
  color: #fff;
  border-color: var(--accent--primary-1);
}

/* Floating cart trigger */
.m4y-shop-cart-trigger {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent--primary-1);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(8, 14, 36, 0.25);
  z-index: 8000;
  transition: transform 0.18s ease, background 0.18s ease;
}
.m4y-shop-cart-trigger:hover { transform: translateY(-2px); background: #0d1430; }
.m4y-shop-cart-trigger-icon { display: inline-flex; }
.m4y-shop-cart-trigger-count {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #ffd24c;
  color: #1a1a1a;
  font-size: 0.72rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.m4y-shop-cart-trigger:not(.has-items) .m4y-shop-cart-trigger-count { display: none; }

/* Backdrop + drawer */
.m4y-shop-cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 36, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 8500;
}
.m4y-shop-cart-backdrop.is-open { opacity: 1; visibility: visible; }
.m4y-shop-cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(440px, 92vw);
  height: 100%;
  background: #fff;
  box-shadow: -24px 0 60px rgba(8, 14, 36, 0.18);
  transform: translateX(100%);
  transition: transform 0.25s cubic-bezier(.2,.8,.25,1);
  z-index: 9000;
  display: flex;
  flex-direction: column;
}
.m4y-shop-cart-drawer.is-open { transform: translateX(0); }
body.m4y-shop-drawer-open { overflow: hidden; }

.m4y-shop-cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 18px;
  border-bottom: 1px solid rgba(8, 14, 36, 0.06);
}
.m4y-shop-cart-head h2 {
  margin: 0;
  font-size: 1.2rem;
  color: #0d1430;
}
.m4y-shop-cart-close {
  appearance: none;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #5a5e75;
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 50%;
}
.m4y-shop-cart-close:hover { background: rgba(8, 14, 36, 0.06); color: #0d1430; }

/* Threshold progress bar */
.m4y-shop-cart-threshold {
  padding: 14px 24px;
  background: linear-gradient(180deg, rgba(255, 210, 76, 0.12), rgba(255, 210, 76, 0.04));
  border-bottom: 1px solid rgba(255, 210, 76, 0.32);
}
.m4y-shop-cart-threshold-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  margin-bottom: 6px;
  color: #6b1717;
}
.m4y-shop-cart-threshold-label { font-weight: 600; color: #8a4a00; }
.m4y-shop-cart-threshold-pct { font-weight: 700; color: #0d1430; }
.m4y-shop-cart-threshold-bar {
  height: 6px;
  background: rgba(8, 14, 36, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.m4y-shop-cart-threshold-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffd24c, #f59e0b);
  transition: width 0.25s ease;
}

/* Cart body */
.m4y-shop-cart-body { flex-grow: 1; overflow-y: auto; padding: 8px 24px 16px; }
.m4y-shop-cart-empty {
  padding: 48px 12px;
  text-align: center;
  color: #6b7280;
  font-size: 0.95rem;
}
.m4y-shop-cart-line {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 8px 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(8, 14, 36, 0.06);
}
.m4y-shop-cart-line-name {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  color: #0d1430;
  font-weight: 600;
}
.m4y-shop-cart-line-unit {
  font-size: 0.78rem;
  color: #6b7280;
  font-weight: 400;
}
.m4y-shop-cart-line-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(8, 14, 36, 0.14);
  border-radius: 999px;
  overflow: hidden;
}
.m4y-shop-cart-line-total {
  font-weight: 700;
  color: var(--accent--primary-1);
  font-size: 0.95rem;
}
.m4y-shop-step {
  appearance: none;
  border: 0;
  background: transparent;
  width: 28px; height: 28px;
  font-size: 1rem;
  color: var(--accent--primary-1);
  font-weight: 700;
  cursor: pointer;
}
.m4y-shop-step:hover { background: var(--secondary--color-1); }
.m4y-shop-step-qty {
  width: 30px;
  border: 0;
  background: transparent;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.m4y-shop-step-qty::-webkit-outer-spin-button,
.m4y-shop-step-qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.m4y-shop-cart-line-remove {
  grid-column: 1 / -1;
  justify-self: end;
  appearance: none;
  border: 0;
  background: transparent;
  font-size: 0.75rem;
  color: #b32525;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  margin-top: -6px;
}

/* Cart footer */
.m4y-shop-cart-foot {
  padding: 18px 24px 24px;
  border-top: 1px solid rgba(8, 14, 36, 0.06);
  background: rgba(118, 181, 255, 0.04);
}
.m4y-shop-cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.95rem;
  color: #4a5063;
  margin-bottom: 14px;
}
.m4y-shop-cart-subtotal strong {
  font-size: 1.4rem;
  color: var(--accent--primary-1);
  font-weight: 800;
}
.m4y-shop-cart-checkout[disabled] {
  background: rgba(8, 14, 36, 0.20);
  cursor: not-allowed;
}
.m4y-shop-cart-foot-note {
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: #6b7280;
  text-align: center;
}

/* DIY vs Pro comparison matrix (packing-services page) */
.m4y-shop-compare {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(8, 14, 36, 0.08);
  border-radius: 18px;
  overflow: hidden;
}
.m4y-shop-compare-head,
.m4y-shop-compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
}
.m4y-shop-compare-head {
  background: rgba(118, 181, 255, 0.06);
  border-bottom: 1px solid rgba(8, 14, 36, 0.08);
  font-weight: 700;
  color: #0d1430;
}
.m4y-shop-compare-head > div,
.m4y-shop-compare-row > div {
  padding: 16px 22px;
  font-size: 0.95rem;
}
.m4y-shop-compare-head > div + div,
.m4y-shop-compare-row > div + div {
  text-align: center;
}
.m4y-shop-compare-row { border-bottom: 1px solid rgba(8, 14, 36, 0.06); }
.m4y-shop-compare-row:last-child { border-bottom: 0; }
.m4y-shop-compare-row .compare-no { color: #b32525; font-weight: 700; }
.m4y-shop-compare-row .compare-yes { color: var(--accent--primary-1); font-weight: 700; }
.m4y-shop-compare-pro { background: rgba(118, 181, 255, 0.04); }
@media (max-width: 640px) {
  .m4y-shop-compare-head, .m4y-shop-compare-row { grid-template-columns: 1.4fr 1fr 1fr; }
  .m4y-shop-compare-head > div, .m4y-shop-compare-row > div { padding: 12px 14px; font-size: 0.88rem; }
}

/* ============================================================
   Header nav split-button dropdowns — paired with /js/nav-dropdown.js.
   The JS restructures Webflow's .dropdown-toggle into <a> + <button>;
   these rules style the button + drive the visibility:
     - Desktop mice (hover:hover, pointer:fine): :hover opens
     - Touch / keyboard: .is-open opens
   The (hover:hover) media query keeps iOS/Android touchscreens from
   triggering the sticky-hover-after-tap bug.
   ============================================================ */
.header-nav-menu-wrapper .m4y-nav-split {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.header-nav-menu-wrapper .m4y-nav-link {
  padding: 0;
  color: #fff;
}
.header-nav-menu-wrapper .m4y-nav-split-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 6px 8px;
  margin-left: 2px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.header-nav-menu-wrapper .m4y-nav-split-toggle:hover {
  background: rgba(8, 14, 36, 0.06);
}
.header-nav-menu-wrapper .m4y-nav-split-toggle:focus-visible {
  outline: 2px solid var(--secondary--color-1);
  outline-offset: 2px;
}
.header-nav-menu-wrapper .m4y-nav-chev {
  transition: transform 0.18s ease;
}
.header-nav-menu-wrapper .dropdown-wrapper.is-open .m4y-nav-chev {
  transform: rotate(180deg);
}

/* Desktop (mouse) reveal — only fires on real pointing devices */
@media (hover: hover) and (pointer: fine) {
  .header-nav-menu-wrapper .dropdown-wrapper:hover > .dropdown-column-wrapper {
    display: block;
  }
}
/* Touch + keyboard reveal — controlled by JS click on the toggle */
.header-nav-menu-wrapper .dropdown-wrapper.is-open > .dropdown-column-wrapper {
  display: block;
}

/* Unify all header-chrome icons to white — the nav chevron, the
   line-rounded glyphs Webflow uses for dropdown arrows + button
   carets, and the hamburger bars. Scoped to .header-wrapper so it
   never bleeds into footer or body icons (which sit on light cards
   and need their own contextual colors). */
.header-wrapper .m4y-nav-split-toggle,
.header-wrapper .m4y-nav-chev,
.header-wrapper .line-rounded-icon {
  color: #fff;
}
.header-wrapper .hamburger-menu-bar {
  background-color: #fff;
}

/* Bigger, cleanly-placed logo. The /images/logo.svg is 140×40
   (aspect 3.5:1) so height drives width; keep it auto and cap so
   nothing breaks if the SVG ever swaps. The link wrapper goes
   inline-flex with centered alignment so the logo's optical baseline
   matches the nav links sitting beside it. */
.header-wrapper .header-logo-link {
  display: inline-flex;
  align-items: center;
  height: auto;
  margin-right: 8px;
}
.header-wrapper .header-logo {
  height: 48px;
  width: auto;
  max-width: 220px;
  display: block;
}
@media (max-width: 767px) {
  .header-wrapper .header-logo { height: 40px; }
}

/* Match the footer brand size so the visual weight is consistent
   end-to-end. Footer is on a dark background so the SVG's default
   dark wordmark needs the same dark-mode trigger to read as white. */
.footer-container .footer-logo {
  height: 44px;
  width: auto;
  max-width: 220px;
  display: block;
}

/* Promo conflict notice — surfaced when a chosen promo doesn't fit
   the live form state (e.g. MIDWEEK10 on a Saturday). Distinct red
   tone so it can't be confused with the yellow chip strip above it. */
.m4y-promo-notice {
  background: linear-gradient(180deg, rgba(220, 60, 60, 0.10), rgba(220, 60, 60, 0.04));
  border: 1px solid rgba(220, 60, 60, 0.45);
  border-left: 4px solid #b32525;
  border-radius: 10px;
  padding: 14px 18px;
  margin: 0 0 22px;
  color: #6b1717;
}
.m4y-promo-notice[hidden] { display: none; }
.m4y-promo-notice-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #b32525;
  margin-bottom: 6px;
}
.m4y-promo-notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.m4y-promo-notice-list li {
  font-size: 0.92rem;
  line-height: 1.45;
}
.m4y-promo-notice-list li strong { color: #6b1717; }

/* ============================================================
   /reviews/ — two-section social proof. Scoped .m4y-vid-* (video
   testimonials grid) and .m4y-gr-* (Google review cards). Pairs
   with the two <section>s added to reviews.html. No JS required.
   ============================================================ */

.m4y-reviews-intro { max-width: 760px; margin: 0 auto 52px; text-align: center; }

/* ---- Video testimonials grid (YouTube facades, play inline) ---- */
.m4y-vid-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 991px) { .m4y-vid-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px)  { .m4y-vid-grid { grid-template-columns: 1fr; } }
.m4y-vid-grid.is-collapsed .m4y-vid-card:nth-child(n+7) { display: none; }

.m4y-vid-card {
  appearance: none; -webkit-appearance: none;
  font: inherit; text-align: left; cursor: pointer;
  width: 100%; padding: 0; position: relative; display: block;
  background: #fff;
  border: 1px solid rgba(8, 14, 36, .08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.m4y-vid-card:hover,
.m4y-vid-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(8, 14, 36, .12);
  border-color: rgba(118, 181, 255, .45);
  outline: none;
}
.m4y-vid-thumb {
  position: relative; display: block;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--accent--primary-1), #1a2a5e);
  overflow: hidden;
}
.m4y-vid-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .3s ease;
}
.m4y-vid-card:hover .m4y-vid-thumb img { transform: scale(1.05); }
.m4y-vid-thumb::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 14, 36, 0) 55%, rgba(8, 14, 36, .35));
}
.m4y-vid-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 2;
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
  transition: transform .2s ease, background .2s ease;
}
.m4y-vid-card:hover .m4y-vid-play { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.m4y-vid-play svg { width: 24px; height: 24px; margin-left: 3px; color: var(--accent--primary-1); }
.m4y-vid-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }
.m4y-vid-more-wrap { text-align: center; margin-top: 36px; }
/* ---- Google reviews section ---- */
.m4y-gr-section { background: rgba(118, 181, 255, .05); }

.m4y-gr-summary {
  display: inline-flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid rgba(8, 14, 36, .10);
  border-radius: 16px; padding: 16px 26px; margin: 0 auto 48px;
  box-shadow: 0 8px 24px rgba(8, 14, 36, .05);
}
.m4y-gr-summary-g { width: 30px; height: 30px; flex-shrink: 0; }
.m4y-gr-summary-text { text-align: left; }
.m4y-gr-summary-score { font-size: 2rem; font-weight: 800; color: var(--accent--primary-1); line-height: 1; }
.m4y-gr-summary-stars { color: #ffc531; font-size: 1rem; letter-spacing: 2px; }
.m4y-gr-summary-meta { font-size: .85rem; color: #5a5e75; margin-top: 2px; }

.m4y-gr-grid { columns: 3; column-gap: 28px; max-width: 1180px; margin: 0 auto; }
@media (max-width: 991px) { .m4y-gr-grid { columns: 2; } }
@media (max-width: 600px)  { .m4y-gr-grid { columns: 1; } }
.m4y-gr-grid.is-collapsed .m4y-gr-card:nth-child(n+10) { display: none; }

.m4y-gr-card {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(8, 14, 36, .08);
  border-radius: 18px;
  padding: 26px 26px 22px;
  margin-bottom: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.m4y-gr-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(8, 14, 36, .08);
  border-color: rgba(118, 181, 255, .35);
}
.m4y-gr-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.m4y-gr-stars { color: #ffc531; font-size: 1.05rem; letter-spacing: 2px; }
.m4y-gr-g { width: 22px; height: 22px; flex-shrink: 0; }
.m4y-gr-quote { font-size: 1.02rem; line-height: 1.6; color: #1a1f3a; margin: 0 0 20px; }
.m4y-gr-foot { display: flex; align-items: center; gap: 12px; }
.m4y-gr-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: #fff;
  background: linear-gradient(135deg, var(--accent--primary-1), #3a5bb0);
}
.m4y-gr-name { font-weight: 700; color: var(--accent--primary-1); font-size: .98rem; line-height: 1.2; }
.m4y-gr-loc { font-size: .82rem; color: #5a5e75; }

@media (max-width: 600px) {
  .m4y-gr-summary { flex-direction: column; gap: 10px; text-align: center; }
  .m4y-gr-summary-text { text-align: center; }
}

/* ============================================================================
   Homepage hero — customer video carousel (replaces the hero image).
   2 cards visible; swipe or use the arrows to reach the other videos.
   Scoped .m4y-reel-*. Popup reused for playback (.m4y-reel-modal).
   ========================================================================== */
/* Hero "Call now" button — needs a visible background (default btn-primary is
   the same navy as the hero rectangle behind it, so it'd disappear). */
.m4y-btn-call {
  background-color: var(--secondary--color-3); border-color: var(--secondary--color-3);
  color: #0a1230;
}
.m4y-btn-call:hover {
  background-color: #ffd76b; border-color: #ffd76b; color: #0a1230;
}
.m4y-btn-call-icon {
  width: 19px; height: 19px; margin-right: 9px;
  vertical-align: -3px; display: inline-block;
}

/* min-width:0 is critical: as a grid/flex item, .m4y-reel defaults to
   min-width:auto, which lets the max-content marquee track blow the hero
   wider than the viewport (horizontal overflow on mobile). */
.m4y-reel { position: relative; width: 100%; min-width: 0; max-width: 100%; overflow: hidden; }
.m4y-reel-head { margin-bottom: 16px; }
.m4y-reel-why {
  margin: 0; color: var(--neutral--700); font-size: .98rem; line-height: 1.45; max-width: 520px;
}
.m4y-reel-why a { color: var(--accent--primary-1); font-weight: 700; text-decoration: underline; }

/* ---- auto-scrolling marquee of all customer videos ---- */
.m4y-reel-marquee {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.m4y-reel-track {
  display: flex; gap: 14px; width: max-content; padding: 4px 0;
  will-change: transform;
  animation: m4y-reel-scroll var(--m4y-reel-dur, 140s) linear infinite;
}
.m4y-reel-marquee:hover .m4y-reel-track,
.m4y-reel-track:focus-within { animation-play-state: paused; }
@keyframes m4y-reel-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.m4y-reel-card {
  position: relative; flex: 0 0 auto; width: 184px;
  aspect-ratio: 4 / 5; overflow: hidden; cursor: pointer;
  padding: 0; border: 1px solid rgba(118, 181, 255, .18); border-radius: 16px;
  background: linear-gradient(135deg, var(--accent--primary-1), #1a2a5e);
  box-shadow: 0 12px 30px rgba(8, 14, 36, .16);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.m4y-reel-card:hover, .m4y-reel-card:focus-visible {
  transform: translateY(-3px); border-color: rgba(255, 197, 49, .5);
  box-shadow: 0 18px 42px rgba(8, 14, 36, .3); outline: none;
}
.m4y-reel-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; transition: transform .35s ease;
}
.m4y-reel-card:hover img { transform: scale(1.06); }
.m4y-reel-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 14, 36, .25) 0%, rgba(8, 14, 36, 0) 30%, rgba(8, 14, 36, .85) 100%);
}
.m4y-reel-tag {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  padding: 4px 9px; border-radius: 6px;
  background: var(--secondary--color-3); color: #0a1230;
  font-size: .58rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}
.m4y-reel-play {
  position: absolute; top: 9px; right: 9px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(8, 14, 36, .5); border: 1px solid rgba(255, 255, 255, .4);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.m4y-reel-card:hover .m4y-reel-play { background: var(--secondary--color-3); transform: scale(1.08); }
.m4y-reel-play svg { width: 15px; height: 15px; margin-left: 2px; color: #fff; }
.m4y-reel-card:hover .m4y-reel-play svg { color: #0a1230; }
.m4y-reel-meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; flex-direction: column; gap: 3px; padding: 20px 12px 12px;
}
.m4y-reel-stars { color: var(--secondary--color-3); font-size: .72rem; letter-spacing: 1.5px; line-height: 1; }

/* video popup (16:9 landscape) */
.m4y-reel-modal {
  position: fixed; inset: 0; z-index: 2147483600;
  display: flex; align-items: center; justify-content: center;
  background: rgba(4, 8, 22, .86); padding: 24px;
}
.m4y-reel-modal-inner {
  position: relative; width: min(92vw, 980px); height: auto;
  aspect-ratio: 16 / 9; max-height: 86vh;
  border-radius: 16px; overflow: hidden; background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}
.m4y-reel-modal iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.m4y-reel-close {
  position: absolute; top: -46px; right: 0; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255, 255, 255, .12); color: #fff; font-size: 1.4rem; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
}
.m4y-reel-close:hover { background: rgba(255, 255, 255, .24); }

@media (max-width: 991px) { .m4y-reel { max-width: 620px; margin: 0 auto; } }
@media (max-width: 600px) {
  .m4y-reel-card { width: 152px; }
  .m4y-reel-modal { padding: 16px; }
  .m4y-reel-modal-inner { width: 100%; }
}

/* ---- Brand logo: white wordmark + orange icon (transparent, reversed for the
   site's dark navy header + footer). Sized by height, no box. ---- */
.header-logo { width: auto; height: 46px; max-width: 100%; display: block; }
.footer-logo { width: auto; height: 40px; max-width: 240px; display: block; }
.header-logo-link, .header-logo-link.left { max-width: 240px; }
@media (max-width: 991px) {
  .header-logo { height: 40px; }
  .header-logo-link, .header-logo-link.left, .header-logo-link.left.header-logo-left { max-width: 220px; }
}
@media (max-width: 479px) {
  .header-logo { height: 34px; }
  .footer-logo { height: 34px; }
  .header-logo-link, .header-logo-link.left, .header-logo-link.left.header-logo-left { max-width: 190px; }
}
