/*
 * Malkant Group — Multi-page site styles
 * Brand: Navy #001753 · Green #066a4c · Gold #e8b84b · White
 * Font: Quicksand (served via Google Fonts)
 * This file layers on top of site.css via the industry style mechanism.
 */

/* ── Reset site.css defaults that conflict with Malkant design ─────────────── */
body {
  background: #fff;
  color: #1a1f36;
  font-family: var(--font-body); /* Quicksand from theme */
  line-height: 1.7;
}
a { color: #066a4c; }
a:hover { color: #07845f; }

/* ── CSS custom properties for Malkant brand ──────────────────────────────── */
:root {
  --mg-navy:       #001753;
  --mg-navy-deep:  #000f36;
  --mg-navy-mid:   #002580;
  --mg-green:      #066a4c;
  --mg-green-lgt:  #07845f;
  --mg-gold:       #e8b84b;
  --mg-gold-lgt:   #f5d07a;
  --mg-white:      #ffffff;
  --mg-off:        #f7f8fc;
  --mg-light:      #eef0f6;
  --mg-mid:        #c5cad9;
  --mg-text:       #1a1f36;
  --mg-muted:      #5a6080;
  --maxw: 960px;
}

/* ── Topbar ───────────────────────────────────────────────────────────────── */
.mg-topbar {
  background: var(--mg-navy-deep);
  color: rgba(255,255,255,.55);
  text-align: center;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.mg-topbar span { color: var(--mg-gold); }

/* ── Navigation ───────────────────────────────────────────────────────────── */
.mg-nav {
  background: var(--mg-navy);
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(0,23,83,.4);
}
.mg-nav-logo {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}
.mg-nav-logo span { color: var(--mg-gold); }
.mg-nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}
.mg-nav-links > li > a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color .2s, background .2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.mg-nav-links > li > a:hover,
.mg-nav-links > li > a.active {
  color: #fff;
  background: rgba(255,255,255,.07);
}
.mg-nav-cta {
  background: var(--mg-green) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 4px;
}
.mg-nav-cta:hover { background: var(--mg-green-lgt) !important; }
.mg-nav-chevron { font-size: 9px; opacity: .6; }

/* Mega menu */
.mg-has-mega { position: relative; }
.mg-mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 64px rgba(0,23,83,.18);
  padding: 28px;
  min-width: 520px;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  z-index: 300;
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
}
.mg-has-mega:hover .mg-mega {
  display: grid;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.mg-mega-head {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mg-green);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--mg-light);
}
.mg-mega-link {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 9px 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .15s;
  margin-bottom: 2px;
}
.mg-mega-link:hover { background: var(--mg-off); }
.mg-mega-link > span { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.mg-mega-link strong { display: block; font-size: 13px; font-weight: 700; color: var(--mg-navy); line-height: 1.3; }
.mg-mega-link small  { display: block; font-size: 11px; color: var(--mg-muted); margin-top: 2px; }

/* Hamburger */
.mg-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
}
.mg-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .25s;
}
.mg-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mg-hamburger.open span:nth-child(2) { opacity: 0; }
.mg-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mg-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,15,54,.55);
  z-index: 300;
  backdrop-filter: blur(2px);
}
.mg-overlay.open { display: block; }
.mg-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--mg-navy-deep);
  z-index: 400;
  transition: right .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mg-drawer.open { right: 0; }
.mg-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mg-drawer-logo { font-size: 17px; font-weight: 700; color: #fff; text-decoration: none; }
.mg-drawer-logo span { color: var(--mg-gold); }
.mg-drawer-close {
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mg-drawer-nav { padding: 16px 0 32px; }
.mg-drawer-section {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mg-gold);
  padding: 14px 22px 6px;
}
.mg-drawer-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  padding: 12px 22px 4px;
}
.mg-drawer-link {
  display: block;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 22px;
  transition: background .15s, color .15s;
}
.mg-drawer-link:hover { background: rgba(255,255,255,.06); color: #fff; }
.mg-drawer-divider { height: 1px; background: rgba(255,255,255,.08); margin: 14px 0; }
.mg-drawer-cta {
  display: block;
  background: var(--mg-green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 22px;
  text-align: center;
  text-decoration: none;
  margin: 16px 22px 0;
  border-radius: 6px;
}

/* ── Page layout helpers ───────────────────────────────────────────────────── */
.mg-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 56px; }
.mg-section { padding: 88px 0; }
.mg-section-alt { background: var(--mg-off); }
.mg-section-navy { background: var(--mg-navy); }
.mg-section-green { background: var(--mg-green); }

/* ── Typography helpers ────────────────────────────────────────────────────── */
.mg-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mg-green);
  margin-bottom: 10px;
}
.mg-label-gold { color: var(--mg-gold); }
.mg-h2 { font-size: clamp(26px, 4vw, 44px); font-weight: 700; line-height: 1.12; color: var(--mg-navy); margin-bottom: 14px; }
.mg-h2-white { color: #fff; }
.mg-h2 .accent { color: var(--mg-green); }
.mg-h2-white .accent { color: var(--mg-gold); }
.mg-sub { font-size: 15px; color: var(--mg-muted); max-width: 620px; margin-bottom: 44px; line-height: 1.8; }
.mg-sub-white { color: rgba(255,255,255,.65); }
.mg-body { font-size: 15px; color: var(--mg-muted); line-height: 1.85; margin-bottom: 16px; }
.mg-body strong { color: var(--mg-navy); font-weight: 700; }
.mg-body-white { color: rgba(255,255,255,.65); }
.mg-body-white strong { color: #fff; }

/* ── Two-column grids ──────────────────────────────────────────────────────── */
.mg-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.mg-two-col-center { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.mg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.mg-btn-green  { background: var(--mg-green); color: #fff; }
.mg-btn-green:hover { background: var(--mg-green-lgt); transform: translateY(-1px); color: #fff; }
.mg-btn-gold   { background: var(--mg-gold); color: var(--mg-navy); }
.mg-btn-gold:hover { background: var(--mg-gold-lgt); transform: translateY(-1px); }
.mg-btn-white  { background: #fff; color: var(--mg-green); }
.mg-btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.mg-btn-ghost-white { background: transparent; color: rgba(255,255,255,.85); border: 1.5px solid rgba(255,255,255,.35); }
.mg-btn-ghost-white:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); color: #fff; }
.mg-btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.mg-btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.mg-btn-outline-navy { background: transparent; color: var(--mg-navy); border: 2px solid var(--mg-navy); }
.mg-btn-outline-navy:hover { background: var(--mg-navy); color: #fff; }
.mg-btn-group { display: flex; gap: 14px; flex-wrap: wrap; }
.mg-btn-group-center { justify-content: center; }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.mg-hero {
  background: var(--mg-navy);
  color: #fff;
  padding: 100px 56px 88px;
  position: relative;
  overflow: hidden;
}
.mg-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,106,76,.16) 0%, transparent 65%);
  pointer-events: none;
}
.mg-hero-grid {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cdefs%3E%3Cpattern id='g' width='20' height='20' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 20 0 L 0 0 0 20' fill='none' stroke='white' stroke-width='0.3' opacity='0.05'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='80' height='80' fill='url(%23g)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.mg-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 52px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.mg-hero-inner { max-width: 920px; margin: 0 auto; position: relative; z-index: 2; }
.mg-hero-inner > * { animation: mg-fade-up .65s ease both; }
.mg-hero-inner > *:nth-child(1) { animation-delay: .05s; }
.mg-hero-inner > *:nth-child(2) { animation-delay: .14s; }
.mg-hero-inner > *:nth-child(3) { animation-delay: .22s; }
.mg-hero-inner > *:nth-child(4) { animation-delay: .30s; }
.mg-hero-inner > *:nth-child(5) { animation-delay: .37s; }
@keyframes mg-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mg-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,184,75,.15);
  border: 1px solid rgba(232,184,75,.35);
  color: var(--mg-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 26px;
}
.mg-hero-eyebrow::before { content: '◆'; font-size: 7px; }
.mg-hero h1 { font-size: clamp(34px,5vw,64px); font-weight: 700; line-height: 1.08; letter-spacing: -.01em; margin-bottom: 20px; }
.mg-hero h1 .accent { color: var(--mg-gold); }
.mg-hero-sub { font-size: clamp(15px,1.8vw,19px); color: rgba(255,255,255,.65); max-width: 640px; margin-bottom: 32px; line-height: 1.8; font-weight: 400; }
.mg-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 0; }

/* Compact hero for inner pages */
.mg-hero-compact { padding: 80px 56px 72px; }
.mg-hero-compact h1 { font-size: clamp(28px, 4.5vw, 52px); }
.mg-hero-compact::after { height: 36px; }

/* ── Cards ─────────────────────────────────────────────────────────────────── */
.mg-card { background: #fff; border: 1.5px solid var(--mg-light); border-radius: 12px; padding: 28px; transition: box-shadow .2s, transform .2s; }
.mg-card:hover { box-shadow: 0 8px 28px rgba(0,23,83,.09); transform: translateY(-2px); }
.mg-card-navy { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 24px; }

/* ── CTA band ──────────────────────────────────────────────────────────────── */
.mg-cta-band { background: var(--mg-green); padding: 80px 0; position: relative; overflow: hidden; }
.mg-cta-band::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,.05); pointer-events: none; }
.mg-cta-inner { position: relative; z-index: 2; text-align: center; }
.mg-cta-inner h2 { font-size: clamp(24px,4vw,40px); font-weight: 700; color: #fff; margin-bottom: 14px; }
.mg-cta-inner p  { font-size: 16px; color: rgba(255,255,255,.75); max-width: 500px; margin: 0 auto 32px; line-height: 1.75; }

/* ── Scroll animate ────────────────────────────────────────────────────────── */
.mg-animate { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.mg-animate.in-view { opacity: 1; transform: translateY(0); }

/* ── Footer ────────────────────────────────────────────────────────────────── */
.mg-footer { background: var(--mg-navy-deep); padding: 64px 0 36px; }
.mg-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
.mg-footer-logo { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.mg-footer-logo span { color: var(--mg-gold); }
.mg-footer-tagline { font-size: 12px; color: rgba(255,255,255,.3); margin-bottom: 12px; letter-spacing: .04em; }
.mg-footer-desc { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 260px; }
.mg-footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 14px; }
.mg-footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.mg-footer-links a { font-size: 13px; color: rgba(255,255,255,.5); text-decoration: none; font-weight: 500; transition: color .2s; }
.mg-footer-links a:hover { color: #fff; }
.mg-footer-bottom { display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,.2); flex-wrap: wrap; gap: 8px; }
.mg-footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; }
.mg-footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* ── Forms ─────────────────────────────────────────────────────────────────── */
.mg-form { display: flex; flex-direction: column; gap: 12px; }
.mg-field { display: flex; flex-direction: column; gap: 6px; }
.mg-field label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.mg-input, .mg-select, .mg-textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--mg-light);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--mg-text);
  background: #fff;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.mg-input:focus, .mg-select:focus, .mg-textarea:focus { border-color: var(--mg-green); }
.mg-textarea { resize: vertical; min-height: 100px; }
.mg-input-dark { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.15); color: #fff; }
.mg-input-dark::placeholder { color: rgba(255,255,255,.3); }
.mg-input-dark:focus { border-color: rgba(255,255,255,.4); }
.mg-select-dark { background: var(--mg-navy-deep); border-color: rgba(255,255,255,.15); color: #fff; }

/* ── Status / badge ────────────────────────────────────────────────────────── */
.mg-badge-status {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,184,75,.12); border: 1px solid rgba(232,184,75,.3);
  color: var(--mg-gold); font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 8px 18px; border-radius: 100px; margin-bottom: 24px;
}
.mg-badge-status::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--mg-gold); display: block; }

/* ── Blog listing ──────────────────────────────────────────────────────────── */
.mg-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mg-blog-card { background: #fff; border: 1.5px solid var(--mg-light); border-radius: 12px; overflow: hidden; text-decoration: none; display: block; transition: box-shadow .2s, transform .2s; }
.mg-blog-card:hover { box-shadow: 0 8px 28px rgba(0,23,83,.1); transform: translateY(-2px); }
.mg-blog-card-img { height: 180px; overflow: hidden; background: linear-gradient(135deg, var(--mg-navy), var(--mg-navy-mid)); display: flex; align-items: center; justify-content: center; font-size: 32px; }
.mg-blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.mg-blog-card-body { padding: 22px; }
.mg-blog-card-cat { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--mg-green); margin-bottom: 8px; }
.mg-blog-card-title { font-size: 16px; font-weight: 700; color: var(--mg-navy); line-height: 1.35; margin-bottom: 8px; }
.mg-blog-card-excerpt { font-size: 13px; color: var(--mg-muted); line-height: 1.7; margin-bottom: 12px; }
.mg-blog-card-date { font-size: 11px; color: var(--mg-muted); }

/* Blog post body */
.mg-post-body { font-size: 16px; color: #2d3557; line-height: 1.85; }
.mg-post-body h2 { font-size: 22px; font-weight: 700; color: var(--mg-navy); margin: 32px 0 12px; }
.mg-post-body h3 { font-size: 18px; font-weight: 700; color: var(--mg-navy); margin: 24px 0 10px; }
.mg-post-body p   { margin-bottom: 18px; }
.mg-post-body ul, .mg-post-body ol { margin: 0 0 18px 22px; }
.mg-post-body li  { margin-bottom: 6px; line-height: 1.75; }
.mg-post-body blockquote { border-left: 3px solid var(--mg-green); margin: 24px 0; padding: 14px 20px; background: var(--mg-off); color: var(--mg-muted); font-style: italic; }
.mg-post-body strong { color: var(--mg-navy); font-weight: 700; }
.mg-post-body a  { color: var(--mg-green); }

/* ── How-steps list ────────────────────────────────────────────────────────── */
.mg-how-steps { display: flex; flex-direction: column; }
.mg-how-step { display: grid; grid-template-columns: 52px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--mg-light); align-items: start; }
.mg-how-step:first-child { padding-top: 0; }
.mg-how-step:last-child  { border-bottom: none; }
.mg-step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--mg-navy); color: var(--mg-gold); font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mg-step-label { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--mg-green); margin-bottom: 5px; }
.mg-how-step h3 { font-size: 17px; font-weight: 700; color: var(--mg-navy); margin-bottom: 8px; line-height: 1.3; }
.mg-how-step p  { font-size: 14px; color: var(--mg-muted); line-height: 1.75; }

/* ── Episode list (channel page) ─────────────────────────────────────────── */
.mg-ep-list { display: flex; flex-direction: column; }
.mg-ep-row { display: grid; grid-template-columns: 80px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--mg-light); align-items: start; }
.mg-ep-row:first-child { padding-top: 0; }
.mg-ep-row:last-child  { border-bottom: none; }
.mg-ep-thumb { width: 76px; height: 56px; background: var(--mg-navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.mg-ep-type  { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--mg-green); margin-bottom: 5px; }
.mg-ep-row h3 { font-size: 16px; font-weight: 700; color: var(--mg-navy); margin-bottom: 5px; line-height: 1.35; }
.mg-ep-meta  { font-size: 12px; color: var(--mg-muted); }
.mg-ep-desc  { font-size: 13px; color: var(--mg-muted); line-height: 1.65; margin-top: 6px; }

/* ── ICP grid (homepage who-section) ─────────────────────────────────────── */
.mg-icp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; border-radius:5px; background-color: #001753;}
.mg-icp-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 20px 22px; display: flex; gap: 14px; align-items: flex-start; }
.mg-icp-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.mg-icp-content strong { display: block; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.mg-icp-content span   { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ── Homepage problem strip ──────────────────────────────────────────────── */
.mg-problem-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.mg-pi { padding: 32px 28px; border-right: 1px solid rgba(255,255,255,.08); }
.mg-pi:last-child { border-right: none; }
.mg-pi-icon  { font-size: 28px; margin-bottom: 12px; display: block; }
.mg-pi-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.mg-pi-text  { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ── What-we-do cards ────────────────────────────────────────────────────── */
.mg-what-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mg-what-card { background: var(--mg-off); border: 1.5px solid var(--mg-light); border-radius: 14px; padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; transition: box-shadow .2s, transform .2s; }
.mg-what-card:hover { box-shadow: 0 8px 28px rgba(0,23,83,.1); transform: translateY(-2px); }
.mg-wc-icon  { font-size: 32px; }
.mg-wc-label { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--mg-green); }
.mg-what-card h3 { font-size: 18px; font-weight: 700; color: var(--mg-navy); line-height: 1.3; }
.mg-what-card p  { font-size: 14px; color: var(--mg-muted); line-height: 1.75; flex: 1; }
.mg-what-card a  { font-size: 13px; font-weight: 700; color: var(--mg-green); text-decoration: none; letter-spacing: .05em; text-transform: uppercase; margin-top: auto; }
.mg-what-card a:hover { text-decoration: underline; }

/* ── Content preview (homepage) ─────────────────────────────────────────── */
.mg-content-preview { background: var(--mg-navy); border-radius: 14px; overflow: hidden; }
.mg-cp-top { background: rgba(255,255,255,.05); padding: 16px 20px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.mg-cp-dot  { width: 10px; height: 10px; border-radius: 50%; }
.mg-ep-preview-list { padding: 8px 0; }
.mg-ep-preview { display: flex; gap: 14px; align-items: center; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,.06); transition: background .15s; }
.mg-ep-preview:last-child { border-bottom: none; }
.mg-ep-preview:hover { background: rgba(255,255,255,.04); }
.mg-ep-preview-thumb { width: 48px; height: 36px; background: rgba(6,106,76,.3); border-radius: 4px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.mg-ep-preview-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.8); line-height: 1.4; margin-bottom: 3px; }
.mg-ep-preview-meta  { font-size: 11px; color: rgba(255,255,255,.35); }

/* ── Hero stats row ──────────────────────────────────────────────────────── */
.mg-stat-row { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 36px; }
.mg-stat { border-left: 3px solid rgba(232,184,75,.5); padding-left: 16px; }
.mg-stat-num   { font-size: 26px; font-weight: 700; color: var(--mg-gold); line-height: 1; }
.mg-stat-label { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 3px; line-height: 1.4; }

/* ── Deliverable box ─────────────────────────────────────────────────────── */
.mg-deliver-box { background: var(--mg-navy); border-radius: 14px; padding: 36px 32px; color: #fff; position: relative; overflow: hidden; }
.mg-deliver-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--mg-green), var(--mg-gold)); }
.mg-deliver-box::after  { content: ''; position: absolute; bottom: -40px; right: -40px; width: 180px; height: 180px; border-radius: 50%; background: rgba(6,106,76,.12); pointer-events: none; }
.mg-deliver-label { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--mg-gold); margin-bottom: 12px; position: relative; z-index: 2; }
.mg-deliver-title { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 14px; line-height: 1.3; position: relative; z-index: 2; }
.mg-deliver-items { display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 2; }
.mg-deliver-item { display: flex; gap: 10px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.72); line-height: 1.5; }
.mg-deliver-item::before { content: '→'; color: #4dd4a0; font-weight: 700; flex-shrink: 0; }

/* ── Dates grid (events) ─────────────────────────────────────────────────── */
.mg-dates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mg-date-card { background: var(--mg-off); border: 1.5px solid var(--mg-light); border-radius: 12px; padding: 24px; transition: box-shadow .2s, border-color .2s; }
.mg-date-card.featured { border-color: var(--mg-green); background: #fff; }
.mg-date-card:hover { box-shadow: 0 6px 20px rgba(0,23,83,.1); border-color: var(--mg-navy); }
.mg-date-badge { display: inline-block; background: var(--mg-green); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; margin-bottom: 12px; }
.mg-date-city  { font-size: 16px; font-weight: 700; color: var(--mg-navy); margin-bottom: 4px; }
.mg-date-when  { font-size: 13px; color: var(--mg-muted); margin-bottom: 4px; }
.mg-date-fmt   { font-size: 12px; color: var(--mg-muted); margin-bottom: 16px; }
.mg-date-price { font-size: 20px; font-weight: 700; color: var(--mg-navy); margin-bottom: 14px; }
.mg-date-cta   { display: block; text-align: center; background: var(--mg-navy); color: #fff; font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 11px 16px; border-radius: 6px; text-decoration: none; transition: background .2s; }
.mg-date-cta:hover { background: var(--mg-navy-mid); color: #fff; }
.mg-date-card.featured .mg-date-cta { background: var(--mg-green); }
.mg-date-card.featured .mg-date-cta:hover { background: var(--mg-green-lgt); }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.mg-faq { display: flex; flex-direction: column; }
.mg-faq-item { padding: 24px 0; border-bottom: 1px solid var(--mg-light); }
.mg-faq-item:first-child { padding-top: 0; }
.mg-faq-item:last-child  { border-bottom: none; }
.mg-faq-q { font-size: 16px; font-weight: 700; color: var(--mg-navy); margin-bottom: 8px; }
.mg-faq-a { font-size: 14px; color: var(--mg-muted); line-height: 1.75; }

/* ── Pillar grid (infrastructure) ─────────────────────────────────────────── */
.mg-pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.mg-pillar { background: var(--mg-off); border: 1.5px solid var(--mg-light); border-radius: 12px; padding: 28px; border-top: 3px solid var(--mg-green); }
.mg-pillar-num  { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--mg-green); margin-bottom: 6px; }
.mg-pillar-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.mg-pillar h3   { font-size: 17px; font-weight: 700; color: var(--mg-navy); margin-bottom: 8px; }
.mg-pillar p    { font-size: 14px; color: var(--mg-muted); line-height: 1.75; }

/* ── For-you checklist ────────────────────────────────────────────────────── */
.mg-for-you { display: flex; flex-direction: column; gap: 14px; }
.mg-fy-item { display: flex; gap: 12px; align-items: flex-start; }
.mg-fy-check { color: var(--mg-green); font-size: 16px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.mg-fy-content strong { display: block; font-size: 14px; font-weight: 700; color: var(--mg-navy); margin-bottom: 2px; }
.mg-fy-content span   { font-size: 13px; color: var(--mg-muted); line-height: 1.55; }
.mg-not-for-you { background: var(--mg-off); border-radius: 10px; padding: 20px 24px; margin-top: 24px; }
.mg-nfy-label   { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--mg-muted); margin-bottom: 10px; }
.mg-nfy-item { display: flex; gap: 10px; font-size: 13px; color: var(--mg-muted); line-height: 1.6; margin-bottom: 8px; }
.mg-nfy-item::before { content: '✕'; color: var(--mg-mid); font-weight: 700; flex-shrink: 0; }

/* ── Value items (about page) ────────────────────────────────────────────── */
.mg-value-items { display: flex; flex-direction: column; gap: 18px; }
.mg-value-item { display: flex; gap: 16px; align-items: flex-start; }
.mg-vi-line { width: 3px; background: var(--mg-green); border-radius: 2px; flex-shrink: 0; align-self: stretch; }
.mg-vi-content strong { display: block; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.mg-vi-content span   { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ── Credential grid ─────────────────────────────────────────────────────── */
.mg-cred-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.mg-cred { background: var(--mg-off); border: 1.5px solid var(--mg-light); border-radius: 10px; padding: 24px; border-left: 3px solid var(--mg-green); }
.mg-cred-icon { font-size: 24px; margin-bottom: 10px; display: block; }
.mg-cred h3   { font-size: 15px; font-weight: 700; color: var(--mg-navy); margin-bottom: 6px; }
.mg-cred p    { font-size: 13px; color: var(--mg-muted); line-height: 1.7; }

/* ── Lesson list (playbook) ──────────────────────────────────────────────── */
.mg-lesson-list { display: flex; flex-direction: column; }
.mg-lesson { display: grid; grid-template-columns: 52px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid var(--mg-light); align-items: start; }
.mg-lesson:first-child { padding-top: 0; }
.mg-lesson:last-child  { border-bottom: none; }
.mg-lesson-num { width: 44px; height: 44px; border-radius: 50%; background: var(--mg-off); border: 1.5px solid var(--mg-light); color: var(--mg-navy); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mg-lesson-label { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--mg-green); margin-bottom: 5px; }
.mg-lesson h3 { font-size: 16px; font-weight: 700; color: var(--mg-navy); margin-bottom: 6px; }
.mg-lesson p  { font-size: 14px; color: var(--mg-muted); line-height: 1.75; }

/* ── Contact entry cards ─────────────────────────────────────────────────── */
.mg-entry-cards { display: flex; flex-direction: column; gap: 14px; }
.mg-entry-card  { background: var(--mg-off); border: 1.5px solid var(--mg-light); border-radius: 10px; padding: 20px 22px; display: flex; gap: 16px; align-items: flex-start; text-decoration: none; transition: border-color .2s, box-shadow .2s; }
.mg-entry-card:hover { border-color: var(--mg-navy); box-shadow: 0 4px 14px rgba(0,23,83,.09); }
.mg-entry-icon   { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.mg-entry-label  { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--mg-green); margin-bottom: 4px; }
.mg-entry-title  { font-size: 15px; font-weight: 700; color: var(--mg-navy); margin-bottom: 2px; }
.mg-entry-desc   { font-size: 13px; color: var(--mg-muted); line-height: 1.55; }

/* ── Contact form card ────────────────────────────────────────────────────── */
.mg-contact-card { background: var(--mg-navy); border-radius: 16px; overflow: hidden; }
.mg-contact-card-head { padding: 28px 28px 24px; border-bottom: 1px solid rgba(255,255,255,.08); position: relative; }
.mg-contact-card-head::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--mg-green), var(--mg-gold)); }
.mg-cc-label { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--mg-gold); margin-bottom: 8px; }
.mg-cc-title { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 6px; line-height: 1.3; }
.mg-cc-sub   { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.65; }
.mg-contact-card-body { padding: 24px 28px; }
.mg-cf-submit { width: 100%; padding: 14px; background: var(--mg-gold); color: var(--mg-navy); font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border: none; border-radius: 6px; cursor: pointer; transition: background .2s; }
.mg-cf-submit:hover { background: var(--mg-gold-lgt); }
.mg-cf-note { font-size: 11px; color: rgba(255,255,255,.3); text-align: center; font-style: italic; margin-top: 8px; }

/* ── Subscribe band ─────────────────────────────────────────────────────── */
.mg-subscribe-band { background: var(--mg-off); border: 1.5px solid var(--mg-light); border-radius: 14px; padding: 36px 32px; display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.mg-sub-icon { font-size: 48px; flex-shrink: 0; }
.mg-sub-text h3 { font-size: 20px; font-weight: 700; color: var(--mg-navy); margin-bottom: 6px; }
.mg-sub-text p  { font-size: 14px; color: var(--mg-muted); line-height: 1.7; }

/* ── Privacy policy ──────────────────────────────────────────────────────── */
.mg-policy-wrap { max-width: 760px; margin: 0 auto; }
.mg-policy-section { margin-bottom: 44px; padding-bottom: 44px; border-bottom: 1px solid var(--mg-light); }
.mg-policy-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.mg-policy-tag { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--mg-green); margin-bottom: 8px; }
.mg-policy-section h2 { font-size: 20px; font-weight: 700; color: var(--mg-navy); margin-bottom: 14px; }
.mg-policy-section p  { font-size: 15px; color: var(--mg-muted); line-height: 1.85; margin-bottom: 14px; }
.mg-policy-section p:last-child { margin-bottom: 0; }
.mg-policy-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; margin: 14px 0; }
.mg-policy-list li { display: flex; gap: 12px; font-size: 14px; color: var(--mg-muted); line-height: 1.7; }
.mg-policy-list li::before { content: '→'; color: var(--mg-green); font-weight: 700; flex-shrink: 0; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .mg-nav-links li:not(:last-child):not(.mg-has-mega) { display: none; }
  .mg-hamburger { display: flex; }
}
@media (max-width: 720px) {
  .mg-two-col, .mg-two-col-center, .mg-what-grid, .mg-blog-grid,
  .mg-cred-grid, .mg-pillar-grid, .mg-icp-grid { grid-template-columns: 1fr; gap: 24px; }
  .mg-problem-strip, .mg-dates-grid { grid-template-columns: 1fr 1fr; }
  .mg-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .mg-nav { padding: 0 20px; }
  .mg-nav-links { display: none; }
  .mg-hamburger { display: flex; }
  .mg-hero, .mg-hero-compact { padding: 72px 24px 70px; }
  .mg-wrap { padding: 0 24px; }
  .mg-section { padding: 64px 0; }
  .mg-problem-strip, .mg-dates-grid, .mg-footer-grid { grid-template-columns: 1fr; }
  .mg-how-step, .mg-lesson { grid-template-columns: 1fr; gap: 8px; }
  .mg-ep-row { grid-template-columns: 1fr; gap: 10px; }
  .mg-blog-grid { grid-template-columns: 1fr; }
  .mg-footer { padding: 48px 0 28px; }
}
