
:root {
  --mm-green: #16834b;
  --mm-green-dark: #075b32;
  --mm-green-light: #eaf8f0;
  --mm-cream: #f7fbf8;
  --mm-text: #17352a;
  --mm-muted: #65766d;
}
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--mm-text);
  background: #fff;
}
.navbar {
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.96) !important;
  border-bottom: 1px solid #e8eee9;
}
.brand-mark {
    width: 54px;
    height: 45px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
}
.brand-text { line-height: 1.05; }
.brand-text small { color: var(--mm-muted); font-weight: 600; }
.btn-success {
  --bs-btn-bg: var(--mm-green);
  --bs-btn-border-color: var(--mm-green);
  --bs-btn-hover-bg: var(--mm-green-dark);
  --bs-btn-hover-border-color: var(--mm-green-dark);
}
.hero {
  background:
    radial-gradient(circle at 10% 20%, rgba(44,181,111,.16), transparent 35%),
    radial-gradient(circle at 90% 10%, rgba(22,131,75,.13), transparent 30%),
    linear-gradient(180deg, #f8fdf9 0%, #fff 100%);
  padding: 7rem 0 5rem;
}
.hero-badge {
  display: inline-flex; gap: .5rem; align-items: center;
  padding: .5rem .8rem; border-radius: 999px;
  background: var(--mm-green-light); color: var(--mm-green-dark);
  font-weight: 700; font-size: .9rem;
}
.hero h1 { font-weight: 850; letter-spacing: -.04em; }
.gradient-text {
  background: linear-gradient(90deg, var(--mm-green-dark), #20a763);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-card {
  border: 0; border-radius: 28px; overflow: hidden;
  box-shadow: 0 25px 70px rgba(10,71,40,.15);
}
.hero-card img { width: 100%;}
.section { padding: 5rem 0; }
.section-soft { background: var(--mm-cream); }
.section-title { font-weight: 800; letter-spacing: -.025em; }
.section-kicker {
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--mm-green); font-weight: 800; font-size: .78rem;
}
.course-card {
  height: 100%; border: 1px solid #e4eee7; border-radius: 22px;
  padding: 1.6rem; background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.course-card:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(16,78,45,.11); border-color: #b9dec8; }
.course-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: grid; place-items: center; background: var(--mm-green-light);
  color: var(--mm-green-dark); font-size: 1.35rem; font-weight: 800;
}
.feature {
  display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.2rem;
}
.feature-icon {
  flex: 0 0 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; background: #eaf8f0; color: #0b6d3b;
  font-weight: 800;
}
.quote-card {
  border-radius: 28px; border: 1px solid #e3eee7;
  background: #fff; padding: 3rem; min-height: 290px;
  display: flex; flex-direction: column; justify-content: center;
}
.quote-mark { font-size: 4rem; line-height: .8; color: #b7e0c9; font-family: Georgia, serif; }
.carousel-control-prev-icon, .carousel-control-next-icon {
  background-color: var(--mm-green-dark); border-radius: 50%; padding: 1.1rem;
  background-size: 50%;
}
.carousel-control-prev, .carousel-control-next { width: 8%; }
.cta {
  background: linear-gradient(135deg, var(--mm-green-dark), var(--mm-green));
  color: white; border-radius: 30px; padding: 3.5rem;
}
.page-hero { padding: 7rem 0 3.5rem; background: var(--mm-cream); }
.contact-card {
  border: 1px solid #e1ece5; border-radius: 22px; padding: 1.5rem;
  background: #fff;
}
.form-control, .form-select { border-radius: 12px; padding: .8rem 1rem; }
.form-control:focus, .form-select:focus {
  border-color: #7bc69d; box-shadow: 0 0 0 .25rem rgba(22,131,75,.12);
}
footer { background: #082d1c; color: #cde2d5; }
footer a { color: #e0f4e7; text-decoration: none; }
footer a:hover { color: #fff; }
.social-btn {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255,255,255,.1);
}
.back-to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 1050;
  display: none; width: 44px; height: 44px; border-radius: 50%;
}
@media (max-width: 991px) {
  .hero { padding-top: 6rem; }
  .hero h1 { font-size: 2.7rem; }
}
