/* ============================================================
   MenuCheck - Home Page Redesign
   Design: Clean SaaS, Forest Green Brand, Inter font stack
   ============================================================ */

/* --- Variables --- */
:root {
  --mc-green-900: #0d3318;
  --mc-green-800: #155229;
  --mc-green-700: #1a6b35;
  --mc-green-600: #1e8040;
  --mc-green-400: #2eac5a;
  --mc-green-100: #d1f0dc;
  --mc-green-50:  #f0faf4;

  --mc-white:     #ffffff;
  --mc-gray-900:  #111827;
  --mc-gray-700:  #374151;
  --mc-gray-600:  #4b5563;
  --mc-gray-500:  #6b7280;
  --mc-gray-300:  #d1d5db;
  --mc-gray-200:  #e5e7eb;
  --mc-gray-100:  #f3f4f6;
  --mc-gray-50:   #f9fafb;

  --mc-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --mc-radius:    8px;
  --mc-radius-lg: 16px;
  --mc-radius-xl: 24px;
  --mc-radius-pill: 50px;

  --mc-shadow:    0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --mc-shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --mc-shadow-lg: 0 10px 15px rgba(0,0,0,.10), 0 4px 6px rgba(0,0,0,.05);
  --mc-shadow-xl: 0 20px 25px rgba(0,0,0,.10), 0 10px 10px rgba(0,0,0,.04);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
.mc-home, .mc-home * { box-sizing: border-box; }

.mc-home {
  font-family: var(--mc-font);
  color: var(--mc-gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.mc-home h1, .mc-home h2, .mc-home h3, .mc-home h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0;
}

.mc-home p { margin-top: 0; }

.mc-home a { transition: color .15s; }

/* ============================================================
   NAVBAR
   ============================================================ */
.mc-navbar {
  background: var(--mc-white);
  border-bottom: 1px solid var(--mc-gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.mc-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  gap: 16px;
}

.mc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.mc-logo img { height: 34px; width: auto; }

.mc-nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mc-nav-list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 11px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--mc-gray-700);
  text-decoration: none;
  border-radius: var(--mc-radius);
  transition: background .15s, color .15s;
}

.mc-nav-list > li > a:hover {
  background: var(--mc-gray-100);
  color: var(--mc-gray-900);
}

.mc-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Hamburger */
.mc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mc-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--mc-gray-700);
  border-radius: 2px;
  transition: .2s;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.mc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--mc-font);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--mc-radius-pill);
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
}

.mc-btn-sm  { padding: 8px 18px;  font-size: .875rem; }
.mc-btn-md  { padding: 13px 26px; font-size: .9375rem; }
.mc-btn-lg  { padding: 16px 32px; font-size: 1rem; }

.mc-btn-primary {
  background: var(--mc-green-700);
  color: var(--mc-white);
  border-color: var(--mc-green-700);
}
.mc-btn-primary:hover {
  background: var(--mc-green-800);
  border-color: var(--mc-green-800);
  color: var(--mc-white);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26,107,53,.35);
}

.mc-btn-outline {
  background: transparent;
  color: var(--mc-gray-700);
  border-color: var(--mc-gray-300);
}
.mc-btn-outline:hover {
  background: var(--mc-gray-50);
  border-color: var(--mc-gray-400, #9ca3af);
  color: var(--mc-gray-900);
  text-decoration: none;
}

.mc-btn-outline-white {
  background: transparent;
  color: var(--mc-white);
  border-color: rgba(255,255,255,.45);
}
.mc-btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  color: var(--mc-white);
  text-decoration: none;
}

.mc-btn-ghost {
  background: transparent;
  color: var(--mc-gray-700);
  border-color: transparent;
}
.mc-btn-ghost:hover {
  background: var(--mc-gray-100);
  color: var(--mc-gray-900);
  text-decoration: none;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.mc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.mc-section       { padding: 80px 0; }
.mc-section-sm    { padding: 48px 0; }

.mc-section-head  {
  text-align: center;
  margin-bottom: 52px;
}

.mc-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mc-green-700);
  margin-bottom: 10px;
}

.mc-bg-white       { background: var(--mc-white); }
.mc-bg-light       { background: var(--mc-gray-50); }
.mc-bg-green-light { background: var(--mc-green-50); }
.mc-bg-dark        { background: var(--mc-green-800); }

/* ============================================================
   HERO
   ============================================================ */
.mc-hero {
  background: var(--mc-white);
  padding: 72px 0 64px;
  overflow: hidden;
}

.mc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.mc-hero-headline {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--mc-gray-900);
  margin-bottom: 20px;
  line-height: 1.1;
}

.mc-hero-headline .mc-green { color: var(--mc-green-700); }

.mc-hero-sub {
  font-size: 1.0625rem;
  color: var(--mc-gray-600);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
}

.mc-hero-value-props {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 36px;
}

.mc-hero-prop {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.mc-hero-prop-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--mc-green-700);
}

.mc-hero-prop-text strong {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: var(--mc-gray-900);
}

.mc-hero-prop-text span {
  font-size: .75rem;
  color: var(--mc-gray-500);
}

.mc-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.mc-hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mc-avatars {
  display: flex;
  align-items: center;
}

.mc-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mc-green-100);
  border: 2px solid var(--mc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6875rem;
  font-weight: 800;
  color: var(--mc-green-700);
  margin-left: -6px;
}
.mc-avatar:first-child { margin-left: 0; }

.mc-proof-text {
  font-size: .8125rem;
  color: var(--mc-gray-500);
}

.mc-proof-text strong { color: var(--mc-gray-700); }

/* ---- Dashboard Screenshot ---- */
.mc-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mc-hero-screenshot {
  width: 100%;
  max-width: 680px;
  height: auto;
  border-radius: var(--mc-radius-lg);
  box-shadow: var(--mc-shadow-xl), 0 32px 64px rgba(0,0,0,.16);
  border: 1px solid var(--mc-gray-200);
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
  transition: transform .4s ease;
  display: block;
}

.mc-hero-screenshot:hover {
  transform: perspective(1400px) rotateY(-1deg) rotateX(1deg);
}

.mc-dash-topbar {
  background: var(--mc-green-800);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mc-dash-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
}
.mc-dash-title {
  margin-left: 10px;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--mc-white);
}

.mc-dash-body {
  display: flex;
  height: 330px;
}

.mc-dash-sidebar {
  width: 148px;
  background: var(--mc-green-900);
  padding: 14px 0;
  flex-shrink: 0;
}

.mc-dash-nav {
  padding: 6px 12px;
  font-size: .6875rem;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 7px;
  border-left: 2px solid transparent;
  cursor: default;
}
.mc-dash-nav.active {
  background: rgba(255,255,255,.09);
  color: var(--mc-white);
  border-left-color: var(--mc-green-400);
}
.mc-dash-nav-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.mc-dash-content {
  flex: 1;
  padding: 18px 16px;
  background: var(--mc-gray-50);
  overflow: hidden;
}

.mc-dash-heading {
  font-size: .75rem;
  font-weight: 700;
  color: var(--mc-gray-700);
  margin-bottom: 12px;
}

.mc-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.mc-dash-stat {
  background: var(--mc-white);
  border-radius: 7px;
  padding: 10px;
  box-shadow: var(--mc-shadow);
}

.mc-dash-stat-label {
  font-size: .5625rem;
  color: var(--mc-gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 3px;
}

.mc-dash-stat-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--mc-gray-900);
}

.mc-dash-badge-up {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: .5rem;
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  padding: 1px 4px;
  border-radius: 3px;
  margin-top: 2px;
}

.mc-dash-orders-label {
  font-size: .625rem;
  font-weight: 700;
  color: var(--mc-gray-700);
  margin-bottom: 7px;
}

.mc-dash-order {
  background: var(--mc-white);
  border-radius: 6px;
  padding: 7px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  gap: 8px;
}

.mc-dash-order-id {
  font-size: .5625rem;
  font-weight: 800;
  color: var(--mc-gray-900);
  min-width: 36px;
}

.mc-dash-order-name {
  font-size: .5rem;
  color: var(--mc-gray-500);
  flex: 1;
}

.mc-dash-tag {
  font-size: .5rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
}
.mc-dash-tag.pickup   { background: #dbeafe; color: #1d4ed8; }
.mc-dash-tag.delivery { background: #fef3c7; color: #92400e; }
.mc-dash-tag.done     { background: #dcfce7; color: #15803d; }

.mc-dash-order-price {
  font-size: .5625rem;
  font-weight: 800;
  color: var(--mc-gray-900);
  white-space: nowrap;
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.mc-strip {
  background: var(--mc-green-800);
  padding: 28px 0;
}

.mc-strip-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.mc-strip-headline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mc-white);
  line-height: 1.3;
  flex-shrink: 0;
  min-width: 180px;
}

.mc-strip-items {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mc-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.8);
  font-size: .6875rem;
  font-weight: 500;
  text-align: center;
}

/* ============================================================
   BUSINESS TYPES
   ============================================================ */
.mc-biz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mc-biz-card {
  border: 1.5px solid var(--mc-gray-200);
  border-radius: var(--mc-radius-lg);
  padding: 32px 22px 28px;
  text-align: center;
  background: var(--mc-white);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.mc-biz-card:hover {
  border-color: var(--mc-green-400);
  box-shadow: var(--mc-shadow-lg);
  transform: translateY(-3px);
}

.mc-biz-icon {
  width: 56px; height: 56px;
  background: var(--mc-green-50);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--mc-green-700);
}

.mc-biz-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mc-gray-900);
  margin-bottom: 8px;
}

.mc-biz-desc {
  font-size: .875rem;
  color: var(--mc-gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.mc-link-arrow {
  font-size: .875rem;
  font-weight: 600;
  color: var(--mc-green-700);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .15s, color .15s;
}
.mc-link-arrow:hover { color: var(--mc-green-800); text-decoration: none; gap: 8px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.mc-steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
}

.mc-step-item {
  flex: 1;
  text-align: center;
  padding: 0 14px;
  position: relative;
}

.mc-step-arrow {
  position: absolute;
  top: 26px;
  left: calc(50% + 38px);
  right: calc(-50% + 38px);
  height: 2px;
  background: linear-gradient(90deg, var(--mc-green-400), rgba(46,172,90,.3));
  z-index: 0;
}
.mc-step-item:last-child .mc-step-arrow { display: none; }

.mc-step-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--mc-green-700);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--mc-white);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(26,107,53,.3);
}

.mc-step-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 20px; height: 20px;
  background: var(--mc-green-900);
  border-radius: 50%;
  font-size: .5625rem;
  font-weight: 800;
  color: var(--mc-white);
  display: flex; align-items: center; justify-content: center;
}

.mc-step-title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--mc-gray-900);
  margin-bottom: 6px;
}

.mc-step-desc {
  font-size: .8125rem;
  color: var(--mc-gray-500);
  line-height: 1.65;
}

/* ============================================================
   FIND FOOD SECTION
   ============================================================ */
.mc-find-food-wrap {
  background: var(--mc-green-800);
  border-radius: var(--mc-radius-xl);
  overflow: hidden;
  padding: 56px 52px;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  margin: 0 8px;
}

.mc-find-food-content { flex: 1; }

.mc-find-food-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--mc-white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.mc-find-food-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 28px;
}

.mc-find-food-phone {
  flex-shrink: 0;
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mc-phone-screenshot {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(0,0,0,.35), 0 8px 16px rgba(0,0,0,.2);
  display: block;
  transform: translateY(-8px);
  transition: transform .3s ease, box-shadow .3s ease;
}

.mc-find-food-wrap:hover .mc-phone-screenshot {
  transform: translateY(-14px);
  box-shadow: 0 32px 56px rgba(0,0,0,.4), 0 12px 20px rgba(0,0,0,.2);
}

/* ============================================================
   TRUSTED BY
   ============================================================ */
.mc-trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.mc-trusted-logo {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--mc-gray-300);
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
  transition: color .2s;
}
.mc-trusted-logo:hover { color: var(--mc-green-600); text-decoration: none; }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.mc-features-layout {
  display: flex;
  align-items: center;
  gap: 32px;
}

.mc-features-label {
  flex-shrink: 0;
  width: 200px;
}

.mc-features-label h2 {
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--mc-gray-900);
  margin-bottom: 16px;
}

.mc-features-icons {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 16px;
}

.mc-feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.mc-feat-icon {
  width: 52px; height: 52px;
  background: var(--mc-green-50);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--mc-green-700);
  transition: background .2s;
}
.mc-feat-item:hover .mc-feat-icon { background: var(--mc-green-100); }

.mc-feat-name {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--mc-gray-700);
  line-height: 1.3;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.mc-cta-section {
  background: var(--mc-green-900);
  padding: 72px 0;
}

.mc-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.mc-cta-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.mc-cta-logo-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--mc-white);
}

.mc-cta-title {
  font-size: clamp(1.375rem, 3vw, 2.125rem);
  font-weight: 800;
  color: var(--mc-white);
  margin-bottom: 6px;
  line-height: 1.2;
}

.mc-cta-sub {
  font-size: .9375rem;
  color: rgba(255,255,255,.65);
}

.mc-cta-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.mc-footer {
  background: var(--mc-green-900);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 64px 0 0;
}

.mc-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.mc-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px;
}
.mc-footer-logo img {
  height: 30px;
  filter: brightness(0) invert(1);
}
.mc-footer-logo-text {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--mc-white);
}

.mc-footer-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.mc-footer-social {
  display: flex;
  gap: 6px;
  margin-bottom: 0;
}

.mc-social-btn {
  width: 34px; height: 34px;
  border-radius: 7px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.mc-social-btn:hover {
  background: rgba(255,255,255,.14);
  color: var(--mc-white);
  text-decoration: none;
}

.mc-footer-col-title {
  font-size: .75rem;
  font-weight: 700;
  color: var(--mc-white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.mc-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mc-footer-links li { margin-bottom: 10px; }
.mc-footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .15s;
}
.mc-footer-links a:hover { color: rgba(255,255,255,.9); text-decoration: none; }

.mc-app-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 8px;
  text-decoration: none;
  transition: background .15s;
}
.mc-app-badge:hover { background: rgba(255,255,255,.12); text-decoration: none; }

.mc-app-badge-icon { color: var(--mc-white); flex-shrink: 0; }

.mc-app-badge-label {
  font-size: .625rem;
  color: rgba(255,255,255,.5);
  display: block;
  margin-bottom: 1px;
}

.mc-app-badge-name {
  font-size: .875rem;
  font-weight: 700;
  color: var(--mc-white);
  display: block;
}

.mc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mc-footer-copy {
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   MOBILE NAV MENU
   ============================================================ */
.mc-mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--mc-white);
  z-index: 999;
  padding: 24px 28px;
  overflow-y: auto;
}

.mc-mobile-menu.open { display: block; }

.mc-mobile-links {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.mc-mobile-links li { border-bottom: 1px solid var(--mc-gray-100); }

.mc-mobile-links a {
  display: block;
  padding: 14px 4px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--mc-gray-700);
  text-decoration: none;
}

.mc-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .mc-biz-grid        { grid-template-columns: repeat(2, 1fr); }
  .mc-features-icons  { grid-template-columns: repeat(4, 1fr); }
  .mc-footer-grid     { grid-template-columns: repeat(3, 1fr); }
  .mc-features-layout { flex-direction: column; }
  .mc-features-label  { width: 100%; text-align: center; }
}

@media (max-width: 900px) {
  .mc-hero-grid { grid-template-columns: 1fr; }
  .mc-hero-visual { display: none; }
  .mc-find-food-phone { display: none; }
  .mc-find-food-wrap { padding: 44px 36px; }
}

@media (max-width: 768px) {
  .mc-nav-list    { display: none; }
  .mc-hamburger   { display: flex; }

  .mc-strip-items       { justify-content: flex-start; }
  .mc-strip-headline    { min-width: 0; }

  .mc-biz-grid { grid-template-columns: repeat(2, 1fr); }

  .mc-steps-row {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .mc-step-arrow { display: none; }

  .mc-features-icons { grid-template-columns: repeat(2, 1fr); }

  .mc-cta-inner { text-align: center; flex-direction: column; align-items: center; }
  .mc-cta-logo-wrap { justify-content: center; }

  .mc-footer-grid { grid-template-columns: repeat(2, 1fr); }

  .mc-footer-bottom { flex-direction: column; text-align: center; }

  .mc-section { padding: 56px 0; }
  .mc-hero { padding: 52px 0 48px; }
}

@media (max-width: 540px) {
  .mc-biz-grid         { grid-template-columns: 1fr; }
  .mc-hero-value-props { grid-template-columns: 1fr; }
  .mc-hero-actions     { flex-direction: column; }
  .mc-btn-lg           { width: 100%; justify-content: center; }
  .mc-trusted-logos    { gap: 28px; }
  .mc-footer-grid      { grid-template-columns: 1fr; }
}
