:root {
  --mk-ink: #111827;
  --mk-muted: #526071;
  --mk-line: #dfe3e8;
  --mk-soft: #f6f7f9;
  --mk-orange: #ea580c;
  --mk-orange-dark: #c2410c;
  --mk-orange-soft: #fff2e8;
  --mk-white: #ffffff;
}

.marketing-page {
  padding-top: 78px;
  color: var(--mk-ink);
  background: var(--mk-white);
  overflow-x: hidden;
}

.mk-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.mk-section {
  padding: 96px 0;
}

.mk-section-soft {
  background: var(--mk-soft);
  border-top: 1px solid var(--mk-line);
  border-bottom: 1px solid var(--mk-line);
}

.mk-section-dark {
  background: var(--mk-ink);
  color: var(--mk-white);
}

.mk-eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--mk-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mk-hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--mk-line);
}

.mk-hero-grid,
.mk-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 72px;
  align-items: center;
}

.mk-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 68px;
  line-height: 1.02;
  font-weight: 800;
}

.mk-lead {
  max-width: 720px;
  margin-top: 26px;
  color: var(--mk-muted);
  font-size: 20px;
  line-height: 1.65;
}

.mk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.mk-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid var(--mk-ink);
  border-radius: 6px;
  background: var(--mk-ink);
  color: var(--mk-white);
  font-size: 15px;
  font-weight: 750;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mk-button:hover,
.mk-button:focus-visible {
  background: var(--mk-orange);
  border-color: var(--mk-orange);
  transform: translateY(-2px);
}

.mk-button-secondary {
  background: var(--mk-white);
  color: var(--mk-ink);
  border-color: var(--mk-line);
}

.mk-button-secondary:hover,
.mk-button-secondary:focus-visible {
  color: var(--mk-white);
}

.mk-button:focus-visible,
.mk-link:focus-visible,
.mk-contact-link:focus-visible,
.mk-service-card:focus-visible {
  outline: 3px solid #fdba74;
  outline-offset: 3px;
}

.mk-blueprint {
  min-height: 520px;
  padding: 26px;
  border: 1px solid #25324a;
  border-radius: 8px;
  background: #101827;
  color: var(--mk-white);
  box-shadow: 18px 18px 0 #fff7ed;
}

.mk-blueprint-head,
.mk-blueprint-flow > div,
.mk-blueprint-capabilities {
  display: flex;
  align-items: center;
}

.mk-blueprint-head {
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #334155;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mk-blueprint-mark {
  display: flex;
  gap: 5px;
}

.mk-blueprint-mark span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fb923c;
}

.mk-blueprint-mark span:nth-child(2) { background: #f8fafc; }
.mk-blueprint-mark span:nth-child(3) { background: #64748b; }

.mk-blueprint-title {
  padding: 34px 0 28px;
  color: #94a3b8;
  font-size: 15px;
}

.mk-blueprint-title strong {
  display: block;
  max-width: 380px;
  margin-top: 5px;
  color: var(--mk-white);
  font-size: 30px;
  line-height: 1.18;
}

.mk-blueprint-flow {
  border-top: 1px solid #334155;
}

.mk-blueprint-flow > div {
  min-height: 68px;
  gap: 14px;
  border-bottom: 1px solid #334155;
}

.mk-blueprint-number {
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
}

.mk-blueprint-flow i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #ffedd5;
  color: var(--mk-orange-dark);
  font-size: 18px;
}

.mk-blueprint-flow p { margin: 0; }
.mk-blueprint-flow strong { display: block; font-size: 14px; }
.mk-blueprint-flow small { display: block; margin-top: 2px; color: #94a3b8; font-size: 12px; }

.mk-blueprint-capabilities {
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 22px;
}

.mk-blueprint-capabilities span {
  padding: 7px 10px;
  border: 1px solid #334155;
  border-radius: 4px;
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.mk-proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  background: var(--mk-line);
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  overflow: hidden;
}

.mk-proof-list li {
  min-height: 94px;
  padding: 20px;
  background: var(--mk-white);
  color: var(--mk-muted);
  font-size: 14px;
  line-height: 1.45;
}

.mk-proof-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--mk-ink);
  font-size: 15px;
}

.mk-template-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mk-template-example {
  overflow: hidden;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: var(--mk-white);
}

.mk-template-preview {
  height: 228px;
  overflow: hidden;
  border-bottom: 1px solid var(--mk-line);
  background: #e9edf2;
}

.mk-template-browser {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 11px;
  border-bottom: 1px solid var(--mk-line);
  background: var(--mk-white);
}

.mk-template-browser span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mk-orange);
}

.mk-template-browser span:nth-child(2) { background: #94a3b8; }
.mk-template-browser span:nth-child(3) { background: #cbd5e1; }
.mk-template-browser small { margin-left: auto; color: var(--mk-muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.mk-template-preview img { display: block; width: 100%; height: calc(100% - 34px); object-fit: cover; object-position: top; background: #fff; }
.mk-template-copy { padding: 21px; }
.mk-template-copy h3 { margin: 5px 0 9px; font-size: 21px; }
.mk-template-copy > p { min-height: 72px; margin: 0; color: var(--mk-muted); font-size: 13px; line-height: 1.6; }
.mk-template-copy > div { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 17px; padding-top: 15px; border-top: 1px solid var(--mk-line); }

.mk-pathways {
  border-top: 1px solid var(--mk-line);
}

.mk-pathways article {
  min-height: 130px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 24px 0;
  border-bottom: 1px solid var(--mk-line);
}

.mk-pathways article > span { color: var(--mk-orange); font-size: 12px; font-weight: 850; }
.mk-pathways h3 { margin: 0 0 7px; font-size: 21px; }
.mk-pathways p { max-width: 760px; margin: 0; color: var(--mk-muted); font-size: 14px; line-height: 1.6; }
.mk-pathways a { display: inline-flex; align-items: center; gap: 7px; color: var(--mk-ink); font-size: 12px; font-weight: 850; text-decoration: none; white-space: nowrap; }
.mk-pathways a:hover { color: var(--mk-orange); }

.mk-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}

.mk-heading-row h2,
.mk-section h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 800;
}

.mk-heading-row > p,
.mk-section-copy {
  color: var(--mk-muted);
  font-size: 17px;
  line-height: 1.75;
}

.mk-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mk-service-card,
.mk-info-card,
.mk-person-card {
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: var(--mk-white);
}

.mk-service-card {
  min-height: 288px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.mk-service-card:hover {
  border-color: var(--mk-orange);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.09);
}

.mk-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border-radius: 6px;
  background: var(--mk-orange-soft);
  color: var(--mk-orange-dark);
  font-size: 23px;
}

.mk-service-card h3,
.mk-info-card h3,
.mk-person-card h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 780;
}

.mk-service-card p,
.mk-info-card p,
.mk-person-card p {
  margin-top: 14px;
  color: var(--mk-muted);
  line-height: 1.7;
}

.mk-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--mk-orange-dark);
  font-size: 14px;
  font-weight: 800;
}

.mk-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 48px;
  border-top: 1px solid var(--mk-line);
  border-bottom: 1px solid var(--mk-line);
}

.mk-process article {
  min-height: 230px;
  padding: 30px 28px;
  border-right: 1px solid var(--mk-line);
}

.mk-process article:last-child {
  border-right: 0;
}

.mk-step {
  display: block;
  margin-bottom: 40px;
  color: var(--mk-orange);
  font-size: 13px;
  font-weight: 800;
}

.mk-process h3 {
  font-size: 20px;
  font-weight: 780;
}

.mk-process p {
  margin-top: 10px;
  color: var(--mk-muted);
  font-size: 14px;
  line-height: 1.65;
}

.mk-location-band {
  padding: 64px 0;
  background: var(--mk-orange);
  color: var(--mk-white);
}

.mk-location-band .mk-split {
  align-items: start;
}

.mk-location-band h2 {
  font-size: 40px;
}

.mk-location-band p {
  color: #fff7ed;
  font-size: 17px;
  line-height: 1.75;
}

.mk-area-list,
.mk-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.mk-area-list li,
.mk-chip-list li {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
}

.mk-chip-list li {
  border-color: var(--mk-line);
  color: var(--mk-muted);
  background: var(--mk-white);
}

.mk-deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
  margin-top: 34px;
  border-top: 1px solid var(--mk-line);
}

.mk-deliverables li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid var(--mk-line);
  color: var(--mk-muted);
  line-height: 1.55;
}

.mk-deliverables i {
  color: var(--mk-orange);
  font-size: 19px;
}

.mk-contact-panel {
  padding: 32px;
  border: 1px solid #374151;
  border-radius: 8px;
  background: #18202d;
}

.mk-contact-panel h2,
.mk-contact-panel h3 {
  color: var(--mk-white);
}

.mk-contact-panel p {
  margin-top: 13px;
  color: #cbd5e1;
  line-height: 1.7;
}

.mk-contact-list {
  margin-top: 28px;
  border-top: 1px solid #374151;
}

.mk-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid #374151;
  color: var(--mk-white);
  font-weight: 700;
}

.mk-contact-link i {
  color: #fb923c;
  font-size: 20px;
}

.mk-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: #6b7280;
  font-size: 13px;
}

.mk-breadcrumbs a:hover {
  color: var(--mk-orange-dark);
}

.mk-faqs {
  max-width: 900px;
  margin-top: 38px;
  border-top: 1px solid var(--mk-line);
}

.mk-faqs details {
  border-bottom: 1px solid var(--mk-line);
}

.mk-faqs summary {
  position: relative;
  padding: 23px 42px 23px 0;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 750;
}

.mk-faqs summary::-webkit-details-marker {
  display: none;
}

.mk-faqs summary::after {
  content: '+';
  position: absolute;
  top: 19px;
  right: 4px;
  color: var(--mk-orange);
  font-size: 25px;
  font-weight: 500;
}

.mk-faqs details[open] summary::after {
  content: '-';
}

.mk-faqs details p {
  max-width: 780px;
  padding: 0 0 24px;
  color: var(--mk-muted);
  line-height: 1.75;
}

.mk-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mk-person-card {
  min-height: 310px;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 24px;
  padding: 30px;
}

.mk-monogram {
  width: 100px;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--mk-orange-soft);
  color: var(--mk-orange-dark);
  font-size: 28px;
  font-weight: 850;
}

.mk-role {
  color: var(--mk-orange-dark) !important;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mk-policy {
  max-width: 820px;
}

.mk-policy h1 {
  font-size: 52px;
  line-height: 1.05;
  font-weight: 800;
}

.mk-policy h2 {
  margin-top: 44px;
  font-size: 27px;
}

.mk-policy p,
.mk-policy li {
  margin-top: 14px;
  color: var(--mk-muted);
  line-height: 1.75;
}

.mk-policy ul {
  padding-left: 20px;
  list-style: disc;
}

.mk-form {
  display: grid;
  gap: 15px;
}

.mk-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--mk-ink);
  font-size: 13px;
  font-weight: 750;
}

.mk-field input,
.mk-field select,
.mk-field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: var(--mk-white);
  color: var(--mk-ink);
  font: inherit;
}

.mk-field textarea {
  min-height: 130px;
  resize: vertical;
}

.mk-field input:focus,
.mk-field select:focus,
.mk-field textarea:focus {
  outline: 3px solid #fed7aa;
  border-color: var(--mk-orange);
}

.mk-form-note {
  color: var(--mk-muted);
  font-size: 12px;
  line-height: 1.55;
}

.mk-form-error {
  margin-bottom: 18px;
  padding: 13px 15px;
  border: 1px solid #fecaca;
  border-radius: 6px;
  background: #fef2f2;
  color: #991b1b;
  font-size: 13px;
  line-height: 1.5;
}

.mk-field label span {
  color: var(--mk-muted);
  font-weight: 500;
}

.mk-cal-frame {
  width: 100%;
  min-height: 640px;
  border: 1px solid var(--mk-line);
  border-radius: 8px;
  background: var(--mk-white);
}

@media (max-width: 980px) {
  .mk-hero {
    min-height: auto;
  }

  .mk-hero-grid,
  .mk-split,
  .mk-heading-row {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .mk-hero h1 {
    font-size: 54px;
  }

  .mk-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mk-template-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mk-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mk-process article:nth-child(2) {
    border-right: 0;
  }

  .mk-process article:nth-child(-n+2) {
    border-bottom: 1px solid var(--mk-line);
  }

  .mk-team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .mk-container {
    width: min(100% - 30px, 1180px);
  }

  .mk-section {
    padding: 70px 0;
  }

  .mk-hero {
    padding: 72px 0 64px;
  }

  .mk-hero h1 {
    font-size: 42px;
  }

  .mk-lead {
    font-size: 17px;
  }

  .mk-heading-row h2,
  .mk-section h2,
  .mk-location-band h2 {
    font-size: 34px;
  }

  .mk-actions,
  .mk-button {
    width: 100%;
  }

  .mk-proof-list,
  .mk-card-grid,
  .mk-process,
  .mk-deliverables,
  .mk-template-grid {
    grid-template-columns: 1fr;
  }

  .mk-template-copy > p { min-height: 0; }

  .mk-pathways article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
  }

  .mk-pathways article > a {
    grid-column: 2;
    white-space: normal;
  }

  .mk-process article,
  .mk-process article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--mk-line);
  }

  .mk-process article:last-child {
    border-bottom: 0;
  }

  .mk-person-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .mk-blueprint {
    min-height: auto;
    padding: 20px;
    box-shadow: 8px 8px 0 #fff7ed;
  }

  .mk-blueprint-title strong {
    font-size: 25px;
  }

  .mk-monogram {
    width: 72px;
    height: 72px;
    font-size: 22px;
  }

  .mk-policy h1 {
    font-size: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mk-button,
  .mk-service-card {
    transition: none;
  }
}
