/* ===================== PHONE IMAGES ===================== */
.mhc-hero-visual img,
.mhc-showcase-img,
.mhc-section-phone,
.mhc-step-phone img {
  max-width: 100%; height: auto;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
}
.mhc-hero-phone-center img { width: 280px; }
.mhc-hero-phone-left img, .mhc-hero-phone-right img { width: 220px; opacity: 0.9; }
.mhc-phone-tilt-left { transform: rotate(-6deg); }
.mhc-phone-tilt-right { transform: rotate(6deg); }
.mhc-showcase-img { width: 260px; }
.mhc-section-phone { width: 260px; }
.mhc-step-phone { display: flex; justify-content: center; margin-bottom: 28px; }
.mhc-step-phone img { width: 190px; }
.mhc-phone-offset { margin-top: 50px; }
.mhc-tracking-phones { display: flex; justify-content: center; gap: 24px; }
.mhc-tracking-phones img { width: 220px; }

/* Mobile menu WP list styles */
.mhc-mobile-links { list-style: none; text-align: center; }
.mhc-mobile-links li { margin-bottom: 16px; }
.mhc-mobile-links a {
  font-family: var(--font-display, 'Sora', sans-serif);
  font-size: 1.5rem; font-weight: 600;
  color: var(--charcoal, #0A0A0A); text-decoration: none;
}

/* RESET & VARIABLES (scoped to #mhc-landing) */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; }
ul { list-style: none; }
body {
  --green-900: #064E24; --green-700: #0D7C3E; --green-600: #11924A;
  --green-500: #18A957; --green-400: #3DBF72; --green-100: #E3F7EC; --green-50: #F0FBF4;
  --charcoal: #0A0A0A; --gray-900: #1A1A1E; --gray-700: #3A3A42;
  --gray-500: #6B6B76; --gray-400: #9B9BA6; --gray-300: #C5C5CE;
  --gray-200: #E2E2E8; --gray-100: #F0F0F3; --gray-50: #F7F7F9;
  --cream: #FAFAF8; --white: #FFFFFF;
  --font-display: 'Sora', sans-serif; --font-body: 'Plus Jakarta Sans', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-body); color: var(--gray-900); background: var(--cream);
  overflow-x: hidden; line-height: 1.6;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999;
}
.mhc-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===================== NAVIGATION ===================== */
.mhc-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 16px 0;
  transition: all 0.4s var(--ease-out-expo);
}
.mhc-nav.scrolled {
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 12px 0;
}
.mhc-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.mhc-nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--charcoal);
}
.mhc-nav-logo img { height: 36px; width: 36px; border-radius: 8px; }
.mhc-nav-logo span {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.1rem; letter-spacing: -0.02em;
}
.mhc-nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.mhc-nav-links a {
  text-decoration: none; color: var(--gray-500); font-size: 0.9rem;
  font-weight: 500; transition: color 0.2s; letter-spacing: -0.01em;
}
.mhc-nav-links a:hover { color: var(--charcoal); }
.mhc-nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--charcoal); color: var(--white) !important;
  padding: 10px 22px; border-radius: 100px; font-size: 0.875rem;
  font-weight: 600; text-decoration: none !important;
  transition: all 0.3s var(--ease-out-expo);
}
.mhc-nav-cta:hover {
  background: var(--green-700); transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13, 124, 62, 0.25);
}
.mhc-nav-cta svg { width: 16px; height: 16px; }
.mhc-mobile-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
}
.mhc-mobile-toggle span {
  display: block; width: 22px; height: 2px; background: var(--charcoal);
  margin: 5px 0; border-radius: 2px; transition: 0.3s;
}
.mhc-mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(250,250,248,0.97); backdrop-filter: blur(20px);
  z-index: 999; flex-direction: column; align-items: center;
  justify-content: center; gap: 32px;
}
.mhc-mobile-menu.active { display: flex; }
.mhc-mobile-menu a {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--charcoal); text-decoration: none;
}
.mhc-mobile-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; font-size: 2rem;
  cursor: pointer; color: var(--charcoal);
}

/* ===================== BUTTONS ===================== */
.mhc-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--charcoal); color: var(--white); padding: 16px 32px;
  border-radius: 100px; text-decoration: none; font-weight: 600;
  font-size: 0.95rem; transition: all 0.3s var(--ease-out-expo);
  border: none; cursor: pointer; font-family: var(--font-body);
}
.mhc-btn-primary:hover {
  background: var(--green-700); transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(13, 124, 62, 0.3); color: var(--white);
}
.mhc-btn-primary svg { width: 18px; height: 18px; }
.mhc-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gray-700); padding: 16px 28px; border-radius: 100px;
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  border: 1.5px solid var(--gray-200); transition: all 0.3s var(--ease-out-expo);
  background: transparent; cursor: pointer; font-family: var(--font-body);
}
.mhc-btn-secondary:hover {
  border-color: var(--gray-400); background: var(--white); transform: translateY(-1px);
}

/* ===================== SECTION HEADERS ===================== */
.mhc-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green-700); margin-bottom: 20px;
}
.mhc-tag::before {
  content: ''; width: 20px; height: 2px; background: var(--green-500); border-radius: 2px;
}
.mhc-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.12;
  color: var(--charcoal); margin-bottom: 16px;
}
.mhc-desc {
  font-size: 1.1rem; color: var(--gray-500); max-width: 560px; line-height: 1.7;
}

/* ===================== HERO ===================== */
.mhc-hero {
  padding: 160px 0 100px; position: relative; overflow: hidden;
}
.mhc-hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(13, 124, 62, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.mhc-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.mhc-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 6px; background: var(--green-50);
  border: 1px solid var(--green-100); border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; color: var(--green-700);
  margin-bottom: 28px;
}
.mhc-hero-badge-dot {
  width: 24px; height: 24px; border-radius: 50%; background: var(--green-500);
  display: flex; align-items: center; justify-content: center;
}
.mhc-hero-badge-dot svg { width: 12px; height: 12px; color: white; }
.mhc-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.04em;
  color: var(--charcoal); margin-bottom: 24px;
}
.mhc-hero h1 .mhc-text-green { color: var(--green-700); }
.mhc-hero-sub {
  font-size: 1.15rem; color: var(--gray-500); line-height: 1.7;
  max-width: 480px; margin-bottom: 40px;
}
.mhc-hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.mhc-hero-visual {
  position: relative; display: flex; justify-content: center;
  align-items: center; min-height: 620px;
}
.mhc-hero-phone-center { position: relative; z-index: 3; }
.mhc-hero-phone-left {
  position: absolute; left: -20px; top: 70px; z-index: 1; opacity: 0.9;
}
.mhc-hero-phone-right {
  position: absolute; right: -20px; top: 50px; z-index: 2; opacity: 0.9;
}
.mhc-hero-glow {
  position: absolute; width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(13,124,62,0.12) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 0; border-radius: 50%;
}

/* ===================== TRUST BAR ===================== */
.mhc-trust {
  padding: 60px 0;
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.mhc-trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 64px; flex-wrap: wrap;
}
.mhc-trust-item { text-align: center; }
.mhc-trust-number {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--charcoal); line-height: 1;
}
.mhc-trust-label {
  font-size: 0.82rem; color: var(--gray-400); font-weight: 500;
  margin-top: 6px; letter-spacing: 0.03em; text-transform: uppercase;
}
.mhc-trust-divider { width: 1px; height: 40px; background: var(--gray-200); }

/* ===================== FEATURES ===================== */
.mhc-features { padding: 120px 0; }
.mhc-features-header { text-align: center; margin-bottom: 80px; }
.mhc-features-header .mhc-desc { margin: 0 auto; }
.mhc-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mhc-fcard {
  background: var(--white); border-radius: 20px; padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.04); transition: all 0.4s var(--ease-out-expo);
  position: relative; overflow: hidden;
}
.mhc-fcard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--green-400));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}
.mhc-fcard:hover {
  transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  border-color: transparent;
}
.mhc-fcard:hover::before { transform: scaleX(1); }
.mhc-fcard-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--green-50);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.mhc-fcard-icon svg { width: 24px; height: 24px; color: var(--green-700); }
.mhc-fcard h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 12px; color: var(--charcoal);
}
.mhc-fcard p { font-size: 0.95rem; color: var(--gray-500); line-height: 1.65; }

/* ===================== SHOWCASE (Dark) ===================== */
.mhc-showcase {
  padding: 120px 0; background: var(--charcoal); color: var(--white);
  position: relative; overflow: hidden;
}
.mhc-showcase::before {
  content: ''; position: absolute; top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(13, 124, 62, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.mhc-showcase-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.mhc-showcase-visual { display: flex; justify-content: center; }
.mhc-showcase .mhc-tag { color: var(--green-400); }
.mhc-showcase .mhc-tag::before { background: var(--green-400); }
.mhc-showcase .mhc-title { color: var(--white); }
.mhc-showcase .mhc-desc { color: rgba(255,255,255,0.55); }
.mhc-showcase-features { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.mhc-showcase-feat { display: flex; gap: 16px; align-items: flex-start; }
.mhc-showcase-feat-icon {
  width: 40px; height: 40px; min-width: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.mhc-showcase-feat-icon svg { width: 18px; height: 18px; color: var(--green-400); }
.mhc-showcase-feat h4 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  letter-spacing: -0.01em; margin-bottom: 4px;
}
.mhc-showcase-feat p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ===================== HOW IT WORKS ===================== */
.mhc-how { padding: 120px 0; }
.mhc-how-header { text-align: center; margin-bottom: 80px; }
.mhc-how-header .mhc-desc { margin: 0 auto; }
.mhc-steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  position: relative;
}
.mhc-steps-grid::before {
  content: ''; position: absolute; top: 28px;
  left: 17%; right: 17%; height: 2px;
  background: linear-gradient(90deg, var(--green-100), var(--green-400), var(--green-100));
  z-index: 0;
}
.mhc-step { text-align: center; position: relative; z-index: 1; }
.mhc-step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--green-500);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px; font-family: var(--font-display);
  font-weight: 800; font-size: 1.1rem; color: var(--green-700);
}
.mhc-step-phone { display: flex; justify-content: center; margin-bottom: 28px; }
.mhc-step h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 10px; color: var(--charcoal);
}
.mhc-step p {
  font-size: 0.9rem; color: var(--gray-500); line-height: 1.6;
  max-width: 280px; margin: 0 auto;
}

/* ===================== AI SECTION ===================== */
.mhc-ai {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--green-50) 0%, var(--cream) 100%);
  position: relative; overflow: hidden;
}
.mhc-ai-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.mhc-ai-visual { display: flex; justify-content: center; position: relative; }
.mhc-ai-float {
  position: absolute; top: 30px; right: -10px;
  background: var(--white); padding: 12px 20px; border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 600; color: var(--charcoal);
  z-index: 10; animation: mhcFloat 3s ease-in-out infinite;
}
@keyframes mhcFloat {
  0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); }
}
.mhc-checklist {
  list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 36px;
}
.mhc-checklist li {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.95rem; color: var(--gray-700); font-weight: 500;
}
.mhc-check {
  width: 28px; height: 28px; min-width: 28px; border-radius: 50%;
  background: var(--green-100); display: flex; align-items: center; justify-content: center;
}
.mhc-check svg { width: 14px; height: 14px; color: var(--green-700); }

/* ===================== TRACKING ===================== */
.mhc-tracking { padding: 120px 0; }
.mhc-tracking-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.mhc-tracking-phones {
  display: flex; justify-content: center; gap: 24px; position: relative;
}
.mhc-tracking-phones 

/* ===================== SECURITY ===================== */
.mhc-security {
  padding: 100px 0; background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.mhc-security-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.mhc-security-item { text-align: center; padding: 32px 20px; }
.mhc-security-icon {
  width: 52px; height: 52px; border-radius: 50%; background: var(--green-50);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.mhc-security-icon svg { width: 22px; height: 22px; color: var(--green-700); }
.mhc-security-item h4 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  margin-bottom: 8px; color: var(--charcoal);
}
.mhc-security-item p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }

/* ===================== CTA ===================== */
.mhc-cta {
  padding: 140px 0; text-align: center; position: relative; overflow: hidden;
}
.mhc-cta::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(13, 124, 62, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.mhc-cta-content { position: relative; z-index: 1; }
.mhc-cta-logo {
  width: 72px; height: 72px; border-radius: 18px;
  margin: 0 auto 32px; box-shadow: 0 8px 32px rgba(0,0,0,0.08); display: block;
}
.mhc-cta .mhc-title { max-width: 600px; margin: 0 auto 16px; }
.mhc-cta .mhc-desc { margin: 0 auto 44px; text-align: center; }
.mhc-cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.mhc-cta-note { margin-top: 20px; font-size: 0.82rem; color: var(--gray-400); }

/* ===================== FOOTER ===================== */
.mhc-footer {
  background: var(--charcoal); color: rgba(255,255,255,0.6); padding: 60px 0 40px;
}
.mhc-footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 40px;
}
.mhc-footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.mhc-footer-brand img { width: 32px; height: 32px; border-radius: 8px; }
.mhc-footer-brand span {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--white);
}
.mhc-footer-tagline { font-size: 0.85rem; max-width: 280px; line-height: 1.6; }
.mhc-footer-links { display: flex; gap: 60px; }
.mhc-footer-col h5 {
  font-family: var(--font-display); font-weight: 600; font-size: 0.82rem;
  color: var(--white); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px;
}
.mhc-footer-col a {
  display: block; color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 0.88rem; margin-bottom: 10px; transition: color 0.2s;
}
.mhc-footer-col a:hover { color: var(--white); }
.mhc-footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem;
}
.mhc-footer-bottom a {
  color: rgba(255,255,255,0.4); text-decoration: none; margin-left: 24px; transition: color 0.2s;
}
.mhc-footer-bottom a:hover { color: var(--white); }

/* ===================== SCROLL ANIMATIONS ===================== */
.mhc-fade {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.mhc-fade.mhc-visible { opacity: 1; transform: translateY(0); }
.mhc-d1 { transition-delay: 0.05s; } .mhc-d2 { transition-delay: 0.1s; }
.mhc-d3 { transition-delay: 0.15s; } .mhc-d4 { transition-delay: 0.2s; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .mhc-hero-grid, .mhc-showcase-grid, .mhc-ai-grid, .mhc-tracking-grid {
    grid-template-columns: 1fr; gap: 60px;
  }
  .mhc-hero-visual { order: -1; min-height: auto; }
  .mhc-hero { padding: 130px 0 80px; text-align: center; }
  .mhc-hero-sub { margin: 0 auto 40px; }
  .mhc-hero-actions { justify-content: center; }
  .mhc-features-grid { grid-template-columns: 1fr 1fr; }
  .mhc-steps-grid::before { display: none; }
  .mhc-security-grid { grid-template-columns: 1fr 1fr; }
  .mhc-showcase-visual { order: -1; }
}
@media (max-width: 768px) {
  .mhc-nav-links { display: none; }
  .mhc-mobile-toggle { display: block; }
  .mhc-hero h1 { font-size: 2.4rem; }
  .mhc-features-grid { grid-template-columns: 1fr; }
  .mhc-steps-grid { grid-template-columns: 1fr; gap: 48px; }
  .mhc-trust-inner { gap: 32px; }
  .mhc-trust-divider { display: none; }
  .mhc-security-grid { grid-template-columns: 1fr; gap: 8px; }
  
  
  
  .mhc-hero-phone-left { left: -10px; top: 50px; }
  .mhc-hero-phone-right { right: -10px; top: 35px; }
  .mhc-footer-links { gap: 40px; flex-wrap: wrap; }
  .mhc-footer-inner { flex-direction: column; }
  .mhc-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .mhc-tracking-phones { gap: 12px; }
  .mhc-tracking-phones 
}
@media (max-width: 480px) {
  .mhc-hero-actions { flex-direction: column; width: 100%; }
  .mhc-btn-primary, .mhc-btn-secondary { width: 100%; justify-content: center; }
  .mhc-title { font-size: 1.8rem; }
  
  
  .mhc-hero-visual { padding: 0 10px; }
  .mhc-hero-phone-left, .mhc-hero-phone-right { display: none; }
}
/* ===================== STORE BADGES ===================== */
.mhc-store-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.mhc-store-badge {
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mhc-store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}
.mhc-store-badge img {
  height: 54px;
  width: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

/* CTA section badges centered */
.mhc-cta-buttons .mhc-store-badges {
  justify-content: center;
}

/* Hero actions with badges */
.mhc-hero-actions .mhc-store-badges {
  margin-right: 8px;
}

@media (max-width: 480px) {
  .mhc-store-badges {
    justify-content: center;
    width: 100%;
  }
  .mhc-store-badge img {
    height: 48px;
  }
}
