/* Mini-course shared styles — used by all 5 sales pages */
/* Uses theme.css tokens: --bg, --accent-rust, --accent-sage, --accent-slate, --font-display, --font-body */

.mc-hero {
  background: var(--bg);
  padding: 140px 40px 80px;
  text-align: center;
}
.mc-hero--sage { background: #F4F7F3; }
.mc-hero--slate { background: #F2F4F8; }
.mc-hero--plum { background: #F8F4F7; }
.mc-hero__inner { max-width: 720px; margin: 0 auto; }
.mc-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-rust);
  background: rgba(200,86,58,0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.mc-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.mc-hero__sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.mc-hero__cta { margin-bottom: 40px; }
.mc-price-note {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 12px;
}
.mc-hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  color: var(--fg-muted);
}
.mc-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mc-trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-rust);
  display: inline-block;
}

/* CTA Band */
.mc-cta-band {
  background: var(--accent-rust);
  padding: 64px 40px;
  text-align: center;
}
.mc-cta-band--slate { background: var(--accent-slate); }
.mc-cta-band--plum { background: #8B6B8A; }
.mc-cta-band__inner { max-width: 600px; margin: 0 auto; }
.mc-cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}
.mc-cta-band p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  margin-bottom: 32px;
}
.mc-cta-band .mc-btn { background: white; color: var(--fg); }
.mc-cta-band .mc-btn:hover { background: rgba(255,255,255,0.9); }

/* Modules */
.mc-modules {
  background: var(--bg);
  padding: 80px 40px;
}
.mc-modules__inner { max-width: 960px; margin: 0 auto; }
.mc-section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-rust);
  text-align: center;
  margin-bottom: 12px;
}
.mc-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  text-align: center;
  color: var(--fg);
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}
.mc-modules__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.mc-module-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,26,26,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mc-module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.mc-module-card__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(200,86,58,0.12);
  line-height: 1;
  margin-bottom: 16px;
}
.mc-module-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}
.mc-module-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Buttons */
.mc-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 100px;
  background: var(--accent-rust);
  color: white;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  cursor: pointer;
  border: none;
}
.mc-btn:hover { background: #B84B2F; transform: translateY(-2px); }
.mc-btn:active { transform: translateY(0); }
.mc-btn--lg {
  font-size: 18px;
  padding: 20px 40px;
}

/* Footer */
.mc-footer {
  background: var(--fg);
  padding: 32px 40px;
  text-align: center;
}
.mc-footer p { font-size: 14px; color: rgba(255,255,255,0.5); }
.mc-footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
.mc-footer a:hover { color: white; }

/* Guarantee badge override — readable on dark CTA band backgrounds */
.mc-cta-band .guarantee-badge {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}
.mc-cta-band .guarantee-badge__title { color: #fff; }
.mc-cta-band .guarantee-badge__desc { color: rgba(255,255,255,0.8); }

@media (max-width: 600px) {
  .mc-hero { padding: 110px 24px 60px; }
  .mc-modules { padding: 60px 24px; }
  .mc-cta-band { padding: 48px 24px; }
  .mc-modules__grid { grid-template-columns: 1fr; }
}