/* ==========================================================
   MedCast Homepage Plugin — medcast-homepage.css
   Namespace: .mchp-   (no conflicts with Astra or Elementor)
   ========================================================== */

/* ---------- Custom Properties ---------- */
.mchp-page {
  --mc-navy:       #1e2d4f;
  --mc-navy-mid:   #22355a;
  --mc-navy-light: #2d4270;
  --mc-gold:       #dd9933;
  --mc-gold-dark:  #c4871c;
  --mc-gold-light: #f0b445;
  --mc-white:      #ffffff;
  --mc-off-white:  #f8f9fa;
  --mc-gray-100:   #f1f4f8;
  --mc-gray-200:   #e2e8f0;
  --mc-gray-400:   #94a3b8;
  --mc-gray-600:   #475569;
  --mc-gray-800:   #1e293b;
  --mc-red-soft:   #ef4444;
  --mc-green-soft: #22c55e;

  --mc-radius-sm:  6px;
  --mc-radius:     12px;
  --mc-radius-lg:  20px;
  --mc-shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --mc-shadow:     0 4px 16px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --mc-shadow-lg:  0 20px 48px rgba(0,0,0,.16), 0 8px 16px rgba(0,0,0,.08);

  font-family: 'Inter', sans-serif;
  color: var(--mc-gray-800);
  line-height: 1.65;
}

/* ---------- Full-width breakout ---------- */
/* Breaks out of any WordPress content-container */
.mchp-page {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow-x: hidden;
  margin-top: -2px; /* close gap against theme header */
}

/* ---------- Container ---------- */
.mchp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Sections ---------- */
.mchp-section {
  padding: 80px 0;
}

/* ---------- Section headings ---------- */
.mchp-section-head {
  text-align: left;
  margin-bottom: 56px;
}

.mchp-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--mc-navy-mid);
  line-height: 1.2;
  margin: 0 0 16px;
}

.mchp-h2--light {
  color: var(--mc-white);
}

.mchp-section-sub {
  font-size: 18px;
  color: var(--mc-gray-600);
  max-width: 600px;
  margin: 0;
}

/* Underline accent */
.mchp-underline {
  position: relative;
  display: inline-block;
}
.mchp-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--mc-gold);
  border-radius: 2px;
}

.mchp-underline-gold {
  position: relative;
  display: inline-block;
  color: var(--mc-gold-light);
}
.mchp-underline-gold::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--mc-gold-light);
  border-radius: 2px;
}

/* For headings on light backgrounds — keeps navy text with gold underline, matching h2 styles in other light sections */
.mchp-underline-navy {
  position: relative;
  display: inline-block;
  color: #1e2d4f;
}
.mchp-underline-navy::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: #dd9933;
  border-radius: 2px;
}

/* ---------- Badges ---------- */
.mchp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.30);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.mchp-badge--navy {
  background: var(--mc-gray-100);
  border-color: var(--mc-gray-200);
  color: var(--mc-navy-mid);
}

/* ---------- Buttons ---------- */
.mchp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--mc-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s, box-shadow 0.18s;
  white-space: nowrap;
}

.mchp-btn:hover { transform: translateY(-1px); }
.mchp-btn:active { transform: translateY(0); }

.mchp-btn--gold {
  background: var(--mc-gold);
  color: var(--mc-white);
  border-color: var(--mc-gold);
  box-shadow: 0 4px 12px rgba(221,153,51,.35);
}
.mchp-btn--gold:hover {
  background: var(--mc-gold-dark);
  border-color: var(--mc-gold-dark);
  box-shadow: 0 6px 20px rgba(221,153,51,.45);
  color: var(--mc-white);
}

.mchp-btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--mc-white);
  border-color: rgba(255,255,255,0.40);
  backdrop-filter: blur(4px);
}
.mchp-btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  color: var(--mc-white);
}

.mchp-btn--outline {
  background: transparent;
  color: var(--mc-navy-mid);
  border-color: var(--mc-navy-mid);
}
.mchp-btn--outline:hover {
  background: var(--mc-navy-mid);
  color: var(--mc-white);
}

.mchp-btn--lg  { padding: 14px 30px; font-size: 16px; }
.mchp-btn--xl  { padding: 18px 40px; font-size: 18px; border-radius: var(--mc-radius-sm); }
.mchp-btn--block { width: 100%; display: flex; }

/* ---------- Check list ---------- */
.mchp-check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mchp-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--mc-gray-600);
}

.mchp-check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23dd9933'/%3E%3Cpath d='M5 9l3 3 5-5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.mchp-check-list--light li { color: rgba(255,255,255,.85); }
.mchp-check-list--light li::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23dd9933'/%3E%3Cpath d='M5 9l3 3 5-5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ---------- Trust bar ---------- */
.mchp-trust-bar {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.mchp-trust-bar li {
  font-size: 13px;
  color: rgba(255,255,255,.70);
  font-weight: 500;
}


/* ====================================================================
   HERO
==================================================================== */
.mchp-hero {
  background: linear-gradient(135deg, var(--mc-navy) 0%, var(--mc-navy-mid) 60%, var(--mc-navy-light) 100%);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Subtle dot-grid overlay */
.mchp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.mchp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mchp-hero__h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  color: var(--mc-white);
  line-height: 1.12;
  margin: 0 0 24px;
}

.mchp-hero__accent {
  background: linear-gradient(90deg, var(--mc-gold-light), var(--mc-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

.mchp-hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,.80);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 520px;
}

.mchp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- Mock Dashboard ---- */
.mchp-hero__visual {
  display: flex;
  justify-content: center;
}

.mchp-mock {
  background: var(--mc-white);
  border-radius: var(--mc-radius-lg);
  box-shadow: var(--mc-shadow-lg), 0 0 0 1px rgba(255,255,255,.1);
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  position: relative;
  animation: mchp-float 4s ease-in-out infinite;
}

@keyframes mchp-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.mchp-mock__topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--mc-navy);
  padding: 10px 16px;
  font-size: 12px;
}

.mchp-mock__dots {
  display: flex;
  gap: 5px;
  margin-right: 4px;
}
.mchp-mock__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}
.mchp-mock__dots span:nth-child(1) { background: #ff5f56; }
.mchp-mock__dots span:nth-child(2) { background: #ffbd2e; }
.mchp-mock__dots span:nth-child(3) { background: #27c93f; }

.mchp-mock__title {
  color: rgba(255,255,255,.8);
  font-weight: 600;
  flex: 1;
  font-size: 12px;
}

.mchp-mock__sync {
  color: var(--mc-green-soft);
  font-size: 11px;
  font-weight: 600;
}

.mchp-mock__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mchp-mock__score-card {
  background: linear-gradient(135deg, var(--mc-navy), var(--mc-navy-mid));
  border-radius: var(--mc-radius);
  padding: 16px 20px;
  text-align: center;
}

.mchp-mock__score-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--mc-white);
  line-height: 1;
}

.mchp-mock__score-max {
  font-size: 18px;
  font-weight: 500;
  opacity: .5;
}

.mchp-mock__score-lbl {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.mchp-mock__bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mchp-mock__bar-row {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 8px;
}

.mchp-mock__bar-row--weak .mchp-mock__sec {
  color: var(--mc-red-soft);
}

.mchp-mock__sec {
  font-size: 11px;
  font-weight: 700;
  color: var(--mc-gray-600);
  text-align: right;
}

.mchp-mock__track {
  height: 6px;
  background: var(--mc-gray-100);
  border-radius: 99px;
  overflow: hidden;
}

.mchp-mock__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--mc-navy-mid), var(--mc-gold));
  border-radius: 99px;
  width: 0;
  transition: width 1.2s cubic-bezier(.22,.61,.36,1);
}

.mchp-mock__fill--weak {
  background: linear-gradient(90deg, var(--mc-red-soft), #f87171);
}

.mchp-mock__val {
  font-size: 12px;
  font-weight: 700;
  color: var(--mc-navy-mid);
}

.mchp-mock__val--weak { color: var(--mc-red-soft); }

.mchp-mock__priority {
  background: var(--mc-gray-100);
  border-radius: var(--mc-radius);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mchp-mock__priority-hdr {
  font-size: 11px;
  font-weight: 700;
  color: var(--mc-navy-mid);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}

.mchp-mock__priority-item {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.mchp-mock__rank {
  font-weight: 800;
  font-size: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.mchp-mock__rank--1 { background: var(--mc-red-soft); }
.mchp-mock__rank--2 { background: var(--mc-gold); }
.mchp-mock__rank--3 { background: var(--mc-gray-400); }

.mchp-mock__pname {
  color: var(--mc-gray-800);
  font-weight: 500;
  font-size: 11px;
  line-height: 1.3;
}

.mchp-mock__pct {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 99px;
  white-space: nowrap;
}
.mchp-mock__pct--high { background: #fee2e2; color: #dc2626; }
.mchp-mock__pct--med  { background: #fef3c7; color: #d97706; }
.mchp-mock__pct--low  { background: #f0fdf4; color: #15803d; }


/* ====================================================================
   AAMC DIFFERENTIATION
   Light bg — creates immediate contrast after the dark hero
==================================================================== */
.mchp-diff {
  background: #ffffff !important;
  border-top: 4px solid #dd9933 !important;
  padding: 80px 0;
}

/* ---- Header ---- */
.mchp-diff__head {
  text-align: left;
  max-width: 700px;
  margin: 0 0 48px;
}

.mchp-diff__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #dd9933;
  margin: 0 0 14px;
}

.mchp-diff__h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 800;
  color: #1e2d4f !important;
  line-height: 1.18;
  margin: 0 0 16px;
}

.mchp-diff__gold { color: #dd9933; }

.mchp-diff__sub {
  font-size: 16px;
  color: #475569 !important;
  line-height: 1.7;
  margin: 0;
}

/* ---- Card grid ---- */
.mchp-diff__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.mchp-diff__card--wide {
  grid-column: 1 / -1;
}

.mchp-diff__card {
  background: #22355a;
  border: 1px solid #2d4270;
  border-radius: 16px;
  padding: 28px 28px 26px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 16px rgba(30,45,79,.12);
}

.mchp-diff__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30,45,79,.22);
  /* no border or background change on hover — clean lift only */
}

.mchp-diff__card--wide {
  border-color: rgba(221,153,51,.30);
  border-left: 4px solid #dd9933 !important; /* gold left accent — preserved on hover */
}

.mchp-diff__card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(221,153,51,.14);
  border: 1px solid rgba(221,153,51,.30);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mchp-diff__card-body { flex: 1; }

.mchp-diff__card-h {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
  line-height: 1.3;
}

.mchp-diff__card--wide .mchp-diff__card-h { font-size: 18px; }

.mchp-diff__card-p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 640px) {
  /* Shrink the section heading so it breathes on narrow screens */
  .mchp-diff__h2 { font-size: 22px; }

  /* Keep 2-col grid: wide card spans full width, the two regular cards sit side-by-side */
  .mchp-diff__cards { grid-template-columns: 1fr 1fr; }
  .mchp-diff__card--wide { grid-column: 1 / -1; }

  /* Tighten the two smaller cards so they fit at half-width */
  .mchp-diff__card:not(.mchp-diff__card--wide) {
    flex-direction: column;
    padding: 18px 14px;
    gap: 10px;
  }
  .mchp-diff__card:not(.mchp-diff__card--wide) .mchp-diff__card-icon {
    width: 36px;
    height: 36px;
  }
  .mchp-diff__card:not(.mchp-diff__card--wide) .mchp-diff__card-h { font-size: 13px; }
  .mchp-diff__card:not(.mchp-diff__card--wide) .mchp-diff__card-p { font-size: 12px; }
}

/* ---- Stat row ---- */
.mchp-diff__stat-row {
  display: flex;
  justify-content: center;
  background: #f1f4f8;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  flex-wrap: wrap;
}

.mchp-diff__stat {
  flex: 1;
  min-width: 120px;
  max-width: 200px;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.mchp-diff__stat + .mchp-diff__stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: #e2e8f0;
}

.mchp-diff__stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #dd9933;
  line-height: 1;
  margin-bottom: 6px;
}

.mchp-diff__stat-lbl {
  font-size: 13px;
  color: #475569;
  line-height: 1.4;
}

@media (max-width: 760px) {
  .mchp-diff__stat-row { flex-wrap: wrap; }
  .mchp-diff__stat     { min-width: 40%; }
}
@media (max-width: 480px) {
  /* Stats: single row of 4 — vertical dividers only, no top/bottom borders */
  .mchp-diff__stat-row  { display: grid; grid-template-columns: repeat(4, 1fr); padding: 16px 8px; }
  .mchp-diff__stat      { min-width: unset; max-width: 100%; width: 100%;
                           padding: 0 6px; border-right: 1px solid #e2e8f0; }
  .mchp-diff__stat:last-child { border-right: none; }
  .mchp-diff__stat-num  { font-size: 20px; margin-bottom: 4px; }
  .mchp-diff__stat-lbl  { font-size: 9.5px; line-height: 1.3; }
  .mchp-diff__stat + .mchp-diff__stat::before { display: none; }
}


/* ====================================================================
   HOW IT WORKS
==================================================================== */
.mchp-hiw { background: var(--mc-gray-100); }

.mchp-hiw__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 24px;
}

.mchp-hiw__step {
  background: var(--mc-white);
  border-radius: var(--mc-radius-lg);
  padding: 36px 28px;
  box-shadow: var(--mc-shadow);
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}

.mchp-hiw__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--mc-shadow-lg);
}

.mchp-hiw__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.mchp-hiw__icon--chrome { background: #ffffff; box-shadow: 0 0 0 2px #e2e8f0, var(--mc-shadow-sm); }
.mchp-hiw__icon--sync   { background: linear-gradient(135deg, var(--mc-navy), var(--mc-navy-light)); }
.mchp-hiw__icon--target { background: linear-gradient(135deg, var(--mc-gold-dark), var(--mc-gold)); }

.mchp-hiw__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--mc-gold);
  margin-bottom: 10px;
  line-height: 1;
}

.mchp-hiw__h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--mc-navy-mid);
  margin: 0 0 12px;
}

.mchp-hiw__desc {
  font-size: 14px;
  color: var(--mc-gray-600);
  line-height: 1.65;
  margin: 0;
}

.mchp-hiw__arrow {
  display: flex;
  align-items: center;
  padding-top: 72px;
  opacity: .7;
}


/* ====================================================================
   PERFORMANCE ANALYTICS
==================================================================== */
.mchp-analytics { background: var(--mc-white); }

.mchp-analytics__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Tabs */
.mchp-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px; /* was 2px — more breathing room between tabs */
  margin-bottom: 28px;
}

.mchp-tab {
  background: var(--mc-gray-100);
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  border-radius: var(--mc-radius-sm);
  padding: 14px 18px;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--mc-gray-600);
  cursor: pointer;
  transition: background .18s, color .18s;
  border-left: 3px solid transparent;
}

/* Suppress ALL native button highlight on click/focus */
.mchp-tab:focus,
.mchp-tab:active {
  outline: none;
  background: var(--mc-gray-100);
  -webkit-tap-highlight-color: transparent;
}

.mchp-tab:focus-visible {
  /* Keyboard navigation only — accessibility preserved */
  outline: 2px solid var(--mc-gold);
  outline-offset: 2px;
}

.mchp-tab:hover {
  background: var(--mc-gray-200);
  color: var(--mc-navy-mid);
}

.mchp-tab--active {
  background: var(--mc-gray-100) !important; /* force override any browser active/focus fill */
  color: var(--mc-navy-mid);
  border-left-color: var(--mc-gold);
  font-weight: 700;
}

.mchp-tab-panel {
  display: none;
}

.mchp-tab-panel--active {
  display: block;
  animation: mchp-fade-in .25s ease;
}

@keyframes mchp-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

.mchp-tab-panel h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--mc-navy-mid);
  margin: 0 0 10px;
}

.mchp-tab-panel p {
  font-size: 15px;
  color: var(--mc-gray-600);
  margin: 0;
}

/* Chart mockup */
.mchp-chart-mock {
  background: var(--mc-navy);
  border-radius: var(--mc-radius-lg);
  padding: 28px;
  color: var(--mc-white);
  box-shadow: var(--mc-shadow-lg);
}

.mchp-chart-mock__title {
  font-size: 13px;
  font-weight: 600;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 24px;
}

.mchp-chart-mock__bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 140px;
  margin-bottom: 20px;
}

.mchp-chart-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  height: 100%;
}

.mchp-chart-bar__fill {
  width: 100%;
  border-radius: 4px 4px 0 0;
  transition: height 1s cubic-bezier(.22,.61,.36,1);
}

.mchp-chart-bar__fill--1 { background: var(--mc-red-soft); }
.mchp-chart-bar__fill--2 { background: #f97316; }
.mchp-chart-bar__fill--3 { background: var(--mc-gold); }
.mchp-chart-bar__fill--4 { background: var(--mc-green-soft); }
.mchp-chart-bar__fill--5 { background: #3b82f6; }

.mchp-chart-bar__lbl {
  font-size: 10px;
  font-weight: 600;
  opacity: .6;
  text-align: center;
}

.mchp-chart-mock__legend {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  opacity: .65;
  margin-bottom: 16px;
}

.mchp-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.mchp-legend-dot--strong { background: var(--mc-green-soft); }
.mchp-legend-dot--weak   { background: var(--mc-red-soft); }

.mchp-chart-mock__callout {
  background: rgba(255,255,255,.08);
  border-left: 3px solid var(--mc-gold);
  border-radius: 0 var(--mc-radius-sm) var(--mc-radius-sm) 0;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
}

.mchp-chart-mock__callout strong {
  display: block;
  color: var(--mc-gold-light);
  margin-bottom: 2px;
}

.mchp-chart-mock__callout span { opacity: .75; }


/* ====================================================================
   STUDY SCHEDULE
==================================================================== */
.mchp-schedule {
  background: linear-gradient(135deg, var(--mc-navy) 0%, var(--mc-navy-mid) 100%);
}

.mchp-schedule__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mchp-schedule__lead {
  font-size: 16px;
  color: rgba(255,255,255,.80);
  line-height: 1.7;
  margin: 16px 0 0;
}

/* Calendar mock */
.mchp-cal {
  background: var(--mc-white);
  border-radius: var(--mc-radius-lg);
  /* outer glow separates the card from the dark section background */
  box-shadow: var(--mc-shadow-lg), 0 0 0 1px rgba(255,255,255,.14), 0 -4px 0 0 #dd9933;
  overflow: hidden;
}

.mchp-cal__header {
  /* Lighter than the section bg (#22355a) so the card top is visible */
  background: #2d4270; /* --mc-navy-light */
  border-bottom: 1px solid rgba(255,255,255,.10);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mchp-cal__month {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--mc-white);
  font-size: 16px;
}

.mchp-cal__badge {
  background: var(--mc-gold);
  color: var(--mc-white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

.mchp-cal__days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 10px 16px 4px;
  gap: 2px;
}

.mchp-cal__days-header span {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--mc-gray-400);
  text-transform: uppercase;
}

.mchp-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 4px 16px 12px;
  gap: 3px;
}

.mchp-cal__day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--mc-gray-800);
  border-radius: 6px;
  position: relative;
  cursor: default;
}

.mchp-cal__day--prev { color: var(--mc-gray-400); }

.mchp-cal__day--today {
  background: var(--mc-navy-mid);
  color: var(--mc-white);
  font-weight: 700;
}

.mchp-cal__day--study {
  background: rgba(34,53,90,.10);
  color: var(--mc-navy-mid);
  font-weight: 600;
}

.mchp-cal__day--fl {
  background: var(--mc-gold);
  color: var(--mc-white);
  font-weight: 700;
  font-size: 11px;
}

.mchp-cal__tag {
  font-size: 8px;
  display: block;
  line-height: 1;
  opacity: .85;
  font-weight: 600;
}

.mchp-cal__legend {
  display: flex;
  gap: 16px;
  padding: 8px 16px;
  border-top: 1px solid var(--mc-gray-100);
}

.mchp-cal__leg {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--mc-gray-600);
}

.mchp-cal__dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}

.mchp-cal__dot--study { background: rgba(34,53,90,.20); }
.mchp-cal__dot--fl    { background: var(--mc-gold); }

.mchp-cal__today-card {
  background: var(--mc-gray-100);
  margin: 0 16px 16px;
  border-radius: var(--mc-radius-sm);
  padding: 12px 14px;
  border-left: 3px solid var(--mc-gold);
}

.mchp-cal__today-hdr {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--mc-gray-400);
  margin-bottom: 4px;
}

.mchp-cal__today-topic {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--mc-navy-mid);
}

.mchp-cal__today-sub {
  font-size: 11px;
  color: var(--mc-gray-600);
  margin-top: 2px;
}


/* ====================================================================
   AI ASSISTANT
==================================================================== */
.mchp-ai { background: var(--mc-white); }

.mchp-ai__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mchp-ai__lead {
  font-size: 16px;
  color: var(--mc-gray-600);
  line-height: 1.7;
  margin: 16px 0 0;
}

.mchp-ai__note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--mc-gray-400);
}

/* Chat mock */
.mchp-chat {
  background: var(--mc-white);
  border-radius: var(--mc-radius-lg);
  box-shadow: var(--mc-shadow-lg);
  overflow: hidden;
  border: 1px solid var(--mc-gray-200);
}

.mchp-chat__header {
  background: var(--mc-navy);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}

.mchp-chat__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mc-gold);
  color: var(--mc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.mchp-chat__status {
  margin-left: auto;
  color: var(--mc-green-soft);
  font-size: 11px;
  animation: mchp-blink-online 2.4s ease-in-out infinite;
}

@keyframes mchp-blink-online {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

.mchp-chat__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mchp-chat__msg {
  padding: 12px 14px;
  border-radius: var(--mc-radius);
  font-size: 13px;
  line-height: 1.55;
  display: block;
}

.mchp-chat__msg--ai {
  background: var(--mc-gray-100);
  color: var(--mc-gray-800);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  max-width: 92%;
}

/* ── Expanded source/category tag block inside AI message ── */
.mchp-chat__tag-block {
  background: rgba(221,153,51,.09);
  border: 1px solid rgba(221,153,51,.28);
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
}

/* Top identifier row: "FL 5 · C/P · P1 Q4" */
.mchp-chat__tag-id {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #c4871c;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(221,153,51,.25);
  line-height: 1;
}

/* Tree container */
.mchp-chat__tag-tree {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* CC5E section: badge label + indented categories below */
.mchp-chat__tree-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 7px;
}

/* Two category entries grouped under one CC badge */
.mchp-chat__tree-cats {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 6px;
  border-left: 2px solid rgba(221,153,51,.25);
  margin-left: 2px;
}

/* Single category entry */
.mchp-chat__tree-cat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* "CC5E" / "SIRS4" pill badges */
.mchp-chat__tree-cc {
  display: inline-block;
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .05em;
  color: #c4871c;
  background: rgba(221,153,51,.22);
  border-radius: 3px;
  padding: 1px 5px;
  line-height: 1.5;
}

/* Category name: "Enzymes (BC)" */
.mchp-chat__tree-cat-name {
  font-size: 11px;
  font-weight: 600;
  color: #5a3d08;
  line-height: 1.4;
}

/* Sub-topic level */
.mchp-chat__tree-sub {
  padding-left: 12px;
  border-left: 2px solid rgba(221,153,51,.20);
  margin-left: 2px;
  font-size: 10.5px;
  font-weight: 500;
  color: #7a5510;
  line-height: 1.5;
}

/* Sub-sub-topic level */
.mchp-chat__tree-leaf {
  padding-left: 10px;
  font-size: 10px;
  font-weight: 400;
  color: #9a6c18;
  line-height: 1.5;
  margin-top: 2px;
}

/* SIRS4 row — sits below CC section with a divider */
.mchp-chat__tree-skill {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding-top: 7px;
  border-top: 1px solid rgba(221,153,51,.20);
}

.mchp-chat__tree-skill-text {
  font-size: 10px;
  font-weight: 400;
  color: #7a5510;
  line-height: 1.45;
}

/* Paragraphs inside AI chat bubble */
.mchp-chat__p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.55;
}
.mchp-chat__p:last-child { margin-bottom: 0; }

.mchp-chat__msg--user {
  background: var(--mc-navy-mid);
  color: var(--mc-white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  max-width: 80%;
}

.mchp-chat__input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--mc-gray-200);
  border-radius: var(--mc-radius-sm);
  padding: 10px 12px;
  margin-top: 4px;
}

.mchp-chat__placeholder {
  font-size: 12px;
  color: var(--mc-gray-400);
}

.mchp-chat__send {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--mc-gold);
  color: var(--mc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}


/* ====================================================================
   PRICING
==================================================================== */
.mchp-pricing { background: var(--mc-gray-100); }

/* 6 / 12 month toggle */
.mchp-pricing__toggle {
  display: flex;
  background: var(--mc-gray-200);
  border-radius: 999px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 40px;
  gap: 2px;
}

.mchp-toggle-btn {
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 8px 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--mc-gray-500);
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}

.mchp-toggle-btn--active {
  background: var(--mc-white);
  color: var(--mc-navy-mid);
  box-shadow: 0 1px 4px rgba(30,45,79,.12);
}

.mchp-toggle-btn:focus { outline: none; }
.mchp-toggle-btn:focus-visible { outline: 2px solid var(--mc-gold); outline-offset: 2px; }

.mchp-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.mchp-pricing__card {
  background: var(--mc-white);
  border-radius: var(--mc-radius-lg);
  padding: 36px 28px;
  box-shadow: var(--mc-shadow);
  border: 2px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .2s, box-shadow .2s;
}

.mchp-pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--mc-shadow-lg);
}

.mchp-pricing__card--featured {
  border-color: var(--mc-gold);
  box-shadow: var(--mc-shadow-lg), 0 0 0 1px var(--mc-gold);
  transform: scale(1.03);
}

.mchp-pricing__card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.mchp-pricing__best {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mc-gold);
  color: var(--mc-white);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .07em;
  white-space: nowrap;
}

.mchp-pricing__tier {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--mc-navy-mid);
  margin: 0;
  text-align: center;
}

.mchp-pricing__price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 54px;
  font-weight: 800;
  color: var(--mc-navy-mid);
  line-height: 1;
  letter-spacing: -.02em;
  text-align: center;
}

.mchp-pricing__price sup {
  font-size: 22px;
  font-weight: 600;
  vertical-align: super;
  line-height: 1;
}

.mchp-pricing__billing {
  font-size: 13px;
  color: var(--mc-gray-400);
  margin: -10px 0 0;
  font-weight: 500;
  text-align: center;
}

.mchp-pricing__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.mchp-pricing__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--mc-gray-600);
}

.mchp-pricing__features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23dd9933'/%3E%3Cpath d='M4.5 8l2.5 2.5 4.5-4.5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.mchp-pricing__no {
  color: var(--mc-gray-400) !important;
  text-decoration: line-through;
}

.mchp-pricing__no::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23e2e8f0'/%3E%3Cpath d='M5.5 10.5l5-5M10.5 10.5l-5-5' stroke='%2394a3b8' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") !important;
}

.mchp-pricing__note {
  font-size: 12px;
  color: var(--mc-gray-400);
  text-align: center;
  margin: 0;
}

.mchp-pricing__disclaimer {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--mc-gray-400);
}

.mchp-pricing__disclaimer a {
  color: var(--mc-navy-mid);
  font-weight: 600;
}


/* ====================================================================
   FAQ
==================================================================== */
.mchp-faq { background: var(--mc-white); }

.mchp-faq__container { max-width: 800px; }

.mchp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mchp-faq__q {
  width: 100%;
  background: var(--mc-white);
  border: 1px solid var(--mc-gray-200);
  border-radius: 10px;
  box-shadow: none !important;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--mc-navy-mid);
  cursor: pointer;
  text-align: left;
  transition: background .18s, border-color .18s;
}

.mchp-faq__q:hover { background: var(--mc-gray-100); }

.mchp-faq__q[aria-expanded="true"] {
  background: var(--mc-gray-100);
  border-color: var(--mc-gray-400);
}

.mchp-faq__icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--mc-gold);
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}

.mchp-faq__q[aria-expanded="true"] .mchp-faq__icon {
  transform: rotate(45deg);
}

.mchp-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}

.mchp-faq__a.mchp-faq__a--open {
  max-height: 400px;
}

.mchp-faq__a p {
  padding: 0 20px 18px;
  margin: 0;
  font-size: 15px;
  color: var(--mc-gray-600);
  line-height: 1.7;
}


/* ====================================================================
   CONTACT
==================================================================== */
.mchp-contact { background: var(--mc-gray-100); }

.mchp-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.mchp-contact__text h2 { margin-bottom: 16px; }

.mchp-contact__text p {
  font-size: 16px;
  color: var(--mc-gray-600);
  margin: 0 0 24px;
}

.mchp-contact__info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mchp-contact__info li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.mchp-contact__info a {
  color: var(--mc-navy-mid);
  font-weight: 600;
  text-decoration: none;
}

.mchp-contact__info a:hover { text-decoration: underline; }

/* Form */
.mchp-contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mchp-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--mc-gray-600);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.mchp-form-input {
  width: 100%;
  border: 1px solid var(--mc-gray-200);
  border-radius: var(--mc-radius-sm);
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--mc-gray-800);
  background: var(--mc-white);
  transition: border-color .18s, box-shadow .18s;
  box-sizing: border-box;
}

.mchp-form-input:focus {
  outline: none;
  border-color: var(--mc-gold);
  box-shadow: 0 0 0 3px rgba(221,153,51,.20);
}

.mchp-form-textarea { resize: vertical; min-height: 100px; }

/* Waitlist success state */
.mchp-wl-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 32px;
  background: var(--mc-white);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(15,23,65,.08);
}
.mchp-wl-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mc-navy) 0%, var(--mc-navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.mchp-wl-success__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--mc-navy);
  margin: 0 0 10px;
}
.mchp-wl-success__sub {
  font-size: 15px;
  color: var(--mc-gray-600);
  margin: 0 0 20px;
  line-height: 1.6;
}
.mchp-wl-success__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(221,153,51,.12);
  color: var(--mc-gold);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: .02em;
}
.mchp-wl-success.is-visible { display: flex; }


/* ====================================================================
   FINAL CTA
==================================================================== */
.mchp-cta-final {
  background: linear-gradient(135deg, var(--mc-navy) 0%, var(--mc-navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.mchp-cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.mchp-cta-final__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.mchp-cta-final__h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--mc-white);
  margin: 0 0 16px;
}

.mchp-cta-final__sub {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin: 0 0 36px;
}

.mchp-cta-final__note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}


/* ====================================================================
   SCROLL-IN ANIMATIONS
==================================================================== */
.mchp-will-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.mchp-in-view {
  opacity: 1;
  transform: none;
}

/* Stagger pricing cards */
.mchp-pricing__card.mchp-will-animate:nth-child(1) { transition-delay: 0s; }
.mchp-pricing__card.mchp-will-animate:nth-child(2) { transition-delay: .1s; }
.mchp-pricing__card.mchp-will-animate:nth-child(3) { transition-delay: .2s; }

/* HIW steps — no stagger, all animate at the same speed */
.mchp-hiw__step.mchp-will-animate:nth-child(1) { transition-delay: 0s; }
.mchp-hiw__step.mchp-will-animate:nth-child(3) { transition-delay: 0s; }


/* ====================================================================
   UNSUBSCRIBE PAGE  [medcast_unsubscribe]
==================================================================== */
/* ── Unsubscribe page ────────────────────────────── */
/* Page background (#f1f4f8) set via Elementor section settings */
.mc-unsub-page {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
}
.mc-unsub {
  max-width: 480px;
  width: 100%;
  background: #ffffff;
  border-radius: 14px;
  border-top: 3px solid #dd9933;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(15,23,65,.13);
}
/* Card body */
.mc-unsub__card-body {
  padding: 40px 44px 32px;
  text-align: center;
}
/* Circular brand icon */
.mc-unsub__icon-circle {
  margin: 0 auto 24px;
  width: 72px;
  height: 72px;
  display: block;
}
/* Light gray footer row — matches email footer */
.mc-unsub__card-footer {
  background: #f1f4f8;
  border-top: 1px solid #e2e8f0;
  padding: 16px 40px;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.mc-unsub__label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #dd9933;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 12px;
}
.mc-unsub__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #0f1741;
  line-height: 1.3;
  margin: 0 0 16px;
}
.mc-unsub__body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  margin: 0 0 28px;
}
.mc-unsub__link {
  color: #94a3b8;
  text-decoration: underline;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.mc-unsub__link:hover { color: #0f1741; }
.mc-unsub__link--dark {
  color: #dd9933;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.mc-unsub__link--dark:hover { text-decoration: underline; }
.mchp-hiw__step.mchp-will-animate:nth-child(5) { transition-delay: 0s; }


/* ====================================================================
   FOOTER
==================================================================== */
.mc-footer {
  background: var(--mc-navy);
  border-top: 3px solid var(--mc-gold);
}
.mc-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.mc-footer__brand { flex-shrink: 0; }
.mc-footer__logo {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--mc-white);
  letter-spacing: -.3px;
  margin-bottom: 6px;
}
.mc-footer__bars {
  color: var(--mc-gold);
  font-size: 16px;
  margin-left: 5px;
}
.mc-footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin: 0;
}
.mc-footer__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.mc-footer__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .18s;
}
.mc-footer__link:hover { color: var(--mc-white); }
.mc-footer__link--cta {
  color: var(--mc-gold);
  font-weight: 600;
}
.mc-footer__link--cta:hover { color: #f0b03a; }
.mc-footer__legal-bar {
  padding-top: 0;
  padding-bottom: 5px;
  text-align: center;
}
.mc-footer .mc-footer__legal {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  line-height: 1.5;
  margin: 0 !important;
}
.mc-footer__bottom {
  padding-top: 7px;
  padding-bottom: 5px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.mc-footer .mc-footer__copy {
  font-size: 10px;
  color: rgba(255,255,255,.3);
  margin: 0 !important;
}

/* ====================================================================
   RESPONSIVE
==================================================================== */
@media (max-width: 1024px) {
  .mchp-pricing__card--featured { transform: none; }
  .mchp-pricing__card--featured:hover { transform: translateY(-4px); }
}

@media (max-width: 900px) {
  .mchp-hero__grid       { grid-template-columns: 1fr; gap: 48px; }
  .mchp-hero__visual     { display: none; } /* hide mockup on small screens */
  .mchp-hero__h1         { font-size: 36px; }
  .mchp-hero__sub        { max-width: 100%; }

  .mchp-hiw__steps {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  /* Show arrows rotated downward between stacked steps */
  .mchp-hiw__arrow {
    display: flex;
    justify-content: center;
    padding: 4px 0;
  }
  .mchp-hiw__arrow svg { transform: rotate(90deg); }

  .mchp-analytics__layout { grid-template-columns: 1fr; }
  /* Chart mock is a desktop visual — hide on mobile, tabs are self-sufficient */
  .mchp-analytics__right { display: none; }

  .mchp-schedule__grid { grid-template-columns: 1fr; }
  .mchp-schedule__visual { order: 2; }
  .mchp-schedule__content { order: 1; }

  .mchp-ai__grid { grid-template-columns: 1fr; }

  .mchp-pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .mchp-contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .mchp-section { padding: 56px 0; }
  .mchp-container { padding: 0 16px; }

  /* Hero: smaller h1, cut bottom padding so nothing hangs below trust bar */
  .mchp-hero { padding: 88px 0 36px; }
  .mchp-hero__h1 { font-size: 28px; }

  /* Buttons side-by-side, equal width */
  .mchp-hero__ctas { flex-direction: row; flex-wrap: nowrap; gap: 8px; }
  .mchp-hero__ctas .mchp-btn { flex: 1; font-size: 14px; padding: 11px 10px; }

  /* More breathing room above trust bar, flush at the bottom */
  .mchp-trust-bar { justify-content: center; margin-top: 36px; margin-bottom: 0; }

  .mchp-h2 { font-size: 24px; }
  .mchp-section-head { margin-bottom: 32px; }

  /* HIW steps: reduce card padding + shrink icon/type so each step is more compact */
  .mchp-hiw__step { padding: 22px 18px; }
  .mchp-hiw__icon { width: 56px; height: 56px; margin-bottom: 10px; }
  .mchp-hiw__num { font-size: 18px; margin-bottom: 6px; }
  .mchp-hiw__h3 { font-size: 16px; margin-bottom: 6px; }
  .mchp-hiw__desc { font-size: 13px; }

  /* Pricing: tighter cards, smaller price, compact feature list */
  .mchp-pricing__card { padding: 22px 18px; gap: 12px; }
  .mchp-pricing__price { font-size: 42px; }
  .mchp-pricing__tier { font-size: 16px; }
  .mchp-pricing__billing { font-size: 12px; margin-top: -4px; }
  .mchp-pricing__features { gap: 8px; }
  .mchp-pricing__features li { font-size: 13px; }
  .mchp-pricing__note { font-size: 11px; }

  /* Footer: stack brand above nav */
  .mc-footer__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .mc-footer__nav { gap: 16px; }
}
