/*
 * medimine.css — Medimine-specific content styles only.
 * Shared styles (navbar, footer, reveal, fonts, CSS vars,
 * scrollbar, s-label/s-title/s-sub, etc.) live in style.css.
 */

/* ── Body override: medimine uses navy background ── */
body {
  background: var(--navy);
  color: var(--text-light);
  font-size: 15px;
}

/* ══════════════════════════════════════════════
   HERO — medimine layout & visuals
══════════════════════════════════════════════ */
.mm-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 3rem 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.mm-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 0%,
      rgba(196, 165, 96, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 40% at 80% 80%,
      rgba(196, 165, 96, 0.04) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.mm-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 165, 96, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 165, 96, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}
.mm-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbPulse 6s ease-in-out infinite;
}
.mm-orb1 {
  width: 500px;
  height: 500px;
  background: rgba(196, 165, 96, 0.05);
  top: -100px;
  right: -100px;
}
.mm-orb2 {
  width: 300px;
  height: 300px;
  background: rgba(196, 165, 96, 0.03);
  bottom: 0;
  left: 10%;
  animation-delay: 3s;
}
@keyframes orbPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}

.mm-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}
.mm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(196, 165, 96, 0.15);
  border: 1.5px solid rgba(196, 165, 96, 0.4);
  border-radius: 50px;
  padding: 0.5rem 1.3rem;
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeDown 0.8s ease both;
}
.mm-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-primary);
  animation: mmBlink 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px var(--gold-primary);
}
@keyframes mmBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.mm-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-light);
  letter-spacing: -0.5px;
  animation: fadeDown 0.8s 0.15s ease both;
}
.mm-grad {
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.mm-hero-sub {
  font-size: 0.98rem;
  font-weight: 300;
  color: rgba(200, 184, 168, 0.8);
  line-height: 1.85;
  max-width: 520px;
  margin: 1.5rem 0 2.5rem;
  animation: fadeDown 0.8s 0.3s ease both;
}
.mm-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeDown 0.8s 0.45s ease both;
}
.mm-hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  animation: fadeDown 0.8s 0.6s ease both;
}
.mm-stat-val {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}
.mm-stat-lbl {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

.mm-hero-visual {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeLeft 1s 0.3s ease both;
}
.mm-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(196, 165, 96, 0.2);
  animation: ringPulse 3s ease-in-out infinite;
}
.mm-ring1 {
  width: 220px;
  height: 220px;
}
.mm-ring2 {
  width: 320px;
  height: 320px;
  animation-delay: 1s;
}
.mm-ring3 {
  width: 420px;
  height: 420px;
  animation-delay: 2s;
}
@keyframes ringPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0;
  }
}
.mm-center-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--navy);
  box-shadow: 0 0 60px rgba(196, 165, 96, 0.5);
  position: relative;
  z-index: 2;
}
.mm-chip {
  position: absolute;
  background: rgba(232, 220, 200, 0.95);
  border: 1.5px solid rgba(196, 165, 96, 0.3);
  border-radius: 12px;
  padding: 0.6rem 1.1rem;
  backdrop-filter: blur(15px);
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  z-index: 3;
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.mm-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-primary);
}
.mm-chip1 {
  top: 70px;
  right: -85px;
  animation: floatA 4s ease-in-out infinite;
}
.mm-chip2 {
  bottom: 15%;
  left: 90px;
  animation: floatB 5s ease-in-out infinite;
}
.mm-chip3 {
  top: 19%;
  left: -55px;
  animation: floatA 4.5s 1s ease-in-out infinite;
}
@keyframes floatA {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes floatB {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* ══ s-label pill variant for medimine sections ══ */
.mm-section .s-label {
  background: rgba(196, 165, 96, 0.12);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(196, 165, 96, 0.2);
}

/* ══ Shared section padding ══ */
.mm-challenges,
.mm-platform,
.mm-solutions,
.mm-ai-iot,
.mm-benefits,
.mm-impact,
.mm-contact,
.mm-cta {
  padding: 100px 3rem;
}
.mm-challenges {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.mm-platform {
  background: var(--beige-very-light);
}
.mm-solutions {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.mm-ai-iot {
  background: linear-gradient(
    180deg,
    var(--beige-warm) 0%,
    var(--beige-light) 100%
  );
}
.mm-benefits {
  background: var(--beige-light);
}
.mm-impact {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    rgba(196, 165, 96, 0.08) 50%,
    var(--navy-dark) 100%
  );
}
.mm-contact {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}
.mm-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.mm-platform .s-title,
.mm-ai-iot .s-title,
.mm-benefits .s-title {
  color: var(--navy);
}
.mm-platform .s-sub,
.mm-ai-iot .s-sub,
.mm-benefits .s-sub {
  color: var(--text-dark);
}

/* ══════════════════════════════════════════════
   CHALLENGE CARDS
══════════════════════════════════════════════ */
.mm-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.mm-ch-card {
  background: linear-gradient(
    135deg,
    rgba(196, 165, 96, 0.08),
    rgba(196, 165, 96, 0.04)
  );
  border: 1.5px solid rgba(196, 165, 96, 0.2);
  border-radius: 16px;
  padding: 2.2rem;
  backdrop-filter: blur(12px);
  transition: all 0.35s;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.mm-ch-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.mm-ch-card:hover::before {
  transform: scaleX(1);
}
.mm-ch-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 40px rgba(196, 165, 96, 0.15);
  background: linear-gradient(
    135deg,
    rgba(196, 165, 96, 0.12),
    rgba(196, 165, 96, 0.08)
  );
}
.mm-ch-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.4rem;
  box-shadow: 0 4px 16px rgba(196, 165, 96, 0.3);
  transition: all 0.3s;
}
.mm-ch-card:hover .mm-ch-icon {
  transform: scale(1.1);
}
.mm-ch-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.mm-ch-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════════════
   PLATFORM / TABS
══════════════════════════════════════════════ */
.mm-tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.mm-p-tab {
  background: transparent;
  border: 2px solid rgba(196, 165, 96, 0.25);
  border-radius: 8px;
  padding: 0.75rem 1.4rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.mm-p-tab.active,
.mm-p-tab:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(196, 165, 96, 0.2);
}
.mm-tab-pane {
  display: none;
  animation: fadeUp 0.4s ease;
}
.mm-tab-pane.active {
  display: block;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mm-f-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border: 2px solid var(--gold-primary);
  border-radius: 16px;
  padding: 2.2rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(196, 165, 96, 0.15);
}
.mm-f-card h4 {
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--white);
}
.mm-f-card > p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--muted);
}
.mm-f-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(196, 165, 96, 0.15);
  border: 1px solid rgba(196, 165, 96, 0.3);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0.2rem;
  font-weight: 600;
}
.mm-f-pill i {
  font-size: 0.65rem;
  color: var(--gold-primary);
}
.mm-layer {
  background: rgba(196, 165, 96, 0.06);
  border: 1px solid rgba(196, 165, 96, 0.15);
  border-left: 4px solid var(--gold-primary);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.25s;
}
.mm-layer:hover {
  background: rgba(196, 165, 96, 0.12);
  border-left-color: var(--gold-secondary);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(196, 165, 96, 0.1);
}
.mm-layer h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 0.4rem;
}
.mm-layer p {
  font-size: 0.84rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.6;
}
.mm-flow-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mm-flow-step {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  position: relative;
}
.mm-flow-gap {
  height: 1.2rem;
}
.mm-flow-step + .mm-flow-step::before {
  content: "";
  position: absolute;
  left: 19px;
  top: -20px;
  width: 2px;
  height: 20px;
  background: linear-gradient(to bottom, var(--gold-primary), transparent);
}
.mm-f-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  color: var(--navy);
  font-weight: 800;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mm-f-txt h6 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.mm-f-txt p {
  font-size: 0.82rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.55;
}
.mm-check-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: flex-end;
  margin-bottom: 0.75rem;
}
.mm-check-lbl {
  font-size: 0.78rem;
  color: var(--text-dark);
}
.mm-check-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(196, 165, 96, 0.3);
}

/* ══════════════════════════════════════════════
   SOLUTIONS CARDS
══════════════════════════════════════════════ */
.mm-sol-card {
  background: linear-gradient(
    135deg,
    rgba(196, 165, 96, 0.08),
    rgba(196, 165, 96, 0.04)
  );
  border: 1.5px solid rgba(196, 165, 96, 0.2);
  border-radius: 16px;
  padding: 2.4rem;
  backdrop-filter: blur(12px);
  transition: all 0.35s;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.mm-sol-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.mm-sol-card:hover::before {
  transform: scaleX(1);
}
.mm-sol-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 48px rgba(196, 165, 96, 0.2);
  border-color: var(--gold-primary);
  background: linear-gradient(
    135deg,
    rgba(196, 165, 96, 0.12),
    rgba(196, 165, 96, 0.08)
  );
}
.mm-sol-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(196, 165, 96, 0.08);
  position: absolute;
  top: 0.8rem;
  right: 1.2rem;
  line-height: 1;
}
.mm-sol-icon {
  width: 62px;
  height: 62px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 1.4rem;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(196, 165, 96, 0.2);
}
.mm-sol-card:hover .mm-sol-icon {
  transform: scale(1.1);
}
.mm-sol-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--white);
}
.mm-sol-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}
.mm-sol-list {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}
.mm-sol-list li {
  font-size: 0.84rem;
  color: var(--muted);
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.mm-sol-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* ══════════════════════════════════════════════
   AI & IOT
══════════════════════════════════════════════ */
.mm-ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.mm-ai-card {
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.9),
    rgba(5, 11, 20, 0.9)
  );
  border: 1.5px solid rgba(196, 165, 96, 0.3);
  border-radius: 14px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.mm-ai-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 40px rgba(196, 165, 96, 0.2);
}
.mm-ai-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--navy);
  margin: 0 auto 1.1rem;
  box-shadow: 0 4px 16px rgba(196, 165, 96, 0.3);
}
.mm-ai-card h6 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-light);
}
.mm-ai-card p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   BENEFITS
══════════════════════════════════════════════ */
.mm-ben-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.6rem;
  border-radius: 14px;
  transition: all 0.25s;
  margin-bottom: 0.6rem;
  border-left: 4px solid transparent;
}
.mm-ben-item:hover {
  background: rgba(196, 165, 96, 0.1);
  border-left-color: var(--gold-primary);
  box-shadow: 0 4px 12px rgba(196, 165, 96, 0.1);
  padding-left: 1.8rem;
}
.mm-ben-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
}
.mm-ben-item h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--navy);
}
.mm-ben-item p {
  font-size: 0.86rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   IMPACT / STATS
══════════════════════════════════════════════ */
.mm-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.mm-stat-block {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--beige-light),
    var(--beige-very-light)
  );
  border: 1.5px solid rgba(196, 165, 96, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.mm-stat-block:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 16px 40px rgba(196, 165, 96, 0.2);
}
.mm-big-num {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}
.mm-big-lbl {
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-top: 0.6rem;
}
.mm-covid-box {
  background: linear-gradient(
    135deg,
    rgba(196, 165, 96, 0.15),
    rgba(200, 184, 168, 0.08)
  );
  border: 1.5px solid rgba(196, 165, 96, 0.3);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(196, 165, 96, 0.15);
}
.mm-covid-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 165, 96, 0.1) 0%,
    transparent 70%
  );
}
.mm-covid-box h3 {
  font-size: 1.55rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
  color: var(--beige-light);
  position: relative;
  z-index: 2;
}
.mm-covid-quote {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--beige-light);
  font-style: italic;
  position: relative;
  z-index: 2;
}
.mm-partner-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-primary);
}
.mm-partner-sub {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
}

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.mm-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.mm-info-block {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(196, 165, 96, 0.06);
  border-radius: 12px;
  border-left: 4px solid var(--gold-primary);
  transition: all 0.3s;
}
.mm-info-block:hover {
  background: rgba(196, 165, 96, 0.12);
  transform: translateX(8px);
}
.mm-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  flex-shrink: 0;
}
.mm-info-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--white);
}
.mm-info-content p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}
.mm-social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.mm-social-links a {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(196, 165, 96, 0.15);
  border: 1.5px solid rgba(196, 165, 96, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: all 0.3s;
  text-decoration: none;
}
.mm-social-links a:hover {
  background: var(--gold-primary);
  color: var(--navy);
  transform: translateY(-4px);
}
.mm-form-group {
  margin-bottom: 1.5rem;
}
.mm-form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.mm-form-group input,
.mm-form-group textarea,
.mm-form-group select {
  width: 100%;
  padding: 1rem;
  background: rgba(232, 220, 200, 0.1);
  border: 1.5px solid rgba(196, 165, 96, 0.3);
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  transition: all 0.3s;
}
.mm-form-group input::placeholder,
.mm-form-group textarea::placeholder {
  color: rgba(240, 248, 255, 0.5);
}
.mm-form-group input:focus,
.mm-form-group textarea:focus,
.mm-form-group select:focus {
  outline: none;
  background: rgba(232, 220, 200, 0.15);
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(196, 165, 96, 0.1);
}
.mm-form-group select option {
  color: var(--navy);
  background: var(--white);
}
.mm-form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.mm-submit-btn {
  background: linear-gradient(
    135deg,
    var(--gold-primary),
    var(--gold-secondary)
  );
  color: var(--navy);
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(196, 165, 96, 0.25);
  width: 100%;
  font-family: "DM Sans", sans-serif;
}
.mm-submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(196, 165, 96, 0.4);
}

/* ══════════════════════════════════════════════
   CTA
══════════════════════════════════════════════ */
.mm-cta-inner {
  background: linear-gradient(
    135deg,
    rgba(196, 165, 96, 0.12),
    rgba(200, 184, 168, 0.06)
  );
  border: 1.5px solid rgba(196, 165, 96, 0.3);
  border-radius: 20px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(196, 165, 96, 0.15);
  max-width: 900px;
  margin: 0 auto;
}
.mm-cta-inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 165, 96, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.mm-cta-inner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
  position: relative;
  z-index: 2;
}
.mm-cta-inner p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

/* ══════════════════════════════════════════════
   MEDIMINE FOOTER GRID (5-col layout)
══════════════════════════════════════════════ */
.mm-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.mm-ft-head {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}
.mm-ft-link {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  text-decoration: none;
  padding: 0.25rem 0;
  transition: all 0.2s;
}
.mm-ft-link:hover {
  color: var(--gold-primary);
  padding-left: 0.3rem;
}
.mm-ft-desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 280px;
  margin-top: 0.75rem;
}
.mm-ft-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.mm-ft-social a {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(196, 165, 96, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: all 0.3s;
  text-decoration: none;
}
.mm-ft-social a:hover {
  background: var(--gold-primary);
  color: var(--navy-dark);
  transform: translateY(-2px);
}
.mm-ft-divider {
  border-color: rgba(196, 165, 96, 0.15);
  margin: 1.5rem 0 1rem;
}
.mm-ft-bottom {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .mm-footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .mm-hero {
    padding: 100px 1.5rem 60px;
  }
  .mm-hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .mm-hero-visual {
    display: none;
    width: 280px;
    height: 280px;
  }
  .mm-chip,
  .mm-pulse-ring {
    display: none;
  }
  .mm-challenges,
  .mm-platform,
  .mm-solutions,
  .mm-ai-iot,
  .mm-benefits,
  .mm-impact,
  .mm-contact,
  .mm-cta {
    padding: 70px 1.5rem;
  }
  .mm-contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .mm-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mm-cta-inner {
    padding: 3rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .mm-footer-grid {
    grid-template-columns: 1fr;
  }
  .mm-hero-stats {
    gap: 1.5rem;
  }
}

.mm-main-container {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 2rem;
  align-items: start;
}

.mm-ai-main-container {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: center;
}

.mm-ai-container {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: center;
}

.mm-benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
/* Tablet */
@media (max-width: 1024px) {
  .mm-main-container,
  .mm-ai-main-container,
  .mm-ai-container {
    grid-template-columns: 1fr 1fr; /* equal columns */
    gap: 2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .mm-main-container,
  .mm-ai-main-container,
  .mm-ai-container,
.mm-benefits-content {
    grid-template-columns: 1fr; /* stack */
    gap: 1.5rem;
  }
}
