/* =========================================================
   Magma Cloud - custom styles on top of Bootstrap 5
   ========================================================= */

:root {
  --mc-red: #ef3a23;
  --mc-red-2: #d62b14;
  --mc-orange: #ff7a45;
  --mc-orange-2: #ff9b4d;
  --mc-yellow: #ffb84d;
  --mc-dark: #0e1620;
  --mc-dark-2: #131e2b;
  --mc-card-dark: #1a2533;
  --mc-slate: #4a5a6b;
  --mc-bg-warm: #fff7f3;
  --mc-bg-warm-2: #ffeee5;
  --mc-border: rgba(15, 22, 32, 0.08);
  --mc-text: #0f1a26;
  --mc-muted: #6b7280;
}

html, body { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 5.5rem; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--mc-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  padding-top: 80px; /* offset for fixed navbar */
}

/* ---------- Utility colours ---------- */
.text-mc-red { color: var(--mc-red) !important; }
.text-mc-orange { color: var(--mc-orange) !important; }
.text-light-muted { color: rgba(255, 255, 255, 0.65); }
.bg-mc-red { background: var(--mc-red) !important; }
.bg-mc-orange { background: var(--mc-orange) !important; }
.bg-mc-dark { background: var(--mc-dark) !important; }
.bg-mc-slate { background: var(--mc-slate) !important; }

.text-mc-orange-gradient {
  background: linear-gradient(90deg, var(--mc-red) 0%, var(--mc-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.py-6 { padding-top: 5rem; padding-bottom: 5rem; }

/* ---------- Buttons ---------- */
.btn-mc-red {
  background: var(--mc-red);
  color: #fff;
  border: 1px solid var(--mc-red);
  transition: all .2s ease;
}
.btn-mc-red:hover, .btn-mc-red:focus {
  background: var(--mc-red-2);
  border-color: var(--mc-red-2);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(239, 58, 35, 0.55);
}
.btn-outline-mc {
  background: #fff;
  color: var(--mc-text);
  border: 1px solid rgba(15, 22, 32, 0.18);
}
.btn-outline-mc:hover {
  background: #f8f9fa;
  color: var(--mc-text);
  border-color: rgba(15, 22, 32, 0.3);
}

/* ---------- Navbar ---------- */
.mc-navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mc-border);
  padding: .85rem 0;
}
.mc-navbar .brand-text {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.mc-logo {
  height: 32px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.mc-navbar .nav-link {
  color: var(--mc-text);
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem .85rem !important;
}
.mc-navbar .nav-link:hover { color: var(--mc-red); }

/* ---------- Eyebrow tag (red pill) ---------- */
.mc-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .9rem;
  background: rgba(239, 58, 35, 0.08);
  color: var(--mc-red);
  border-radius: 999px;
  font-weight: 600;
  font-size: .82rem;
}
.mc-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mc-red);
  display: inline-block;
}
.mc-eyebrow { letter-spacing: 0.06em; }

/* =========================================================
   SECTION 1 - Hero
   ========================================================= */
.mc-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 600px at 90% 10%, #ffe1d2 0%, transparent 60%),
    radial-gradient(900px 500px at 0% 0%, #ffe9df 0%, transparent 55%),
    linear-gradient(180deg, #fff5ef 0%, #ffffff 90%);
  padding: 2.25rem 0 5rem;
}
.mc-hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(239, 58, 35, 0.10) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.15) 70%, transparent 100%);
  pointer-events: none;
}

.mc-h1 {
  font-weight: 800;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.mc-sub { font-size: 1.05rem; max-width: 560px; }

.mc-divider {
  border: 0;
  height: 1px;
  width: 64px;
  background: rgba(239, 58, 35, 0.5);
  margin: 0 0 1rem 0;
}

.mc-trust span {
  font-size: .9rem;
  color: #2c3744;
  font-weight: 500;
}

/* Hero video + floating cards */
.mc-hero-art {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 28px;
  background:
    linear-gradient(180deg, #ffe7db 0%, #ffd6c2 100%);
  box-shadow: 0 30px 60px -30px rgba(239, 58, 35, 0.35);
}
.mc-hero-video-wrap {
  position: absolute;
  inset: 8%;
  border-radius: 22px;
  overflow: hidden;
  background: #1a1a1a;
  z-index: 0;
}
.mc-hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mc-float {
  z-index: 1;
}
.mc-float {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: .75rem 1rem;
  box-shadow: 0 18px 40px -12px rgba(15, 22, 32, 0.18);
  display: flex; align-items: center; gap: .75rem;
  min-width: 200px;
}
.mc-float .ico {
  width: 36px; height: 36px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.mc-float-tr { top: 8%; right: -10px; }
.mc-float-bl { bottom: 12%; left: -16px; }
.mc-float-br { bottom: 10%; right: -16px; }

/* =========================================================
   SECTION 2 - Six Pillars
   ========================================================= */
.mc-pillars { background: #fff; position: relative; }
.mc-pillars-stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--mc-red) 0%, var(--mc-orange) 50%, var(--mc-yellow) 100%);
}

.mc-pillar {
  background: #fff;
  border: 1px solid var(--mc-border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all .25s ease;
  box-shadow: 0 1px 0 rgba(15, 22, 32, 0.02);
}
.mc-pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -22px rgba(239, 58, 35, 0.25);
  border-color: rgba(239, 58, 35, 0.2);
}
.mc-pillar .ico {
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.mc-pillar h5 {
  font-weight: 700;
  letter-spacing: -0.01em;
}
.mc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}
.mc-list li {
  position: relative;
  padding-left: 1.25rem;
  color: #2c3744;
  margin-bottom: .35rem;
}
.mc-list li::before {
  content: "\F26B"; /* bi-check-lg */
  font-family: "bootstrap-icons";
  position: absolute; left: 0;
  color: var(--mc-red);
  font-weight: 700;
}
.mc-learn {
  color: var(--mc-red);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
}
.mc-learn i { transition: transform .2s; margin-left: .25rem; }
.mc-learn:hover i { transform: translateX(3px); }

/* =========================================================
   SECTION 3 - Why Magma Cloud
   ========================================================= */
.mc-why { background: #fff; }
.mc-why-art {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 50px -25px rgba(15, 22, 32, 0.35);
}
.mc-why-photo {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 22, 32, 0.55), rgba(15, 22, 32, 0.2)),
    radial-gradient(circle at 30% 40%, #2c4a6b, transparent 50%),
    linear-gradient(135deg, #0f1a26 0%, #1c3349 100%);
}

/* Framed media (hero-matched peach ring + inset image) - home "Why", about "Our Story", about founder */
.mc-why-art.mc-why-art--framed,
.mc-founder-photo.mc-founder-photo--framed {
  border-radius: 28px;
  overflow: visible;
  background: linear-gradient(180deg, #ffe7db 0%, #ffd6c2 100%);
  box-shadow: 0 30px 60px -30px rgba(239, 58, 35, 0.35);
}
.mc-why-art.mc-why-art--framed .mc-why-journey-wrap,
.mc-founder-photo.mc-founder-photo--framed .mc-why-journey-wrap {
  position: absolute;
  inset: 8%;
  border-radius: 22px;
  overflow: hidden;
  background: #1a1a1a;
  z-index: 0;
}
.mc-why-art.mc-why-art--framed .mc-why-journey-img,
.mc-founder-photo.mc-founder-photo--framed .mc-why-journey-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mc-why-list { display: flex; flex-direction: column; gap: 1rem; }
.mc-why-list li {
  display: flex; align-items: flex-start; gap: .85rem;
}
.mc-why-list li > i {
  flex: 0 0 24px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(239, 58, 35, 0.12);
  color: var(--mc-red);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin-top: 2px;
}
.mc-why-list li strong { font-size: 1rem; }

/* =========================================================
   SECTION 4 - Lifecycle (dark)
   ========================================================= */
.mc-lifecycle {
  background:
    radial-gradient(800px 400px at 50% 0%, #1a2738 0%, transparent 60%),
    var(--mc-dark);
  position: relative;
}
.mc-life-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all .25s ease;
}
.mc-life-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(239, 58, 35, 0.35);
  transform: translateY(-2px);
}
.mc-life-card .num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 36px;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
}
.mc-life-card h5 {
  font-weight: 700;
  letter-spacing: -0.01em;
}
.mc-life-rule {
  height: 2px;
  background: linear-gradient(90deg, var(--mc-red) 0%, var(--mc-orange) 50%, var(--mc-yellow) 100%);
  border-radius: 2px;
  margin: 1rem .75rem;
  width: calc(100% - 1.5rem);
  opacity: .9;
}

/* =========================================================
   SECTION 5 - CTA banner
   ========================================================= */
.mc-cta {
  background:
    radial-gradient(800px 500px at 90% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
    linear-gradient(135deg, #ff4d2e 0%, #ff7a45 100%);
  position: relative;
  overflow: hidden;
}
.mc-cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .5;
  pointer-events: none;
}
.mc-cta-list { display: flex; flex-direction: column; gap: .65rem; }
.mc-cta-list li {
  display: flex; align-items: center; gap: .65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}
.mc-cta-list li i { color: #fff; opacity: .9; }

.mc-cta-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 30px 60px -25px rgba(15, 22, 32, 0.35);
  position: relative;
}
.mc-cta-badge {
  position: absolute;
  top: -14px; right: 16px;
  background: #fff;
  color: var(--mc-text);
  font-size: .78rem;
  font-weight: 600;
  padding: .4rem .75rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px -8px rgba(15, 22, 32, 0.25);
  display: inline-flex; align-items: center; gap: .35rem;
}
.mc-cta-card .btn-dark {
  background: var(--mc-red);
  border-color: var(--mc-red);
  text-align: left;
  line-height: 1.2;
}
.mc-cta-card .btn-dark:hover {
  background: var(--mc-red-2);
  border-color: var(--mc-red-2);
}

/* =========================================================
   SECTION 6 - Footer
   ========================================================= */
.mc-footer {
  background: var(--mc-dark);
  color: rgba(255, 255, 255, 0.7);
}
.mc-foot-links {
  display: flex; flex-direction: column; gap: .55rem;
}
.mc-foot-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: .92rem;
  transition: color .2s;
}
.mc-foot-links a:hover { color: var(--mc-red); }
.mc-social {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s;
}
.mc-social:hover {
  background: var(--mc-red);
  color: #fff;
}
.mc-foot-rule {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 2.5rem 0 1.5rem;
}

/* =========================================================
   SERVICES PAGE
   ========================================================= */

/* Active top-nav link */
.mc-navbar .nav-link.active {
  color: var(--mc-red);
  font-weight: 600;
}

/* Warm alternating section background */
.mc-section-warm {
  background:
    radial-gradient(900px 500px at 100% 0%, #ffe9df 0%, transparent 55%),
    radial-gradient(900px 500px at 0% 100%, #fff2ec 0%, transparent 55%),
    var(--mc-bg-warm);
}

/* Services page hero */
.mc-svc-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 4rem;
  background:
    radial-gradient(1100px 600px at 50% 0%, #ffe1d2 0%, transparent 60%),
    linear-gradient(180deg, #fff5ef 0%, #ffffff 100%);
}

/* Jump-link grid at top of services page */
.mc-svc-jumpgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .65rem;
}
.mc-svc-jump {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .75rem 1rem;
  background: #ffffff;
  border: 1px solid var(--mc-border);
  border-radius: 12px;
  color: var(--mc-text);
  text-decoration: none;
  font-weight: 500;
  font-size: .92rem;
  transition: all .2s ease;
}
.mc-svc-jump:hover {
  border-color: rgba(239, 58, 35, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -14px rgba(239, 58, 35, 0.35);
  color: var(--mc-text);
}
.mc-svc-jump i {
  font-size: 1.05rem;
}

/* Small eyebrow heading inside service sections */
.mc-svc-h6 {
  font-size: .78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mc-red);
  font-weight: 700;
  margin-bottom: .65rem;
}

/* Sidebar service card */
.mc-svc-card {
  background: #fff;
  border: 1px solid var(--mc-border);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 22px 50px -28px rgba(15, 22, 32, 0.2);
  position: sticky;
  top: 6rem;
}
.mc-svc-card .ico {
  width: 48px; height: 48px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.mc-svc-card h5 {
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Lifecycle phase chips */
.mc-life-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.mc-life-chips span {
  display: inline-flex;
  align-items: center;
  padding: .3rem .7rem;
  font-size: .78rem;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(15, 22, 32, 0.05);
  color: #2c3744;
  border: 1px solid transparent;
}
.mc-life-chips span.active {
  background: rgba(239, 58, 35, 0.10);
  color: var(--mc-red);
  border-color: rgba(239, 58, 35, 0.25);
}

/* Specialist assessments divider */
.mc-svc-divider {
  background:
    radial-gradient(700px 300px at 50% 50%, #1a2738 0%, transparent 60%),
    var(--mc-dark);
}

/* =========================================================
   OUTCOMES PAGE
   ========================================================= */

/* Principles / stats strip */
.mc-stats-strip {
  border-color: var(--mc-border) !important;
}
.mc-stat-num {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.mc-stat-label {
  margin-top: .55rem;
  font-weight: 500;
  color: var(--mc-muted);
  font-size: .9rem;
}

/* Comparison cards (MSP model vs Magma model) */
.mc-compare-card {
  background: #fff;
  border: 1px solid var(--mc-border);
  border-radius: 18px;
  padding: 2rem;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.mc-compare-card .ico {
  width: 48px; height: 48px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.mc-compare-label {
  display: inline-block;
  margin-top: 1rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mc-muted);
}
.mc-compare-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.mc-compare-card ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: .95rem;
  line-height: 1.5;
}

/* Bad / "old way" card */
.mc-compare-card.bad {
  background: #fbfbfc;
  border-style: dashed;
  border-color: rgba(15, 22, 32, 0.15);
}
.mc-compare-card.bad .ico {
  background: rgba(15, 22, 32, 0.08);
  color: rgba(15, 22, 32, 0.55);
}
.mc-compare-card.bad h4 { color: rgba(15, 22, 32, 0.7); }
.mc-compare-card.bad ul li {
  color: rgba(15, 22, 32, 0.55);
  text-decoration: line-through;
  text-decoration-color: rgba(15, 22, 32, 0.18);
}
.mc-compare-card.bad ul li::before {
  content: "\F62A"; /* bi-x-lg */
  font-family: "bootstrap-icons";
  position: absolute; left: 0; top: 1px;
  color: rgba(15, 22, 32, 0.35);
  font-weight: 700;
  text-decoration: none;
}

/* Good / "our way" card */
.mc-compare-card.good {
  background:
    radial-gradient(600px 300px at 100% 0%, #fff1ea 0%, transparent 60%),
    #ffffff;
  border-color: rgba(239, 58, 35, 0.25);
  box-shadow: 0 28px 60px -28px rgba(239, 58, 35, 0.3);
}
.mc-compare-card.good .ico {
  background: var(--mc-red);
  color: #fff;
}
.mc-compare-card.good ul li {
  color: var(--mc-text);
}
.mc-compare-card.good ul li::before {
  content: "\F26B"; /* bi-check-lg */
  font-family: "bootstrap-icons";
  position: absolute; left: 0; top: 1px;
  color: var(--mc-red);
  font-weight: 700;
}

/* Promise cards on dark "Our Promise" section */
.mc-promise-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.85rem;
  transition: all .25s ease;
}
.mc-promise-card:hover {
  border-color: rgba(239, 58, 35, 0.35);
  background: rgba(255, 255, 255, 0.06);
}
.mc-promise-card .head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.25rem;
}
.mc-promise-card .head .ico {
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.mc-promise-card.never .head .ico {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}
.mc-promise-card.always .head .ico {
  background: var(--mc-red);
  color: #fff;
}
.mc-promise-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.mc-promise-card ul li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.85);
  font-size: .98rem;
  line-height: 1.45;
}
.mc-promise-card ul li i {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 6px;
  font-size: .85rem;
  margin-top: 2px;
}
.mc-promise-card.never ul li i {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
}
.mc-promise-card.always ul li i {
  background: rgba(239, 58, 35, 0.15);
  color: var(--mc-red);
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

/* Industries chip cloud */
.mc-industry-cloud {
  max-width: 980px;
  margin: 0 auto;
}
.mc-industry-chip {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1.2rem;
  background: #fff;
  border: 1px solid var(--mc-border);
  border-radius: 999px;
  font-weight: 500;
  font-size: .95rem;
  color: var(--mc-text);
  transition: all .2s ease;
  cursor: default;
}
.mc-industry-chip i {
  color: var(--mc-red);
  font-size: 1.05rem;
}
.mc-industry-chip:hover {
  border-color: rgba(239, 58, 35, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -14px rgba(239, 58, 35, 0.3);
}

/* Sector pill used on engagement cards */
.mc-sector-pill {
  display: inline-block;
  padding: .3rem .7rem;
  background: rgba(239, 58, 35, 0.15);
  color: var(--mc-red);
  font-size: .72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
}

/* Founder portrait area + floating badges */
.mc-founder-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 60px -30px rgba(15, 22, 32, 0.45);
  background:
    linear-gradient(160deg, rgba(15, 22, 32, 0.55), rgba(15, 22, 32, 0.15)),
    radial-gradient(circle at 30% 30%, #2c4a6b, transparent 55%),
    linear-gradient(135deg, #0f1a26 0%, #1c3349 100%);
}

/* Founder credential chips */
.mc-cred-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .25rem;
}
.mc-cred-chips span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .9rem;
  background: rgba(239, 58, 35, 0.08);
  color: var(--mc-red);
  border: 1px solid rgba(239, 58, 35, 0.22);
  border-radius: 999px;
  font-weight: 600;
  font-size: .82rem;
}
.mc-cred-chips span i {
  font-size: .9rem;
}

/* Sister-venture callout card */
.mc-sister-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background:
    radial-gradient(500px 200px at 100% 0%, #fff2ea 0%, transparent 60%),
    #ffffff;
  border: 1px solid rgba(239, 58, 35, 0.2);
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 18px 40px -22px rgba(239, 58, 35, 0.25);
}
.mc-sister-card .ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* =========================================================
   Responsive tweaks
   ========================================================= */
@media (max-width: 991.98px) {
  body { padding-top: 70px; }
  .mc-navbar .navbar-collapse {
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--mc-border);
    margin-top: .75rem;
  }
  .mc-navbar .btn { margin-top: .75rem; width: 100%; }
  .mc-hero { padding-top: 1rem; }
  .py-6 { padding-top: 3rem; padding-bottom: 3rem; }
  .mc-float-tr { right: 12px; }
  .mc-float-bl { left: 12px; }
  .mc-svc-card { position: static; }
}
@media (max-width: 575.98px) {
  .mc-h1 { font-size: 2.1rem; }
  .mc-cta-card .btn-dark br { display: none !important; }
}
