/* Shared product / catalog styles for Lumo site */
:root {
  --page-bg: #f5f5f7;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(29,29,31,.12);
  --blue: #0071e3;
  --panel: #ffffff;
  --dark: #111114;
  --max: 1120px;
  --radius: 24px;
}

.catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.catalog-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 280px;
  padding: 14px 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(29,29,31,.04);
  overflow: hidden;
}
.catalog-card__media {
  margin: -2px -2px 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #f2f4f8;
}
.catalog-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalog-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-inline: 8px;
}
.catalog-card__tags span {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f5f5f7;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}
.catalog-card h3 {
  margin: 0;
  padding-inline: 8px;
  font-size: clamp(22px, 2.8vw, 28px);
  letter-spacing: -.04em;
  font-weight: 650;
  color: var(--ink);
}
.catalog-card p {
  margin: 0;
  padding-inline: 8px;
  color: #5c5c66;
  font-size: 16px;
  line-height: 1.5;
  flex: 1;
}
.catalog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 14px;
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
  flex: 1;
}
.catalog-card__meta > div {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}
.catalog-card__meta span {
  display: inline;
  color: #8a8a93;
  font-size: 12px;
  margin: 0;
}
.catalog-card__meta b {
  display: inline;
  font-size: 13px;
  letter-spacing: -.01em;
  color: var(--ink);
  font-weight: 650;
}
.catalog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-inline: 8px;
  margin-top: auto;
  padding-top: 8px;
}
.catalog-card .button {
  align-self: center;
  flex: 0 0 auto;
  margin: 0;
  min-height: 40px;
  padding: 0 14px 0 16px;
  border-radius: 999px;
  background: var(--blue) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: 0 10px 22px rgba(0,113,227,.28) !important;
  font-size: 13px;
  gap: 10px;
}
.catalog-card .button::before { display: none; }
.catalog-card .button__icon {
  width: 26px !important;
  height: 26px !important;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    linear-gradient(160deg, rgba(255,255,255,.3), transparent 50%),
    linear-gradient(180deg, #2a2a32, #0f0f14) !important;
  box-shadow:
    0 4px 10px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.35),
    inset 0 -2px 4px rgba(0,0,0,.4) !important;
  color: #fff !important;
  font-size: 0 !important;
}
.catalog-card .button__icon svg {
  width: 12px;
  height: 12px;
  display: block;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.25));
}

.tasks--4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.tasks--4 .task {
  min-height: 220px;
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.offer {
  margin: 28px 0;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.16);
  background: var(--dark);
  color: #f5f5f7;
  display: grid;
  gap: 18px;
}
.offer h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -.04em;
}
.offer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
  align-items: end;
}
.offer__item span {
  display: block;
  color: #a1a1a6;
  font-size: 12px;
  margin-bottom: 4px;
}
.offer__item b {
  font-size: 22px;
  letter-spacing: -.03em;
}
.offer .button {
  background: var(--blue) !important;
  color: #fff !important;
  border: 0 !important;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
}
.platforms a,
.platforms span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(0,113,227,.12);
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
  border: 1px solid rgba(0,113,227,.2);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.feature-card {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
}
.feature-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -.03em;
}
.feature-card p,
.feature-card li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.feature-card ul {
  margin: 0;
  padding-left: 18px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
}
.check-list li::before {
  content: "✓";
  color: #34c759;
  font-weight: 700;
}
.check-list li.is-no::before {
  content: "✕";
  color: #c0392b;
}

.page-hero {
  padding: 120px 0 48px;
  background: #fff;
}
.page-hero h1 {
  margin: 12px 0 14px;
  max-width: 900px;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: -.055em;
  color: var(--ink);
}
.page-hero p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}
.page-section {
  padding: 36px 0;
  background: var(--page-bg);
}
.page-section--white { background: #fff; }
.page-section h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -.045em;
  color: var(--ink);
}
.content-block {
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.content-block h3 {
  margin: 22px 0 8px;
  color: var(--ink);
  font-size: 18px;
}
.content-block ul { padding-left: 18px; }

.mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.mini-nav a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
}

@media (max-width: 900px) {
  .catalog,
  .tasks--4,
  .feature-grid,
  .offer__grid {
    grid-template-columns: 1fr;
  }
}

/* Interactive roadmap / chatbot-scheme */
.roadmap-board {
  position: relative;
  min-height: 560px;
  height: clamp(520px, 58vw, 640px);
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 18%, rgba(0,113,227,.08), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(155,124,255,.1), transparent 30%),
    linear-gradient(180deg, #fff, #f7f8fb);
  overflow: hidden;
  touch-action: none;
  user-select: none;
}
.roadmap-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}
.roadmap-svg path {
  fill: none;
  stroke: #c2cad6;
  stroke-width: 1.5;
  stroke-linecap: round;
}
.roadmap-svg .roadmap-edge-label {
  fill: #6a7384;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.roadmap-svg .roadmap-edge-pill {
  fill: #fff;
  stroke: rgba(29,29,31,.1);
  stroke-width: 1;
}
.roadmap-node {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  min-width: 148px;
  max-width: 190px;
  padding: 12px 14px 12px 12px;
  border: 1px solid rgba(40,55,90,.12);
  border-radius: 16px;
  background: #fff;
  box-shadow:
    0 12px 28px rgba(40,55,90,.1),
    inset 0 1px 0 rgba(255,255,255,.95);
  color: #2c3340;
  cursor: grab;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}
.roadmap-node:active,
.roadmap-node.is-dragging {
  cursor: grabbing;
  z-index: 3;
  box-shadow:
    0 18px 40px rgba(40,55,90,.18),
    inset 0 1px 0 rgba(255,255,255,.95);
}
.roadmap-node__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(80,110,180,.1);
  color: #5b6f9a;
}
.roadmap-node__icon svg {
  width: 14px;
  height: 14px;
  display: block;
}
.roadmap-node__copy { min-width: 0; }
.roadmap-node__copy b {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.25;
}
.roadmap-node__copy span {
  display: block;
  margin-top: 3px;
  color: #7a8496;
  font-size: 11px;
  line-height: 1.35;
}
.roadmap-node--start {
  border-color: rgba(46,170,90,.28);
  background: linear-gradient(180deg, #43d07a, #2fbf65);
  color: #fff;
  box-shadow: 0 12px 28px rgba(47,191,101,.22);
}
.roadmap-node--start .roadmap-node__icon {
  background: rgba(255,255,255,.22);
  color: #fff;
}
.roadmap-node--start .roadmap-node__copy span { color: rgba(255,255,255,.85); }
.roadmap-node--end {
  border-color: rgba(0,113,227,.28);
  background: linear-gradient(180deg, #2f86ef, #0071e3);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,113,227,.22);
}
.roadmap-node--end .roadmap-node__icon {
  background: rgba(255,255,255,.22);
  color: #fff;
}
.roadmap-node--end .roadmap-node__copy span { color: rgba(255,255,255,.85); }

@media (max-width: 760px) {
  .roadmap-board {
    min-height: 720px;
    height: 760px;
  }
  .roadmap-node {
    min-width: 132px;
    max-width: 156px;
    padding: 10px 11px;
  }
  .roadmap-node__copy b { font-size: 12px; }
  .roadmap-svg .roadmap-edge-label { font-size: 10px; }
}

/* ===== Service / product pages (ChatLabs-inspired layout) ===== */
body.svc-page {
  margin: 0;
  background: #f4f6fa;
  color: var(--ink);
  font-family: Manrope, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
.svc-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(29,29,31,.08);
}
.svc-topbar__inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.svc-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  font-weight: 760;
  font-size: 16px;
  letter-spacing: -.02em;
}
.svc-brand img { width: 24px; height: 24px; }
.svc-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.svc-nav a {
  color: #6e6e73;
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
}
.svc-nav a:hover { color: var(--ink); }
.svc-nav__cta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff !important;
}
.svc-wrap { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }

.svc-hero {
  padding: 28px 0 12px;
}
.svc-hero--fill {
  padding: 28px 0 18px;
}
.svc-hero--fill .svc-hero__panel {
  padding: 48px 48px;
  gap: 32px;
  overflow: visible;
}
.svc-hero--fill h1 {
  font-size: clamp(36px, 5vw, 56px);
}
.svc-hero--fill .svc-hero__lead {
  font-size: 17px;
  margin-bottom: 24px;
}
.svc-hero--fill .svc-hero__visual {
  min-height: 400px;
  overflow: visible;
  padding: 28px 20px 20px;
}
.svc-hero--fill .svc-monitor {
  width: min(400px, 94%);
}
.svc-hero--fill .svc-laptop {
  width: min(440px, 96%);
}
.svc-hero--fill .svc-blast-ui {
  padding: 12px 14px;
  gap: 9px;
  font-size: 10px;
}
.svc-hero--fill .svc-blast-ui__top b { font-size: 11px; }
.svc-hero--fill .svc-blast-ui__stats strong { font-size: 13px; }
.svc-hero__panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
  padding: 42px 44px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 18%, rgba(0,113,227,.16), transparent 34%),
    radial-gradient(circle at 12% 86%, rgba(92,168,255,.14), transparent 36%),
    linear-gradient(165deg, #eaf2ff, #f5f8fc 48%, #edf2f9);
  border: 1px solid rgba(0,113,227,.1);
  overflow: hidden;
}
.svc-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  color: #7a8496;
  font-size: 12px;
  font-weight: 600;
}
.svc-crumbs a { color: inherit; text-decoration: none; }
.svc-crumbs a:hover { color: var(--blue); }
.svc-hero h1 {
  margin: 0 0 14px;
  max-width: 14ch;
  font-size: clamp(34px, 4.8vw, 52px);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 780;
}
.svc-hero__lead {
  margin: 0 0 22px;
  max-width: 46ch;
  color: #5c6678;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}
.svc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.svc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 0;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0,113,227,.28);
}
.svc-btn--ghost {
  background: #fff;
  color: var(--blue);
  border: 1px solid rgba(0,113,227,.28);
  box-shadow: none;
}
.svc-btn__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    linear-gradient(160deg, rgba(255,255,255,.3), transparent 50%),
    linear-gradient(180deg, #2a2a32, #0f0f14);
  box-shadow:
    0 4px 10px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.35),
    inset 0 -2px 4px rgba(0,0,0,.4);
}
.svc-btn__icon svg { width: 12px; height: 12px; display: block; color: #fff; }
.svc-btn--ghost .svc-btn__icon {
  background:
    linear-gradient(160deg, rgba(255,255,255,.35), transparent 50%),
    linear-gradient(180deg, #3a8ff0, #0071e3);
}
.svc-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-platforms span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(29,29,31,.08);
  color: #5c6678;
  font-size: 12px;
  font-weight: 700;
}

.svc-hero__visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}
.svc-phone {
  width: min(248px, 72%);
  aspect-ratio: 9 / 19.2;
  border-radius: 34px;
  border: 8px solid #1d1d1f;
  background: #fff;
  box-shadow: 0 28px 60px rgba(29,45,80,.22);
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.svc-phone__notch {
  display: none;
}
.svc-phone__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 12px 8px;
  border-bottom: 1px solid rgba(29,29,31,.06);
  flex: 0 0 auto;
}
.svc-phone__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: #eef4ff;
  flex: 0 0 auto;
  overflow: hidden;
  color: inherit;
  font-size: 0;
  line-height: 0;
}
.svc-phone__avatar img {
  display: block;
  width: 15px;
  height: 15px;
  margin: 0 auto;
  object-fit: contain;
}
.svc-phone__meta {
  min-width: 0;
  display: grid;
  gap: 1px;
}
.svc-phone__meta b {
  display: block;
  color: #1d1d1f;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.svc-phone__status {
  display: block;
  color: #34c759;
  font-size: 9px;
  font-weight: 650;
  line-height: 1.2;
}
.svc-phone__head b {
  display: block;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: -.02em;
}
.svc-phone__screen {
  padding: 8px 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 0, rgba(0,113,227,.05), transparent 42%),
    #f4f6fa;
}
.svc-phone__screen > .svc-phone-bar {
  margin-top: auto;
}
.svc-bubble {
  position: relative;
  max-width: 88%;
  padding: 7px 9px 5px;
  border-radius: 14px;
  font-size: 9px;
  line-height: 1.35;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(29,45,80,.06);
}
.svc-bubble__time {
  display: block;
  margin-top: 3px;
  text-align: right;
  font-size: 7px;
  font-weight: 650;
  opacity: .55;
  letter-spacing: -.01em;
}
.svc-bubble--bot {
  background: #fff;
  color: #2c3340;
  border: 1px solid rgba(29,29,31,.06);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.svc-bubble--user {
  margin-left: auto;
  background: linear-gradient(180deg, #2f84ef, #0071e3);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.svc-bubble--user .svc-bubble__time {
  color: rgba(255,255,255,.8);
  opacity: 1;
}
.svc-bubble--user .svc-bubble__time::after {
  content: " ✓✓";
  letter-spacing: -.08em;
}
.svc-phone__msg {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 5px;
  width: max-content;
  max-width: 88%;
  align-self: flex-start;
}
.svc-phone__msg .svc-bubble {
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
}
.svc-phone__msg .svc-bubble .svc-bubble__time {
  white-space: nowrap;
}
.svc-phone__msg .svc-phone__btns {
  contain: inline-size;
  width: 100%;
  max-width: none;
  margin-top: 0;
  overflow: hidden;
  box-sizing: border-box;
  display: grid;
  gap: 5px;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}
.svc-phone__msg .svc-phone__btns--stack {
  grid-auto-flow: row;
  grid-auto-columns: unset;
}
.svc-phone__msg .svc-phone__btn {
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 9px;
  padding: 5px 8px;
}
.svc-phone__msg .svc-phone__btns--stack .svc-phone__btn {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.svc-phone__btns {
  display: grid;
  gap: 5px;
  margin-top: 2px;
  align-self: flex-start;
}
.svc-phone__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 12px;
  background: #fff;
  color: #0071e3;
  border: 1px solid rgba(0,113,227,.22);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: -.01em;
  text-align: center;
  box-shadow: 0 1px 2px rgba(29,45,80,.05);
  line-height: 1.2;
}
.svc-phone-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  padding-top: 4px;
  border-top: 0;
  flex: 0 0 auto;
}
.svc-phone-bar__attach,
.svc-phone-bar__emoji {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #8a8a93;
  background: #fff;
  border: 1px solid rgba(29,29,31,.08);
  font-size: 10px;
  line-height: 1;
  font-style: normal;
  font-weight: 700;
}
.svc-phone-bar__input {
  flex: 1;
  min-height: 26px;
  border-radius: 16px;
  border: 1px solid rgba(29,29,31,.1);
  background: #fff;
  color: #8a8a93;
  font-size: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 0 10px;
  box-shadow: 0 1px 2px rgba(29,45,80,.04);
}
.svc-phone-bar__send {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0071e3;
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  box-shadow: 0 4px 10px rgba(0,113,227,.28);
}
.svc-phone-bar__send svg {
  width: 11px;
  height: 11px;
}
.svc-phone-card {
  border: 1px solid rgba(29,29,31,.1);
  border-radius: 12px;
  background: #f7f9fc;
  padding: 8px 9px;
  display: grid;
  gap: 4px;
}
.svc-phone-card__kicker {
  color: #8a8a93;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.svc-phone-card__title {
  color: #111113;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: -.02em;
  line-height: 1.25;
}
.svc-phone-card__text {
  color: #5c5c66;
  font-size: 9px;
  line-height: 1.35;
  font-weight: 600;
}
.svc-phone-card__price {
  color: #0071e3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.svc-phone-card__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
  color: #8a8a93;
  font-size: 8px;
  font-weight: 650;
}
.svc-phone-promo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 2px;
}
.svc-phone-promo span {
  display: grid;
  place-items: center;
  min-height: 26px;
  border-radius: 8px;
  border: 1px solid rgba(29,29,31,.1);
  background: #fff;
  color: #5c5c66;
  font-size: 9px;
  font-weight: 750;
}
.svc-phone-promo span.is-win {
  border-color: rgba(0,113,227,.35);
  background: linear-gradient(180deg, #eaf3ff, #d7e8ff);
  color: #0071e3;
  box-shadow: 0 0 0 2px rgba(0,113,227,.12);
}
.svc-phones {
  position: relative;
  width: min(420px, 100%);
  height: 460px;
  display: grid;
  place-items: center;
}
.svc-phones .svc-phone {
  position: absolute;
  width: min(210px, 58%);
}
.svc-phones .svc-phone:nth-child(1) {
  left: 4%;
  top: 8%;
  transform: rotate(-6deg);
  z-index: 1;
  opacity: .92;
}
.svc-phones .svc-phone:nth-child(2) {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 3;
  width: min(232px, 64%);
}
.svc-phones .svc-phone:nth-child(3) {
  right: 4%;
  top: 10%;
  transform: rotate(6deg);
  z-index: 2;
  opacity: .92;
}
.svc-phones .svc-phone .svc-phone__screen {
  max-height: calc(100% - 58px);
}
@media (max-width: 980px) {
  .svc-phones {
    height: 400px;
    width: min(360px, 100%);
  }
}
.svc-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 210px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.06);
  box-shadow: 0 14px 34px rgba(40,55,90,.12);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.svc-chip__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0,113,227,.12);
  color: var(--blue);
}
.svc-chip__icon svg { width: 16px; height: 16px; }
.svc-chip--1 { left: 0; top: 18%; }
.svc-chip--2 { right: 0; top: 42%; }
.svc-chip--3 { left: 4%; bottom: 14%; }
.svc-hero--fill .svc-chip--1 { left: -18%; top: 10%; }
.svc-hero--fill .svc-chip--2 { right: 2%; top: 36%; }
.svc-hero--fill .svc-chip--3 { left: -14%; bottom: 6%; }

.svc-section {
  padding: 56px 0;
}
.svc-section--white { background: #fff; }
.svc-section__head {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}
.svc-section__head .kicker {
  color: #7a8496;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 750;
}
.svc-section__head h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -.04em;
  font-weight: 780;
}
.svc-section__head p {
  margin: 12px auto 0;
  max-width: 54ch;
  color: #6e6e73;
  font-size: 15px;
  line-height: 1.55;
}

.svc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.svc-grid-types {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.svc-grid-types .svc-card {
  grid-column: span 2;
}
.svc-grid-types .svc-card:nth-child(4) {
  grid-column: 2 / span 2;
}
.svc-grid-types .svc-card:nth-child(5) {
  grid-column: 4 / span 2;
}
.svc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.svc-card {
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.08);
  box-shadow: 0 10px 28px rgba(29,45,80,.05);
}
.svc-section--white .svc-card {
  background: #f7f9fc;
}
.svc-card__media {
  margin: -8px -8px 16px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #eaf1fb;
}
.svc-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -.03em;
  font-weight: 750;
}
.svc-card p {
  margin: 0;
  color: #6e6e73;
  font-size: 14px;
  line-height: 1.55;
}
.svc-card__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0,113,227,.12);
  color: var(--blue);
}
.svc-card__icon svg { width: 20px; height: 20px; }

.svc-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.svc-step {
  position: relative;
  padding: 18px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.08);
}
.svc-step__num {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 22px;
  margin-bottom: 12px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(0,113,227,.1);
  color: var(--blue);
  font-size: 11px;
  font-weight: 780;
}
.svc-step h3 {
  margin: 0 0 6px;
  font-size: 15px;
  letter-spacing: -.02em;
}
.svc-step p {
  margin: 0;
  color: #6e6e73;
  font-size: 12px;
  line-height: 1.45;
}

.svc-price {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.svc-price--single {
  grid-template-columns: 1fr;
  justify-content: stretch;
}
.svc-price--single .svc-price__card {
  padding: 36px 40px 32px;
  border-radius: 28px;
  gap: 18px;
  min-height: 280px;
}
.svc-price--single .svc-price__card h3 {
  font-size: 28px;
  letter-spacing: -.04em;
}
.svc-price--single .svc-price__card p {
  font-size: 16px;
  line-height: 1.55;
  max-width: 52ch;
}
.svc-price--single .svc-price__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  align-items: end;
  gap: 18px 28px;
  padding-top: 18px;
  margin-top: 4px;
}
.svc-price--single .svc-price__meta span {
  font-size: 13px;
  margin-bottom: 4px;
}
.svc-price--single .svc-price__meta b {
  font-size: 28px;
  letter-spacing: -.04em;
}
.svc-price--single .svc-price__meta .svc-btn {
  align-self: end;
  justify-self: end;
  min-width: 180px;
  margin: 0;
}

.svc-section__head--left {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
  max-width: none;
}
.svc-compare {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid rgba(29,29,31,.12);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.svc-compare__head,
.svc-compare__row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(100px, .7fr) minmax(100px, .7fr);
  align-items: center;
  column-gap: 12px;
}
.svc-compare__head {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(29,29,31,.1);
  background: #f7f9fc;
}
.svc-compare__feature-col { min-height: 1px; }
.svc-compare__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  min-height: 42px;
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid rgba(29,29,31,.12);
  background: #fff;
  box-shadow: 0 4px 14px rgba(29,45,80,.06);
  font-size: 14px;
  font-weight: 750;
  color: #1d1d1f;
}
.svc-compare__brand--lumo {
  border-color: rgba(0,113,227,.22);
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
  box-shadow: 0 6px 16px rgba(0,113,227,.1);
}
.svc-compare__salebot,
.svc-compare__other {
  letter-spacing: -.02em;
  color: #2f6fed;
}
.svc-compare__other {
  display: block;
  max-width: 9em;
  margin: 0 auto;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  text-transform: lowercase;
}
.svc-compare__brand--lumo img {
  width: 22px;
  height: 22px;
}
.svc-compare__row {
  position: relative;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(29,29,31,.08);
}
.svc-compare__row:last-child { border-bottom: 0; }
.svc-compare__label {
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -.01em;
  color: #1d1d1f;
  line-height: 1.35;
  padding-right: 12px;
}
.svc-compare__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 40px;
}
.svc-compare__yes,
.svc-compare__no {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  position: relative;
  flex: 0 0 28px;
}
.svc-compare__yes {
  background: #22c55e;
  box-shadow: 0 4px 10px rgba(34,197,94,.28);
}
.svc-compare__yes::before {
  content: "";
  width: 12px;
  height: 7px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}
.svc-compare__no {
  background: rgba(239,68,68,.1);
  color: #ef4444;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.svc-compare__no::before { content: "×"; }
.svc-compare__row--hl {
  margin: 6px 0 10px;
  padding: 14px 18px;
  border: 0;
  border-bottom: 0;
  border-radius: 0;
  background: transparent;
}
.svc-compare__row--hl::before {
  content: "";
  position: absolute;
  inset: 0 10px;
  border: 1.5px dashed rgba(29,29,31,.28);
  border-radius: 12px;
  background: #f4f6fa;
  pointer-events: none;
  z-index: 0;
}
.svc-compare__row--hl > * {
  position: relative;
  z-index: 1;
}
.svc-compare__note {
  max-width: 820px;
  margin: 18px auto 0;
  color: #5c6678;
  font-size: 15px;
  line-height: 1.55;
  text-align: left;
}
@media (max-width: 700px) {
  .svc-compare__head,
  .svc-compare__row {
    grid-template-columns: minmax(0, 1.3fr) 64px 64px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .svc-compare__brand {
    padding: 6px 8px;
    font-size: 12px;
  }
  .svc-compare__brand--lumo span { display: none; }
  .svc-compare__label { font-size: 13px; }
  .svc-compare__row--hl { margin: 4px 0 8px; }
  .svc-compare__row--hl::before { inset: 0 6px; }
}
.svc-price__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.08);
}
.svc-price__card--accent {
  background: linear-gradient(165deg, #1d1d1f, #2a2f3a);
  color: #fff;
  border-color: transparent;
}
.svc-price__card h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -.03em;
}
.svc-price__card p {
  margin: 0;
  color: #6e6e73;
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
}
.svc-price__card--accent p { color: #c7c7cc; }
.svc-price__meta {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(29,29,31,.08);
}
.svc-price__card--accent .svc-price__meta { border-top-color: rgba(255,255,255,.12); }
.svc-price__meta span {
  display: block;
  color: #8a8a93;
  font-size: 12px;
  margin-bottom: 2px;
}
.svc-price__meta b {
  font-size: 20px;
  letter-spacing: -.03em;
}
.svc-price__card--accent .svc-price__meta span { color: #a1a1a6; }

/* Numbered scheme list */
.svc-scheme-list {
  display: grid;
  gap: 12px;
}
.svc-scheme {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.08);
}
.svc-scheme__num {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(160deg, #eaf3ff, #d7e8ff);
  color: #0071e3;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.04em;
}
.svc-scheme h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -.03em;
}
.svc-scheme p {
  margin: 0;
  color: #6e6e73;
  font-size: 15px;
  line-height: 1.5;
}

/* Capability flow (not 3 plain cards) */
.svc-cap-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  padding: 8px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 20%, rgba(0,113,227,.1), transparent 36%),
    radial-gradient(circle at 88% 80%, rgba(92,168,255,.14), transparent 40%),
    linear-gradient(135deg, #f7f9fc, #eef4ff);
  border: 1px solid rgba(0,113,227,.12);
  overflow: hidden;
}
.svc-cap-flow__item {
  padding: 28px 24px;
  min-width: 0;
}
.svc-cap-flow__item b {
  display: block;
  margin-bottom: 16px;
  color: #0071e3;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}
.svc-cap-flow__item h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -.03em;
}
.svc-cap-flow__item p {
  margin: 0;
  color: #5c5c66;
  font-size: 15px;
  line-height: 1.5;
}
.svc-cap-flow__arrow {
  width: 1px;
  margin: 22px 0;
  background: linear-gradient(180deg, transparent, rgba(0,113,227,.28), transparent);
  position: relative;
}
.svc-cap-flow__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-right: 2px solid #0071e3;
  border-bottom: 2px solid #0071e3;
  transform: rotate(-45deg);
  opacity: .55;
  background: transparent;
}

/* Unified price band */
.svc-price-band {
  display: grid;
  gap: 22px;
  padding: 10px 10px 22px;
  border-radius: 28px;
  background: linear-gradient(90deg, #ffffff 0%, #f3f8ff 28%, #cfe3ff 62%, #7eb4f2 100%);
  border: 0;
  outline: none;
  box-shadow: 0 18px 40px rgba(29,45,80,.08);
  overflow: hidden;
}
.svc-price-band__tiers {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
}
.svc-price-band__tier {
  padding: 22px 16px 16px;
  min-width: 0;
}
.svc-price-band__tier h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -.03em;
  color: #111113;
}
.svc-price-band__tier p {
  margin: 0 0 16px;
  color: #4a4a52;
  font-size: 13px;
  line-height: 1.5;
  min-height: 3.2em;
}
.svc-price-band__tier .svc-price__meta {
  border-top-color: rgba(29,29,31,.1);
}
.svc-price-band__tier .svc-price__meta b { color: #111113; }
.svc-price-band__sep {
  width: 1px;
  margin: 20px 0;
  background: linear-gradient(180deg, transparent, rgba(17,17,19,.22), transparent);
}
.svc-price-band > .svc-btn {
  justify-self: center;
  min-width: min(100%, 360px);
}

/* Autofunnels block on chat-boty */
#avtovoronki {
  scroll-margin-top: 80px;
}
.svc-funnel-why {
  margin-top: 8px;
  padding: 28px 0 0;
}
.svc-funnel-why h3 {
  margin: 0 0 6px;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -.04em;
  color: #111113;
}
.svc-funnel-why__sub {
  margin: 0 0 22px;
  color: #6e6e73;
  font-size: 16px;
}
.svc-funnel-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.svc-funnel-matrix article {
  position: relative;
  padding: 26px 24px 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.08);
  box-shadow: 0 10px 28px rgba(29,45,80,.05);
  overflow: hidden;
}
.svc-funnel-matrix article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #0071e3, #5aa7f0);
  border-radius: 3px 0 0 3px;
}
.svc-funnel-matrix__num {
  display: block;
  margin-bottom: 14px;
  color: #0071e3;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}
.svc-funnel-matrix h4 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -.03em;
  font-weight: 750;
  color: #111113;
}
.svc-funnel-matrix p {
  margin: 0;
  color: #5c5c66;
  font-size: 14px;
  line-height: 1.55;
}
.svc-funnel-extra {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 28px;
}
.svc-funnel-extra__col {
  padding: 24px 26px;
  border-radius: 22px;
  background: #f7f9fc;
  border: 1px solid rgba(29,29,31,.08);
}
.svc-funnel-extra__col h3 {
  margin: 0 0 14px;
  font-size: 18px;
  letter-spacing: -.03em;
}
.svc-funnel-extra__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.svc-funnel-extra__col li {
  position: relative;
  padding-left: 16px;
  color: #4a4a52;
  font-size: 14px;
  line-height: 1.45;
}
.svc-funnel-extra__col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0071e3;
}
.svc-funnel-timing {
  margin-top: 22px;
  padding: 24px 26px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.08);
}
.svc-funnel-timing h3 {
  margin: 0 0 16px;
  font-size: 18px;
  letter-spacing: -.03em;
}
.svc-funnel-timing__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.svc-funnel-timing__row > div {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f7f9fc;
}
.svc-funnel-timing__row span {
  color: #6e6e73;
  font-size: 13px;
}
.svc-funnel-timing__row b {
  font-size: 16px;
  letter-spacing: -.02em;
  color: #111113;
}

/* Form channels on service pages */
.svc-field--channels {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.svc-field--channels legend {
  margin-bottom: 10px;
  color: #a1a1a6;
  font-size: 13px;
  font-weight: 600;
}
.svc-channel-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-channel {
  cursor: pointer;
}
.svc-channel input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.svc-channel span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: #f0f0f3;
  font-size: 13px;
  font-weight: 650;
}
.svc-channel input:checked + span {
  border-color: transparent;
  background: #0071e3;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,113,227,.35);
}
.svc-channel input:focus-visible + span {
  outline: 2px solid #5ca8ff;
  outline-offset: 2px;
}


.svc-faq {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}
.svc-faq details {
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.08);
  padding: 16px 18px;
}
.svc-faq summary {
  cursor: pointer;
  font-weight: 720;
  letter-spacing: -.02em;
  list-style: none;
}
.svc-faq summary::-webkit-details-marker { display: none; }
.svc-faq details p {
  margin: 10px 0 0;
  color: #6e6e73;
  font-size: 14px;
  line-height: 1.55;
}

.svc-contact {
  padding: 20px 0 72px;
}
.svc-contact__box {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  padding: 40px;
  border-radius: 28px;
  background: #111114;
  color: #f5f5f7;
}
.svc-contact__box h2 {
  margin: 8px 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -.04em;
}
.svc-contact__box > div > p {
  margin: 0;
  color: #d1d1d6;
  line-height: 1.55;
}
.svc-contact__offer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(165deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}
.svc-contact__offer span {
  display: block;
  margin-bottom: 4px;
  color: #a1a1a6;
  font-size: 12px;
  font-weight: 600;
}
.svc-contact__offer b {
  display: block;
  color: #f5f5f7;
  font-size: 22px;
  letter-spacing: -.03em;
  font-weight: 750;
}
.svc-form { display: grid; gap: 12px; }
.svc-field { display: grid; gap: 6px; }
.svc-field label { color: #d8d8de; font-size: 12px; font-weight: 650; }
.svc-field input,
.svc-field textarea {
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 12px;
  background: #1c1c22;
  color: #f5f5f7;
  padding: 12px 14px;
  font: inherit;
}
.svc-field textarea { min-height: 100px; resize: vertical; }
.svc-form .svc-btn { width: fit-content; }
.svc-form__status { min-height: 18px; color: #a7c8a2; font-size: 12px; }
.svc-form__status.is-error { color: #e08a8a; }
.svc-form__privacy { color: #b0b0b8; font-size: 11px; margin: 0; }
.svc-form-panel.is-done .svc-form { display: none; }
.svc-form-success {
  display: none;
  place-items: center;
  text-align: center;
  gap: 10px;
  min-height: 220px;
}
.svc-form-panel.is-done .svc-form-success { display: grid; }
#form-panel.is-done .svc-form { display: none; }
#form-panel.is-done .svc-form-success { display: grid; }

.svc-footer {
  padding: 24px 0 40px;
  color: #6e6e73;
  font-size: 12px;
}
.svc-footer a { color: inherit; }

.svc-day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-bottom: 14px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(0,113,227,.1);
  color: var(--blue);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: -.02em;
}
.svc-monitor {
  position: relative;
  z-index: 1;
  width: min(360px, 92%);
  display: grid;
  justify-items: center;
}
.svc-monitor__bezel {
  width: 100%;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(160deg, #2a2d34, #121316);
  box-shadow: 0 28px 50px rgba(29,45,80,.28);
}
.svc-monitor__screen {
  border-radius: 10px;
  overflow: hidden;
  background: #f4f6fa;
  aspect-ratio: 16 / 11;
}
.svc-monitor__stand {
  width: 54px;
  height: 28px;
  margin-top: -2px;
  background: linear-gradient(180deg, #c5c8d0, #9ea3ae);
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
}
.svc-monitor__base {
  width: 120px;
  height: 8px;
  border-radius: 999px;
  background: #8b909a;
  box-shadow: 0 8px 16px rgba(29,45,80,.18);
}
.svc-blast-ui {
  height: 100%;
  padding: 10px 12px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 8px;
  font-size: 9px;
}
.svc-blast-ui__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.svc-blast-ui__top b {
  font-size: 10px;
  letter-spacing: -.02em;
}
.svc-blast-ui__top span {
  color: #34c759;
  font-weight: 700;
}
.svc-blast-ui__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.svc-blast-ui__stats > div {
  padding: 7px 8px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.08);
}
.svc-blast-ui__stats small {
  display: block;
  color: #8a8a93;
  margin-bottom: 2px;
}
.svc-blast-ui__stats strong {
  font-size: 12px;
  letter-spacing: -.02em;
}
.svc-blast-ui__table {
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.08);
  overflow: hidden;
}
.svc-blast-ui__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr .7fr;
  gap: 6px;
  padding: 6px 8px;
  border-top: 1px solid rgba(29,29,31,.06);
  align-items: center;
}
.svc-blast-ui__row--head {
  border-top: 0;
  background: #f7f9fc;
  color: #8a8a93;
  font-weight: 700;
}
.svc-blast-ui__row .is-run { color: #0071e3; font-weight: 750; }
.svc-blast-ui__row .is-ok { color: #1f7a3f; font-weight: 750; }
.svc-blast-ui__row .is-wait { color: #8a5a10; font-weight: 750; }
.svc-blast-ui__compose {
  display: grid;
  gap: 6px;
}
.svc-blast-ui__draft {
  padding: 8px 10px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.08);
  color: #3a3a3c;
}
.svc-blast-ui__btns {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}
.svc-blast-ui__btns span {
  min-height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #eef2f8;
  font-weight: 750;
}
.svc-blast-ui__btns .is-primary {
  background: #0071e3;
  color: #fff;
}

.svc-flow {
  position: relative;
  display: grid;
  align-content: center;
  gap: 18px;
  justify-items: center;
  height: 420px;
  padding: 24px 20px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.08);
  box-shadow: 0 10px 28px rgba(29,45,80,.05);
  overflow: hidden;
}
.svc-flow__view {
  width: 100%;
  height: 100%;
  display: grid;
  gap: 16px;
  justify-items: center;
  align-content: center;
}
.svc-flow__view[hidden] { display: none !important; }
.svc-flow__line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.svc-flow__node {
  appearance: none;
  font: inherit;
  cursor: pointer;
  min-width: 118px;
  max-width: 148px;
  padding: 12px 12px 11px;
  border-radius: 16px;
  background: #f7f9fc;
  border: 1px solid rgba(29,29,31,.08);
  text-align: center;
  color: inherit;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.svc-flow__node:hover {
  transform: translateY(-2px);
  border-color: rgba(0,113,227,.35);
  box-shadow: 0 8px 18px rgba(0,113,227,.12);
}
.svc-flow__node:focus-visible {
  outline: 2px solid rgba(0,113,227,.45);
  outline-offset: 2px;
}
.svc-flow__node b {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: -.02em;
}
.svc-flow__node span {
  display: block;
  color: #6e6e73;
  font-size: 11px;
  line-height: 1.35;
}
.svc-flow__node--gate {
  background: #eef5ff;
  border-color: rgba(0,113,227,.18);
}
.svc-flow__node--split {
  background: #1d1d1f;
  border-color: transparent;
  color: #fff;
}
.svc-flow__node--split span { color: #c7c7cc; }
.svc-flow__node--offer {
  background: linear-gradient(165deg, #0071e3, #3a8ff0);
  border-color: transparent;
  color: #fff;
  min-width: 160px;
}
.svc-flow__node--offer span { color: rgba(255,255,255,.85); }
.svc-flow__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 520px);
}
.svc-flow__branch {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #f7f9fc;
  border: 1px dashed rgba(29,29,31,.12);
}
.svc-flow__tag {
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.svc-flow__tag--ok { color: #1f7a3f; }
.svc-flow__tag--miss { color: #a15c1a; }

.svc-flow__view--detail {
  align-content: start;
  gap: 14px;
  padding: 4px 4px 0;
}
.svc-flow__detail-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
}
.svc-flow__back {
  appearance: none;
  border: 1px solid rgba(29,29,31,.12);
  background: #f7f9fc;
  border-radius: 999px;
  min-height: 34px;
  padding: 0 14px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  flex: 0 0 auto;
}
.svc-flow__detail-when {
  color: #0071e3;
  font-size: 12px;
  font-weight: 750;
  margin-bottom: 4px;
}
.svc-flow__detail-top h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -.03em;
}
.svc-flow__detail-schema {
  width: 100%;
  display: grid;
  gap: 10px;
  align-content: start;
  overflow: auto;
  max-height: 300px;
  padding-right: 4px;
}
.svc-flow__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: 16px;
  background: #f7f9fc;
  border: 1px solid rgba(29,29,31,.06);
}
.svc-flow__chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.svc-flow__chip--arrow {
  background: transparent;
  border: 0;
  color: #8a8a93;
  min-height: auto;
  padding: 0 2px;
  font-weight: 800;
}
.svc-flow__chip--label {
  background: #eef5ff;
  border-color: rgba(0,113,227,.16);
  color: #0071e3;
  font-weight: 780;
}
.svc-flow__chip--soft {
  background: #eef5ff;
  border-color: rgba(0,113,227,.16);
  color: #0071e3;
}

.svc-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.svc-value {
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(29,29,31,.08);
  box-shadow: 0 10px 28px rgba(29,45,80,.05);
}
.svc-value b {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  letter-spacing: -.02em;
}
.svc-value p {
  margin: 0;
  color: #6e6e73;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .svc-hero__panel,
  .svc-contact__box,
  .svc-grid-3,
  .svc-grid-types,
  .svc-price,
  .svc-steps,
  .svc-values,
  .svc-cap-flow,
  .svc-price-band__tiers {
    grid-template-columns: 1fr;
  }
  .svc-price--single .svc-price__card {
    padding: 28px 22px;
    min-height: 0;
  }
  .svc-price--single .svc-price__meta {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .svc-price--single .svc-price__meta .svc-btn {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    min-width: 0;
  }
  .svc-price--single .svc-price__meta b {
    font-size: 24px;
  }
  .svc-cap-flow__arrow { display: none; }
  .svc-price-band__sep {
    width: auto;
    height: 1px;
    margin: 0 18px;
    background: linear-gradient(90deg, transparent, rgba(17,17,19,.18), transparent);
  }
  .svc-scheme { grid-template-columns: 56px 1fr; gap: 14px; padding: 18px; }
  .svc-grid-types .svc-card,
  .svc-grid-types .svc-card:nth-child(4),
  .svc-grid-types .svc-card:nth-child(5) {
    grid-column: auto;
  }
  .svc-grid-2 { grid-template-columns: 1fr; }
  .svc-funnel-matrix,
  .svc-funnel-extra,
  .svc-funnel-timing__row {
    grid-template-columns: 1fr;
  }
  .svc-hero__panel { padding: 28px 22px; }
  .svc-hero--fill .svc-hero__panel { padding: 28px 22px; }
  .svc-hero--fill .svc-hero__visual { min-height: 380px; }
  .svc-hero--fill .svc-monitor { width: min(340px, 92%); }
  .svc-hero h1 { max-width: none; }
  .svc-chip--1 { left: 4%; top: 8%; }
  .svc-chip--2 { right: 4%; top: auto; bottom: 28%; }
  .svc-chip--3 { display: none; }
  .svc-hero--fill .svc-chip--1 { left: 4%; top: 6%; }
  .svc-hero--fill .svc-chip--2 { right: 4%; bottom: 24%; }
  .svc-hero--fill .svc-hero__visual { padding: 20px 8px 12px; }
  .svc-hero__visual { min-height: 420px; }
  .svc-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc-flow__split { grid-template-columns: 1fr; width: 100%; }
  .svc-flow { height: 480px; }
  .svc-nav a:not(.svc-nav__cta) { display: none; }
}
