/*
 * 企编云营销站 · Tech Hybrid
 * 深色科技首屏 + 明亮内容区。仅作用于 body.mkt-tech。
 */

/* ===== Design tokens and foundation ===== */
.mkt-tech {
  --mkt-blue: #4f7cff;
  --mkt-blue-hover: #3e6df1;
  --mkt-blue-soft: #edf3ff;
  --mkt-black: #070a12;
  --mkt-ink: #101522;
  --mkt-text: #384154;
  --mkt-muted: #707b90;
  --mkt-line: #e4e9f2;
  --mkt-line-strong: #ccd5e4;
  --mkt-paper: #fff;
  --mkt-soft: #f4f7fb;
  --tech-night: #050713;
  --tech-night-2: #0a1020;
  --tech-panel: #0d1426;
  --tech-blue: #557dff;
  --tech-cyan: #2fd5ff;
  --tech-violet: #806dff;
  --tech-green: #36e7a5;
  --tech-grid: rgba(121, 153, 255, .095);
  --tech-border: rgba(144, 169, 255, .2);
  --tech-shadow: 0 28px 80px rgba(23, 39, 82, .13);
  color: var(--mkt-ink);
  background: var(--mkt-soft);
}

.mkt-tech main {
  position: relative;
  isolation: isolate;
  background: var(--mkt-paper);
}

.mkt-tech ::selection {
  color: #fff;
  background: #4c72f3;
}

.mkt-tech .mkt-container {
  --mkt-container: 1240px;
}

/* ===== Header ===== */
.mkt-tech .mkt-header {
  color: #edf3ff;
  border-bottom-color: rgba(142, 165, 224, .13);
  background:
    linear-gradient(90deg, rgba(6, 9, 20, .96), rgba(8, 13, 27, .92)),
    var(--tech-night);
  box-shadow: none;
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
}

.mkt-tech .mkt-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(79, 124, 255, .55), rgba(47, 213, 255, .24), transparent);
  opacity: .55;
  pointer-events: none;
}

.mkt-tech .mkt-header.is-compact {
  border-bottom-color: rgba(142, 165, 224, .18);
  background: rgba(5, 8, 18, .9);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .22);
}

.mkt-tech .mkt-header__inner { min-height: 78px; }
.mkt-tech .mkt-header.is-compact .mkt-header__inner { min-height: 66px; }

.mkt-tech .mkt-brand,
.mkt-tech .mkt-brand > span:last-child b { color: #fff; }

.mkt-tech .mkt-brand__mark {
  position: relative;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(142, 176, 255, .42);
  background: linear-gradient(145deg, #6187ff, #385ff0 55%, #644df0);
  box-shadow: 0 0 0 4px rgba(79, 124, 255, .08), 0 9px 24px rgba(49, 92, 255, .3);
}

.mkt-tech .mkt-brand__mark::after {
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: inherit;
  content: "";
}

.mkt-tech .mkt-brand > span:last-child small { color: #75819a; }

.mkt-tech .mkt-nav__link {
  color: #aeb8cb;
  border: 1px solid transparent;
}

.mkt-tech .mkt-nav__link:hover,
.mkt-tech .mkt-nav__link.is-active {
  color: #fff;
  border-color: rgba(127, 155, 224, .16);
  background: rgba(113, 140, 207, .1);
}

.mkt-tech .mkt-nav__link.is-active {
  color: #9db7ff;
  box-shadow: inset 0 0 18px rgba(78, 117, 255, .08);
}

.mkt-tech .mkt-header__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #7f8ba2;
  font: 650 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .08em;
  white-space: nowrap;
}

.mkt-tech .mkt-header__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tech-green);
  box-shadow: 0 0 12px rgba(54, 231, 165, .95);
  animation: techPulse 2s ease-in-out infinite;
}

.mkt-tech .mkt-header__phone { color: #d5dced; }

.mkt-tech .mkt-header .mkt-btn--primary {
  border-color: rgba(133, 164, 255, .34);
  background: linear-gradient(135deg, #5d83ff, #4268f2);
  box-shadow: 0 9px 28px rgba(54, 94, 241, .34), inset 0 1px rgba(255, 255, 255, .22);
}

.mkt-tech .mkt-menu {
  border-color: rgba(139, 165, 225, .22);
  background: rgba(109, 137, 204, .09);
}

.mkt-tech .mkt-menu span { background: #eef3ff; }

/* ===== Controls ===== */
.mkt-tech .mkt-btn {
  position: relative;
  min-height: 50px;
  overflow: hidden;
  border-radius: 13px;
  font-weight: 750;
  letter-spacing: -.01em;
}

.mkt-tech .mkt-btn::after {
  position: absolute;
  top: -120%;
  left: -35%;
  width: 24%;
  height: 340%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
  opacity: 0;
  transform: rotate(22deg);
  transition: left .6s ease, opacity .2s ease;
  pointer-events: none;
}

.mkt-tech .mkt-btn:hover::after {
  left: 115%;
  opacity: 1;
}

.mkt-tech .mkt-btn--primary {
  color: #fff;
  border-color: #5279fb;
  background: linear-gradient(135deg, #5d83ff, #4168f2 64%, #5b4ee7);
  box-shadow: 0 12px 30px rgba(57, 96, 235, .23), inset 0 1px rgba(255, 255, 255, .2);
}

.mkt-tech .mkt-btn--primary:hover {
  border-color: #7394ff;
  background: linear-gradient(135deg, #6c91ff, #4d73f8 64%, #6658ef);
  box-shadow: 0 16px 36px rgba(57, 96, 235, .32), inset 0 1px rgba(255, 255, 255, .24);
}

.mkt-tech .mkt-btn--secondary {
  color: #172033;
  border-color: #d0d9e8;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 8px 20px rgba(27, 42, 75, .06);
}

.mkt-tech .mkt-btn--secondary:hover {
  color: #1d44bb;
  border-color: #9db4f4;
  background: #f7f9ff;
}

.mkt-tech .mkt-eyebrow {
  gap: 9px;
  min-height: 31px;
  padding: 6px 12px;
  color: #a8b9e3;
  border-color: rgba(132, 162, 232, .25);
  background: rgba(99, 127, 193, .08);
  box-shadow: inset 0 0 22px rgba(76, 111, 210, .05);
  font: 700 10px/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .11em;
}

.mkt-tech .mkt-eyebrow i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tech-cyan);
  box-shadow: 0 0 12px rgba(47, 213, 255, .95);
}

/* ===== Shared dark hero surfaces ===== */
.mkt-tech .mkt-hero,
.mkt-tech .mkt-page-hero,
.mkt-tech .mkt-service-hero,
.mkt-tech main > .eng-hero--page {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-bottom-color: rgba(129, 156, 220, .16);
  background:
    radial-gradient(circle at var(--tech-x, 76%) var(--tech-y, 26%), rgba(64, 108, 255, .25), transparent 31%),
    radial-gradient(circle at 16% 8%, rgba(80, 64, 210, .17), transparent 29%),
    radial-gradient(circle at 82% 88%, rgba(38, 184, 224, .1), transparent 29%),
    linear-gradient(138deg, #050713 0%, #080d1b 48%, #0b1224 100%);
}

.mkt-tech .mkt-hero::before,
.mkt-tech .mkt-page-hero::before,
.mkt-tech .mkt-service-hero::before,
.mkt-tech main > .eng-hero--page::before {
  position: absolute;
  inset: 0;
  width: auto;
  content: "";
  background-color: transparent;
  background-image:
    linear-gradient(rgba(119, 150, 222, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 150, 222, .075) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .18));
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .18));
  pointer-events: none;
}

.mkt-tech .mkt-hero::after,
.mkt-tech .mkt-page-hero::after,
.mkt-tech .mkt-service-hero::after,
.mkt-tech main > .eng-hero--page::after {
  position: absolute;
  top: -28%;
  right: -12%;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(101, 137, 231, .13);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 80px rgba(77, 111, 211, .025),
    0 0 0 180px rgba(77, 111, 211, .018);
  pointer-events: none;
}

.mkt-tech .mkt-hero > *,
.mkt-tech .mkt-page-hero > *,
.mkt-tech .mkt-service-hero > *,
.mkt-tech main > .eng-hero--page > * {
  position: relative;
  z-index: 1;
}

/* ===== Homepage hero ===== */
.mkt-tech .mkt-hero {
  min-height: calc(100svh - 78px);
  padding: clamp(62px, 7vw, 104px) 0 0;
  border-bottom: 0;
}

.mkt-tech .mkt-hero__grid {
  grid-template-columns: minmax(0, .91fr) minmax(500px, 1.09fr);
  gap: clamp(48px, 6vw, 90px);
}

.mkt-tech .mkt-hero__copy h1 {
  max-width: 720px;
  color: #f8faff;
  font-size: clamp(47px, 5vw, 68px);
  font-weight: 820;
  letter-spacing: -.055em;
  line-height: 1.08;
  text-wrap: balance;
}

.mkt-tech .mkt-hero__copy h1 span + span {
  margin-top: .16em;
  color: transparent;
  background: linear-gradient(92deg, #fff 0%, #a9bdff 42%, #54d8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 8px 26px rgba(74, 123, 255, .15));
}

.mkt-tech .mkt-hero__copy > p {
  max-width: 610px;
  color: #a7b2c8;
  font-size: 17px;
  line-height: 1.85;
}

.mkt-tech .mkt-hero .mkt-btn--secondary,
.mkt-tech .mkt-page-hero .mkt-btn--secondary,
.mkt-tech .mkt-service-hero .mkt-btn--secondary {
  color: #eaf0ff;
  border-color: rgba(145, 170, 230, .27);
  background: rgba(120, 147, 209, .09);
  box-shadow: inset 0 0 26px rgba(95, 128, 204, .05);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.mkt-tech .mkt-hero .mkt-btn--secondary:hover,
.mkt-tech .mkt-page-hero .mkt-btn--secondary:hover,
.mkt-tech .mkt-service-hero .mkt-btn--secondary:hover {
  color: #fff;
  border-color: rgba(146, 178, 255, .55);
  background: rgba(118, 151, 230, .17);
}

.mkt-tech .mkt-hero__note {
  color: #758198;
  font: 600 10px/1.6 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mkt-tech .mkt-quick-prices {
  gap: 9px;
  margin-top: 34px;
  border: 0;
}

.mkt-tech .mkt-quick-prices a,
.mkt-tech .mkt-quick-prices a + a {
  min-width: 0;
  padding: 13px 12px;
  border: 1px solid rgba(130, 158, 221, .17);
  border-radius: 11px;
  background: rgba(102, 129, 190, .055);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.mkt-tech .mkt-quick-prices a:hover {
  border-color: rgba(117, 154, 244, .46);
  background: rgba(99, 133, 216, .13);
  transform: translateY(-2px);
}

.mkt-tech .mkt-quick-prices span { color: #707c94; font-size: 9px; }
.mkt-tech .mkt-quick-prices b { color: #f4f7ff; font-size: 14px; }

.mkt-tech .mkt-hero__visual {
  position: relative;
  padding: 30px 0 24px;
}

.mkt-tech .mkt-hero__visual::before {
  position: absolute;
  inset: 7% -8% 0;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(67, 111, 255, .25), rgba(28, 161, 222, .07) 38%, transparent 69%);
  filter: blur(22px);
  pointer-events: none;
}

.mkt-tech .mkt-hero__visual-meta {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 4px 10px;
  color: #6f7c97;
  font: 650 9px/1.3 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .08em;
}

.mkt-tech .mkt-hero__visual-meta b {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8da5dc;
  font-weight: 650;
}

.mkt-tech .mkt-hero__visual-meta i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tech-green);
  box-shadow: 0 0 10px rgba(54, 231, 165, .8);
}

.mkt-tech .mkt-hero__float {
  right: -12px;
  bottom: 8px;
  z-index: 4;
  width: 218px;
  border-color: rgba(132, 164, 235, .28);
  background: rgba(8, 13, 26, .88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42), inset 0 1px rgba(255, 255, 255, .04);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.mkt-tech .mkt-hero__float small { color: #6d7b97; }
.mkt-tech .mkt-hero__float b { color: #f1f5ff; }

.mkt-tech .mkt-hero__stack {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 10px 4px 0;
}

.mkt-tech .mkt-hero__stack span {
  padding: 5px 8px;
  color: #64718c;
  border: 1px solid rgba(127, 155, 218, .15);
  border-radius: 5px;
  background: rgba(92, 119, 178, .045);
  font: 650 8px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .08em;
}

.mkt-tech .mkt-trust-strip {
  gap: 0;
  margin-top: clamp(64px, 7vw, 92px);
  border: 1px solid rgba(126, 154, 219, .15);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: rgba(92, 119, 178, .055);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.mkt-tech .mkt-trust-strip > div,
.mkt-tech .mkt-trust-strip > div + div {
  padding: 20px 23px;
  border-color: rgba(126, 154, 219, .14);
}

.mkt-tech .mkt-trust-strip dt { color: #eef3ff; font-size: 16px; }
.mkt-tech .mkt-trust-strip dd { color: #79859c; font-size: 11px; }

/* ===== Product interface mock ===== */
.mkt-tech .mkt-mock {
  position: relative;
  z-index: 2;
  min-height: 470px;
  padding: 45px 20px 20px;
  border: 1px solid rgba(128, 160, 232, .28);
  border-radius: 22px;
  color: #dce5f8;
  background:
    radial-gradient(circle at 86% 8%, rgba(69, 111, 247, .18), transparent 30%),
    linear-gradient(145deg, rgba(12, 19, 37, .98), rgba(7, 11, 23, .99));
  box-shadow:
    0 38px 100px rgba(0, 0, 0, .48),
    0 0 0 1px rgba(255, 255, 255, .02) inset,
    0 0 90px rgba(49, 88, 207, .08);
}

.mkt-tech .mkt-mock::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  padding: 1px;
  border-radius: inherit;
  content: "";
  background: linear-gradient(135deg, rgba(116, 153, 255, .72), transparent 25%, transparent 70%, rgba(47, 213, 255, .28));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.mkt-tech .mkt-mock__caption {
  height: 40px;
  border-bottom-color: rgba(134, 161, 220, .16);
  background: rgba(14, 21, 39, .9);
}

.mkt-tech .mkt-mock__caption b { color: #697792; }

.mkt-tech .mkt-dashboard {
  min-height: 385px;
  grid-template-columns: 58px 1fr;
  border-color: rgba(128, 157, 220, .17);
  border-radius: 12px;
  background: rgba(10, 16, 31, .92);
  box-shadow: inset 0 1px rgba(255, 255, 255, .025);
}

.mkt-tech .mkt-dashboard aside {
  position: relative;
  gap: 12px;
  border-right-color: rgba(128, 157, 220, .13);
  background: rgba(12, 19, 36, .72);
}

.mkt-tech .mkt-dashboard aside strong {
  border-radius: 8px;
  background: linear-gradient(145deg, #6489ff, #3f67ef);
  box-shadow: 0 8px 18px rgba(57, 96, 235, .3);
}

.mkt-tech .mkt-dashboard aside i {
  height: 20px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(116, 137, 182, .18), rgba(116, 137, 182, .06));
}

.mkt-tech .mkt-dashboard aside i.is-on {
  background: linear-gradient(90deg, rgba(79, 124, 255, .7), rgba(79, 124, 255, .12));
  box-shadow: inset 2px 0 #8eabff;
}

.mkt-tech .mkt-dashboard aside > span {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  color: #4d5a74;
  font: 600 7px/1 ui-monospace, monospace;
  text-align: center;
}

.mkt-tech .mkt-dashboard__main { padding: 20px; }

.mkt-tech .mkt-dashboard__main > header {
  align-items: center;
  color: #fff;
}

.mkt-tech .mkt-dashboard__main > header div small {
  display: block;
  margin-bottom: 4px;
  color: #54627d;
  font: 650 7px/1.2 ui-monospace, monospace;
  letter-spacing: .12em;
}

.mkt-tech .mkt-dashboard__main > header div b { font-size: 13px; }

.mkt-tech .mkt-dashboard__main > header > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 7px;
  color: #6ce9b7;
  border: 1px solid rgba(54, 231, 165, .17);
  border-radius: 99px;
  background: rgba(54, 231, 165, .055);
  font-size: 8px;
}

.mkt-tech .mkt-dashboard__main > header > span i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tech-green);
  box-shadow: 0 0 8px rgba(54, 231, 165, .8);
}

.mkt-tech .mkt-dashboard__stats {
  gap: 9px;
  margin-top: 16px;
}

.mkt-tech .mkt-dashboard__stats > div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(126, 154, 215, .13);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(29, 42, 73, .72), rgba(16, 25, 46, .72));
}

.mkt-tech .mkt-dashboard__stats small {
  display: block;
  color: #66738e;
  font-size: 7px;
}

.mkt-tech .mkt-dashboard__stats b {
  display: block;
  margin-top: 7px;
  color: #eef3ff;
  font-size: 17px;
  line-height: 1;
}

.mkt-tech .mkt-dashboard__stats em {
  display: block;
  margin-top: 6px;
  color: #53d6ad;
  font-size: 7px;
  font-style: normal;
}

.mkt-tech .mkt-dashboard__content {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(120px, .65fr);
  gap: 10px;
  margin-top: 10px;
}

.mkt-tech .mkt-dashboard__table,
.mkt-tech .mkt-dashboard__chart {
  min-width: 0;
  margin-top: 0;
  padding: 12px;
  border: 1px solid rgba(126, 154, 215, .13);
  border-radius: 9px;
  background: rgba(14, 22, 41, .76);
}

.mkt-tech .mkt-dashboard__table header,
.mkt-tech .mkt-dashboard__chart header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #e9efff;
  font-size: 8px;
}

.mkt-tech .mkt-dashboard__table header span,
.mkt-tech .mkt-dashboard__chart header span { color: #56647e; font-size: 7px; }

.mkt-tech .mkt-dashboard__table > div {
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 7px;
  min-height: 43px;
  border-bottom: 1px solid rgba(129, 155, 211, .09);
}

.mkt-tech .mkt-dashboard__table > div:last-child { border-bottom: 0; }
.mkt-tech .mkt-dashboard__table > div i { width: 6px; height: 6px; border-radius: 50%; background: #577dff; box-shadow: 0 0 7px rgba(87, 125, 255, .7); }
.mkt-tech .mkt-dashboard__table > div b { overflow: hidden; color: #b9c4da; font-size: 7px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.mkt-tech .mkt-dashboard__table > div span { padding: 3px 5px; color: #89a1dc; border-radius: 4px; background: rgba(77, 111, 197, .12); font-size: 6px; }
.mkt-tech .mkt-dashboard__table > div em { color: #4f5c75; font-size: 6px; font-style: normal; }

.mkt-tech .mkt-dashboard__chart > div {
  display: flex;
  height: 108px;
  align-items: end;
  gap: 5px;
  margin-top: 12px;
  padding-top: 10px;
  background-image: linear-gradient(rgba(120, 147, 202, .08) 1px, transparent 1px);
  background-size: 100% 25%;
}

.mkt-tech .mkt-dashboard__chart > div b {
  width: 12%;
  height: 34%;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, rgba(88, 127, 255, .85), rgba(65, 87, 149, .25));
}

.mkt-tech .mkt-dashboard__chart > div b:nth-child(2) { height: 49%; }
.mkt-tech .mkt-dashboard__chart > div b:nth-child(3) { height: 42%; }
.mkt-tech .mkt-dashboard__chart > div b:nth-child(4) { height: 72%; background: linear-gradient(180deg, #42d8ff, rgba(66, 216, 255, .2)); box-shadow: 0 0 16px rgba(66, 216, 255, .2); }
.mkt-tech .mkt-dashboard__chart > div b:nth-child(5) { height: 63%; }
.mkt-tech .mkt-dashboard__chart > div b:nth-child(6) { height: 84%; }
.mkt-tech .mkt-dashboard__chart > div b:nth-child(7) { height: 75%; }

.mkt-tech .mkt-code {
  margin-top: 12px;
  padding: 14px;
  border-color: rgba(122, 153, 220, .16);
  border-radius: 9px;
  background: rgba(4, 8, 17, .86);
}

.mkt-tech .mkt-code header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(129, 157, 219, .1);
}

.mkt-tech .mkt-code header small { color: #52607a; font-size: 7px; }
.mkt-tech .mkt-code header span { color: #45dca8; font-size: 7px; }
.mkt-tech .mkt-code p { padding: 7px 0; margin: 0; border-bottom: 1px solid rgba(129, 157, 219, .07); }
.mkt-tech .mkt-code p:last-child { border-bottom: 0; }

.mkt-tech .mkt-browser {
  min-height: 384px;
  border-color: rgba(124, 154, 218, .18);
  border-radius: 11px;
  background: #0d1424;
}

.mkt-tech .mkt-browser header {
  height: 46px;
  border-bottom-color: rgba(124, 154, 218, .14);
  background: rgba(11, 17, 32, .95);
}

.mkt-tech .mkt-browser header strong { color: #e8efff; }
.mkt-tech .mkt-browser header span { color: #66728a; }
.mkt-tech .mkt-browser header b { border-radius: 5px; background: linear-gradient(135deg, #6286ff, #456cf2); }

.mkt-tech .mkt-browser__hero {
  min-height: 220px;
  padding: 34px 28px;
  background:
    radial-gradient(circle at 80% 20%, rgba(55, 174, 225, .18), transparent 28%),
    linear-gradient(135deg, #121d36, #0b1120);
}

.mkt-tech .mkt-browser__hero small { color: #60709a; }
.mkt-tech .mkt-browser__hero strong { color: #f5f8ff; font-size: 27px; }
.mkt-tech .mkt-browser__hero p { max-width: 320px; margin: 11px 0 0; color: #8490a8; font-size: 8px; line-height: 1.7; }
.mkt-tech .mkt-browser__hero i { display: inline-flex; width: auto; height: auto; margin-top: 16px; padding: 7px 10px; color: #fff; border-radius: 5px; background: #4f77f5; font-size: 7px; font-style: normal; }

.mkt-tech .mkt-browser__cards i {
  height: 87px;
  padding: 12px;
  border-color: rgba(124, 154, 218, .13);
  border-radius: 7px;
  background: rgba(24, 35, 61, .72);
  font-style: normal;
}

.mkt-tech .mkt-browser__cards small { display: block; color: #5376e2; font-size: 7px; }
.mkt-tech .mkt-browser__cards b { display: block; margin-top: 8px; color: #d7e0f3; font-size: 9px; }
.mkt-tech .mkt-browser__cards span { display: block; margin-top: 4px; color: #65718a; font-size: 7px; }

.mkt-tech .mkt-phone {
  width: 198px;
  min-height: 382px;
  padding: 18px 12px 13px;
  border-color: #27324b;
  background: #f6f8fc;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .52), 0 0 0 1px rgba(132, 164, 238, .2);
}

.mkt-tech .mkt-phone__top { display: flex; align-items: center; justify-content: space-between; color: #101725; font-size: 8px; }
.mkt-tech .mkt-phone__top b { font-size: 9px; }
.mkt-tech .mkt-phone__top span { color: #667087; }

.mkt-tech .mkt-phone__banner {
  height: 104px;
  padding: 16px 13px;
  color: #fff;
  border-radius: 10px;
  background:
    radial-gradient(circle at 90% 5%, rgba(78, 218, 255, .48), transparent 35%),
    linear-gradient(140deg, #3b60e8, #6d58ec);
  box-shadow: 0 12px 24px rgba(61, 91, 210, .24);
}

.mkt-tech .mkt-phone__banner small { display: block; color: rgba(255, 255, 255, .62); font-size: 5px; letter-spacing: .12em; }
.mkt-tech .mkt-phone__banner b { display: block; max-width: 130px; margin-top: 7px; font-size: 12px; line-height: 1.25; }
.mkt-tech .mkt-phone__banner i { display: inline-block; margin-top: 9px; font-size: 6px; font-style: normal; }

.mkt-tech .mkt-phone__chips i {
  height: 42px;
  padding: 7px 5px;
  border: 1px solid #e2e7f1;
  border-radius: 7px;
  background: #fff;
  font-style: normal;
}

.mkt-tech .mkt-phone__chips b { display: block; color: #182135; font-size: 6px; }
.mkt-tech .mkt-phone__chips span { display: block; margin-top: 2px; color: #9aa3b5; font-size: 4px; }

.mkt-tech .mkt-phone__list b {
  display: grid;
  height: 35px;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 6px;
  padding: 0 7px;
  border: 1px solid #e5e9f1;
  border-radius: 7px;
  background: #fff;
}

.mkt-tech .mkt-phone__list b i { width: 18px; height: 18px; border-radius: 5px; background: linear-gradient(145deg, #dfe7ff, #edf3ff); }
.mkt-tech .mkt-phone__list b span { color: #4c566c; font-size: 6px; font-weight: 500; }
.mkt-tech .mkt-phone__list b em { color: #4b70e6; font-size: 6px; font-style: normal; }
.mkt-tech .mkt-phone__tabs { gap: 3px; }
.mkt-tech .mkt-phone__tabs i { height: auto; color: #a0a8b7; background: transparent; font-size: 5px; font-style: normal; text-align: center; }
.mkt-tech .mkt-phone__tabs i.is-on { color: #456cf0; }

.mkt-tech .mkt-phone__metric { margin-top: 12px; padding: 12px; border-radius: 9px; color: #fff; background: linear-gradient(145deg, #14203a, #222f50); }
.mkt-tech .mkt-phone__metric small { display: block; color: #8996ae; font-size: 6px; }
.mkt-tech .mkt-phone__metric b { display: block; margin-top: 6px; font-size: 19px; }
.mkt-tech .mkt-phone__metric span { color: #4cdda9; font-size: 6px; }
.mkt-tech .mkt-phone__chart { display: flex; height: 86px; align-items: end; gap: 5px; padding: 12px; border-radius: 9px; background: #eef2f9; }
.mkt-tech .mkt-phone__chart i { width: 12%; height: 35%; border-radius: 3px 3px 0 0; background: #7896f5; }
.mkt-tech .mkt-phone__chart i:nth-child(2) { height: 55%; }
.mkt-tech .mkt-phone__chart i:nth-child(3) { height: 43%; }
.mkt-tech .mkt-phone__chart i:nth-child(4) { height: 78%; background: #4a72ed; }
.mkt-tech .mkt-phone__chart i:nth-child(5) { height: 65%; }
.mkt-tech .mkt-phone__chart i:nth-child(6) { height: 88%; }

.mkt-tech .mkt-shop {
  min-height: 385px;
  border-color: rgba(125, 154, 218, .18);
  border-radius: 11px;
}

.mkt-tech .mkt-shop > header { display: flex; height: 44px; align-items: center; justify-content: space-between; padding: 0 15px; color: #dce5f7; background: #0b1120; font-size: 7px; }
.mkt-tech .mkt-shop > header span { color: #657189; }
.mkt-tech .mkt-shop > header i { color: #91a8df; font-style: normal; }
.mkt-tech .mkt-shop__hero { min-height: 150px; background: radial-gradient(circle at 80% 20%, rgba(82, 123, 255, .3), transparent 35%), linear-gradient(135deg, #131d33, #090e19); }
.mkt-tech .mkt-shop__hero b { font-size: 23px; line-height: 1.22; }
.mkt-tech .mkt-shop__hero i { display: inline-block; margin-top: 13px; color: #9eb5ee; font-size: 7px; font-style: normal; }
.mkt-tech .mkt-shop__grid { background: #eef2f8; }
.mkt-tech .mkt-shop__grid i { position: relative; height: 112px; padding: 9px; background: linear-gradient(145deg, #dfe6f4, #cdd8ec); font-style: normal; }
.mkt-tech .mkt-shop__grid i:nth-child(2) { background: linear-gradient(145deg, #e9e0fa, #d6c9ec); }
.mkt-tech .mkt-shop__grid i:nth-child(3) { background: linear-gradient(145deg, #d7edf1, #c1dde3); }
.mkt-tech .mkt-shop__grid i:nth-child(4) { background: linear-gradient(145deg, #eee7dc, #ddd0bd); }
.mkt-tech .mkt-shop__grid i b { position: absolute; right: 8px; bottom: 22px; left: 8px; color: #394356; font-size: 6px; }
.mkt-tech .mkt-shop__grid i span { position: absolute; right: 8px; bottom: 8px; left: 8px; color: #687389; font-size: 6px; }
.mkt-tech .mkt-shop__cart { color: #526079; }
.mkt-tech .mkt-shop__cart span { display: flex; align-items: center; gap: 6px; }
.mkt-tech .mkt-shop__cart span i { width: 5px; height: 5px; border-radius: 50%; background: var(--tech-green); }
.mkt-tech .mkt-shop__cart b { border-radius: 4px; background: #4d72ed; }

/* ===== Page and service heroes ===== */
.mkt-tech .mkt-page-hero { padding: clamp(76px, 8vw, 116px) 0; }

.mkt-tech .mkt-page-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, .58fr);
  align-items: center;
  gap: clamp(52px, 9vw, 138px);
}

.mkt-tech .mkt-page-hero h1 {
  max-width: 800px;
  color: #f7f9ff;
  font-size: clamp(46px, 5.4vw, 70px);
  font-weight: 810;
  line-height: 1.08;
  text-wrap: balance;
}

.mkt-tech .mkt-page-hero__grid > div:last-child > p {
  color: #9faac0;
  font-size: 16px;
}

.mkt-tech .mkt-service-hero { padding: clamp(66px, 7vw, 98px) 0; }
.mkt-tech .mkt-service-hero h1 { color: #f7f9ff; font-size: clamp(52px, 6vw, 78px); }
.mkt-tech .mkt-service-hero__copy > p { color: #9faac0; }
.mkt-tech .mkt-breadcrumb,
.mkt-tech .mkt-breadcrumb a { color: #707d96; }
.mkt-tech .mkt-service-hero__price b { color: #fff; }
.mkt-tech .mkt-service-hero__price span,
.mkt-tech .mkt-service-hero__promise { color: #7d899f; }

/* ===== Bright content system ===== */
.mkt-tech .mkt-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(77, 121, 244, .035), transparent 23%),
    #fff;
}

.mkt-tech .mkt-section--soft {
  background:
    linear-gradient(rgba(100, 128, 190, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 128, 190, .035) 1px, transparent 1px),
    #f5f8fc;
  background-size: 56px 56px;
}

.mkt-tech .mkt-section--ink {
  color: #fff;
  background:
    radial-gradient(circle at 90% 4%, rgba(73, 111, 237, .16), transparent 26%),
    linear-gradient(rgba(114, 142, 208, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 142, 208, .055) 1px, transparent 1px),
    linear-gradient(145deg, #070a13, #0b1120);
  background-size: auto, 60px 60px, 60px 60px, auto;
}

.mkt-tech .mkt-section-head {
  grid-template-columns: minmax(0, 1fr) minmax(300px, .54fr);
  gap: clamp(42px, 8vw, 112px);
  margin-bottom: clamp(38px, 5vw, 58px);
}

.mkt-tech .mkt-section-head > div > small,
.mkt-tech .mkt-cta small,
.mkt-tech .mkt-page-hero small {
  color: #4f75e8;
  font: 750 10px/1.3 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .13em;
}

.mkt-tech .mkt-section-head h2 {
  max-width: 780px;
  color: #111725;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -.048em;
  line-height: 1.12;
}

.mkt-tech .mkt-section-head > p { color: #737f94; font-size: 15px; }
.mkt-tech .mkt-section--ink .mkt-section-head h2 { color: #f6f8ff; }
.mkt-tech .mkt-section--ink .mkt-section-head > p { color: #8d99af; }

.mkt-tech .mkt-choice-grid { gap: 18px; }

.mkt-tech .mkt-choice {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid #e1e7f1;
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--glow-x, 85%) var(--glow-y, 10%), rgba(75, 119, 245, .11), transparent 34%),
    linear-gradient(145deg, #fff, #f8faff);
  box-shadow: 0 14px 45px rgba(35, 54, 94, .065);
}

.mkt-tech .mkt-choice::after {
  position: absolute;
  right: -48px;
  bottom: -62px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(77, 118, 232, .12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 28px rgba(77, 118, 232, .025);
  pointer-events: none;
}

.mkt-tech .mkt-choice:hover {
  border-color: #abc0f5;
  box-shadow: 0 24px 62px rgba(39, 68, 139, .13);
  transform: translateY(-5px);
}

.mkt-tech .mkt-choice__num { color: #5b7cec; }
.mkt-tech .mkt-choice h3 { color: #172033; font-size: 20px; }
.mkt-tech .mkt-choice__answer { border-top-color: #e5eaf3; }
.mkt-tech .mkt-choice__answer b { color: #101828; }
.mkt-tech .mkt-choice__answer em { color: #4b70e5; }
.mkt-tech .mkt-choice > i { color: #3459c8; }

.mkt-tech .mkt-section--ink .mkt-service-grid { gap: 14px; }

.mkt-tech .mkt-section--ink .mkt-service-card {
  min-height: 260px;
  border-color: rgba(122, 151, 218, .17);
  border-radius: 19px;
  background:
    radial-gradient(circle at var(--glow-x, 88%) var(--glow-y, 10%), rgba(70, 117, 255, .17), transparent 32%),
    linear-gradient(145deg, rgba(20, 29, 53, .96), rgba(11, 17, 32, .98));
  box-shadow: inset 0 1px rgba(255, 255, 255, .025);
}

.mkt-tech .mkt-section--ink .mkt-service-card:hover {
  border-color: rgba(117, 153, 244, .48);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .28), 0 0 32px rgba(55, 96, 221, .08);
  transform: translateY(-5px);
}

.mkt-tech .mkt-service-card__top small { color: #6d7b98; }
.mkt-tech .mkt-service-card__top span { color: #7797ea; }
.mkt-tech .mkt-service-card > h3 { color: #f1f5ff; }
.mkt-tech .mkt-service-card > p { color: #8793aa; }
.mkt-tech .mkt-service-card > div:last-child b { color: #dfe7fa; }

.mkt-tech .mkt-process {
  gap: 12px;
  border: 0;
}

.mkt-tech .mkt-process li,
.mkt-tech .mkt-process li:first-child {
  position: relative;
  min-height: 230px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid #e1e7f0;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #f8faff);
}

.mkt-tech .mkt-process li::after {
  position: absolute;
  right: -24px;
  bottom: -40px;
  color: rgba(73, 108, 207, .055);
  content: attr(data-step);
  font: 800 110px/1 ui-monospace, monospace;
}

.mkt-tech .mkt-process li > span { color: #5578e6; }
.mkt-tech .mkt-process li h3 { margin-top: 45px; color: #141c2c; }
.mkt-tech .mkt-process li p { color: #738096; }

.mkt-tech .mkt-process--dark li,
.mkt-tech .mkt-section--ink .mkt-process li {
  border-color: rgba(126, 154, 217, .17);
  background: linear-gradient(145deg, rgba(24, 34, 61, .85), rgba(12, 19, 35, .92));
}

.mkt-tech .mkt-process--dark li h3,
.mkt-tech .mkt-section--ink .mkt-process li h3 { color: #f0f4ff; }
.mkt-tech .mkt-process--dark li p,
.mkt-tech .mkt-section--ink .mkt-process li p { color: #8591a8; }

.mkt-tech .mkt-inout { gap: 18px; }
.mkt-tech .mkt-inout > div {
  position: relative;
  overflow: hidden;
  border-color: #e0e6f0;
  border-radius: 21px;
  background: linear-gradient(145deg, #fff, #f9fbff);
  box-shadow: 0 16px 45px rgba(34, 53, 91, .06);
}

.mkt-tech .mkt-inout > div::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, #4f78f5, #41cbf1);
}

.mkt-tech .mkt-inout > div:nth-child(2)::before { background: linear-gradient(90deg, #e39c4d, #f2c56d); }
.mkt-tech .mkt-inout li { border-color: #e9edf4; }
.mkt-tech .mkt-inout--dark > div { border-color: rgba(126, 154, 217, .17); background: rgba(15, 23, 42, .86); box-shadow: none; }
.mkt-tech .mkt-inout--dark li { border-color: rgba(126, 154, 217, .1); }

/* Services overview: cards instead of spreadsheet rows */
.mkt-tech .mkt-service-group + .mkt-service-group { margin-top: 68px; }
.mkt-tech .mkt-service-group__head { margin-bottom: 24px; }
.mkt-tech .mkt-service-group__head span { color: #5578e6; }
.mkt-tech .mkt-service-group__head h2 { color: #121a2a; font-size: 30px; }

.mkt-tech .mkt-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 0;
}

.mkt-tech .mkt-service-row {
  position: relative;
  display: grid;
  min-height: 250px;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  align-items: start;
  gap: 13px 20px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid #e0e6f0;
  border-radius: 20px;
  background:
    radial-gradient(circle at var(--glow-x, 90%) var(--glow-y, 5%), rgba(73, 117, 240, .1), transparent 34%),
    linear-gradient(145deg, #fff, #f8faff);
  box-shadow: 0 14px 40px rgba(36, 55, 94, .055);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.mkt-tech .mkt-service-row:hover {
  border-color: #abc0f5;
  background:
    radial-gradient(circle at var(--glow-x, 90%) var(--glow-y, 5%), rgba(73, 117, 240, .15), transparent 36%),
    linear-gradient(145deg, #fff, #f8faff);
  box-shadow: 0 22px 58px rgba(35, 66, 135, .12);
  transform: translateY(-4px);
}

.mkt-tech .mkt-service-row > div:first-child { grid-column: 1; }
.mkt-tech .mkt-service-row small { color: #7c879b; font-size: 10px; }
.mkt-tech .mkt-service-row h3 { color: #111a2c; font-size: 25px; }
.mkt-tech .mkt-service-row > p { grid-column: 1 / -1; color: #748096; font-size: 13px; }
.mkt-tech .mkt-service-row__meta { grid-column: 1; align-self: end; }
.mkt-tech .mkt-service-row__meta b { color: #244fc6; }
.mkt-tech .mkt-service-row > i { grid-column: 2; grid-row: 1; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid #d5def0; border-radius: 50%; color: #4e71dc; background: #fff; }

.mkt-tech .mkt-highlight-grid { gap: 12px; border: 0; }
.mkt-tech .mkt-highlight-grid > div,
.mkt-tech .mkt-highlight-grid > div + div {
  padding: 23px;
  border: 1px solid rgba(126, 154, 217, .17);
  border-radius: 15px;
  background: rgba(20, 29, 53, .72);
}

/* Service detail */
.mkt-tech .mkt-fit-grid {
  gap: 14px;
  border: 0;
}

.mkt-tech .mkt-fit-grid > div {
  min-height: 145px;
  border: 1px solid #e0e6f0;
  border-radius: 17px;
  background: linear-gradient(145deg, #fff, #f8faff);
  box-shadow: 0 12px 35px rgba(35, 54, 91, .05);
}

.mkt-tech .mkt-fit-grid span { color: #5578e6; }
.mkt-tech .mkt-fit-grid p { color: #202a3d; font-size: 16px; }

.mkt-tech .mkt-deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border: 0;
}

.mkt-tech .mkt-deliverables li {
  min-height: 116px;
  padding: 23px;
  border: 1px solid #e0e6f0;
  border-radius: 16px;
  background: rgba(255, 255, 255, .88);
}

.mkt-tech .mkt-deliverables p { color: #1c2638; font-size: 16px; }

.mkt-tech .mkt-package-grid { gap: 17px; }
.mkt-tech .mkt-package {
  min-height: 500px;
  overflow: hidden;
  border-color: #dfe6f0;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #f8faff);
  box-shadow: 0 16px 45px rgba(32, 52, 93, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.mkt-tech .mkt-package:hover { border-color: #afc2f1; box-shadow: 0 24px 62px rgba(36, 65, 132, .13); transform: translateY(-4px); }
.mkt-tech .mkt-package.is-featured {
  border: 1px solid #7694ef;
  background:
    radial-gradient(circle at 90% 0, rgba(83, 126, 244, .13), transparent 28%),
    linear-gradient(145deg, #fff, #f5f8ff);
  box-shadow: 0 24px 70px rgba(48, 83, 177, .15), inset 0 0 0 1px rgba(111, 143, 235, .12);
}
.mkt-tech .mkt-package__tag { background: linear-gradient(135deg, #5c81fa, #4c69df); box-shadow: 0 8px 20px rgba(62, 98, 223, .25); }
.mkt-tech .mkt-package h3 { color: #141d2e; }
.mkt-tech .mkt-package__price b { color: #10204b; }
.mkt-tech .mkt-package li { border-color: #e7ebf3; }
.mkt-tech .mkt-package.is-selected { border-color: #6386ee; box-shadow: 0 0 0 3px rgba(79, 124, 255, .1), 0 24px 70px rgba(48, 83, 177, .15); }

.mkt-tech .mkt-other-grid { gap: 14px; }
.mkt-tech .mkt-other-grid a {
  border-color: #e0e6f0;
  border-radius: 17px;
  background: linear-gradient(145deg, #fff, #f8faff);
  box-shadow: 0 12px 35px rgba(35, 54, 91, .045);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.mkt-tech .mkt-other-grid a:hover { border-color: #adc1f4; box-shadow: 0 18px 45px rgba(35, 66, 135, .1); transform: translateY(-3px); }

/* Pricing cards */
.mkt-tech .mkt-price-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mkt-tech .mkt-price-overview__card {
  position: relative;
  min-height: 285px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid #dfe6f0;
  border-radius: 21px;
  background:
    radial-gradient(circle at var(--glow-x, 92%) var(--glow-y, 0), rgba(73, 117, 240, .12), transparent 35%),
    linear-gradient(145deg, #fff, #f8faff);
  box-shadow: 0 15px 44px rgba(35, 55, 96, .06);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.mkt-tech .mkt-price-overview__card:hover { border-color: #a9bef3; box-shadow: 0 24px 60px rgba(35, 66, 135, .13); transform: translateY(-4px); }
.mkt-tech .mkt-price-overview__top { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; }
.mkt-tech .mkt-price-overview__top span { color: #5177e7; font: 750 11px/1 ui-monospace, monospace; }
.mkt-tech .mkt-price-overview__top small { color: #7d899d; font-size: 10px; }
.mkt-tech .mkt-price-overview__top i { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid #d6dff0; border-radius: 50%; color: #4d70dc; background: #fff; font-style: normal; }
.mkt-tech .mkt-price-overview__card h3 { margin: 29px 0 0; color: #111a2a; font-size: 27px; }
.mkt-tech .mkt-price-overview__card > p { min-height: 48px; margin: 10px 0 0; color: #748096; font-size: 13px; line-height: 1.75; }
.mkt-tech .mkt-price-overview__meta { display: flex; gap: 40px; margin-top: 27px; padding-top: 20px; border-top: 1px solid #e5eaf2; }
.mkt-tech .mkt-price-overview__meta span { min-width: 110px; }
.mkt-tech .mkt-price-overview__meta small { display: block; color: #8a95a7; font-size: 9px; }
.mkt-tech .mkt-price-overview__meta b { display: block; margin-top: 5px; color: #173b9f; font-size: 17px; }

.mkt-tech .mkt-tier-list > article { padding: 42px 0; border-color: #d9e1ed; }
.mkt-tech .mkt-tier-list__title h3 { color: #141d2e; }
.mkt-tech .mkt-tier-list__cards { gap: 13px; }
.mkt-tech .mkt-tier-list__cards > div {
  min-height: 230px;
  padding: 23px;
  border-color: #e0e6f0;
  border-radius: 17px;
  background: linear-gradient(145deg, #fff, #f8faff);
  box-shadow: 0 10px 30px rgba(35, 54, 91, .045);
}
.mkt-tech .mkt-tier-list__cards > div.is-featured {
  border-color: #7795ed;
  background: radial-gradient(circle at 90% 0, rgba(79, 124, 255, .11), transparent 38%), #f9fbff;
  box-shadow: 0 16px 40px rgba(48, 80, 165, .1);
}
.mkt-tech .mkt-tier-list__cards button { color: #3f65d8; }

/* Cases */
.mkt-tech .mkt-case-grid { gap: 20px; }
.mkt-tech .mkt-case-card {
  border-color: #dfe5ef;
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(34, 53, 91, .07);
}
.mkt-tech .mkt-case-card:hover { border-color: #aac0f4; box-shadow: 0 26px 66px rgba(33, 64, 134, .14); transform: translateY(-5px); }
.mkt-tech .mkt-case-card__cover {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(69, 118, 255, .45), transparent 28%),
    linear-gradient(rgba(131, 159, 221, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 159, 221, .11) 1px, transparent 1px),
    linear-gradient(145deg, #101a31, #0a1020);
  background-size: auto, 32px 32px, 32px 32px, auto;
}
.mkt-tech .mkt-case-card__cover::before {
  position: absolute;
  inset: 16% 12%;
  content: "";
  border: 1px solid rgba(136, 169, 242, .26);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(111, 146, 226, .18) 24%, transparent 24%),
    linear-gradient(rgba(111, 146, 226, .12) 1px, transparent 1px);
  background-size: auto, 100% 24%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}
.mkt-tech .mkt-case-card__cover::after { background: linear-gradient(180deg, rgba(7, 11, 22, .02), rgba(5, 8, 16, .76)); }
.mkt-tech .mkt-case-card__cover span { border: 1px solid rgba(147, 174, 234, .2); border-radius: 99px; background: rgba(8, 13, 26, .7); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.mkt-tech .mkt-case-skeleton { border: 1px solid #e0e6f0; background: linear-gradient(110deg, #eef2f8 8%, #f8faff 18%, #eef2f8 33%); background-size: 200% 100%; }

/* FAQ, about, contact and forms */
.mkt-tech .mkt-faq { border: 1px solid #dde5f0; border-radius: 20px; background: #fff; box-shadow: 0 16px 45px rgba(35, 54, 91, .055); }
.mkt-tech .mkt-faq > article { padding: 0 22px; border-color: #e7ebf2; }
.mkt-tech .mkt-faq > article > button { min-height: 80px; color: #192235; }
.mkt-tech .mkt-faq > article > button i { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid #dae2ef; border-radius: 50%; color: #466bdc; background: #f7f9fd; }

.mkt-tech .mkt-principles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; border: 0; }
.mkt-tech .mkt-principles > div,
.mkt-tech .mkt-principles > div:first-child {
  min-height: 245px;
  padding: 25px;
  border: 1px solid #e0e6f0;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #f8faff);
  box-shadow: 0 12px 34px rgba(35, 54, 91, .045);
}
.mkt-tech .mkt-principles h3 { color: #172033; }

.mkt-tech .mkt-handoff { display: grid; gap: 10px; border: 0; }
.mkt-tech .mkt-handoff article {
  padding: 24px;
  border: 1px solid rgba(126, 154, 217, .17);
  border-radius: 15px;
  background: rgba(20, 29, 53, .7);
}
.mkt-tech .mkt-refuse { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; border: 0; }
.mkt-tech .mkt-refuse li { padding: 20px; border: 1px solid #e1e7f0; border-radius: 15px; background: #fff; }

.mkt-tech .mkt-contact-actions { display: grid; gap: 10px; border: 0; }
.mkt-tech .mkt-contact-actions > * {
  min-height: 96px;
  padding: 0 21px;
  border: 1px solid #e0e6f0;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #f8faff);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.mkt-tech .mkt-contact-actions > *:hover { border-color: #adc1f4; box-shadow: 0 16px 40px rgba(38, 66, 130, .1); transform: translateY(-3px); }
.mkt-tech .mkt-contact-info { border-color: #dfe6f0; border-radius: 19px; background: #f8faff; box-shadow: 0 14px 40px rgba(35, 54, 91, .055); }

.mkt-tech .mkt-brief-form {
  border-color: #dfe6f0;
  border-radius: 23px;
  background: linear-gradient(145deg, #fff, #f9fbff);
  box-shadow: 0 24px 70px rgba(32, 54, 104, .1);
}
.mkt-tech .mkt-brief-aside > div { border-color: #dfe6f0; border-radius: 17px; background: linear-gradient(145deg, #fff, #f8faff); box-shadow: 0 12px 35px rgba(35, 54, 91, .05); }
.mkt-tech .mkt-brief-form input,
.mkt-tech .mkt-brief-form select,
.mkt-tech .mkt-brief-form textarea,
.mkt-tech .mkt-lead-form input,
.mkt-tech .mkt-lead-form select {
  border-color: #d6deeb;
  border-radius: 11px;
  background: #f9fbfe;
}

/* ===== CTA and footer ===== */
.mkt-tech .mkt-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(68, 113, 255, .28), transparent 30%),
    radial-gradient(circle at 18% 90%, rgba(45, 210, 255, .1), transparent 27%),
    linear-gradient(135deg, #090e1c, #0c1428);
}

.mkt-tech .mkt-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(121, 153, 225, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(121, 153, 225, .07) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.mkt-tech .mkt-cta__inner { position: relative; z-index: 1; }
.mkt-tech .mkt-cta h2 { max-width: 720px; font-size: clamp(38px, 4.5vw, 60px); color: #f7f9ff; }
.mkt-tech .mkt-cta__inner > div:last-child > p { color: #98a4ba; }
.mkt-tech .mkt-btn--line-light { color: #eaf0ff; border-color: rgba(145, 170, 230, .28); background: rgba(119, 147, 211, .08); }
.mkt-tech .mkt-btn--line-light:hover { color: #fff; border-color: rgba(151, 181, 251, .55); background: rgba(119, 147, 211, .16); }

.mkt-tech .mkt-footer {
  position: relative;
  border-top-color: rgba(128, 157, 220, .14);
  background: #050812;
}
.mkt-tech .mkt-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, #446ef2, #32cdec, transparent);
  opacity: .6;
}
.mkt-tech .mkt-footer__bottom { border-color: rgba(126, 154, 217, .13); }

/* ===== Drawers and conversion surfaces ===== */
.mkt-tech .mkt-overlay { background: rgba(2, 5, 12, .74); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.mkt-tech .mkt-drawer__panel {
  color: #e8efff;
  border-left: 1px solid rgba(129, 160, 228, .2);
  background:
    radial-gradient(circle at 100% 0, rgba(72, 114, 239, .16), transparent 30%),
    #09101e;
}
.mkt-tech .mkt-drawer__panel .mkt-sheet__head h2 { color: #f5f8ff; }
.mkt-tech .mkt-drawer__intro { color: #8793aa; }
.mkt-tech .mkt-drawer__services a { border-color: rgba(127, 155, 218, .16); background: rgba(98, 126, 190, .06); transition: border-color .18s ease, background .18s ease, transform .18s ease; }
.mkt-tech .mkt-drawer__services a:hover { border-color: rgba(117, 153, 244, .45); background: rgba(91, 124, 205, .13); transform: translateY(-2px); }
.mkt-tech .mkt-drawer__services span { color: #e4ebfa; }
.mkt-tech .mkt-drawer__services small { color: #738098; }
.mkt-tech .mkt-drawer__panel .mkt-icon-btn { color: #dce5f7; border-color: rgba(128, 157, 220, .2); background: rgba(103, 131, 195, .08); }

.mkt-tech .mkt-sheet__panel {
  overflow: hidden auto;
  border: 1px solid #dbe3ef;
  border-radius: 23px;
  background: linear-gradient(145deg, #fff, #f7f9fd);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .35);
}
.mkt-tech .mkt-sheet__panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, #557dff, #35d2f8, #806dff);
}

.mkt-tech .mkt-concierge,
.mkt-tech .mkt-consult-hint {
  border-color: rgba(132, 163, 233, .28);
  background: rgba(7, 12, 25, .93);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .32), 0 0 28px rgba(57, 98, 229, .11);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

/* ===== Legacy public content under the marketing shell ===== */
.mkt-tech main > .eng-hero--page {
  min-height: 360px;
  padding: 78px 0;
}
.mkt-tech main > .eng-hero--page .container { position: relative; z-index: 1; }
.mkt-tech main > .eng-hero--page h1 { color: #f6f9ff; font-size: clamp(45px, 6vw, 72px); letter-spacing: -.05em; }
.mkt-tech main > .eng-hero--page .eng-kicker { color: #76a0ff; }
.mkt-tech main > .eng-hero--page .eng-hero__lead { color: #9aa7bd; }
.mkt-tech .eng-block,
.mkt-tech main > .section { background: #f5f8fc; }
.mkt-tech .eng-block .card,
.mkt-tech main > .section .card { border-color: #dfe6f0; border-radius: 17px; box-shadow: 0 12px 38px rgba(35, 54, 91, .055); }

/* ===== Pointer-aware glow ===== */
.mkt-tech [data-tech-card],
.mkt-tech .mkt-choice,
.mkt-tech .mkt-service-card,
.mkt-tech .mkt-service-row,
.mkt-tech .mkt-package,
.mkt-tech .mkt-case-card {
  --glow-x: 80%;
  --glow-y: 12%;
}

/* ===== Responsive ===== */
@media (max-width: 1180px) {
  .mkt-tech .mkt-header__status { display: none; }
  .mkt-tech .mkt-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr); gap: 46px; }
  .mkt-tech .mkt-hero__copy h1 { font-size: clamp(44px, 5.4vw, 61px); }
  .mkt-tech .mkt-dashboard__content { grid-template-columns: 1fr; }
  .mkt-tech .mkt-dashboard__chart { display: none; }
}

@media (max-width: 820px) {
  .mkt-tech { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .mkt-tech .mkt-header__inner,
  .mkt-tech .mkt-header.is-compact .mkt-header__inner { min-height: 64px; }
  .mkt-tech .mkt-header { position: sticky; }

  .mkt-tech .mkt-hero {
    min-height: 0;
    padding: 43px 0 0;
  }

  .mkt-tech .mkt-hero::before,
  .mkt-tech .mkt-page-hero::before,
  .mkt-tech .mkt-service-hero::before,
  .mkt-tech main > .eng-hero--page::before {
    background-size: 38px 38px;
    opacity: .75;
  }

  .mkt-tech .mkt-hero__grid,
  .mkt-tech .mkt-page-hero__grid,
  .mkt-tech .mkt-service-hero__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .mkt-tech .mkt-hero__copy h1 {
    max-width: 620px;
    font-size: clamp(38px, 10.8vw, 52px);
    line-height: 1.08;
  }

  .mkt-tech .mkt-hero__copy > p { color: #a3aec2; font-size: 15px; }
  .mkt-tech .mkt-hero__actions { gap: 9px; }
  .mkt-tech .mkt-hero__actions .mkt-btn { min-height: 53px; }
  .mkt-tech .mkt-quick-prices { gap: 8px; }
  .mkt-tech .mkt-quick-prices a,
  .mkt-tech .mkt-quick-prices a + a { padding: 12px 11px; border: 1px solid rgba(130, 158, 221, .17); }
  .mkt-tech .mkt-quick-prices a:nth-child(n+3) { border-top: 1px solid rgba(130, 158, 221, .17); }

  .mkt-tech .mkt-hero__visual { padding-top: 8px; }
  .mkt-tech .mkt-hero__visual-meta { font-size: 7px; }
  .mkt-tech .mkt-mock { min-height: 335px; padding: 42px 10px 10px; border-radius: 17px; }
  .mkt-tech .mkt-dashboard { min-height: 280px; grid-template-columns: 40px 1fr; }
  .mkt-tech .mkt-dashboard__main { padding: 11px; }
  .mkt-tech .mkt-dashboard__stats > div { padding: 9px 7px; }
  .mkt-tech .mkt-dashboard__stats b { font-size: 13px; }
  .mkt-tech .mkt-dashboard__content { display: block; }
  .mkt-tech .mkt-dashboard__table { margin-top: 8px; padding: 8px; }
  .mkt-tech .mkt-dashboard__table > div { min-height: 35px; }
  .mkt-tech .mkt-hero__float { right: 4px; bottom: 6px; width: 175px; }
  .mkt-tech .mkt-hero__stack { padding-right: 180px; }
  .mkt-tech .mkt-trust-strip { margin-top: 52px; border-radius: 15px 15px 0 0; }
  .mkt-tech .mkt-trust-strip > div,
  .mkt-tech .mkt-trust-strip > div + div { padding: 16px 13px; border-color: rgba(126, 154, 219, .14); }
  .mkt-tech .mkt-trust-strip > div:nth-child(n+3) { padding-left: 13px; }

  .mkt-tech .mkt-page-hero { padding: 58px 0 62px; }
  .mkt-tech .mkt-page-hero h1 { font-size: clamp(38px, 10.5vw, 50px); }
  .mkt-tech .mkt-page-hero__grid > div:last-child > p { font-size: 14px; }
  .mkt-tech .mkt-service-hero { padding: 51px 0 44px; }
  .mkt-tech .mkt-service-hero h1 { font-size: clamp(46px, 13vw, 62px); }

  .mkt-tech .mkt-section { padding-block: 72px; }
  .mkt-tech .mkt-section-head,
  .mkt-tech .mkt-cta__inner,
  .mkt-tech .mkt-contact-grid,
  .mkt-tech .mkt-brief-layout,
  .mkt-tech .mkt-case-layout {
    grid-template-columns: 1fr;
  }
  .mkt-tech .mkt-section-head { gap: 22px; }
  .mkt-tech .mkt-section-head h2 { font-size: clamp(33px, 9.2vw, 45px); }
  .mkt-tech .mkt-section-head > p { font-size: 14px; }

  .mkt-tech .mkt-choice-grid,
  .mkt-tech .mkt-service-list,
  .mkt-tech .mkt-price-overview,
  .mkt-tech .mkt-deliverables,
  .mkt-tech .mkt-refuse { grid-template-columns: 1fr; }
  .mkt-tech .mkt-choice { min-height: 275px; }
  .mkt-tech .mkt-service-row { min-height: 225px; padding: 23px; }
  .mkt-tech .mkt-process { gap: 9px; }
  .mkt-tech .mkt-process li,
  .mkt-tech .mkt-process li:first-child { min-height: 0; padding: 21px; border: 1px solid #e1e7f0; border-radius: 15px; }
  .mkt-tech .mkt-process li h3 { margin-top: 0; }
  .mkt-tech .mkt-section--ink .mkt-process li { border-color: rgba(126, 154, 217, .17); }
  .mkt-tech .mkt-fit-grid { gap: 9px; }
  .mkt-tech .mkt-fit-grid > div { min-height: 130px; padding: 21px; border: 1px solid #e0e6f0; }
  .mkt-tech .mkt-deliverables li { min-height: 0; }
  .mkt-tech .mkt-package { min-height: 0; }
  .mkt-tech .mkt-price-overview__card { min-height: 260px; padding: 23px; }
  .mkt-tech .mkt-principles { grid-template-columns: 1fr 1fr; gap: 10px; }
  .mkt-tech .mkt-principles > div,
  .mkt-tech .mkt-principles > div:first-child { min-height: 210px; border: 1px solid #e0e6f0; }
  .mkt-tech .mkt-handoff article { border: 1px solid rgba(126, 154, 217, .17); }

  .mkt-tech .mkt-mobile-offer {
    border-top-color: rgba(128, 157, 220, .2);
    color: #fff;
    background: rgba(6, 10, 21, .94);
  }
  .mkt-tech .mkt-mobile-offer small { color: #7d899f; }
  .mkt-tech .mkt-mobile-offer b { color: #f0f4ff; }

  .mkt-tech .mkt-tabbar {
    border-top-color: rgba(126, 154, 219, .2);
    background: rgba(5, 9, 19, .96);
    box-shadow: 0 -12px 35px rgba(0, 0, 0, .22);
  }
  .mkt-tech .mkt-tabbar > * { color: #69758c; }
  .mkt-tech .mkt-tabbar .is-active { color: #7fa1ff; }
  .mkt-tech .mkt-tabbar .is-active span { filter: drop-shadow(0 0 8px rgba(93, 136, 255, .6)); }

  .mkt-tech .mkt-sheet__panel,
  .mkt-tech .mkt-sheet--qr .mkt-sheet__panel { border-radius: 23px 23px 0 0; }
  .mkt-tech main > .eng-hero--page { min-height: 300px; padding: 58px 0; }
}

@media (max-width: 430px) {
  .mkt-tech .mkt-container { --mkt-gutter: 16px; }
  .mkt-tech .mkt-brand > span:last-child b { font-size: 17px; }
  .mkt-tech .mkt-hero__copy h1 { font-size: 40px; }
  .mkt-tech .mkt-hero__copy h1 span + span { font-size: .94em; }
  .mkt-tech .mkt-hero__actions { grid-template-columns: 1fr; }
  .mkt-tech .mkt-quick-prices b { font-size: 13px; }
  .mkt-tech .mkt-hero__visual-meta span { display: none; }
  .mkt-tech .mkt-hero__visual-meta { justify-content: flex-end; }
  .mkt-tech .mkt-hero__stack { padding-right: 0; margin-top: 28px; }
  .mkt-tech .mkt-hero__float { bottom: -9px; }
  .mkt-tech .mkt-trust-strip dt { font-size: 15px; }
  .mkt-tech .mkt-trust-strip dd { font-size: 10px; }
  .mkt-tech .mkt-dashboard__stats { grid-template-columns: repeat(3, 1fr); }
  .mkt-tech .mkt-dashboard__stats > div:nth-child(3) { display: none; }
  .mkt-tech .mkt-dashboard__stats { grid-template-columns: repeat(2, 1fr); }
  .mkt-tech .mkt-price-overview__meta { gap: 18px; }
  .mkt-tech .mkt-price-overview__meta span { min-width: 0; }
  .mkt-tech .mkt-principles { grid-template-columns: 1fr; }
  .mkt-tech .mkt-principles > div,
  .mkt-tech .mkt-principles > div:first-child { min-height: 185px; }
  .mkt-tech .mkt-footer__grid { grid-template-columns: 1fr; }
}

@keyframes techPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.72); }
}

@media (prefers-reduced-motion: reduce) {
  .mkt-tech .mkt-header__status i { animation: none; }
  .mkt-tech .mkt-btn::after { display: none; }
}

/* ===== Full navigation and commerce-style mobile app shell ===== */
.mkt-tech .mkt-app-searchbar,
.mkt-tech .mkt-app-shortcuts-wrap { display: none; }

.mkt-tech .mkt-header__account {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #aab5c9;
  font-size: 12px;
  white-space: nowrap;
}
.mkt-tech .mkt-header__account:hover { color: #fff; }
.mkt-tech .mkt-header__account svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.mkt-tech .mkt-nav__item { position: relative; }
.mkt-tech .mkt-nav__item > .mkt-nav__link { display: inline-flex; align-items: center; gap: 6px; }
.mkt-tech .mkt-nav__caret {
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-color: currentColor;
  transition: transform .18s ease;
}
.mkt-tech .mkt-nav__item:hover .mkt-nav__caret,
.mkt-tech .mkt-nav__item:focus-within .mkt-nav__caret { transform: rotate(225deg) translate(-2px, -2px); }

.mkt-tech .mkt-nav__menu {
  top: calc(100% + 13px);
  padding: 14px;
  color: #dfe7f8;
  border-color: rgba(128, 158, 225, .22);
  border-radius: 19px;
  background:
    radial-gradient(circle at 90% 0, rgba(75, 118, 244, .14), transparent 32%),
    rgba(8, 13, 26, .98);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .46), inset 0 1px rgba(255, 255, 255, .035);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.mkt-tech .mkt-nav__menu::before {
  position: absolute;
  top: -14px;
  right: 0;
  left: 0;
  height: 14px;
  content: "";
}
.mkt-tech .mkt-nav__menu--mega { width: min(720px, calc(100vw - 40px)); }
.mkt-tech .mkt-nav__menu-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 20px;
  padding: 5px 6px 14px;
  border-bottom: 1px solid rgba(129, 157, 219, .14);
}
.mkt-tech .mkt-nav__menu-head small {
  grid-column: 1;
  color: #607092;
  font: 650 8px/1.2 ui-monospace, monospace;
  letter-spacing: .12em;
}
.mkt-tech .mkt-nav__menu-head b { grid-column: 1; color: #f0f4ff; font-size: 15px; }
.mkt-tech .mkt-nav__menu-head > a {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  min-height: auto;
  padding: 0;
  color: #86a4f3;
  background: transparent;
  font-size: 11px;
}
.mkt-tech .mkt-nav__menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding-top: 10px;
}
.mkt-tech .mkt-nav__menu-grid > a {
  display: grid;
  min-height: 61px;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
}
.mkt-tech .mkt-nav__menu-grid > a:hover {
  color: #fff;
  border-color: rgba(119, 151, 225, .18);
  background: rgba(95, 124, 194, .1);
}
.mkt-tech .mkt-nav__menu-grid > a > i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(132, 164, 237, .22);
  border-radius: 10px;
  color: #a7baff;
  background: linear-gradient(145deg, rgba(83, 123, 239, .18), rgba(58, 82, 147, .08));
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}
.mkt-tech .mkt-nav__menu-grid > a span { min-width: 0; }
.mkt-tech .mkt-nav__menu-grid > a b { display: block; color: #e5ebf8; font-size: 12px; }
.mkt-tech .mkt-nav__menu-grid > a small { display: block; margin-top: 3px; color: #64718b; font-size: 9px; }

.mkt-tech .mkt-nav__menu--more {
  display: grid;
  width: min(610px, calc(100vw - 40px));
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
}
.mkt-tech .mkt-nav__menu-section {
  padding: 4px;
  border-right: 1px solid rgba(129, 157, 219, .13);
}
.mkt-tech .mkt-nav__menu-section:last-child { border-right: 0; }
.mkt-tech .mkt-nav__menu-section > small {
  display: block;
  margin: 2px 9px 8px;
  color: #607092;
  font: 650 8px/1.2 ui-monospace, monospace;
  letter-spacing: .12em;
}
.mkt-tech .mkt-nav__menu-section > a {
  display: block;
  min-height: 48px;
  padding: 7px 9px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
}
.mkt-tech .mkt-nav__menu-section > a:hover {
  color: #fff;
  border-color: rgba(119, 151, 225, .16);
  background: rgba(95, 124, 194, .1);
}
.mkt-tech .mkt-nav__menu-section > a b { display: block; color: #e4eaf7; font-size: 12px; }
.mkt-tech .mkt-nav__menu-section > a span { display: block; margin-top: 2px; color: #65728b; font-size: 9px; }

.mkt-tech .mkt-app-drawer-search {
  display: grid;
  min-height: 48px;
  grid-template-columns: 20px 1fr 28px;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 0 10px 0 13px;
  border: 1px solid rgba(128, 158, 225, .2);
  border-radius: 13px;
  background: rgba(87, 116, 184, .08);
}
.mkt-tech .mkt-app-drawer-search svg {
  width: 18px;
  fill: none;
  stroke: #7e90b2;
  stroke-width: 1.8;
}
.mkt-tech .mkt-app-drawer-search input {
  min-width: 0;
  height: 46px;
  padding: 0;
  border: 0;
  color: #ecf2ff;
  background: transparent;
  font-size: 13px;
  outline: 0;
}
.mkt-tech .mkt-app-drawer-search input::placeholder { color: #65728b; }
.mkt-tech .mkt-app-drawer-search input::-webkit-search-cancel-button {
  display: none;
  -webkit-appearance: none;
}
.mkt-tech .mkt-app-drawer-search button {
  display: none;
  width: 25px;
  height: 25px;
  padding: 0;
  border-radius: 50%;
  color: #8b98ae;
  background: rgba(121, 146, 204, .14);
  cursor: pointer;
}
.mkt-tech .mkt-app-drawer-search button.is-visible { display: grid; place-items: center; }
.mkt-tech .mkt-app-drawer-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0 12px;
}
.mkt-tech .mkt-app-drawer-title b { color: #f0f4ff; font-size: 15px; }
.mkt-tech .mkt-app-drawer-title a { color: #8097cf; font-size: 11px; }
.mkt-tech .mkt-drawer__services a {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  column-gap: 10px;
}
.mkt-tech .mkt-drawer__services a > i {
  grid-row: 1 / span 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, #5b81fb, #4969dc);
  box-shadow: 0 8px 20px rgba(58, 92, 202, .22);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}
.mkt-tech .mkt-app-category-icon--2 { background: linear-gradient(145deg, #28c7dd, #2597cb) !important; }
.mkt-tech .mkt-app-category-icon--3 { background: linear-gradient(145deg, #866df5, #654fd2) !important; }
.mkt-tech .mkt-app-category-icon--4 { background: linear-gradient(145deg, #ff9b5c, #ea6f4e) !important; }
.mkt-tech .mkt-app-category-icon--5 { background: linear-gradient(145deg, #36cf9a, #1ca979) !important; }
.mkt-tech .mkt-app-category-icon--6 { background: linear-gradient(145deg, #ef6e9d, #d94d7f) !important; }
.mkt-tech .mkt-app-more-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 22px;
}
.mkt-tech .mkt-app-more-grid a {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(127, 155, 218, .15);
  border-radius: 10px;
  color: #dfe7f8;
  background: rgba(95, 124, 194, .06);
}
.mkt-tech .mkt-app-more-grid i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: #a9bbef;
  background: rgba(81, 116, 220, .15);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}
.mkt-tech .mkt-app-more-grid span { font-size: 11px; font-weight: 650; }
.mkt-tech .mkt-app-search-empty { padding: 28px 10px; color: #758199; text-align: center; font-size: 12px; }
.mkt-tech .mkt-app-account-actions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-bottom: 10px; }

@media (max-width: 1120px) and (min-width: 821px) {
  .mkt-tech .mkt-nav__link { padding-inline: 9px; font-size: 12px; }
  .mkt-tech .mkt-nav { gap: 0; }
  .mkt-tech .mkt-header__account { display: none; }
}

@media (max-width: 820px) {
  .mkt-tech { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
  .mkt-tech .mkt-header { background: rgba(5, 9, 20, .97); }
  .mkt-tech .mkt-header__account { display: none; }
  .mkt-tech .mkt-header__inner,
  .mkt-tech .mkt-header.is-compact .mkt-header__inner { min-height: 58px; }
  .mkt-tech .mkt-app-searchbar {
    display: grid;
    grid-template-columns: 1fr 42px;
    gap: 9px;
    padding-top: 0;
    padding-bottom: 10px;
  }
  .mkt-tech .mkt-app-searchbar__field {
    display: flex;
    min-width: 0;
    height: 42px;
    align-items: center;
    gap: 9px;
    padding: 0 14px;
    overflow: hidden;
    border: 1px solid rgba(132, 164, 232, .23);
    border-radius: 21px;
    color: #9ba8bf;
    background: rgba(104, 132, 197, .1);
    font-size: 12px;
    text-align: left;
  }
  .mkt-tech .mkt-app-searchbar__field svg,
  .mkt-tech .mkt-app-searchbar__user svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .mkt-tech .mkt-app-searchbar__field span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .mkt-tech .mkt-app-searchbar__user {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(132, 164, 232, .23);
    border-radius: 50%;
    color: #b7c4db;
    background: rgba(104, 132, 197, .1);
  }

  .mkt-tech.mkt-home .mkt-hero { padding-top: 22px; }
  .mkt-tech.mkt-home .mkt-hero__grid { gap: 0; }
  .mkt-tech.mkt-home .mkt-hero__copy h1 { font-size: clamp(32px, 9.2vw, 40px); line-height: 1.08; }
  .mkt-tech.mkt-home .mkt-hero__copy > p {
    display: -webkit-box;
    margin-top: 17px;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.75;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .mkt-tech.mkt-home .mkt-hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 20px;
  }
  .mkt-tech.mkt-home .mkt-hero__actions .mkt-btn { min-height: 46px; width: 100%; padding: 8px 10px; font-size: 13px; }
  .mkt-tech.mkt-home .mkt-hero__note,
  .mkt-tech.mkt-home .mkt-quick-prices,
  .mkt-tech.mkt-home .mkt-hero__visual { display: none; }

  .mkt-tech.mkt-home .mkt-app-shortcuts-wrap { display: block; margin-top: 22px; }
  .mkt-tech .mkt-app-shortcuts {
    padding: 16px 11px 13px;
    border: 1px solid rgba(129, 158, 222, .18);
    border-radius: 20px;
    background: rgba(14, 23, 43, .8);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .2), inset 0 1px rgba(255, 255, 255, .03);
  }
  .mkt-tech .mkt-app-shortcuts__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px 12px;
  }
  .mkt-tech .mkt-app-shortcuts__head b { color: #eef3ff; font-size: 14px; }
  .mkt-tech .mkt-app-shortcuts__head button { padding: 0; color: #78869f; background: transparent; font-size: 10px; }
  .mkt-tech .mkt-app-shortcuts__head button span { color: #8ea8e6; font-size: 15px; }
  .mkt-tech .mkt-app-shortcuts__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); row-gap: 15px; }
  .mkt-tech .mkt-app-shortcuts__grid > a { display: grid; min-width: 0; justify-items: center; gap: 7px; color: #b7c1d5; font-size: 10px; text-align: center; }
  .mkt-tech .mkt-app-shortcuts__grid > a > span { width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .mkt-tech .mkt-app-shortcuts__icon {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(145deg, #5d84ff, #4265dc);
    box-shadow: 0 8px 18px rgba(56, 92, 204, .25), inset 0 1px rgba(255, 255, 255, .2);
  }
  .mkt-tech .mkt-app-shortcuts__icon svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
  .mkt-tech .mkt-app-shortcuts__icon--cyan { background: linear-gradient(145deg, #36d4e9, #209ac8); }
  .mkt-tech .mkt-app-shortcuts__icon--violet { background: linear-gradient(145deg, #8e75fb, #6350cf); }
  .mkt-tech .mkt-app-shortcuts__icon--indigo { background: linear-gradient(145deg, #647bf7, #3d53c9); }
  .mkt-tech .mkt-app-shortcuts__icon--orange { background: linear-gradient(145deg, #ffad62, #e97045); }
  .mkt-tech .mkt-app-shortcuts__icon--green { background: linear-gradient(145deg, #41dba6, #1ca977); }
  .mkt-tech .mkt-app-shortcuts__icon--rose { background: linear-gradient(145deg, #f077a4, #d94c80); }
  .mkt-tech .mkt-app-shortcuts__icon--sky { background: linear-gradient(145deg, #55c8ff, #3188de); }
  .mkt-tech .mkt-app-shortcuts__icon--purple { background: linear-gradient(145deg, #ac72ee, #7750c5); }
  .mkt-tech .mkt-app-shortcuts__icon--lime { background: linear-gradient(145deg, #85cf5b, #47a74b); }
  .mkt-tech.mkt-home .mkt-trust-strip { margin-top: 18px; }

  .mkt-tech .mkt-service-drawer__panel {
    color: #172033;
    border: 0;
    background: #f5f7fb;
  }
  .mkt-tech .mkt-drawer__panel .mkt-sheet__head h2 { color: #111827; }
  .mkt-tech .mkt-drawer__panel .mkt-sheet__head small { color: #5578e6; }
  .mkt-tech .mkt-drawer__panel .mkt-icon-btn { color: #253047; border-color: #dce3ee; background: #fff; }
  .mkt-tech .mkt-app-drawer-search { margin-top: 14px; border-color: #dce3ef; background: #fff; }
  .mkt-tech .mkt-app-drawer-search input { color: #172033; }
  .mkt-tech .mkt-app-drawer-search input::placeholder { color: #98a2b4; }
  .mkt-tech .mkt-app-drawer-title { margin-top: 20px; }
  .mkt-tech .mkt-app-drawer-title b { color: #172033; }
  .mkt-tech .mkt-app-drawer-title a { color: #5574d4; }
  .mkt-tech .mkt-drawer__services {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 15px 4px;
    margin: 0;
  }
  .mkt-tech .mkt-drawer__services a {
    display: grid;
    min-width: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: center;
  }
  .mkt-tech .mkt-drawer__services a:hover { border: 0; background: transparent; transform: none; }
  .mkt-tech .mkt-drawer__services a > i { grid-row: auto; width: 45px; height: 45px; border-radius: 14px; }
  .mkt-tech .mkt-drawer__services span { width: 100%; overflow: hidden; color: #2d3748; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
  .mkt-tech .mkt-drawer__services small { display: none; }
  .mkt-tech .mkt-app-more-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 15px 4px; }
  .mkt-tech .mkt-app-more-grid a {
    display: grid;
    min-width: 0;
    justify-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    color: #2d3748;
    background: transparent;
    text-align: center;
  }
  .mkt-tech .mkt-app-more-grid i { width: 42px; height: 42px; border-radius: 13px; color: #5574d4; background: #e7edff; }
  .mkt-tech .mkt-app-more-grid span { width: 100%; overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
  .mkt-tech .mkt-app-search-empty { color: #7a8599; }
  .mkt-tech .mkt-app-account-actions .mkt-btn--secondary { color: #27334a; border-color: #d9e1ee; background: #fff; }

  .mkt-tech .mkt-tabbar {
    grid-template-columns: repeat(5, 1fr);
    min-height: calc(68px + env(safe-area-inset-bottom));
    padding: 4px 5px env(safe-area-inset-bottom);
    border-top-color: #e0e5ed;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 -10px 30px rgba(28, 44, 77, .09);
  }
  .mkt-tech .mkt-tabbar > * { min-height: 58px; gap: 3px; color: #8a94a5; }
  .mkt-tech .mkt-tabbar span { display: grid; width: 27px; height: 27px; place-items: center; font-size: 0; }
  .mkt-tech .mkt-tabbar span svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .mkt-tech .mkt-tabbar b { font-size: 10px; }
  .mkt-tech .mkt-tabbar .is-active { color: #315fe0; }
  .mkt-tech .mkt-tabbar .is-active span { filter: none; }
  .mkt-tech .mkt-tabbar__consult { color: #355fd6; }
  .mkt-tech .mkt-tabbar__consult span {
    width: 45px;
    height: 45px;
    margin-top: -17px;
    border: 4px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, #6488ff, #4267e8);
    box-shadow: 0 9px 22px rgba(53, 91, 213, .32);
  }
  .mkt-tech .mkt-tabbar__consult span svg { width: 21px; }
  .mkt-tech .mkt-tabbar__consult b { margin-top: -4px; color: #315fd8; }
  .mkt-tech .mkt-mobile-offer { bottom: calc(68px + env(safe-area-inset-bottom)); }

  /* Real article data uses desktop inline flex styles; force an app card feed on phones. */
  .mkt-tech[data-page="/articles"] .eng-block > .container > .grid { grid-template-columns: 1fr !important; }
  .mkt-tech[data-page="/articles"] .eng-block aside { display: none; }
  .mkt-tech[data-page="/articles"] #qibArtList > a.card {
    display: grid !important;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 0 !important;
    overflow: hidden;
    border-radius: 17px;
  }
  .mkt-tech[data-page="/articles"] #qibArtList > a.card > div:first-child {
    width: 112px !important;
    min-height: 100%;
    aspect-ratio: auto !important;
  }
  .mkt-tech[data-page="/articles"] #qibArtList .card-body { min-width: 0; padding: 15px; }
  .mkt-tech[data-page="/articles"] #qibArtList h3 { display: -webkit-box; overflow: hidden; font-size: 15px !important; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
  .mkt-tech[data-page="/articles"] #qibArtList p { display: none; }
}

@media (max-width: 390px) {
  .mkt-tech .mkt-app-shortcuts__icon { width: 40px; height: 40px; border-radius: 13px; }
  .mkt-tech .mkt-app-shortcuts__icon svg { width: 20px; }
  .mkt-tech .mkt-drawer__services a > i { width: 42px; height: 42px; }
  .mkt-tech .mkt-app-more-grid i { width: 39px; height: 39px; }
}

@media (max-width: 820px) {
  .mkt-tech .mkt-consult-hint { display: none !important; }
  .mkt-tech .mkt-app-drawer-search input,
  .mkt-tech .mkt-brief-form input,
  .mkt-tech .mkt-brief-form select,
  .mkt-tech .mkt-brief-form textarea,
  .mkt-tech .mkt-lead-form input,
  .mkt-tech .mkt-lead-form select { font-size: 16px; }

  .mkt-tech.mkt-service-detail .mkt-tabbar { display: none; }
  .mkt-tech.mkt-service-detail .mkt-mobile-offer {
    bottom: 0;
    display: grid;
    min-height: calc(68px + env(safe-area-inset-bottom));
    grid-template-columns: auto minmax(76px, 1fr) auto;
    gap: 10px;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    border-top-color: #e0e5ed;
    color: #172033;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 -10px 30px rgba(28, 44, 77, .09);
  }
  .mkt-tech .mkt-mobile-offer__nav { display: flex; align-items: center; gap: 3px; }
  .mkt-tech .mkt-mobile-offer__nav > * {
    display: grid;
    width: 42px;
    min-height: 48px;
    place-items: center;
    align-content: center;
    gap: 2px;
    padding: 0;
    border: 0;
    color: #7d8798;
    background: transparent;
  }
  .mkt-tech .mkt-mobile-offer__nav svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .mkt-tech .mkt-mobile-offer__nav span { font-size: 9px; }
  .mkt-tech.mkt-service-detail .mkt-mobile-offer > div > small { color: #7d8798; }
  .mkt-tech.mkt-service-detail .mkt-mobile-offer > div > b { color: #172033; }
  .mkt-tech.mkt-service-detail .mkt-mobile-offer > .mkt-btn { min-width: 102px; min-height: 48px; }
}
