/* ===== Global ===== */
html, body {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-x: hidden;
}
::-webkit-scrollbar { display: none; }

body {
  font-family: 'Inter', sans-serif;
  background-color: #F3F4F6; /* gray-100 */
  color: #1F2937;            /* gray-800 */
}

/* Small accent pill used in “Why Us” */
.mm-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  font-size: 1.25rem;
  color: #fff;
  border-radius: 9999px;
  background: linear-gradient(135deg, #14b8a6, #3b82f6);
  box-shadow: 0 8px 24px rgba(16, 185, 129, .18);
}
.mm-pill-purple { background: linear-gradient(135deg, #a855f7, #8b5cf6); }
.mm-pill-blue   { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.mm-pill-teal   { background: linear-gradient(135deg, #0ea5e9, #14b8a6); }
.mm-pill-pink   { background: linear-gradient(135deg, #ec4899, #a855f7); }
.mm-pill-green  { background: linear-gradient(135deg, #22c55e, #14b8a6); }

/* ===== Contact CTA (the section you wanted fixed) ===== */

/* Vibrant gradient band */
.mm-cta {
  background: linear-gradient(135deg, #14b8a6 0%, #3b82f6 45%, #8b5cf6 70%, #ec4899 100%);
  color: #fff;
}

/* Frosted card centered inside the band */
.mm-cta-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow:
    0 15px 35px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.25);
}

/* Labels on dark backgrounds */
.mm-label {
  display: block;
  margin-bottom: .5rem;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.92);
}

/* High-contrast, easy-to-read inputs */
.mm-field {
  width: 100%;
  padding: .75rem .9rem;
  border-radius: .6rem;
  border: 1px solid rgba(255,255,255,.6);
  background: rgba(255,255,255,.14);
  color: #fff;
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}
.mm-field::placeholder { color: rgba(255,255,255,.85); }
.mm-field:focus {
  border-color: #fff;
  background: rgba(255,255,255,.22);
  box-shadow: 0 0 0 3px rgba(255,255,255,.25), 0 8px 18px rgba(0,0,0,.25);
}

/* CTA button (pink → purple like your reference) */
.mm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .9rem 1.25rem;
  color: #fff;
  font-weight: 700;
  border: 0;
  border-radius: .7rem;
  background: linear-gradient(90deg, #ec4899 0%, #a855f7 100%);
  box-shadow: 0 10px 30px rgba(168, 85, 247, .35);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.mm-btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.mm-btn:active { transform: translateY(0); box-shadow: 0 8px 20px rgba(168, 85, 247, .3); }

/* Improve legibility inside the CTA card on small screens */
@media (max-width: 640px) {
  .mm-cta-card { padding: 1.25rem; }
}