/*
 * 企编云竞价官网 · Marketing UI
 * Scope: .mkt-page / .mkt-* only
 * Visual direction: restrained black, white, neutral gray and #2457ff.
 */

/* ---------- Foundation ---------- */
.mkt-page {
  --mkt-blue: #2457ff;
  --mkt-blue-hover: #1648e8;
  --mkt-blue-soft: #eef3ff;
  --mkt-black: #090a0c;
  --mkt-ink: #15171b;
  --mkt-text: #30343b;
  --mkt-muted: #6c727d;
  --mkt-line: #e4e6ea;
  --mkt-line-strong: #cfd2d8;
  --mkt-paper: #ffffff;
  --mkt-soft: #f6f7f8;
  --mkt-dark-soft: #15171a;
  --mkt-success: #157347;
  --mkt-error: #c9362b;
  --mkt-warning: #9a6700;
  --mkt-container: 1280px;
  --mkt-gutter: clamp(20px, 3.4vw, 48px);
  --mkt-section-y: clamp(80px, 8vw, 128px);
  --mkt-radius-sm: 10px;
  --mkt-radius: 16px;
  --mkt-radius-lg: 24px;
  --mkt-shadow-sm: 0 8px 24px rgba(9, 10, 12, 0.06);
  --mkt-shadow-md: 0 20px 56px rgba(9, 10, 12, 0.11);
  min-width: 0;
  color: var(--mkt-ink);
  background: var(--mkt-paper);
  font-family:
    "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei",
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  .mkt-page { overflow-x: clip; }
}

.mkt-page *,
.mkt-page *::before,
.mkt-page *::after {
  box-sizing: border-box;
}

:where(.mkt-page) img,
:where(.mkt-page) svg,
:where(.mkt-page) video,
:where(.mkt-page) canvas {
  display: block;
  max-width: 100%;
}

:where(.mkt-page) a {
  color: inherit;
  text-decoration: none;
}

:where(.mkt-page) button,
:where(.mkt-page) input,
:where(.mkt-page) textarea,
:where(.mkt-page) select {
  margin: 0;
  color: inherit;
  font: inherit;
}

:where(.mkt-page) button,
:where(.mkt-page) [role="button"] {
  touch-action: manipulation;
}

:where(.mkt-page) button {
  border: 0;
}

.mkt-page :where(a, button, input, textarea, select, [role="button"]):focus-visible {
  outline: 3px solid rgba(36, 87, 255, 0.28);
  outline-offset: 3px;
}

.mkt-page ::selection {
  color: var(--mkt-black);
  background: #cfdcff;
}

.mkt-page [hidden] {
  display: none !important;
}

.mkt-page section[id] {
  scroll-margin-top: 88px;
}

.mkt-container {
  width: min(100%, calc(var(--mkt-container) + var(--mkt-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--mkt-gutter);
}

.mkt-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.mkt-mobile-only { display: none !important; }
.mkt-text-blue { color: var(--mkt-blue) !important; }
.mkt-text-muted { color: var(--mkt-muted) !important; }
.mkt-nowrap { white-space: nowrap; }

/* ---------- Shared type and controls ---------- */
.mkt-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 18px;
  padding: 4px 10px;
  border: 1px solid var(--mkt-line-strong);
  border-radius: 999px;
  color: var(--mkt-text);
  background: var(--mkt-paper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.mkt-kicker {
  margin: 0 0 12px;
  color: var(--mkt-blue);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mkt-btn {
  display: inline-flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 22px;
  border: 1px solid var(--mkt-black);
  border-radius: 12px;
  color: var(--mkt-paper);
  background: var(--mkt-black);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.mkt-btn:hover {
  color: var(--mkt-paper);
  background: #23262b;
  border-color: #23262b;
  transform: translateY(-1px);
}

.mkt-btn:active { transform: translateY(0); }

.mkt-btn--primary {
  color: var(--mkt-paper);
  background: var(--mkt-blue);
  border-color: var(--mkt-blue);
}

.mkt-btn--primary:hover {
  color: var(--mkt-paper);
  background: var(--mkt-blue-hover);
  border-color: var(--mkt-blue-hover);
}

.mkt-btn--outline {
  color: var(--mkt-black);
  background: var(--mkt-paper);
  border-color: var(--mkt-line-strong);
}

.mkt-btn--outline:hover {
  color: var(--mkt-black);
  background: var(--mkt-soft);
  border-color: var(--mkt-black);
}

.mkt-btn--quiet {
  color: var(--mkt-text);
  background: transparent;
  border-color: transparent;
}

.mkt-btn--quiet:hover {
  color: var(--mkt-black);
  background: var(--mkt-soft);
  border-color: var(--mkt-soft);
}

.mkt-btn--light {
  color: var(--mkt-black);
  background: var(--mkt-paper);
  border-color: var(--mkt-paper);
}

.mkt-btn--light:hover {
  color: var(--mkt-black);
  background: #eceef1;
  border-color: #eceef1;
}

.mkt-btn--sm {
  min-height: 44px;
  padding: 9px 17px;
  border-radius: 10px;
  font-size: 14px;
}

.mkt-btn--wide { width: 100%; }

.mkt-btn:disabled,
.mkt-btn[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
  transform: none;
}

.mkt-icon-btn {
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--mkt-line);
  border-radius: 11px;
  color: var(--mkt-ink);
  background: var(--mkt-paper);
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.mkt-icon-btn:hover {
  background: var(--mkt-soft);
  border-color: var(--mkt-line-strong);
}

/* ---------- Marketing header and nav ---------- */
.mkt-header {
  position: sticky;
  z-index: 600;
  top: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  color: var(--mkt-ink);
  background: var(--mkt-paper);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.mkt-header.is-compact {
  border-bottom-color: var(--mkt-line);
  box-shadow: 0 8px 24px rgba(9, 10, 12, 0.05);
}

.mkt-header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transition: min-height 180ms ease;
}

.mkt-header.is-compact .mkt-header__inner { min-height: 64px; }

.mkt-brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 11px;
  color: var(--mkt-black);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mkt-brand__mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  color: var(--mkt-paper);
  background: var(--mkt-black);
}

.mkt-brand__mark img,
.mkt-brand__mark svg {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.mkt-brand__text {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.mkt-brand__sub {
  color: var(--mkt-muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mkt-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.mkt-nav__item { position: relative; }

.mkt-nav__link,
.mkt-nav__trigger {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 13px;
  border-radius: 9px;
  color: var(--mkt-text);
  background: transparent;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  cursor: pointer;
  transition: color 150ms ease, background-color 150ms ease;
}

.mkt-nav__link:hover,
.mkt-nav__link.is-active,
.mkt-nav__trigger:hover,
.mkt-nav__trigger[aria-expanded="true"] {
  color: var(--mkt-black);
  background: var(--mkt-soft);
}

.mkt-nav__link.is-active { color: var(--mkt-blue); }

.mkt-nav__caret {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.mkt-nav__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 228px;
  padding: 8px;
  border: 1px solid var(--mkt-line);
  border-radius: 14px;
  visibility: hidden;
  opacity: 0;
  background: var(--mkt-paper);
  box-shadow: var(--mkt-shadow-md);
  transform: translate(-50%, 6px);
  transition:
    opacity 150ms ease,
    visibility 150ms ease,
    transform 150ms ease;
}

.mkt-nav__item:hover > .mkt-nav__menu,
.mkt-nav__item:focus-within > .mkt-nav__menu,
.mkt-nav__menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.mkt-nav__menu a {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 11px;
  border-radius: 8px;
  color: var(--mkt-text);
  font-size: 14px;
  font-weight: 600;
}

.mkt-nav__menu a:hover {
  color: var(--mkt-black);
  background: var(--mkt-soft);
}

.mkt-header__actions {
  display: flex;
  min-width: max-content;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.mkt-menu-toggle { display: none; }

/* ---------- Hero ---------- */
.mkt-hero {
  position: relative;
  padding: clamp(72px, 8vw, 124px) 0 clamp(76px, 8vw, 120px);
  overflow: hidden;
  border-bottom: 1px solid var(--mkt-line);
  background: var(--mkt-paper);
}

.mkt-hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  background: var(--mkt-line);
  pointer-events: none;
}

.mkt-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.12fr);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
}

.mkt-hero__copy { min-width: 0; }

.mkt-hero__title {
  max-width: 780px;
  margin: 0;
  color: var(--mkt-black);
  font-size: clamp(48px, 5.2vw, 78px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.06;
  text-wrap: balance;
}

.mkt-hero__title em {
  color: var(--mkt-blue);
  font-style: normal;
}

.mkt-hero__lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--mkt-text);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.75;
  text-wrap: pretty;
}

.mkt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.mkt-hero__note {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--mkt-muted);
  font-size: 13px;
  list-style: none;
}

.mkt-hero__note li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.mkt-hero__note li::before {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  content: "";
  background: var(--mkt-blue);
}

.mkt-hero__visual {
  min-width: 0;
  justify-self: stretch;
}

.mkt-hero--center {
  text-align: center;
}

.mkt-hero--center::before { display: none; }

.mkt-hero--center .mkt-hero__grid {
  display: block;
}

.mkt-hero--center .mkt-hero__title,
.mkt-hero--center .mkt-hero__lead {
  margin-inline: auto;
}

.mkt-hero--center .mkt-hero__actions,
.mkt-hero--center .mkt-hero__note {
  justify-content: center;
}

/* ---------- Product interface mock ---------- */
.mkt-product-mock,
.mkt-mock {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #cfd2d8;
  border-radius: 20px;
  background: var(--mkt-paper);
  box-shadow: 0 28px 72px rgba(9, 10, 12, 0.15);
}

.mkt-product-mock::after,
.mkt-mock::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.mkt-mock__topbar {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  border-bottom: 1px solid var(--mkt-line);
  background: #f2f3f5;
}

.mkt-mock__dots {
  display: flex;
  gap: 6px;
}

.mkt-mock__dots i {
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid #aeb3bc;
  border-radius: 50%;
  background: var(--mkt-paper);
}

.mkt-mock__address {
  width: min(48%, 260px);
  height: 24px;
  border: 1px solid var(--mkt-line);
  border-radius: 6px;
  background: var(--mkt-paper);
}

.mkt-mock__body {
  display: grid;
  min-height: 420px;
  grid-template-columns: 150px minmax(0, 1fr);
}

.mkt-mock__sidebar {
  padding: 18px 12px;
  border-right: 1px solid var(--mkt-line);
  background: #fbfbfc;
}

.mkt-mock__logo {
  width: 72px;
  height: 18px;
  margin: 3px 7px 25px;
  border-radius: 4px;
  background: var(--mkt-black);
}

.mkt-mock__nav {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mkt-mock__nav li {
  height: 32px;
  padding: 7px 9px;
  border-radius: 6px;
  color: #777d87;
  font-size: 10px;
  font-weight: 650;
  line-height: 18px;
}

.mkt-mock__nav li.is-active {
  color: var(--mkt-blue);
  background: var(--mkt-blue-soft);
}

.mkt-mock__main {
  min-width: 0;
  padding: 22px;
  background: var(--mkt-paper);
}

.mkt-mock__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.mkt-mock__heading b {
  color: var(--mkt-black);
  font-size: 16px;
}

.mkt-mock__heading span,
.mkt-mock__tag {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 3px 8px;
  border: 1px solid var(--mkt-line);
  border-radius: 6px;
  color: var(--mkt-muted);
  background: var(--mkt-paper);
  font-size: 9px;
  font-weight: 650;
}

.mkt-mock__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.mkt-mock__stat {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--mkt-line);
  border-radius: 10px;
  background: #fbfbfc;
}

.mkt-mock__stat small {
  display: block;
  overflow: hidden;
  color: var(--mkt-muted);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mkt-mock__stat strong {
  display: block;
  margin-top: 7px;
  color: var(--mkt-black);
  font-size: 19px;
  line-height: 1.2;
}

.mkt-mock__workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(130px, 0.55fr);
  gap: 12px;
}

.mkt-mock__panel {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--mkt-line);
  border-radius: 10px;
  background: var(--mkt-paper);
}

.mkt-mock__panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--mkt-text);
  font-size: 10px;
  font-weight: 700;
}

.mkt-mock__chart {
  display: flex;
  height: 140px;
  align-items: end;
  gap: 7px;
  padding-top: 20px;
  border-bottom: 1px solid var(--mkt-line);
}

.mkt-mock__chart i {
  display: block;
  min-width: 5px;
  flex: 1;
  height: var(--mkt-value, 50%);
  border-radius: 3px 3px 0 0;
  background: #dfe3ea;
}

.mkt-mock__chart i.is-key { background: var(--mkt-blue); }

.mkt-mock__list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mkt-mock__list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.mkt-mock__list i {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--mkt-soft);
}

.mkt-mock__list span {
  display: block;
  height: 7px;
  border-radius: 4px;
  background: #e5e7eb;
}

.mkt-mock__float {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  max-width: calc(100% - 36px);
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid #cbd2e7;
  border-radius: 10px;
  color: var(--mkt-text);
  background: var(--mkt-paper);
  box-shadow: var(--mkt-shadow-sm);
  font-size: 11px;
  font-weight: 650;
}

.mkt-mock__float::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  content: "";
  background: var(--mkt-blue);
}

/* ---------- Trust strip ---------- */
.mkt-trust {
  border-bottom: 1px solid var(--mkt-line);
  background: var(--mkt-paper);
}

.mkt-trust__inner {
  display: grid;
  min-height: 108px;
  grid-template-columns: minmax(150px, 0.65fr) minmax(0, 3.35fr);
  align-items: center;
  gap: 32px;
}

.mkt-trust__label {
  margin: 0;
  color: var(--mkt-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.mkt-trust__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.mkt-trust__item {
  display: flex;
  min-width: 0;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 20px;
  border-left: 1px solid var(--mkt-line);
  color: var(--mkt-text);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.mkt-trust__item img,
.mkt-trust__item svg {
  width: auto;
  max-width: 110px;
  height: 26px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.76;
}

.mkt-trust__metric {
  color: var(--mkt-black);
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

/* ---------- Sections and headings ---------- */
.mkt-section {
  position: relative;
  padding-block: var(--mkt-section-y);
  background: var(--mkt-paper);
}

.mkt-section--soft { background: var(--mkt-soft); }

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

.mkt-section--dark {
  color: var(--mkt-paper);
  background: var(--mkt-black);
}

.mkt-section-head,
.mkt-section__head {
  display: grid;
  max-width: 760px;
  gap: 0;
  margin: 0 0 clamp(38px, 5vw, 64px);
}

.mkt-section-head--center,
.mkt-section__head--center {
  margin-inline: auto;
  text-align: center;
}

.mkt-section-head__title,
.mkt-section__title {
  margin: 0;
  color: var(--mkt-black);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 830;
  letter-spacing: -0.045em;
  line-height: 1.12;
  text-wrap: balance;
}

.mkt-section--dark .mkt-section-head__title,
.mkt-section--dark .mkt-section__title {
  color: var(--mkt-paper);
}

.mkt-section-head__lead,
.mkt-section__lead {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--mkt-muted);
  font-size: 17px;
  line-height: 1.75;
  text-wrap: pretty;
}

.mkt-section-head--center .mkt-section-head__lead,
.mkt-section__head--center .mkt-section__lead {
  margin-inline: auto;
}

.mkt-section--dark .mkt-section-head__lead,
.mkt-section--dark .mkt-section__lead {
  color: #aeb2ba;
}

.mkt-section-head__row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

/* ---------- Service grid and cards ---------- */
.mkt-service-grid,
.mkt-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mkt-service-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 330px;
  flex-direction: column;
  padding: clamp(24px, 2.4vw, 34px);
  overflow: hidden;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius);
  color: var(--mkt-ink);
  background: var(--mkt-paper);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.mkt-service-card:hover {
  border-color: #b9bec7;
  box-shadow: var(--mkt-shadow-sm);
  transform: translateY(-3px);
}

.mkt-service-card--featured {
  color: var(--mkt-paper);
  background: var(--mkt-black);
  border-color: var(--mkt-black);
}

.mkt-service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.mkt-service-card__index {
  color: var(--mkt-muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.mkt-service-card--featured .mkt-service-card__index { color: #9297a0; }

.mkt-service-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid var(--mkt-line);
  border-radius: 12px;
  color: var(--mkt-blue);
  background: var(--mkt-paper);
}

.mkt-service-card__icon svg {
  width: 22px;
  height: 22px;
}

.mkt-service-card__title {
  margin: 52px 0 0;
  color: inherit;
  font-size: clamp(23px, 2vw, 29px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.mkt-service-card__desc {
  margin: 14px 0 0;
  color: var(--mkt-muted);
  font-size: 14px;
  line-height: 1.75;
}

.mkt-service-card--featured .mkt-service-card__desc { color: #afb3bb; }

.mkt-service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.mkt-service-card__tags li {
  padding: 4px 8px;
  border: 1px solid var(--mkt-line);
  border-radius: 6px;
  color: var(--mkt-muted);
  background: var(--mkt-paper);
  font-size: 11px;
  font-weight: 650;
}

.mkt-service-card--featured .mkt-service-card__tags li {
  color: #c7cad0;
  background: transparent;
  border-color: #34373d;
}

.mkt-service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--mkt-text);
  font-size: 13px;
  font-weight: 700;
}

.mkt-service-card--featured .mkt-service-card__footer { color: var(--mkt-paper); }

.mkt-service-card__arrow {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border: 1px solid var(--mkt-line);
  border-radius: 50%;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.mkt-service-card:hover .mkt-service-card__arrow {
  color: var(--mkt-paper);
  background: var(--mkt-blue);
  border-color: var(--mkt-blue);
}

/* ---------- Price cards ---------- */
.mkt-price-grid,
.mkt-pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.mkt-price-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(26px, 2.5vw, 38px);
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius);
  background: var(--mkt-paper);
}

.mkt-price-card--recommended {
  border: 2px solid var(--mkt-black);
  box-shadow: var(--mkt-shadow-sm);
}

.mkt-price-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--mkt-paper);
  background: var(--mkt-blue);
  font-size: 11px;
  font-weight: 750;
  line-height: 18px;
}

.mkt-price-card__name {
  margin: 0;
  color: var(--mkt-black);
  font-size: 21px;
  font-weight: 800;
}

.mkt-price-card__for {
  min-height: 48px;
  margin: 10px 0 0;
  color: var(--mkt-muted);
  font-size: 14px;
  line-height: 1.7;
}

.mkt-price-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 30px 0 0;
  color: var(--mkt-black);
}

.mkt-price-card__price small {
  font-size: 15px;
  font-weight: 700;
}

.mkt-price-card__price strong {
  font-size: clamp(37px, 3.4vw, 50px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1;
}

.mkt-price-card__price span {
  color: var(--mkt-muted);
  font-size: 13px;
}

.mkt-price-card__rule {
  height: 1px;
  margin: 28px 0;
  border: 0;
  background: var(--mkt-line);
}

.mkt-price-card__features {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 0;
  color: var(--mkt-text);
  font-size: 14px;
  list-style: none;
}

.mkt-price-card__features li {
  position: relative;
  padding-left: 22px;
}

.mkt-price-card__features li::before {
  position: absolute;
  top: 0.62em;
  left: 1px;
  width: 8px;
  height: 4px;
  border-bottom: 1.5px solid var(--mkt-blue);
  border-left: 1.5px solid var(--mkt-blue);
  content: "";
  transform: rotate(-45deg);
}

.mkt-price-card__features li.is-muted {
  color: #a1a5ad;
  text-decoration: line-through;
}

.mkt-price-card__features li.is-muted::before {
  width: 8px;
  height: 1px;
  border: 0;
  background: #a1a5ad;
  transform: none;
}

.mkt-price-card__action { margin-top: auto; }

.mkt-price-note {
  margin: 22px auto 0;
  color: var(--mkt-muted);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

/* ---------- Process ---------- */
.mkt-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--mkt-line-strong);
  list-style: none;
  counter-reset: mkt-process;
}

.mkt-process__item {
  position: relative;
  min-width: 0;
  padding: 30px clamp(16px, 2vw, 28px) 0;
  border-left: 1px solid var(--mkt-line);
  counter-increment: mkt-process;
}

.mkt-process__item:last-child { border-right: 1px solid var(--mkt-line); }

.mkt-process__item::before {
  position: absolute;
  top: -13px;
  left: 24px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--mkt-black);
  border-radius: 50%;
  color: var(--mkt-paper);
  content: counter(mkt-process);
  background: var(--mkt-black);
  font-size: 11px;
  font-weight: 750;
}

.mkt-process__time {
  display: block;
  margin-bottom: 12px;
  color: var(--mkt-blue);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.mkt-process__title {
  margin: 0;
  color: var(--mkt-black);
  font-size: 20px;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.mkt-process__desc {
  margin: 11px 0 0;
  color: var(--mkt-muted);
  font-size: 14px;
  line-height: 1.75;
}

/* ---------- Case cards ---------- */
.mkt-case-grid,
.mkt-cases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mkt-case-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 410px;
  grid-template-rows: minmax(210px, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius);
  background: var(--mkt-paper);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.mkt-case-card:hover {
  border-color: #babec6;
  box-shadow: var(--mkt-shadow-sm);
  transform: translateY(-3px);
}

.mkt-case-card__media {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-bottom: 1px solid var(--mkt-line);
  background: #eceef1;
}

.mkt-case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.mkt-case-card:hover .mkt-case-card__media img { transform: scale(1.025); }

.mkt-case-card__media--mock {
  display: grid;
  place-items: center;
  padding: 28px;
  background: #eceef1;
}

.mkt-case-card__screen {
  width: min(100%, 450px);
  padding: 8px;
  border: 1px solid #c9cdd3;
  border-radius: 10px;
  background: var(--mkt-paper);
  box-shadow: var(--mkt-shadow-sm);
}

.mkt-case-card__screen::before {
  display: block;
  height: 12px;
  margin-bottom: 8px;
  border-radius: 4px;
  content: "";
  background: #e7e9ed;
}

.mkt-case-card__screen img { border-radius: 5px; }

.mkt-case-card__body { padding: clamp(22px, 2.4vw, 32px); }

.mkt-case-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--mkt-muted);
  font-size: 12px;
  font-weight: 700;
}

.mkt-case-card__industry { color: var(--mkt-blue); }

.mkt-case-card__title {
  margin: 14px 0 0;
  color: var(--mkt-black);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.mkt-case-card__desc {
  margin: 12px 0 0;
  color: var(--mkt-muted);
  font-size: 14px;
  line-height: 1.75;
}

.mkt-case-card__results {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.mkt-case-card__results li {
  padding: 5px 9px;
  border: 1px solid var(--mkt-line);
  border-radius: 7px;
  color: var(--mkt-text);
  background: var(--mkt-soft);
  font-size: 11px;
  font-weight: 700;
}

/* ---------- FAQ ---------- */
.mkt-faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(48px, 8vw, 128px);
}

.mkt-faq-layout__aside {
  position: sticky;
  top: 100px;
}

.mkt-faq-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--mkt-line-strong);
  list-style: none;
}

.mkt-faq {
  border-bottom: 1px solid var(--mkt-line);
}

.mkt-faq__question {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 4px;
  color: var(--mkt-black);
  background: transparent;
  font-size: 17px;
  font-weight: 730;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

.mkt-faq__icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.mkt-faq__icon::before,
.mkt-faq__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  content: "";
  background: var(--mkt-black);
  transform: translate(-50%, -50%);
  transition: transform 170ms ease;
}

.mkt-faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.mkt-faq.is-open .mkt-faq__icon::after,
.mkt-faq.open .mkt-faq__icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.mkt-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  color: var(--mkt-muted);
  font-size: 15px;
  transition:
    grid-template-rows 190ms ease,
    visibility 190ms ease;
}

.mkt-faq__answer > div {
  min-height: 0;
  overflow: hidden;
}

.mkt-faq__answer p {
  margin: 0;
  padding: 0 44px 24px 4px;
  line-height: 1.85;
}

.mkt-faq.is-open .mkt-faq__answer,
.mkt-faq.open .mkt-faq__answer {
  grid-template-rows: 1fr;
  visibility: visible;
}

/* ---------- CTA and lead form ---------- */
.mkt-cta {
  padding-block: clamp(72px, 8vw, 112px);
  color: var(--mkt-paper);
  background: var(--mkt-black);
}

.mkt-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.mkt-cta__title {
  max-width: 760px;
  margin: 0;
  color: var(--mkt-paper);
  font-size: clamp(38px, 4.7vw, 66px);
  font-weight: 840;
  letter-spacing: -0.05em;
  line-height: 1.08;
  text-wrap: balance;
}

.mkt-cta__lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: #b7bbc3;
  font-size: 17px;
  line-height: 1.75;
}

.mkt-cta__points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin: 28px 0 0;
  padding: 0;
  color: #d8dae0;
  font-size: 13px;
  list-style: none;
}

.mkt-cta__points li::before {
  margin-right: 7px;
  color: #7fa0ff;
  content: "✓";
  font-weight: 800;
}

.mkt-quick-form,
.mkt-form-card {
  min-width: 0;
  padding: clamp(24px, 2.6vw, 36px);
  border: 1px solid #303238;
  border-radius: var(--mkt-radius);
  color: var(--mkt-ink);
  background: var(--mkt-paper);
}

.mkt-form-card__title,
.mkt-quick-form__title {
  margin: 0 0 6px;
  color: var(--mkt-black);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.mkt-form-card__lead,
.mkt-quick-form__lead {
  margin: 0 0 22px;
  color: var(--mkt-muted);
  font-size: 13px;
  line-height: 1.7;
}

.mkt-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mkt-field {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.mkt-field--full { grid-column: 1 / -1; }

.mkt-field__label {
  color: var(--mkt-text);
  font-size: 13px;
  font-weight: 700;
}

.mkt-field__required {
  margin-left: 2px;
  color: var(--mkt-error);
}

.mkt-input,
.mkt-select,
.mkt-textarea {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--mkt-line-strong);
  border-radius: 10px;
  color: var(--mkt-black);
  background: var(--mkt-paper);
  line-height: 1.4;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.mkt-textarea {
  min-height: 104px;
  resize: vertical;
}

.mkt-select {
  padding-right: 36px;
  appearance: auto;
}

.mkt-input::placeholder,
.mkt-textarea::placeholder { color: #979ca5; }

.mkt-input:focus,
.mkt-select:focus,
.mkt-textarea:focus {
  border-color: var(--mkt-blue);
  box-shadow: 0 0 0 3px rgba(36, 87, 255, 0.12);
}

.mkt-input[aria-invalid="true"],
.mkt-select[aria-invalid="true"],
.mkt-textarea[aria-invalid="true"] {
  border-color: var(--mkt-error);
}

.mkt-field__error {
  margin: 0;
  color: var(--mkt-error);
  font-size: 12px;
}

.mkt-form-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.mkt-form-consent {
  margin: 0;
  color: var(--mkt-muted);
  font-size: 11px;
  line-height: 1.65;
  text-align: center;
}

.mkt-form-consent a {
  color: var(--mkt-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mkt-form-status {
  min-height: 20px;
  margin: 11px 0 0;
  color: var(--mkt-muted);
  font-size: 13px;
  line-height: 1.55;
}

.mkt-form-status.is-error { color: var(--mkt-error); }
.mkt-form-status.is-success { color: var(--mkt-success); }
.mkt-form-success { padding: 18px 0 0; text-align: center; }
.mkt-form-success > span { display: grid; width: 54px; height: 54px; margin: 0 auto 14px; place-items: center; border-radius: 50%; color: #fff; background: var(--mkt-success); font-size: 23px; }
.mkt-form-success strong { display: block; color: var(--mkt-black); font-size: 22px; }
.mkt-form-success p { margin: 8px 0 18px; color: var(--mkt-muted); font-size: 13px; }
.mkt-lead-form.is-success > label,
.mkt-lead-form.is-success > .mkt-form-row,
.mkt-lead-form.is-success > button[type="submit"],
.mkt-lead-form.is-success > .mkt-form-status { display: none; }

.mkt-form-success {
  display: none;
  min-height: 280px;
  place-items: center;
  align-content: center;
  padding: 24px 0;
  text-align: center;
}

.mkt-form-success__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: var(--mkt-paper);
  background: var(--mkt-success);
  font-size: 24px;
  font-weight: 800;
}

.mkt-form-success h3 {
  margin: 0;
  color: var(--mkt-black);
  font-size: 24px;
}

.mkt-form-success p {
  max-width: 340px;
  margin: 10px auto 0;
  color: var(--mkt-muted);
  font-size: 14px;
  line-height: 1.75;
}

.mkt-quick-form.is-success [data-mkt-form-content],
.mkt-quick-form.is-success .mkt-quick-form__body {
  display: none;
}

.mkt-quick-form.is-success .mkt-form-success,
.mkt-quick-form.is-success [data-mkt-form-success] {
  display: grid;
}

/* ---------- Footer ---------- */
.mkt-footer {
  padding: 64px 0 28px;
  color: #c1c4cb;
  background: var(--mkt-black);
  border-top: 1px solid #25272c;
}

.mkt-footer__top {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(130px, 0.7fr));
  gap: clamp(32px, 6vw, 88px);
}

.mkt-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--mkt-paper);
  font-size: 19px;
  font-weight: 800;
}

.mkt-footer__intro {
  max-width: 380px;
  margin: 18px 0 0;
  color: #8f949e;
  font-size: 13px;
  line-height: 1.85;
}

.mkt-footer__title {
  margin: 0 0 16px;
  color: var(--mkt-paper);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.mkt-footer__links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mkt-footer__links a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  color: #9398a2;
  font-size: 13px;
  transition: color 150ms ease;
}

.mkt-footer__links a:hover { color: var(--mkt-paper); }

.mkt-footer__contact {
  display: grid;
  gap: 9px;
  color: #9398a2;
  font-size: 13px;
}

.mkt-footer__contact strong {
  color: var(--mkt-paper);
  font-size: 18px;
}

.mkt-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid #26282d;
  color: #727781;
  font-size: 12px;
}

.mkt-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.mkt-footer__legal a:hover { color: #bfc2c9; }

/* ---------- Shared overlay primitives ---------- */
html.mkt-lock,
html.mkt-lock body {
  overflow: hidden !important;
  overscroll-behavior: none;
}

.mkt-scrim,
.mkt-drawer__backdrop,
.mkt-service-drawer__backdrop,
.mkt-consult__backdrop,
.mkt-wx-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(9, 10, 12, 0.58);
  cursor: default;
}

.mkt-drawer,
.mkt-service-drawer,
.mkt-consult,
.mkt-wx-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 190ms ease, visibility 190ms ease;
}

.mkt-drawer.is-open,
.mkt-service-drawer.is-open,
.mkt-consult.is-open,
.mkt-wx-modal.is-open,
.mkt-wx-modal.is-on {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* ---------- Main nav drawer ---------- */
.mkt-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(440px, 92vw);
  height: 100%;
  flex-direction: column;
  padding:
    max(22px, env(safe-area-inset-top))
    max(22px, env(safe-area-inset-right))
    max(24px, env(safe-area-inset-bottom))
    24px;
  overflow: auto;
  background: var(--mkt-paper);
  box-shadow: -18px 0 50px rgba(9, 10, 12, 0.15);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.mkt-drawer.is-open .mkt-drawer__panel { transform: translateX(0); }

.mkt-drawer__head {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.mkt-drawer__title {
  margin: 0;
  color: var(--mkt-black);
  font-size: 20px;
  font-weight: 800;
}

.mkt-drawer__nav {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--mkt-line);
  list-style: none;
}

.mkt-drawer__nav a,
.mkt-drawer__nav button {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 2px;
  border-bottom: 1px solid var(--mkt-line);
  color: var(--mkt-black);
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.mkt-drawer__footer {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 28px;
}

/* ---------- Service detail drawer ---------- */
.mkt-service-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(620px, 94vw);
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: var(--mkt-paper);
  box-shadow: -20px 0 60px rgba(9, 10, 12, 0.18);
  transform: translateX(100%);
  transition: transform 240ms ease;
}

.mkt-service-drawer.is-open .mkt-service-drawer__panel { transform: translateX(0); }

.mkt-service-drawer__head {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--mkt-line);
  background: var(--mkt-paper);
}

.mkt-service-drawer__title {
  margin: 0;
  color: var(--mkt-black);
  font-size: 21px;
  font-weight: 800;
}

.mkt-service-drawer__body {
  min-height: 0;
  flex: 1;
  padding: 32px 28px;
  overflow: auto;
  overscroll-behavior: contain;
}

.mkt-service-drawer__body > :first-child { margin-top: 0; }
.mkt-service-drawer__body > :last-child { margin-bottom: 0; }

.mkt-service-drawer__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding:
    14px 24px
    max(16px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--mkt-line);
  background: var(--mkt-paper);
}

[data-mkt-service-panel][hidden] { display: none !important; }

/* ---------- Consult bottom sheet ---------- */
.mkt-consult {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
}

.mkt-consult__panel {
  position: relative;
  width: min(100%, 640px);
  max-height: min(88vh, 760px);
  max-height: min(88dvh, 760px);
  padding: 28px;
  overflow: auto;
  overscroll-behavior: contain;
  border-radius: 20px 20px 16px 16px;
  background: var(--mkt-paper);
  box-shadow: var(--mkt-shadow-md);
  transform: translateY(calc(100% + 32px));
  transition: transform 240ms ease;
}

.mkt-consult.is-open .mkt-consult__panel { transform: translateY(0); }

.mkt-consult__handle {
  display: none;
  width: 40px;
  height: 4px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #cfd2d8;
}

.mkt-consult__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.mkt-consult__title {
  margin: 0;
  color: var(--mkt-black);
  font-size: 26px;
  font-weight: 820;
  letter-spacing: -0.03em;
}

.mkt-consult__lead {
  margin: 7px 0 0;
  color: var(--mkt-muted);
  font-size: 13px;
}

/* ---------- WeChat QR modal ---------- */
.mkt-wx-modal,
.eng-wx {
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.mkt-wx-modal.is-open,
.mkt-wx-modal.is-on,
.eng-wx.is-open,
.eng-wx.is-on {
  display: flex;
}

.mkt-wx-modal__card,
.eng-wx__card {
  position: relative;
  width: min(100%, 380px);
  padding: 30px;
  border: 1px solid var(--mkt-line);
  border-radius: 18px;
  color: var(--mkt-ink);
  background: var(--mkt-paper);
  box-shadow: var(--mkt-shadow-md);
  text-align: center;
}

.mkt-wx-modal__card h3,
.eng-wx__card h3 {
  margin: 0;
  color: var(--mkt-black);
  font-size: 24px;
  font-weight: 820;
}

.mkt-wx-modal__card p,
.eng-wx__card p {
  margin: 8px 0 18px;
  color: var(--mkt-muted);
  font-size: 13px;
}

.mkt-wx-modal__card img,
.eng-wx__card img {
  width: min(100%, 280px);
  height: auto;
  margin: 0 auto;
  border: 1px solid var(--mkt-line);
  border-radius: 10px;
  background: var(--mkt-paper);
}

.mkt-wx-modal__close,
.eng-wx__x {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border-radius: 10px;
  color: var(--mkt-muted);
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.mkt-wx-modal__close:hover,
.eng-wx__x:hover {
  color: var(--mkt-black);
  background: var(--mkt-soft);
}

/* ---------- Delayed, non-modal consult hint ---------- */
.mkt-consult-hint {
  position: fixed;
  z-index: 850;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: flex;
  max-width: calc(100vw - 36px);
  align-items: center;
  gap: 2px;
  padding: 4px;
  visibility: hidden;
  opacity: 0;
  border: 1px solid var(--mkt-line-strong);
  border-radius: 999px;
  background: var(--mkt-paper);
  box-shadow: var(--mkt-shadow-sm);
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease;
}

.mkt-consult-hint.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mkt-consult-hint__action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  padding: 8px 10px 8px 13px;
  border-radius: 999px;
  color: var(--mkt-black);
  background: transparent;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.mkt-consult-hint__action::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  content: "";
  background: var(--mkt-blue);
}

.mkt-consult-hint__close {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  color: var(--mkt-muted);
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

.mkt-consult-hint__close:hover {
  color: var(--mkt-black);
  background: var(--mkt-soft);
}

/* ---------- Mobile app shell: fixed four-column bottom nav ---------- */
.mkt-app-shell {
  display: none;
}

/* ---------- Desktop downscaling ---------- */
@media (max-width: 1180px) {
  .mkt-header__inner { gap: 16px; }
  .mkt-nav { gap: 0; }
  .mkt-nav__link,
  .mkt-nav__trigger { padding-inline: 10px; }

  .mkt-hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
    gap: 48px;
  }

  .mkt-mock__body { grid-template-columns: 120px minmax(0, 1fr); }
  .mkt-service-grid,
  .mkt-services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mkt-service-card { min-height: 310px; }
}

/* ---------- Tablet and phone: <= 820 ---------- */
@media (max-width: 820px) {
  .mkt-page {
    --mkt-gutter: 20px;
    --mkt-section-y: 76px;
    width: 100%;
    max-width: 100%;
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
    overflow-x: hidden;
  }

  @supports (overflow: clip) {
    .mkt-page { overflow-x: clip; }
  }

  .mkt-desktop-only { display: none !important; }
  .mkt-mobile-only { display: initial !important; }

  .mkt-page :where(
    a,
    button,
    input,
    select,
    [role="button"],
    [data-mkt-drawer-open],
    [data-mkt-service-open],
    [data-mkt-consult-open],
    [data-wx-open],
    [data-mkt-faq-trigger]
  ) {
    min-height: 44px;
  }

  .mkt-header {
    position: sticky;
    top: 0;
  }

  .mkt-header__inner,
  .mkt-header.is-compact .mkt-header__inner {
    min-height: 64px;
  }

  .mkt-header .mkt-nav,
  .mkt-header__actions > .mkt-btn:not(.mkt-menu-toggle) {
    display: none;
  }

  .mkt-menu-toggle {
    display: inline-grid;
  }

  .mkt-brand { font-size: 17px; }
  .mkt-brand__mark {
    width: 34px;
    height: 34px;
  }

  .mkt-hero {
    padding: 66px 0 72px;
  }

  .mkt-hero::before { display: none; }

  .mkt-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .mkt-hero__title {
    max-width: 690px;
    font-size: clamp(42px, 9vw, 62px);
  }

  .mkt-hero__lead {
    max-width: 650px;
    margin-top: 20px;
    font-size: 17px;
  }

  .mkt-hero__actions { margin-top: 28px; }
  .mkt-hero__visual { width: 100%; }
  .mkt-mock__body { min-height: 390px; }

  .mkt-trust__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 30px;
  }

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

  .mkt-trust__item {
    min-height: 48px;
    justify-content: flex-start;
    padding: 7px 14px;
    border: 0;
    border-left: 1px solid var(--mkt-line);
  }

  .mkt-section-head__title,
  .mkt-section__title {
    font-size: clamp(34px, 7vw, 48px);
  }

  .mkt-section-head__row {
    align-items: start;
    flex-direction: column;
  }

  .mkt-service-grid,
  .mkt-services,
  .mkt-price-grid,
  .mkt-pricing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mkt-service-card { min-height: 300px; }
  .mkt-service-card__title { margin-top: 38px; }

  .mkt-price-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .mkt-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 44px;
  }

  .mkt-process__item:nth-child(3) { border-left-color: var(--mkt-line); }

  .mkt-case-grid,
  .mkt-cases {
    grid-template-columns: 1fr;
  }

  .mkt-faq-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .mkt-faq-layout__aside { position: static; }

  .mkt-cta__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .mkt-quick-form,
  .mkt-form-card {
    width: 100%;
  }

  .mkt-footer__top {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .mkt-footer__col:first-child {
    grid-column: 1 / -1;
  }

  .mkt-footer__intro { max-width: 540px; }

  .mkt-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  /* Full-screen service drawer at mobile/tablet sizes. */
  .mkt-service-drawer__panel {
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    height: 100dvh;
    box-shadow: none;
  }

  .mkt-service-drawer__head {
    min-height: calc(64px + env(safe-area-inset-top));
    padding:
      max(12px, env(safe-area-inset-top))
      18px
      12px;
  }

  .mkt-service-drawer__body {
    padding: 24px 20px;
  }

  .mkt-service-drawer__footer {
    padding: 12px 20px max(12px, env(safe-area-inset-bottom));
  }

  .mkt-consult {
    padding: 0;
  }

  .mkt-consult__panel {
    width: 100%;
    max-height: calc(94vh - env(safe-area-inset-top));
    max-height: calc(94dvh - env(safe-area-inset-top));
    padding: 12px 20px max(20px, env(safe-area-inset-bottom));
    border-radius: 20px 20px 0 0;
  }

  .mkt-consult__handle { display: block; }

  .mkt-wx-modal,
  .eng-wx {
    padding:
      max(16px, env(safe-area-inset-top))
      16px
      max(16px, env(safe-area-inset-bottom));
  }

  .mkt-consult-hint {
    right: 12px;
    bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .mkt-app-shell {
    position: fixed;
    z-index: 900;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: calc(64px + env(safe-area-inset-bottom));
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 4px 8px env(safe-area-inset-bottom);
    border-top: 1px solid var(--mkt-line);
    background: var(--mkt-paper);
    box-shadow: 0 -10px 28px rgba(9, 10, 12, 0.07);
  }

  .mkt-app-shell__item {
    display: flex;
    min-width: 0;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    padding: 5px 3px;
    border-radius: 9px;
    color: var(--mkt-muted);
    background: transparent;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    cursor: pointer;
  }

  .mkt-app-shell__item svg {
    width: 21px;
    height: 21px;
  }

  .mkt-app-shell__item.is-active,
  .mkt-app-shell__item[aria-current="page"] {
    color: var(--mkt-blue);
    background: var(--mkt-blue-soft);
  }
}

/* ---------- 390px phone tuning ---------- */
@media (max-width: 430px) {
  .mkt-page {
    --mkt-gutter: 16px;
    --mkt-section-y: 64px;
    font-size: 15px;
  }

  .mkt-header__inner,
  .mkt-header.is-compact .mkt-header__inner {
    min-height: 60px;
  }

  .mkt-brand__sub { display: none; }

  .mkt-hero {
    padding: 52px 0 60px;
  }

  .mkt-hero__title {
    font-size: clamp(38px, 11.5vw, 48px);
    letter-spacing: -0.05em;
  }

  .mkt-hero__lead {
    font-size: 16px;
    line-height: 1.72;
  }

  .mkt-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mkt-hero__actions .mkt-btn { width: 100%; }

  .mkt-hero__note {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .mkt-product-mock,
  .mkt-mock { border-radius: 14px; }

  .mkt-mock__topbar {
    height: 40px;
    padding-inline: 12px;
  }

  .mkt-mock__body {
    min-height: 320px;
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .mkt-mock__sidebar { padding: 12px 7px; }
  .mkt-mock__logo {
    width: 42px;
    height: 12px;
    margin: 2px 4px 17px;
  }

  .mkt-mock__nav li {
    height: 26px;
    padding: 4px 5px;
    overflow: hidden;
    font-size: 7px;
    white-space: nowrap;
  }

  .mkt-mock__main { padding: 13px; }
  .mkt-mock__heading { margin-bottom: 11px; }
  .mkt-mock__heading b { font-size: 12px; }
  .mkt-mock__heading span { display: none; }
  .mkt-mock__stats { gap: 5px; }
  .mkt-mock__stat { padding: 8px 6px; }
  .mkt-mock__stat strong { font-size: 13px; }
  .mkt-mock__workspace { grid-template-columns: 1fr; }
  .mkt-mock__workspace .mkt-mock__panel:last-child { display: none; }
  .mkt-mock__chart { height: 100px; gap: 4px; }
  .mkt-mock__float {
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
  }

  .mkt-trust__list { grid-template-columns: 1fr 1fr; }
  .mkt-trust__item {
    padding-inline: 9px;
    font-size: 12px;
  }
  .mkt-trust__metric { font-size: 18px; }

  .mkt-section-head,
  .mkt-section__head {
    margin-bottom: 32px;
  }

  .mkt-section-head__title,
  .mkt-section__title {
    font-size: 34px;
  }

  .mkt-section-head__lead,
  .mkt-section__lead {
    margin-top: 14px;
    font-size: 15px;
  }

  .mkt-service-grid,
  .mkt-services,
  .mkt-price-grid,
  .mkt-pricing {
    grid-template-columns: 1fr;
  }

  .mkt-price-card:last-child:nth-child(odd) { grid-column: auto; }

  .mkt-service-card {
    min-height: 280px;
    padding: 24px;
  }

  .mkt-service-card__title { margin-top: 32px; }

  .mkt-process {
    grid-template-columns: 1fr;
    row-gap: 38px;
  }

  .mkt-process__item {
    min-height: 0;
    padding: 28px 4px 0 22px;
    border-right: 0 !important;
    border-left: 1px solid var(--mkt-line);
  }

  .mkt-process__item::before { left: -13px; }

  .mkt-case-card {
    min-height: 0;
    grid-template-rows: 190px auto;
  }

  .mkt-case-card__media { min-height: 190px; }

  .mkt-faq__question {
    min-height: 68px;
    gap: 14px;
    padding-block: 18px;
    font-size: 16px;
  }

  .mkt-faq__answer p { padding-right: 12px; }

  .mkt-cta { padding-block: 64px; }
  .mkt-cta__title { font-size: 38px; }
  .mkt-cta__lead { font-size: 15px; }

  .mkt-form-grid { grid-template-columns: 1fr; }
  .mkt-field--full { grid-column: auto; }

  .mkt-quick-form,
  .mkt-form-card {
    padding: 22px 18px;
  }

  .mkt-footer {
    padding-top: 52px;
  }

  .mkt-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 34px 20px;
  }

  .mkt-footer__col:first-child { grid-column: 1 / -1; }
  .mkt-footer__bottom { margin-top: 38px; }

  .mkt-drawer__panel {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .mkt-service-drawer__footer {
    grid-template-columns: 1fr;
  }

  .mkt-consult__title { font-size: 23px; }

  .mkt-wx-modal__card,
  .eng-wx__card {
    padding: 28px 20px 22px;
  }

  .mkt-app-shell {
    padding-inline: 4px;
  }
}

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .mkt-hero__copy,
  .mkt-hero__visual {
    animation: mkt-enter 480ms both ease-out;
  }

  .mkt-hero__visual { animation-delay: 90ms; }

  @keyframes mkt-enter {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .mkt-page,
  .mkt-page *,
  .mkt-page *::before,
  .mkt-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .mkt-service-card:hover,
  .mkt-case-card:hover,
  .mkt-btn:hover {
    transform: none;
  }

  .mkt-case-card:hover .mkt-case-card__media img { transform: none; }
}

@media (hover: none), (pointer: coarse) {
  .mkt-service-card:hover,
  .mkt-case-card:hover,
  .mkt-btn:hover {
    transform: none;
  }
}

@media print {
  .mkt-header,
  .mkt-app-shell,
  .mkt-consult-hint,
  .mkt-drawer,
  .mkt-service-drawer,
  .mkt-consult,
  .mkt-wx-modal {
    display: none !important;
  }

  .mkt-page {
    padding-bottom: 0;
    color: #000;
    background: #fff;
  }

  .mkt-section,
  .mkt-hero {
    padding-block: 32px;
    break-inside: avoid;
  }
}

/* ==========================================================================
   qib.cn acquisition pages v2
   Markup-specific layer for the paid-search website.
   ========================================================================== */
.mkt-site {
  margin: 0;
  padding: 0;
  color: var(--mkt-ink);
  background: var(--mkt-paper);
}
.mkt-site main { min-height: 60vh; }
.mkt-site h1,
.mkt-site h2,
.mkt-site h3,
.mkt-site h4 { color: inherit; }
.mkt-site button { font-family: inherit; }
.mkt-skip {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 10px 14px;
  color: #fff;
  background: #090a0c;
  transform: translateY(-140%);
}
.mkt-skip:focus { transform: none; }
.mkt-btn--secondary {
  color: var(--mkt-black);
  background: #fff;
  border-color: var(--mkt-line-strong);
}
.mkt-btn--secondary:hover {
  color: var(--mkt-black);
  background: var(--mkt-soft);
  border-color: var(--mkt-black);
}
.mkt-btn--line-light {
  color: #fff;
  background: transparent;
  border-color: #555a63;
}
.mkt-btn--line-light:hover {
  color: #090a0c;
  background: #fff;
  border-color: #fff;
}
.mkt-btn--lg { min-height: 54px; padding: 14px 26px; font-size: 16px; }
.mkt-btn--block { width: 100%; }
.mkt-text-btn {
  display: inline-flex;
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--mkt-black);
  background: transparent;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

/* Header */
.mkt-header {
  position: sticky;
  top: 0;
  z-index: 70;
  width: 100%;
  border-bottom: 1px solid rgba(228, 230, 234, .9);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
}
.mkt-header__inner { min-height: 72px; }
.mkt-brand { gap: 11px; }
.mkt-brand > span:last-child { display: grid; line-height: 1.15; }
.mkt-brand > span:last-child b {
  color: var(--mkt-black);
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -.02em;
}
.mkt-brand > span:last-child small {
  margin-top: 4px;
  color: var(--mkt-muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .1em;
}
.mkt-brand__mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--mkt-black);
  font-size: 16px;
  font-weight: 850;
}
.mkt-nav__link {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.mkt-header__phone {
  color: var(--mkt-text);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}
.mkt-menu {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 6px;
  border: 1px solid var(--mkt-line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}
.mkt-menu span { width: 18px; height: 1.5px; background: var(--mkt-black); }

/* Main hero */
.mkt-hero { padding: clamp(58px, 7vw, 108px) 0 0; }
.mkt-hero__grid {
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(48px, 7vw, 104px);
}
.mkt-hero__copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--mkt-black);
  font-size: clamp(46px, 5.4vw, 78px);
  font-weight: 860;
  letter-spacing: -.065em;
  line-height: 1.03;
}
.mkt-hero__copy h1 span { display: block; }
.mkt-hero__copy h1 span + span { margin-top: .12em; color: #444850; }
.mkt-hero__copy > p {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--mkt-muted);
  font-size: 18px;
  line-height: 1.85;
}
.mkt-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.mkt-hero__note {
  margin-top: 16px;
  color: var(--mkt-muted);
  font-size: 12px;
  letter-spacing: .03em;
}
.mkt-quick-prices {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
  border-top: 1px solid var(--mkt-line);
  border-bottom: 1px solid var(--mkt-line);
}
.mkt-quick-prices a { padding: 16px 14px 16px 0; border-right: 1px solid var(--mkt-line); }
.mkt-quick-prices a + a { padding-left: 14px; }
.mkt-quick-prices a:last-child { border-right: 0; }
.mkt-quick-prices span { display: block; color: var(--mkt-muted); font-size: 11px; }
.mkt-quick-prices b { display: block; margin-top: 4px; color: var(--mkt-black); font-size: 15px; }
.mkt-hero__visual { position: relative; min-width: 0; }
.mkt-hero__float {
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 230px;
  padding: 18px;
  border: 1px solid #292d34;
  border-radius: 14px;
  color: #fff;
  background: #0d0f13;
  box-shadow: 0 24px 70px rgba(9,10,12,.22);
}
.mkt-hero__float small { display: block; color: #777e89; font-size: 9px; letter-spacing: .14em; }
.mkt-hero__float b { display: block; margin-top: 8px; font-size: 15px; }
.mkt-hero__float span { display: flex; align-items: center; gap: 7px; margin-top: 9px; color: #aeb4be; font-size: 11px; }
.mkt-hero__float i { width: 7px; height: 7px; border-radius: 50%; background: #42c983; }
.mkt-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(70px, 8vw, 112px) 0 0;
  padding: 0;
  border-top: 1px solid var(--mkt-line);
}
.mkt-trust-strip > div { padding: 23px 24px 23px 0; border-right: 1px solid var(--mkt-line); }
.mkt-trust-strip > div + div { padding-left: 24px; }
.mkt-trust-strip > div:last-child { border-right: 0; }
.mkt-trust-strip dt { color: var(--mkt-black); font-size: 19px; font-weight: 820; }
.mkt-trust-strip dd { margin: 4px 0 0; color: var(--mkt-muted); font-size: 12px; }

/* Product interface mockups */
.mkt-mock {
  position: relative;
  min-height: 470px;
  padding: 42px 34px 34px;
  overflow: hidden;
  border: 1px solid #242832;
  border-radius: 20px;
  color: #d8dce4;
  background: #0b0d11;
  box-shadow: 0 32px 90px rgba(9,10,12,.16);
}
.mkt-mock::after { display: none; }
.mkt-mock__caption {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 38px;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  border-bottom: 1px solid #262a32;
  background: #12151a;
}
.mkt-mock__caption span { display: flex; gap: 5px; }
.mkt-mock__caption i { width: 7px; height: 7px; border-radius: 50%; background: #3e444f; }
.mkt-mock__caption i:first-child { background: #ff655d; }
.mkt-mock__caption i:nth-child(2) { background: #ffbf3f; }
.mkt-mock__caption i:nth-child(3) { background: #35c84a; }
.mkt-mock__caption b { color: #737a86; font-size: 9px; font-weight: 650; letter-spacing: .08em; }
.mkt-browser { overflow: hidden; border: 1px solid #2a2e36; background: #15181e; }
.mkt-browser header { display: flex; height: 48px; align-items: center; justify-content: space-between; padding: 0 16px; border-bottom: 1px solid #292d35; font-size: 9px; }
.mkt-browser header strong { color: #fff; letter-spacing: .12em; }
.mkt-browser header span { color: #7c838e; }
.mkt-browser header b { padding: 5px 8px; color: #fff; background: var(--mkt-blue); }
.mkt-browser__hero { min-height: 205px; padding: 35px 28px; background: linear-gradient(135deg, #f3f4f6, #dfe2e8); }
.mkt-browser__hero small { color: #707681; font-size: 8px; letter-spacing: .15em; }
.mkt-browser__hero strong { display: block; margin-top: 9px; color: #111318; font-size: 25px; line-height: 1.16; }
.mkt-browser__hero i { display: block; width: 76px; height: 19px; margin-top: 18px; background: #111318; }
.mkt-browser__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 10px; }
.mkt-browser__cards i { height: 78px; border: 1px solid #2a2e36; background: #1a1e25; }
.mkt-dashboard { display: grid; min-height: 386px; grid-template-columns: 58px 1fr; overflow: hidden; border: 1px solid #292d35; background: #12151a; }
.mkt-dashboard aside { display: grid; align-content: start; gap: 10px; padding: 14px 10px; border-right: 1px solid #292d35; }
.mkt-dashboard aside strong { display: grid; height: 30px; place-items: center; color: #fff; background: var(--mkt-blue); }
.mkt-dashboard aside i { height: 13px; border-radius: 3px; background: #292e37; }
.mkt-dashboard aside i.is-on { background: #536173; }
.mkt-dashboard__main { min-width: 0; padding: 20px; }
.mkt-dashboard__main header { display: flex; justify-content: space-between; color: #fff; font-size: 13px; }
.mkt-dashboard__main header span { color: #42c983; font-size: 9px; }
.mkt-dashboard__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 18px; }
.mkt-dashboard__stats i { height: 54px; border: 1px solid #292e37; background: #191d24; }
.mkt-dashboard__table { display: grid; gap: 8px; margin-top: 18px; }
.mkt-dashboard__table i { height: 22px; border-bottom: 1px solid #292e37; background: linear-gradient(90deg,#262b34 22%,transparent 22% 36%,#222730 36% 68%,transparent 68%); }
.mkt-dashboard__chart { display: flex; height: 84px; align-items: end; gap: 8px; margin-top: 18px; }
.mkt-dashboard__chart b { width: 16%; height: 44%; background: #283140; }
.mkt-dashboard__chart b:nth-child(2) { height: 72%; }
.mkt-dashboard__chart b:nth-child(3) { height: 58%; background: var(--mkt-blue); }
.mkt-dashboard__chart b:nth-child(4) { height: 88%; }
.mkt-dashboard__chart b:nth-child(5) { height: 66%; }
.mkt-code { margin-top: 24px; padding: 15px; border: 1px solid #292e37; background: #090b0e; font: 10px/1.8 ui-monospace, monospace; }
.mkt-code p { margin: 0 0 8px; color: #89919e; }
.mkt-code em { display: inline-block; width: 54px; color: #7da0ff; font-style: normal; }
.mkt-code span { float: right; color: #42c983; }
.mkt-phone-stage { position: relative; display: grid; min-height: 390px; place-items: center; }
.mkt-phone {
  position: relative;
  z-index: 2;
  width: 190px;
  min-height: 365px;
  padding: 18px 13px 12px;
  border: 5px solid #30353e;
  border-radius: 29px;
  background: #f6f7f8;
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
}
.mkt-phone--back { position: absolute; z-index: 1; margin: 20px 0 0 170px; transform: scale(.88); opacity: .62; }
.mkt-phone__notch { display: block; width: 68px; height: 7px; margin: -9px auto 16px; border-radius: 999px; background: #242933; }
.mkt-phone__brand { width: 72px; height: 10px; background: #14171c; }
.mkt-phone__banner { height: 92px; margin-top: 14px; border-radius: 8px; background: linear-gradient(135deg,#2457ff,#7694ff); }
.mkt-phone__chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 10px; }
.mkt-phone__chips i { height: 28px; border-radius: 5px; background: #e0e3e8; }
.mkt-phone__list { display: grid; gap: 7px; margin-top: 12px; }
.mkt-phone__list b { height: 34px; border: 1px solid #e0e3e8; background: #fff; }
.mkt-phone__tabs { position: absolute; right: 10px; bottom: 8px; left: 10px; display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; padding-top: 7px; border-top: 1px solid #e0e3e8; }
.mkt-phone__tabs i { height: 7px; border-radius: 99px; background: #c9cdd4; }
.mkt-phone__chart { height: 120px; margin-top: 16px; background: linear-gradient(160deg,transparent 46%,#2457ff 47% 49%,transparent 50%),#e9ecf1; }
.mkt-shop { overflow: hidden; border: 1px solid #292e37; background: #f4f5f7; }
.mkt-shop__hero { min-height: 142px; padding: 38px 28px; color: #fff; background: #17191e; }
.mkt-shop__hero span { display: block; color: #9298a3; font-size: 8px; letter-spacing: .17em; }
.mkt-shop__hero b { display: block; margin-top: 8px; font-size: 28px; }
.mkt-shop__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; padding: 12px; }
.mkt-shop__grid i { height: 118px; background: #e0e3e7; }
.mkt-shop__grid i:first-child { background: #cbd5f8; }
.mkt-shop__cart { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; color: #333842; background: #fff; font-size: 10px; }
.mkt-shop__cart b { padding: 6px 10px; color: #fff; background: #111318; }

/* Shared headings and sections */
.mkt-section--ink { color: #fff; background: var(--mkt-black); }
.mkt-section-head {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .55fr);
  align-items: end;
  gap: clamp(40px, 8vw, 120px);
}
.mkt-section-head > div > small,
.mkt-cta small,
.mkt-page-hero small {
  display: block;
  margin-bottom: 15px;
  color: var(--mkt-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
}
.mkt-section-head h2 {
  margin: 0;
  color: var(--mkt-black);
  font-size: clamp(36px, 4.4vw, 62px);
  font-weight: 850;
  letter-spacing: -.055em;
  line-height: 1.08;
}
.mkt-section-head > p { margin: 0 0 5px; color: var(--mkt-muted); font-size: 16px; line-height: 1.85; }
.mkt-section-head--light h2,
.mkt-section--ink .mkt-section-head h2 { color: #fff; }
.mkt-section-head--light > p,
.mkt-section--ink .mkt-section-head > p { color: #aeb3bd; }
.mkt-section-head--stack { display: block; }
.mkt-section-action { margin-top: 38px; text-align: right; }
.mkt-section-action--light .mkt-text-btn { color: #fff; }
.mkt-narrow { max-width: 920px; }

/* Homepage sections */
.mkt-choice-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.mkt-choice {
  display: grid;
  min-height: 320px;
  grid-template-columns: 54px 1fr;
  gap: 0 20px;
  padding: 28px;
  border: 1px solid var(--mkt-line);
  border-radius: 16px;
  background: #fff;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.mkt-choice:hover { border-color: #b9bec7; box-shadow: var(--mkt-shadow-sm); transform: translateY(-3px); }
.mkt-choice__num { color: var(--mkt-blue); font: 750 13px/1.2 ui-monospace,monospace; }
.mkt-choice h3 { margin: 0; color: var(--mkt-black); font-size: 21px; font-weight: 760; line-height: 1.55; }
.mkt-choice__answer { grid-column: 2; margin-top: 23px; padding-top: 18px; border-top: 1px solid var(--mkt-line); }
.mkt-choice__answer span { display: block; color: var(--mkt-muted); font-size: 11px; }
.mkt-choice__answer b { display: block; margin-top: 5px; color: var(--mkt-black); font-size: 25px; }
.mkt-choice__answer em { display: block; margin-top: 4px; color: var(--mkt-blue); font-size: 13px; font-style: normal; font-weight: 750; }
.mkt-choice > p { grid-column: 2; margin: 14px 0 0; color: var(--mkt-muted); font-size: 13px; line-height: 1.75; }
.mkt-choice > i { grid-column: 2; align-self: end; margin-top: 20px; color: var(--mkt-black); font-size: 12px; font-style: normal; font-weight: 750; }
.mkt-section--ink .mkt-service-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.mkt-section--ink .mkt-service-card { min-height: 270px; border-color: #272a31; color: #fff; background: #121419; }
.mkt-service-card__top small { color: #828994; font-size: 11px; }
.mkt-service-card__top span { color: #737b87; font-size: 18px; }
.mkt-service-card > h3 { margin: 30px 0 0; color: #fff; font-size: 27px; }
.mkt-service-card > p { margin: 12px 0 0; color: #9ea4ae; font-size: 13px; line-height: 1.7; }
.mkt-service-card > div:last-child { display: flex; justify-content: space-between; margin-top: auto; padding-top: 24px; }
.mkt-service-card > div:last-child b { color: #fff; font-size: 17px; }
.mkt-service-card > div:last-child em { color: #7e8590; font-size: 12px; font-style: normal; }
.mkt-process { grid-template-columns: repeat(5,minmax(0,1fr)); }
.mkt-process li { min-height: 250px; padding: 26px 22px; border-right: 1px solid var(--mkt-line); }
.mkt-process li:first-child { border-left: 1px solid var(--mkt-line); }
.mkt-process li > span { display: block; color: var(--mkt-blue); font: 750 12px/1 ui-monospace,monospace; }
.mkt-process li h3 { margin: 54px 0 0; color: var(--mkt-black); font-size: 21px; }
.mkt-process li p { margin: 12px 0 0; color: var(--mkt-muted); font-size: 13px; line-height: 1.75; }
.mkt-process--dark { border-color: #34373e; }
.mkt-process--dark li { border-color: #34373e; }
.mkt-process--dark li h3 { color: #fff; }
.mkt-process--dark li p { color: #9ea4ae; }
.mkt-case-card__cover {
  position: relative;
  min-height: 240px;
  background: linear-gradient(145deg,#dfe3ea,#c8ced8);
  background-position: center;
  background-size: cover;
}
.mkt-case-card__cover::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg,transparent 55%,rgba(9,10,12,.46)); }
.mkt-case-card__cover span { position: absolute; z-index: 1; bottom: 16px; left: 18px; padding: 6px 9px; color: #fff; background: rgba(9,10,12,.75); font-size: 10px; font-weight: 750; }
.mkt-case-card__body h3 { margin: 0; color: var(--mkt-black); font-size: 23px; line-height: 1.35; }
.mkt-case-card__body > p { margin: 12px 0 0; color: var(--mkt-muted); font-size: 13px; line-height: 1.75; }
.mkt-case-card__body > div { display: flex; gap: 22px; margin-top: 20px; }
.mkt-case-card__body > div span { color: var(--mkt-muted); font-size: 11px; }
.mkt-case-card__body > div b { display: block; margin-top: 3px; color: var(--mkt-black); font-size: 13px; }
.mkt-inout { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mkt-inout > div { padding: clamp(26px,3vw,40px); border: 1px solid var(--mkt-line); border-radius: 16px; background: #fff; }
.mkt-inout h3 { margin: 0 0 20px; color: var(--mkt-black); font-size: 21px; }
.mkt-inout ul { margin: 0; padding: 0; list-style: none; }
.mkt-inout li { position: relative; padding: 11px 0 11px 23px; border-bottom: 1px solid var(--mkt-line); color: var(--mkt-text); font-size: 14px; line-height: 1.65; }
.mkt-inout li:last-child { border-bottom: 0; }
.mkt-inout li::before { position: absolute; top: 19px; left: 2px; width: 7px; height: 7px; border-radius: 50%; content: ""; background: var(--mkt-blue); }
.mkt-inout > div:nth-child(2) li::before { background: #c07a3a; }
.mkt-inout--dark > div { border-color: #30333a; background: #121419; }
.mkt-inout--dark h3 { color: #fff; }
.mkt-inout--dark li { border-color: #292c33; color: #c3c7cf; }
.mkt-faq { border-top: 1px solid var(--mkt-line-strong); }
.mkt-faq > article { border-bottom: 1px solid var(--mkt-line); }
.mkt-faq > article > button { display: flex; width: 100%; min-height: 76px; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 4px; color: var(--mkt-black); background: transparent; font-size: 17px; font-weight: 760; text-align: left; cursor: pointer; }
.mkt-faq > article > button i { font-size: 23px; font-style: normal; font-weight: 400; transition: transform .18s ease; }
.mkt-faq > article.is-open > button i { transform: rotate(45deg); }
.mkt-faq > article > div { display: none; }
.mkt-faq > article.is-open > div { display: block; }
.mkt-faq > article > div p { margin: 0; padding: 0 40px 24px 4px; color: var(--mkt-muted); font-size: 15px; line-height: 1.85; }
.mkt-cta h2 { margin: 0; color: #fff; font-size: clamp(40px,5vw,70px); font-weight: 850; letter-spacing: -.055em; line-height: 1.05; }
.mkt-cta__inner > div:last-child > p { margin: 0; color: #afb4bd; font-size: 16px; line-height: 1.8; }
.mkt-cta__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 27px; }

/* General page hero */
.mkt-page-hero { padding: clamp(68px,8vw,118px) 0; border-bottom: 1px solid var(--mkt-line); background: #fff; }
.mkt-page-hero__grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(340px,.65fr); align-items: end; gap: clamp(50px,9vw,140px); }
.mkt-page-hero h1 { margin: 0; color: var(--mkt-black); font-size: clamp(48px,6vw,82px); font-weight: 860; letter-spacing: -.065em; line-height: 1.03; }
.mkt-page-hero__grid > div:last-child > p { margin: 0; color: var(--mkt-muted); font-size: 17px; line-height: 1.85; }

/* Services */
.mkt-service-group + .mkt-service-group { margin-top: 82px; }
.mkt-service-group__head { display: flex; align-items: baseline; gap: 20px; margin-bottom: 20px; }
.mkt-service-group__head span { color: var(--mkt-blue); font: 750 12px/1 ui-monospace,monospace; }
.mkt-service-group__head h2 { margin: 0; color: var(--mkt-black); font-size: 28px; }
.mkt-service-list { border-top: 1px solid var(--mkt-line-strong); }
.mkt-service-row {
  display: grid;
  grid-template-columns: 230px minmax(0,1fr) 150px 24px;
  align-items: center;
  gap: 30px;
  min-height: 148px;
  border-bottom: 1px solid var(--mkt-line);
  transition: background .15s ease;
}
.mkt-service-row:hover { background: var(--mkt-soft); }
.mkt-service-row small { color: var(--mkt-muted); font-size: 11px; }
.mkt-service-row h3 { margin: 5px 0 0; color: var(--mkt-black); font-size: 23px; }
.mkt-service-row > p { margin: 0; color: var(--mkt-muted); font-size: 13px; line-height: 1.75; }
.mkt-service-row__meta b { display: block; color: var(--mkt-black); font-size: 17px; }
.mkt-service-row__meta span { display: block; margin-top: 5px; color: var(--mkt-muted); font-size: 11px; }
.mkt-service-row > i { color: var(--mkt-blue); font-size: 19px; font-style: normal; }
.mkt-highlight-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 72px; border-top: 1px solid #34373e; }
.mkt-highlight-grid > div { padding: 25px 24px 0 0; border-right: 1px solid #34373e; }
.mkt-highlight-grid > div + div { padding-left: 24px; }
.mkt-highlight-grid h3 { margin: 0; color: #fff; font-size: 17px; }
.mkt-highlight-grid p { margin: 9px 0 0; color: #9096a1; font-size: 12px; line-height: 1.75; }

/* Service detail */
.mkt-service-hero { padding: clamp(58px,7vw,104px) 0; background: #fff; }
.mkt-service-hero__grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(430px,1.15fr); align-items: center; gap: clamp(48px,8vw,112px); }
.mkt-breadcrumb { margin-bottom: 28px; color: var(--mkt-muted); font-size: 12px; }
.mkt-breadcrumb span { margin: 0 8px; }
.mkt-breadcrumb a { color: var(--mkt-text); }
.mkt-service-hero h1 { margin: 0; color: var(--mkt-black); font-size: clamp(54px,7vw,90px); font-weight: 860; letter-spacing: -.065em; line-height: .98; }
.mkt-service-hero__copy > p { margin: 25px 0 0; color: var(--mkt-muted); font-size: 17px; line-height: 1.85; }
.mkt-service-hero__price { display: flex; align-items: center; gap: 18px; margin-top: 28px; }
.mkt-service-hero__price b { color: var(--mkt-black); font-size: 36px; letter-spacing: -.04em; }
.mkt-service-hero__price span { color: var(--mkt-muted); font-size: 12px; line-height: 1.65; }
.mkt-service-hero__promise { display: block; margin-top: 15px; color: var(--mkt-muted); font-size: 11px; }
.mkt-fit-grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--mkt-line-strong); border-left: 1px solid var(--mkt-line); }
.mkt-fit-grid > div { display: grid; min-height: 160px; grid-template-columns: 50px 1fr; gap: 15px; align-items: start; padding: 27px; border-right: 1px solid var(--mkt-line); border-bottom: 1px solid var(--mkt-line); background: #fff; }
.mkt-fit-grid span { color: var(--mkt-blue); font: 750 12px/1.5 ui-monospace,monospace; }
.mkt-fit-grid p { margin: 0; color: var(--mkt-black); font-size: 17px; line-height: 1.7; }
.mkt-deliverables { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--mkt-line-strong); }
.mkt-deliverables li { display: grid; grid-template-columns: 76px 1fr; gap: 20px; align-items: start; padding: 25px 0; border-bottom: 1px solid var(--mkt-line); }
.mkt-deliverables span { color: var(--mkt-blue); font: 750 13px/1.6 ui-monospace,monospace; }
.mkt-deliverables p { margin: 0; color: var(--mkt-black); font-size: 20px; line-height: 1.65; }
.mkt-tech-note { margin: 18px 0 0; color: #8f96a1; font-size: 12px; }
.mkt-package-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.mkt-package { position: relative; display: flex; min-height: 520px; flex-direction: column; padding: 30px 26px; border: 1px solid var(--mkt-line); border-radius: 16px; background: #fff; }
.mkt-package.is-featured { border: 2px solid var(--mkt-black); }
.mkt-package__tag { position: absolute; top: 18px; right: 18px; padding: 5px 8px; border-radius: 99px; color: #fff; background: var(--mkt-blue); font-size: 10px; font-weight: 750; }
.mkt-package > small { color: var(--mkt-muted); font-size: 10px; letter-spacing: .06em; }
.mkt-package h3 { margin: 16px 0 0; color: var(--mkt-black); font-size: 24px; }
.mkt-package__price { display: flex; align-items: baseline; gap: 12px; margin-top: 24px; }
.mkt-package__price b { color: var(--mkt-black); font-size: 35px; }
.mkt-package__price span { color: var(--mkt-muted); font-size: 12px; }
.mkt-package ul { flex: 1; margin: 26px 0; padding: 0; border-top: 1px solid var(--mkt-line); list-style: none; }
.mkt-package li { padding: 11px 0; border-bottom: 1px solid var(--mkt-line); color: var(--mkt-text); font-size: 13px; }
.mkt-package li::before { margin-right: 8px; color: var(--mkt-blue); content: "✓"; }
.mkt-other-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.mkt-other-grid a { min-height: 170px; padding: 24px; border: 1px solid var(--mkt-line); border-radius: 14px; background: #fff; }
.mkt-other-grid small { color: var(--mkt-muted); font-size: 10px; }
.mkt-other-grid h3 { margin: 25px 0 0; color: var(--mkt-black); font-size: 21px; }
.mkt-other-grid span { display: block; margin-top: 8px; color: var(--mkt-blue); font-size: 12px; font-weight: 750; }
.mkt-mobile-offer { display: none; }

/* Pricing */
.mkt-price-table-wrap { overflow-x: auto; border: 1px solid var(--mkt-line); border-radius: 15px; background: #fff; }
.mkt-price-table { width: 100%; min-width: 820px; border-collapse: collapse; }
.mkt-price-table th,
.mkt-price-table td { padding: 19px 18px; border-bottom: 1px solid var(--mkt-line); text-align: left; vertical-align: middle; }
.mkt-price-table th { color: var(--mkt-muted); background: var(--mkt-soft); font-size: 11px; letter-spacing: .08em; }
.mkt-price-table td { color: var(--mkt-text); font-size: 13px; }
.mkt-price-table td:first-child b { display: block; color: var(--mkt-black); font-size: 16px; }
.mkt-price-table td:first-child small { display: block; margin-top: 4px; color: var(--mkt-muted); }
.mkt-price-table strong { color: var(--mkt-black); font-size: 18px; }
.mkt-price-table a { color: var(--mkt-blue); font-weight: 750; white-space: nowrap; }
.mkt-tier-list > article { padding: 38px 0; border-top: 1px solid var(--mkt-line-strong); }
.mkt-tier-list__title { display: grid; grid-template-columns: 1fr auto; align-items: end; margin-bottom: 18px; }
.mkt-tier-list__title small { grid-column: 1; color: var(--mkt-muted); font-size: 10px; }
.mkt-tier-list__title h3 { grid-column: 1; margin: 4px 0 0; color: var(--mkt-black); font-size: 24px; }
.mkt-tier-list__title a { grid-column: 2; grid-row: 1 / span 2; align-self: center; color: var(--mkt-blue); font-size: 12px; font-weight: 750; }
.mkt-tier-list__cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.mkt-tier-list__cards > div { padding: 21px; border: 1px solid var(--mkt-line); border-radius: 12px; background: #fff; }
.mkt-tier-list__cards > div.is-featured { border-color: var(--mkt-black); }
.mkt-tier-list__cards small { color: var(--mkt-muted); font-size: 10px; }
.mkt-tier-list__cards h4 { margin: 10px 0 0; color: var(--mkt-black); font-size: 17px; }
.mkt-tier-list__cards b { display: block; margin-top: 14px; color: var(--mkt-black); font-size: 23px; }
.mkt-tier-list__cards span { color: var(--mkt-muted); font-size: 10px; }
.mkt-tier-list__cards p { min-height: 65px; margin: 13px 0; color: var(--mkt-muted); font-size: 11px; line-height: 1.65; }
.mkt-tier-list__cards button { padding: 0; border: 0; border-bottom: 1px solid currentColor; color: var(--mkt-blue); background: transparent; font-size: 11px; font-weight: 750; cursor: pointer; }

/* Case listing/detail */
.mkt-case-filter { display: grid; grid-template-columns: 1fr 150px auto; gap: 8px; margin-top: 25px; }
.mkt-case-filter input,
.mkt-case-filter select { min-width: 0; min-height: 48px; padding: 10px 12px; border: 1px solid var(--mkt-line-strong); border-radius: 10px; background: #fff; }
.mkt-case-skeleton { min-height: 410px; border-radius: 16px; background: linear-gradient(90deg,#f0f1f3,#fafafa,#f0f1f3); background-size: 200% 100%; animation: mktSkeleton 1.5s linear infinite; }
@keyframes mktSkeleton { to { background-position: -200% 0; } }
.mkt-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 38px; }
.mkt-pagination button { width: 42px; height: 42px; border: 1px solid var(--mkt-line); border-radius: 8px; background: #fff; cursor: pointer; }
.mkt-pagination button.is-active { color: #fff; background: var(--mkt-black); border-color: var(--mkt-black); }
.mkt-empty { grid-column: 1 / -1; padding: 70px 20px; border: 1px solid var(--mkt-line); text-align: center; }
.mkt-empty h2 { margin: 0; color: var(--mkt-black); }
.mkt-empty p { color: var(--mkt-muted); }
.mkt-case-hero { position: relative; min-height: 560px; overflow: hidden; color: #fff; background: #0a0c0f; }
.mkt-case-hero__cover { position: absolute; inset: 0; background-position: center; background-size: cover; opacity: .28; }
.mkt-case-hero__cover::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg,#090b0e 10%,rgba(9,11,14,.7) 56%,rgba(9,11,14,.35)); }
.mkt-case-hero__inner { position: relative; z-index: 1; padding-top: 86px; padding-bottom: 76px; }
.mkt-case-hero .mkt-breadcrumb,
.mkt-case-hero .mkt-breadcrumb a { color: #abb1bb; }
.mkt-case-hero h1 { max-width: 950px; margin: 0; color: #fff; font-size: clamp(46px,6vw,78px); font-weight: 850; letter-spacing: -.055em; line-height: 1.08; }
.mkt-case-hero__inner > p { max-width: 700px; margin: 24px 0 0; color: #c0c5ce; font-size: 17px; line-height: 1.8; }
.mkt-case-hero dl { display: flex; flex-wrap: wrap; gap: 0; margin: 48px 0 0; }
.mkt-case-hero dl > div { min-width: 180px; padding: 15px 28px 15px 0; margin-right: 28px; border-right: 1px solid #3b3f47; }
.mkt-case-hero dt { color: #858c97; font-size: 10px; }
.mkt-case-hero dd { margin: 6px 0 0; color: #fff; font-size: 16px; font-weight: 750; }
.mkt-case-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; align-items: start; gap: clamp(48px,7vw,100px); }
.mkt-case-story > section { margin-bottom: 64px; }
.mkt-case-story__title { display: flex; align-items: baseline; gap: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--mkt-line); }
.mkt-case-story__title span { color: var(--mkt-blue); font: 750 12px/1 ui-monospace,monospace; }
.mkt-case-story__title h2 { margin: 0; color: var(--mkt-black); font-size: 28px; }
.mkt-prose { color: var(--mkt-text); font-size: 16px; line-height: 1.95; }
.mkt-prose p { margin: 24px 0 0; }
.mkt-case-story blockquote { margin: 0; padding: 28px; border-left: 3px solid var(--mkt-blue); background: var(--mkt-soft); }
.mkt-case-story blockquote small { color: var(--mkt-blue); font-weight: 750; }
.mkt-case-story blockquote p { margin: 10px 0 0; color: var(--mkt-black); font-size: 18px; line-height: 1.8; }
.mkt-case-video { margin-bottom: 52px; overflow: hidden; border-radius: 16px; background: #090a0c; }
.mkt-case-video video { width: 100%; }
.mkt-case-aside { position: sticky; top: 95px; display: grid; gap: 16px; }
.mkt-case-aside > div,
.mkt-case-aside nav { padding: 25px; border: 1px solid var(--mkt-line); border-radius: 14px; }
.mkt-case-aside small { color: var(--mkt-blue); font-size: 10px; font-weight: 750; letter-spacing: .1em; }
.mkt-case-aside h2 { margin: 12px 0 0; color: var(--mkt-black); font-size: 24px; line-height: 1.3; }
.mkt-case-aside p { color: var(--mkt-muted); font-size: 13px; line-height: 1.75; }
.mkt-case-aside .mkt-btn + .mkt-btn { margin-top: 8px; }
.mkt-case-aside nav a { display: block; padding: 13px 0; border-bottom: 1px solid var(--mkt-line); }
.mkt-case-aside nav a span { display: block; color: var(--mkt-muted); font-size: 9px; }
.mkt-case-aside nav a b { display: block; margin-top: 4px; color: var(--mkt-black); font-size: 13px; line-height: 1.5; }

/* About/contact/brief */
.mkt-principles { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--mkt-line-strong); }
.mkt-principles > div { min-height: 260px; padding: 26px 24px; border-right: 1px solid var(--mkt-line); }
.mkt-principles > div:first-child { border-left: 1px solid var(--mkt-line); }
.mkt-principles span { color: var(--mkt-blue); font: 750 12px/1 ui-monospace,monospace; }
.mkt-principles h3 { margin: 54px 0 0; color: var(--mkt-black); font-size: 21px; }
.mkt-principles p { color: var(--mkt-muted); font-size: 13px; line-height: 1.75; }
.mkt-handoff { border-top: 1px solid #34373e; }
.mkt-handoff article { display: grid; grid-template-columns: 60px 1fr 1fr 150px; gap: 25px; padding: 26px 0; border-bottom: 1px solid #34373e; }
.mkt-handoff article > span { color: #7da0ff; font: 750 12px/1.6 ui-monospace,monospace; }
.mkt-handoff h3 { margin: 0 0 17px; color: #fff; font-size: 20px; }
.mkt-handoff small { color: #777f8b; font-size: 9px; letter-spacing: .08em; }
.mkt-handoff p { margin: 5px 0 0; color: #b4b9c2; font-size: 12px; line-height: 1.75; }
.mkt-handoff article > b { color: #fff; font-size: 12px; line-height: 1.7; }
.mkt-refuse { margin: 0; padding: 0; border-top: 1px solid var(--mkt-line-strong); list-style: none; }
.mkt-refuse li { display: grid; grid-template-columns: 68px 1fr; padding: 21px 0; border-bottom: 1px solid var(--mkt-line); color: var(--mkt-black); font-size: 16px; }
.mkt-refuse span { color: #c07a3a; font: 750 12px/1.7 ui-monospace,monospace; }
.mkt-contact-grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(300px,.55fr); align-items: start; gap: clamp(50px,8vw,120px); }
.mkt-contact-main > small,
.mkt-contact-info small { color: var(--mkt-blue); font-size: 10px; font-weight: 750; letter-spacing: .12em; }
.mkt-contact-main h2 { margin: 14px 0 34px; color: var(--mkt-black); font-size: clamp(34px,4vw,54px); }
.mkt-contact-actions { border-top: 1px solid var(--mkt-line-strong); }
.mkt-contact-actions > * { display: grid; width: 100%; grid-template-columns: 90px 1fr auto; align-items: center; gap: 20px; min-height: 100px; padding: 0; border: 0; border-bottom: 1px solid var(--mkt-line); color: inherit; background: transparent; text-align: left; cursor: pointer; }
.mkt-contact-actions span { color: var(--mkt-muted); font-size: 11px; }
.mkt-contact-actions b { color: var(--mkt-black); font-size: 18px; }
.mkt-contact-actions i { color: var(--mkt-blue); font-size: 12px; font-style: normal; font-weight: 750; }
.mkt-contact-info { padding: 25px; border: 1px solid var(--mkt-line); border-radius: 14px; }
.mkt-contact-info > div { padding: 16px 0; border-bottom: 1px solid var(--mkt-line); }
.mkt-contact-info > div:last-child { border-bottom: 0; }
.mkt-contact-info p { margin: 6px 0 0; color: var(--mkt-text); font-size: 13px; line-height: 1.7; }
.mkt-success { display: grid; min-height: calc(100vh - 72px); place-items: center; padding: 70px 0; text-align: center; }
.mkt-success__mark { display: grid; width: 72px; height: 72px; margin: 0 auto 22px; place-items: center; border-radius: 50%; color: #fff; background: #14784d; font-size: 30px; }
.mkt-success small { color: var(--mkt-blue); font-weight: 750; letter-spacing: .14em; }
.mkt-success h1 { margin: 14px 0 0; color: var(--mkt-black); font-size: 50px; }
.mkt-success p { color: var(--mkt-muted); font-size: 16px; }
.mkt-success > div > div { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.mkt-brief-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; align-items: start; gap: 28px; }
.mkt-brief-form { padding: clamp(25px,4vw,48px); border: 1px solid var(--mkt-line); border-radius: 18px; background: #fff; }
.mkt-brief-form__head small { color: var(--mkt-blue); font-size: 10px; font-weight: 750; letter-spacing: .12em; }
.mkt-brief-form__head h2 { margin: 8px 0 0; color: var(--mkt-black); font-size: 34px; }
.mkt-brief-form__head p { color: var(--mkt-muted); font-size: 13px; }
.mkt-form-step { display: flex; align-items: center; gap: 14px; margin: 38px 0 17px; padding-bottom: 11px; border-bottom: 1px solid var(--mkt-line); }
.mkt-form-step span { color: var(--mkt-blue); font: 750 11px/1 ui-monospace,monospace; }
.mkt-form-step h3 { margin: 0; color: var(--mkt-black); font-size: 17px; }
.mkt-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mkt-brief-form label,
.mkt-lead-form label { display: grid; gap: 7px; color: var(--mkt-text); font-size: 12px; font-weight: 700; }
.mkt-brief-form input,
.mkt-brief-form select,
.mkt-brief-form textarea,
.mkt-lead-form input,
.mkt-lead-form select { width: 100%; min-width: 0; min-height: 49px; padding: 11px 13px; border: 1px solid var(--mkt-line-strong); border-radius: 10px; color: var(--mkt-black); background: #fff; outline: 0; }
.mkt-brief-form textarea { min-height: 150px; resize: vertical; }
.mkt-brief-form input:focus,
.mkt-brief-form select:focus,
.mkt-brief-form textarea:focus,
.mkt-lead-form input:focus,
.mkt-lead-form select:focus { border-color: var(--mkt-blue); box-shadow: 0 0 0 3px rgba(36,87,255,.11); }
.mkt-code-field { display: grid; grid-template-columns: 1fr auto; gap: 7px; }
.mkt-code-field button { padding: 0 14px; border: 1px solid var(--mkt-line-strong); border-radius: 10px; background: var(--mkt-soft); cursor: pointer; white-space: nowrap; }
.mkt-form-context { margin-top: 11px; padding: 11px 13px; color: #294ba8; background: var(--mkt-blue-soft); font-size: 12px; }
.mkt-brief-template { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.mkt-brief-template b { width: 100%; color: var(--mkt-muted); font-size: 11px; }
.mkt-brief-template span { padding: 5px 8px; border-radius: 6px; color: var(--mkt-text); background: var(--mkt-soft); font-size: 10px; }
.mkt-consent { display: flex !important; grid-template-columns: 18px 1fr; align-items: flex-start; gap: 9px !important; margin: 20px 0; color: var(--mkt-muted) !important; font-size: 11px !important; line-height: 1.6; }
.mkt-consent input { width: 16px !important; height: 16px; min-height: 0 !important; margin-top: 2px; }
.mkt-consent a { text-decoration: underline; }
.mkt-brief-aside { position: sticky; top: 92px; display: grid; gap: 12px; }
.mkt-brief-aside > div { padding: 23px; border: 1px solid var(--mkt-line); border-radius: 13px; background: #fff; }
.mkt-brief-aside small { color: var(--mkt-blue); font-size: 10px; font-weight: 750; letter-spacing: .1em; }
.mkt-brief-aside ol { margin: 18px 0 0; padding: 0; list-style: none; }
.mkt-brief-aside li { padding: 12px 0; border-bottom: 1px solid var(--mkt-line); }
.mkt-brief-aside li b { display: block; color: var(--mkt-black); font-size: 13px; }
.mkt-brief-aside li span { color: var(--mkt-muted); font-size: 11px; }

/* Footer */
.mkt-footer { padding: 72px 0 24px; }
.mkt-footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: clamp(30px,5vw,70px); }
.mkt-footer__brand { display: block; }
.mkt-brand--footer > span:last-child b { color: #fff; }
.mkt-brand--footer .mkt-brand__mark { color: var(--mkt-black); background: #fff; }
.mkt-footer__brand > p { max-width: 330px; margin: 22px 0 0; color: #9298a3; font-size: 13px; line-height: 1.8; }
.mkt-footer h2 { margin: 0 0 17px; color: #fff; font-size: 13px; }
.mkt-footer__grid > div:not(:first-child) > a,
.mkt-footer__grid > div:not(:first-child) > p { display: block; margin: 0 0 10px; color: #8f96a2; font-size: 12px; line-height: 1.65; }
.mkt-footer__grid > div:not(:first-child) > a:hover { color: #fff; }
.mkt-footer__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 23px; }
.mkt-footer__bottom > span:last-child { display: flex; flex-wrap: wrap; gap: 15px; }
.mkt-footer__bottom i { font-style: normal; }

/* App shell, drawers and lead sheet */
.mkt-tabbar { display: none; }
.mkt-overlay { position: absolute; inset: 0; border: 0; background: rgba(9,10,12,.58); cursor: pointer; }
.mkt-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: min(520px,100%);
  flex-direction: column;
  padding: 30px;
  overflow-y: auto;
  background: #fff;
}
.mkt-sheet__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.mkt-sheet__head small { color: var(--mkt-blue); font-size: 9px; font-weight: 750; letter-spacing: .14em; }
.mkt-sheet__head h2 { margin: 6px 0 0; color: var(--mkt-black); font-size: 28px; }
.mkt-icon-btn { display: grid; width: 44px; height: 44px; flex: 0 0 44px; place-items: center; border: 1px solid var(--mkt-line); border-radius: 50%; color: var(--mkt-black); background: #fff; font-size: 23px; cursor: pointer; }
.mkt-drawer__intro,
.mkt-sheet__lead { color: var(--mkt-muted); font-size: 13px; line-height: 1.7; }
.mkt-drawer__services { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 18px 0 24px; }
.mkt-drawer__services a { padding: 14px; border: 1px solid var(--mkt-line); border-radius: 10px; }
.mkt-drawer__services span { display: block; color: var(--mkt-black); font-size: 14px; font-weight: 750; }
.mkt-drawer__services small { display: block; margin-top: 5px; color: var(--mkt-muted); font-size: 10px; }
.mkt-sheet__panel {
  position: relative;
  width: min(640px,calc(100% - 32px));
  max-height: calc(100vh - 32px);
  margin: auto;
  padding: 30px;
  overflow-y: auto;
  border-radius: 18px;
  background: #fff;
}
.mkt-consult { display: grid; place-items: center; }
.mkt-lead-form { display: grid; gap: 13px; margin-top: 20px; }
.mkt-lead-form .mkt-form-row { grid-template-columns: 1fr 1fr; }
.mkt-hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.mkt-form-status { margin: 0; color: var(--mkt-muted); font-size: 12px; text-align: center; }
.mkt-form-status.is-error { color: var(--mkt-error); }
.mkt-form-status.is-success { color: var(--mkt-success); }
.mkt-sheet__other { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 17px; }
.mkt-sheet__other a,
.mkt-sheet__other button { padding: 0; border: 0; border-bottom: 1px solid currentColor; color: var(--mkt-text); background: transparent; font-size: 12px; cursor: pointer; }
.mkt-sheet--qr .mkt-sheet__panel { width: min(420px,calc(100% - 32px)); }
.mkt-wx-qr { width: min(100%,320px); height: auto; margin: 18px auto 0; }
.mkt-concierge { position: fixed; right: 20px; bottom: 20px; z-index: 45; display: flex; align-items: center; gap: 10px; min-height: 48px; padding: 0 15px; border: 1px solid #292d34; border-radius: 99px; color: #fff; background: var(--mkt-black); box-shadow: 0 14px 34px rgba(9,10,12,.22); cursor: pointer; }
.mkt-concierge span { font-size: 12px; font-weight: 750; }
.mkt-concierge b { padding: 3px 6px; border-radius: 99px; color: #fff; background: var(--mkt-blue); font-size: 9px; }
.mkt-lock { overflow: hidden; }
.mkt-scroll-progress { position: fixed; top: 0; right: 0; left: 0; z-index: 1300; height: 2px; pointer-events: none; }
.mkt-scroll-progress i { display: block; width: 100%; height: 100%; background: var(--mkt-blue); transform: scaleX(0); transform-origin: left center; will-change: transform; }
.mkt-reveal-ready .mkt-reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease var(--mkt-reveal-delay,0ms), transform .55s cubic-bezier(.22,.75,.22,1) var(--mkt-reveal-delay,0ms); }
.mkt-reveal-ready .mkt-reveal.is-visible { opacity: 1; transform: none; }
.mkt-mock { transition: transform .25s ease, border-color .25s ease; transform-style: preserve-3d; }
.mkt-package.is-selected { border-color: var(--mkt-blue); box-shadow: 0 0 0 2px rgba(36,87,255,.12), var(--mkt-shadow-sm); }
.mkt-lead-progress { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 7px; }
.mkt-lead-progress i { height: 3px; border-radius: 99px; background: #dfe2e7; transition: background .2s ease; }
.mkt-lead-progress i.is-on { background: var(--mkt-blue); }
.mkt-lead-progress span { margin-left: 4px; color: var(--mkt-muted); font-size: 10px; }
.mkt-lead-step { display: grid; gap: 13px; animation: mktStepIn .22s ease both; }
.mkt-lead-step__actions { display: grid; grid-template-columns: 120px 1fr; gap: 8px; }
@keyframes mktStepIn { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: none; } }
.mkt-lead-form.is-success > .mkt-lead-progress,
.mkt-lead-form.is-success > .mkt-lead-step { display: none; }

@media (max-width: 1100px) {
  .mkt-header__phone { display: none; }
  .mkt-hero__grid,
  .mkt-service-hero__grid { grid-template-columns: minmax(0,1fr) minmax(360px,.9fr); gap: 45px; }
  .mkt-hero__copy h1 { font-size: clamp(43px,6vw,64px); }
  .mkt-process { grid-template-columns: repeat(3,1fr); }
  .mkt-process li:nth-child(n+4) { border-top: 1px solid var(--mkt-line); }
  .mkt-footer__grid { grid-template-columns: 1.4fr repeat(3,1fr); gap: 28px; }
}

@media (max-width: 820px) {
  .mkt-page { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .mkt-container { --mkt-gutter: 18px; }
  .mkt-header { position: sticky; }
  .mkt-header__inner { min-height: 62px; }
  .mkt-brand__mark { width: 34px; height: 34px; border-radius: 9px; }
  .mkt-brand > span:last-child small { display: none; }
  .mkt-nav,
  .mkt-header__actions > .mkt-btn,
  .mkt-header__phone { display: none; }
  .mkt-menu { display: grid; }
  .mkt-section { padding-block: 68px; }
  .mkt-hero { padding: 42px 0 0; }
  .mkt-hero__grid,
  .mkt-page-hero__grid,
  .mkt-service-hero__grid,
  .mkt-section-head,
  .mkt-cta__inner,
  .mkt-contact-grid,
  .mkt-brief-layout,
  .mkt-case-layout { grid-template-columns: 1fr; gap: 34px; }
  .mkt-hero__copy h1 { font-size: clamp(39px,11.5vw,56px); line-height: 1.04; }
  .mkt-hero__copy > p { margin-top: 21px; font-size: 15px; line-height: 1.78; }
  .mkt-hero__actions { margin-top: 25px; }
  .mkt-hero__actions .mkt-btn { flex: 1 1 145px; }
  .mkt-quick-prices { grid-template-columns: 1fr 1fr; margin-top: 30px; }
  .mkt-quick-prices a:nth-child(2) { border-right: 0; }
  .mkt-quick-prices a:nth-child(n+3) { border-top: 1px solid var(--mkt-line); }
  .mkt-hero__visual { order: 2; }
  .mkt-hero__float { right: 8px; bottom: -18px; width: 188px; padding: 13px; }
  .mkt-trust-strip { grid-template-columns: 1fr 1fr; margin-top: 74px; }
  .mkt-trust-strip > div { padding: 17px 12px 17px 0; border-bottom: 1px solid var(--mkt-line); }
  .mkt-trust-strip > div:nth-child(2) { border-right: 0; }
  .mkt-trust-strip > div:nth-child(n+3) { padding-left: 0; }
  .mkt-trust-strip > div:nth-child(4) { border-right: 0; }
  .mkt-mock { min-height: 330px; padding: 41px 13px 13px; border-radius: 14px; }
  .mkt-dashboard { min-height: 275px; grid-template-columns: 42px 1fr; }
  .mkt-dashboard__main { padding: 12px; }
  .mkt-dashboard__chart { height: 55px; }
  .mkt-phone-stage { min-height: 300px; }
  .mkt-phone { width: 145px; min-height: 280px; border-width: 4px; border-radius: 23px; }
  .mkt-phone--back { margin-left: 120px; }
  .mkt-phone__banner { height: 65px; }
  .mkt-shop__grid i { height: 74px; }
  .mkt-section-head h2,
  .mkt-page-hero h1 { font-size: clamp(36px,10vw,49px); }
  .mkt-section-head > p { font-size: 14px; }
  .mkt-choice-grid,
  .mkt-section--ink .mkt-service-grid,
  .mkt-case-grid,
  .mkt-inout,
  .mkt-fit-grid,
  .mkt-package-grid,
  .mkt-other-grid,
  .mkt-principles,
  .mkt-highlight-grid,
  .mkt-tier-list__cards { grid-template-columns: 1fr; }
  .mkt-choice { min-height: 285px; grid-template-columns: 42px 1fr; padding: 23px 20px; }
  .mkt-service-card { min-height: 260px; }
  .mkt-process { grid-template-columns: 1fr; border: 0; }
  .mkt-process li,
  .mkt-process li:first-child { display: grid; min-height: 0; grid-template-columns: 44px 1fr; gap: 15px; padding: 22px 0; border: 0; border-bottom: 1px solid var(--mkt-line); }
  .mkt-process li h3 { margin: 0; font-size: 19px; }
  .mkt-process li p { margin-top: 7px; }
  .mkt-section--ink .mkt-process li { border-color: #30333a; }
  .mkt-case-card { min-height: 390px; }
  .mkt-page-hero { padding: 54px 0; }
  .mkt-service-row { grid-template-columns: 1fr auto; gap: 12px; min-height: 0; padding: 22px 0; }
  .mkt-service-row > p { grid-column: 1 / -1; }
  .mkt-service-row__meta { grid-column: 1; }
  .mkt-service-row > i { grid-column: 2; grid-row: 1; }
  .mkt-highlight-grid { margin-top: 50px; }
  .mkt-highlight-grid > div,
  .mkt-highlight-grid > div + div { padding: 20px 0; border-right: 0; border-bottom: 1px solid #34373e; }
  .mkt-service-hero { padding: 46px 0 36px; }
  .mkt-service-hero h1 { font-size: clamp(48px,15vw,68px); }
  .mkt-service-hero__visual { order: 2; }
  .mkt-deliverables li { grid-template-columns: 45px 1fr; }
  .mkt-deliverables p { font-size: 17px; }
  .mkt-package { min-height: 0; }
  .mkt-other-grid a { min-height: 145px; }
  .mkt-mobile-offer {
    position: fixed;
    right: 0;
    bottom: calc(68px + env(safe-area-inset-bottom));
    left: 0;
    z-index: 54;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    border-top: 1px solid var(--mkt-line);
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(14px);
  }
  .mkt-mobile-offer small { display: block; color: var(--mkt-muted); font-size: 9px; }
  .mkt-mobile-offer b { display: block; color: var(--mkt-black); font-size: 15px; }
  .mkt-mobile-offer .mkt-btn { min-height: 44px; padding: 9px 15px; font-size: 13px; }
  .mkt-tier-list__title { grid-template-columns: 1fr; }
  .mkt-tier-list__title a { grid-column: 1; grid-row: auto; margin-top: 8px; }
  .mkt-tier-list__cards p { min-height: 0; }
  .mkt-case-filter { grid-template-columns: 1fr; }
  .mkt-case-hero { min-height: 0; }
  .mkt-case-hero__inner { padding-top: 54px; padding-bottom: 55px; }
  .mkt-case-hero h1 { font-size: clamp(38px,11vw,54px); }
  .mkt-case-hero dl > div { min-width: 50%; margin: 0; padding: 13px 12px 13px 0; border: 0; }
  .mkt-case-aside,
  .mkt-brief-aside { position: static; }
  .mkt-principles > div { min-height: 210px; border-left: 1px solid var(--mkt-line); border-bottom: 1px solid var(--mkt-line); }
  .mkt-handoff article { grid-template-columns: 45px 1fr; gap: 15px; }
  .mkt-handoff article > div:nth-child(3),
  .mkt-handoff article > b { grid-column: 2; }
  .mkt-contact-actions > * { grid-template-columns: 60px 1fr; }
  .mkt-contact-actions i { grid-column: 2; }
  .mkt-form-row,
  .mkt-lead-form .mkt-form-row { grid-template-columns: 1fr; }
  .mkt-brief-form { padding: 24px 18px; }
  .mkt-cta { padding-block: 62px; }
  .mkt-cta h2 { font-size: clamp(38px,11vw,52px); }
  .mkt-footer { padding: 52px 0 30px; }
  .mkt-footer__grid { grid-template-columns: 1fr 1fr; gap: 35px 22px; }
  .mkt-footer__brand { grid-column: 1 / -1; }
  .mkt-footer__bottom { display: grid; gap: 12px; }
  .mkt-tabbar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    min-height: calc(64px + env(safe-area-inset-bottom));
    padding: 5px 8px env(safe-area-inset-bottom);
    border-top: 1px solid var(--mkt-line);
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
  }
  .mkt-tabbar > * { display: grid; min-width: 0; min-height: 54px; place-items: center; align-content: center; gap: 2px; padding: 0; border: 0; color: #7b818b; background: transparent; cursor: pointer; }
  .mkt-tabbar span { font-size: 18px; line-height: 1; }
  .mkt-tabbar b { font-size: 10px; font-weight: 650; }
  .mkt-tabbar .is-active { color: var(--mkt-blue); }
  .mkt-keyboard-open .mkt-tabbar,
  .mkt-keyboard-open .mkt-mobile-offer { display: none; }
  .mkt-drawer__panel { width: 100%; padding: 23px 18px calc(30px + env(safe-area-inset-bottom)); }
  .mkt-drawer__services { grid-template-columns: 1fr; }
  .mkt-sheet { align-items: end; }
  .mkt-sheet__panel,
  .mkt-sheet--qr .mkt-sheet__panel {
    width: 100%;
    max-height: min(88vh,760px);
    margin: auto 0 0;
    padding: 22px 18px calc(24px + env(safe-area-inset-bottom));
    border-radius: 20px 20px 0 0;
  }
  .mkt-concierge { display: none; }
}

@media (max-width: 430px) {
  .mkt-container { --mkt-gutter: 15px; }
  .mkt-hero__copy h1 { font-size: 39px; }
  .mkt-hero__actions { display: grid; grid-template-columns: 1fr; }
  .mkt-hero__actions .mkt-btn { width: 100%; }
  .mkt-choice h3 { font-size: 18px; }
  .mkt-choice__answer b { font-size: 22px; }
  .mkt-service-card > h3 { font-size: 24px; }
  .mkt-footer__grid { grid-template-columns: 1fr; }
  .mkt-footer__brand { grid-column: 1; }
  .mkt-wx-qr { width: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  .mkt-reveal-ready .mkt-reveal,
  .mkt-reveal-ready .mkt-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .mkt-lead-step { animation: none; }
  .mkt-mock { transition: none; }
}
