:root {
  --ink: #111418;
  --ink-2: #202730;
  --muted: #66717e;
  --paper: #ffffff;
  --soft: #f4f6f0;
  --line: #dfe5d7;
  --lime: #caff2f;
  --lime-2: #a6e800;
  --cyan: #16b8f3;
  --orange: #ff9f2d;
  --red: #ff625c;
  --green: #23c790;
  --shadow: 0 18px 46px rgba(17, 20, 24, 0.12);
  --radius: 8px;
  --shell: 1160px;
  --header: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  background: var(--paper);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 12px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 6px;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(17, 20, 24, 0.1);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 24px rgba(17, 20, 24, 0.08);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 18px;
  line-height: 1;
}

.brand-text {
  font-size: 21px;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  padding: 7px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #000000;
  border-color: var(--lime-2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover,
.btn:focus {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn-accent {
  color: var(--ink);
  background: var(--lime);
}

.btn-dark {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--lime-2);
}

.btn-light {
  color: var(--ink);
  background: var(--paper);
}

.btn-small {
  min-height: 42px;
  padding: 9px 13px;
  border-radius: 7px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 3px 3px 0 var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header) - 32px);
  background:
    linear-gradient(135deg, rgba(202, 255, 47, 0.28), transparent 36%),
    linear-gradient(180deg, #fbfff1 0%, #ffffff 74%);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(17, 20, 24, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 20, 24, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 80%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100svh - var(--header) - 32px);
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  gap: 34px;
  align-items: center;
  align-content: center;
  padding: 42px 0 36px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #537500;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #658800;
}

.hero h1 {
  margin: 0;
  font-size: 82px;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-motto {
  max-width: 640px;
  margin: 14px 0 0;
  font-size: 29px;
  font-weight: 950;
  line-height: 1.12;
}

.hero-lead {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--ink-2);
  font-size: 18px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-proof span {
  padding: 8px 11px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(17, 20, 24, 0.06);
  font-size: 13px;
  font-weight: 900;
}

.hero-panel {
  padding: 16px;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 10px 10px 0 var(--lime);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 2px 2px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-top strong {
  font-size: 15px;
}

.panel-top span {
  padding: 5px 9px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.flow-map {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
  gap: 8px;
  align-items: center;
  margin: 16px 0;
}

.flow-node {
  display: grid;
  min-height: 54px;
  place-items: center;
  padding: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: #26303a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.flow-node.active,
.flow-node.crm {
  color: var(--ink);
  background: var(--lime);
}

.flow-arrow {
  height: 2px;
  background: var(--lime);
  position: relative;
}

.flow-arrow::after {
  position: absolute;
  right: -1px;
  top: -4px;
  width: 0;
  height: 0;
  content: "";
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--lime);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 12px;
}

.dash-card {
  min-height: 142px;
  padding: 14px;
  background: #1b232c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.dash-card.wide {
  grid-row: span 2;
}

.dash-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 13px;
}

.dash-head span,
.dash-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.dash-head strong {
  color: var(--lime);
  font-size: 28px;
  line-height: 1;
}

.pipeline-line {
  display: grid;
  grid-template-columns: 1fr 70px 30px;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  font-size: 12px;
}

.pipeline-line i {
  display: block;
  height: 13px;
  border-radius: 99px;
}

.p1 {
  width: 96%;
  background: var(--lime);
}

.p2 {
  width: 75%;
  background: var(--cyan);
}

.p3 {
  width: 55%;
  background: var(--orange);
}

.p4 {
  width: 40%;
  background: var(--green);
}

.pipeline-line b {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.pipeline-line em {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  text-align: right;
}

.integration-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.integration-tags span {
  padding: 7px 8px;
  color: var(--paper);
  background: #303b47;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 850;
}

.chart-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.bars {
  display: flex;
  min-height: 80px;
  align-items: end;
  gap: 9px;
}

.bars i {
  display: block;
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--lime), var(--cyan));
}

.bar-1 {
  height: 42%;
}

.bar-2 {
  height: 64%;
}

.bar-3 {
  height: 54%;
}

.bar-4 {
  height: 88%;
}

.bar-5 {
  height: 76%;
}

.quick-strip {
  background: var(--ink);
  border-bottom: 1px solid var(--ink);
}

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

.strip-grid span {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 9px;
  color: var(--paper);
  background: #1c232a;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.strip-grid span:nth-child(2n) {
  background: #252d35;
}

.section {
  padding: 64px 0;
}

.compact-section {
  padding-top: 58px;
  background: var(--paper);
}

.split,
.section-head,
.contact-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-head {
  margin-bottom: 24px;
}

.section-head > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.result-list {
  display: grid;
  gap: 10px;
}

.result-list article {
  padding: 18px 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.result-list strong,
.service-table h3,
.package-card h3,
.process-list strong,
.tab-panel h3 {
  display: block;
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.22;
}

.result-list p,
.service-table p,
.package-card p,
.process-list p,
.tab-panel p {
  margin: 0;
  color: var(--muted);
}

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

.service-table {
  display: grid;
  gap: 10px;
}

.service-table article {
  display: grid;
  grid-template-columns: 54px minmax(220px, 0.46fr) 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-table span,
.process-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 3px 3px 0 var(--ink);
  font-weight: 950;
}

.bitrix-section {
  color: var(--paper);
  background: var(--ink);
}

.bitrix-section .eyebrow {
  color: var(--lime);
}

.tab-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.tab-button {
  min-height: 42px;
  padding: 9px 13px;
  color: var(--paper);
  background: #252d35;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 900;
}

.tab-button.active {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.bitrix-board {
  position: relative;
  min-height: 310px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    #1b232c;
  background-size: 38px 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.bitrix-board::before,
.bitrix-board::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78%;
  height: 2px;
  content: "";
  background: rgba(202, 255, 47, 0.42);
  transform: translate(-50%, -50%);
}

.bitrix-board::after {
  width: 2px;
  height: 78%;
}

.sync-center,
.sync-node {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-weight: 950;
}

.sync-center {
  left: 50%;
  top: 50%;
  width: 104px;
  height: 60px;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--lime);
  transform: translate(-50%, -50%);
}

.sync-node {
  min-width: 94px;
  min-height: 42px;
  padding: 8px 11px;
  color: var(--paper);
  background: #29333d;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

.n1 {
  left: 50%;
  top: 28px;
  transform: translateX(-50%);
}

.n2 {
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
}

.n3 {
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
}

.n4 {
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
}

.n5 {
  right: 58px;
  bottom: 48px;
}

.n6 {
  left: 58px;
  top: 48px;
}

.tab-panels {
  margin-top: 18px;
}

.tab-panel {
  padding: 20px 22px;
  color: var(--paper);
  background: #1b232c;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 6px solid var(--lime);
  border-radius: 8px;
}

.tab-panel p {
  color: rgba(255, 255, 255, 0.72);
}

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

.package-card {
  padding: 22px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.package-card.featured {
  background: var(--lime);
  box-shadow: 8px 8px 0 var(--ink);
}

.package-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 9px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 950;
}

.package-card ul {
  display: grid;
  gap: 7px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-2);
  font-weight: 800;
}

.package-card li::before {
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--ink);
  border-radius: 50%;
}

.process-section {
  background: var(--paper);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-list span {
  margin-bottom: 14px;
}

.cta-band {
  padding: 36px 0;
  color: var(--ink);
  background: var(--lime);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.cta-grid {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.cta-grid h2 {
  max-width: 760px;
}

.cta-grid .eyebrow {
  color: #344700;
}

.contact-section {
  padding: 64px 0;
  background: var(--paper);
}

.contact-grid {
  align-items: stretch;
}

.contact-copy {
  align-self: center;
}

.contact-links {
  display: grid;
  gap: 5px;
  margin-top: 20px;
}

.contact-links a {
  font-size: 22px;
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--lime-2);
  text-underline-offset: 5px;
}

.contact-links span {
  color: var(--muted);
  font-weight: 700;
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: var(--soft);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 var(--lime);
}

.form-row {
  display: grid;
  gap: 6px;
}

.form-row label {
  font-size: 14px;
  font-weight: 950;
}

.form-row input,
.form-row textarea {
  width: 100%;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #cdd5c3;
  border-radius: 7px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input {
  min-height: 46px;
  padding: 0 12px;
}

.form-row textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(202, 255, 47, 0.55);
}

.form-row.has-error input,
.form-row.has-error textarea {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 98, 92, 0.16);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-status.success {
  color: #0b8c63;
}

.form-status.error {
  color: #c7332d;
}

.site-footer {
  color: var(--paper);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 24px 0;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner a:not(.brand) {
  color: var(--lime);
  font-weight: 900;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1120px) {
  .header-link {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .hero-panel {
    max-width: 720px;
  }

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

@media (max-width: 920px) {
  :root {
    --header: 66px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .main-nav {
    position: fixed;
    top: var(--header);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--paper);
    background: var(--ink);
    border: 2px solid var(--ink);
    border-radius: 8px;
    box-shadow: 8px 8px 0 var(--lime);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px;
    color: var(--paper);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .header-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-grid {
    min-height: calc(100svh - var(--header) - 32px);
    padding: 34px 0 28px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-motto {
    font-size: 25px;
  }

  .split,
  .section-head,
  .contact-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section {
    padding: 52px 0;
  }

  h2 {
    font-size: 32px;
  }

  .service-table article {
    grid-template-columns: 48px 1fr;
  }

  .service-table p {
    grid-column: 2;
  }

  .package-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .cta-grid .btn {
    width: fit-content;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .brand-text {
    font-size: 19px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding: 28px 0 22px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-motto {
    font-size: 21px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-proof {
    display: none;
  }

  .hero-panel {
    padding: 12px;
    box-shadow: 6px 6px 0 var(--lime);
  }

  .flow-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 12px 0;
  }

  .flow-arrow {
    display: none;
  }

  .flow-node {
    min-height: 42px;
  }

  .dashboard-grid {
    display: none;
  }

  .dash-card {
    min-height: auto;
  }

  .dash-card.wide {
    grid-row: auto;
  }

  .quick-strip {
    display: block;
  }

  .strip-grid {
    display: flex;
    width: min(calc(100% - 24px), var(--shell));
    overflow-x: auto;
    padding: 0;
    scrollbar-width: none;
  }

  .strip-grid::-webkit-scrollbar {
    display: none;
  }

  .strip-grid span {
    flex: 0 0 auto;
    min-width: 128px;
    min-height: 44px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .section,
  .contact-section {
    padding: 44px 0;
  }

  h2 {
    font-size: 28px;
  }

  .section-head > p,
  .contact-copy > p {
    font-size: 16px;
  }

  .service-table article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
  }

  .service-table p {
    grid-column: auto;
  }

  .bitrix-board {
    min-height: 260px;
  }

  .sync-node {
    min-width: 78px;
    min-height: 36px;
    font-size: 12px;
  }

  .n2 {
    right: 12px;
  }

  .n4 {
    left: 12px;
  }

  .n5 {
    right: 24px;
    bottom: 34px;
  }

  .n6 {
    left: 24px;
    top: 34px;
  }

  .package-card,
  .lead-form {
    padding: 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .shell {
    width: min(calc(100% - 24px), var(--shell));
  }

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

  .btn {
    min-height: 46px;
    padding: 12px 14px;
  }

  .pipeline-line {
    grid-template-columns: 1fr 60px 26px;
    gap: 7px;
  }
}
