/**
 * Marketing Coordinator Services — /services/marketing-coordinator/
 * Loaded only for the new-services-marketing-coordinator template.
 * Mirrors the supplied mockup using the theme's tokens.
 */

/* ── Buttons ──────────────────────────────────────────── */
.mkc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.22s, color 0.22s, transform 0.22s;
  white-space: normal;
}
.mkc-btn svg { width: 14px; height: 14px; flex: 0 0 auto; transition: transform 0.22s; }
.mkc-btn:hover svg { transform: translateX(4px); }
.mkc-btn--primary { background: var(--red); color: var(--white); box-shadow: 0 12px 28px rgba(255, 44, 85, 0.28); }
.mkc-btn--primary:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }

/* ── Shared shell ─────────────────────────────────────── */
.mkc-section { padding: 80px 48px; background: var(--white); }
.mkc-section--tight { padding-top: 24px; }
.mkc-section--intro { padding-bottom: 32px; }
.mkc-section--alt { background: #FAFAFB; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.mkc-inner { max-width: 1200px; margin: 0 auto; }
.mkc-inner--narrow { max-width: 940px; }
.mkc-section-head { max-width: 940px; margin: 0 0 44px; }

.mkc-h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 16px;
}
.mkc-h2 em { font-style: normal; color: var(--red); }
.mkc-h3 { font-size: 1.35rem; font-weight: 900; letter-spacing: -0.01em; color: var(--black); margin: 0 0 18px; }
.mkc-lead { font-size: 16.5px; line-height: 1.75; color: var(--muted); margin: 0; }
.mkc-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ── Hero ─────────────────────────────────────────────── */
.mkc-hero {
  position: relative;
  padding: 72px 48px 80px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 44, 85, 0.20) 0%, transparent 48%),
    var(--black);
  color: var(--white);
  overflow: hidden;
}
.mkc-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.mkc-hero-h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 22px;
}
.mkc-hero-h1 em { font-style: normal; color: var(--red); }
.mkc-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 0 28px;
}
.mkc-hero-media { display: flex; justify-content: center; min-width: 0; }
.mkc-hero-media img { display: block; width: 100%; max-width: 380px; height: auto; }

/* ── We help / We can ─────────────────────────────────── */
.mkc-twocol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.mkc-helpcard {
  padding: 34px 36px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
}
.mkc-checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.mkc-checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--black);
}
.mkc-check {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

/* ── Numbered grids ───────────────────────────────────── */
.mkc-numgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.mkc-numcard {
  position: relative;
  padding: 34px 30px 30px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.mkc-numcard:hover { transform: translateY(-4px); border-color: rgba(255, 44, 85, 0.32); box-shadow: 0 20px 44px rgba(0, 0, 0, 0.06); }
.mkc-num {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: var(--red);
}
.mkc-numcard-title { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em; color: var(--black); margin: 0 0 10px; }
.mkc-numcard-desc { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0; }

/* ── Comparison table ─────────────────────────────────── */
.mkc-compare {
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}
.mkc-cmp-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) minmax(0, 1.1fr);
  border-bottom: 1px solid var(--rule);
}
.mkc-cmp-row:last-child { border-bottom: none; }
.mkc-cmp-cell {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 22px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  border-right: 1px solid var(--rule);
}
.mkc-cmp-cell:last-child { border-right: none; }
.mkc-cmp-cell--lion { background: rgba(255, 44, 85, 0.04); color: var(--black); }
.mkc-cmp-label { font-weight: 800; color: var(--black); }
.mkc-cmp-row--head .mkc-cmp-cell {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  background: #F4F4F6;
  padding-top: 18px;
  padding-bottom: 18px;
}
.mkc-cmp-row--head .mkc-cmp-cell--lion { background: var(--red); color: var(--white); }
.mkc-mk { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 1px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 10px; font-weight: 700; }
.mkc-mk--x { background: rgba(0, 0, 0, 0.07); color: var(--muted); }
.mkc-mk--y { background: var(--red); color: var(--white); }

/* ── Final CTA ────────────────────────────────────────── */
.mkc-cta {
  padding: 88px 48px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 44, 85, 0.22) 0%, transparent 55%),
    var(--black);
  color: var(--white);
  text-align: center;
}
.mkc-cta-inner { max-width: 760px; margin: 0 auto; }
.mkc-cta-h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.06;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 18px;
}
.mkc-cta-h2 em { font-style: normal; color: var(--red); }
.mkc-cta-sub { font-size: 17px; line-height: 1.65; color: rgba(255, 255, 255, 0.82); margin: 0 0 14px; }
.mkc-cta-note { font-size: 15px; line-height: 1.65; color: rgba(255, 255, 255, 0.6); margin: 0 0 30px; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .mkc-numgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .mkc-hero { padding: 56px 24px 64px; }
  .mkc-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .mkc-hero-media { order: -1; }
  .mkc-hero-media img { max-width: 260px; }
  .mkc-section, .mkc-cta { padding-left: 24px; padding-right: 24px; }
  .mkc-twocol { grid-template-columns: 1fr; }
  /* Comparison collapses to stacked blocks so nothing squeezes. */
  .mkc-cmp-row { grid-template-columns: 1fr; }
  .mkc-cmp-row--head { display: none; }
  /* Leave flex so the ::before label can sit on its own line. */
  .mkc-cmp-cell { display: block; border-right: none; border-bottom: 1px solid var(--rule); }
  .mkc-cmp-cell .mkc-mk { display: inline-flex; margin-right: 8px; vertical-align: -4px; }
  .mkc-cmp-row:last-child .mkc-cmp-cell:last-child { border-bottom: none; }
  .mkc-cmp-cell--lion::before { content: "LION Coordinator"; }
  .mkc-cmp-cell:not(.mkc-cmp-label):not(.mkc-cmp-cell--lion)::before { content: "In-house hire"; }
  .mkc-cmp-cell::before {
    display: block;
    margin-bottom: 6px;
    font-size: 10.5px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
  }
  .mkc-cmp-label::before { content: none; }
}
@media (max-width: 640px) {
  .mkc-numgrid { grid-template-columns: 1fr; }
  .mkc-helpcard { padding: 26px 22px; }
  .mkc-btn { width: 100%; justify-content: center; }
}
