/* Platform / OCR / about / contacts shared page styles */

/* Inner page hero */
.page-hero {
  position: relative;
  padding: 80px 0 96px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--page-bg) 0%, var(--page-bg) 58%, #ffffff 100%);
}
.page-hero::before {
  content:""; position:absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 100% 0%, rgba(167,139,250,.22), transparent 55%),
    radial-gradient(700px 500px at 0% 100%, rgba(34,211,238,.08), transparent 55%);
  pointer-events: none;
}
.page-hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 980px) {
  .page-hero { padding: 56px 0 64px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.page-hero .m-h1 { margin: 18px 0 20px; }
.page-hero .m-sub { max-width: 560px; margin-bottom: 28px; }
.page-hero .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* 3D card stage for platform hero */
.stage-3d {
  position: relative;
  perspective: 1600px;
  perspective-origin: 50% 30%;
}
.stage-3d .dash-mock {
  transform: rotateX(calc(-15deg + (var(--p) * 15deg))) rotateY(calc(10deg - (var(--p) * 10deg))) scale(calc(0.9 + var(--p) * 0.1));
  transition: transform 200ms linear;
  will-change: transform;
}

/* Scenario cards (3 cards) */
.scenarios { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .scenarios { grid-template-columns: 1fr; } }
.scenario {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.scenario:hover { transform: translateY(-4px); border-color: var(--purple-700); box-shadow: var(--shadow-lg); }
.scenario .icon-tile { width: 48px; height: 48px; }
.scenario h3 { font-size: 20px; }
.scenario .desc { color: var(--text-muted); font-size: 14px; line-height: 1.55; }
.scenario ul { list-style: none; padding: 0; margin: 4px 0; display: flex; flex-direction: column; gap: 8px; }
.scenario ul li { font-size: 14px; display: flex; gap: 8px; align-items: flex-start; }
.scenario ul li::before { content: "✓"; color: var(--purple-700); font-weight: 700; }
.scenario .save { font-weight: 700; color: var(--purple-700); font-size: 15px; }
.scenario .more { color: var(--purple-700); font-weight: 700; font-size: 14px; margin-top: auto; }

/* Feature 6 grid */
.features-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .features-6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .features-6 { grid-template-columns: 1fr; } }
.feature-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-3px); border-color: var(--purple-700); box-shadow: var(--shadow-md); }
.feature-card .icon-tile { width: 44px; height: 44px; }
.feature-card h3 { font-size: 17px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* Comparison table */
.compare {
  background: #fff; border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
}
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 18px 24px; text-align: left; border-bottom: 1px solid var(--border); font-size: 15px; vertical-align: top; }
.compare th { background: var(--page-bg); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--text-muted); }
.compare tr:last-child td { border-bottom: 0; }
.compare .traditional { color: var(--text-muted); }
.compare .buhai { color: var(--text); font-weight: 600; position: relative; }
.compare .buhai::before {
  content: "✓"; color: var(--purple-700); font-weight: 700; margin-right: 8px;
}
.compare th:nth-child(3), .compare td:nth-child(3) { background: rgba(109,40,217,.04); }
.compare th:nth-child(3) { color: var(--purple-700); }
@media (max-width: 720px) {
  .compare table, .compare thead, .compare tbody, .compare tr, .compare th, .compare td { display: block; }
  .compare thead { display: none; }
  .compare tr { padding: 16px 20px; border-bottom: 1px solid var(--border); }
  .compare td { padding: 6px 0; border: 0; }
  .compare td:first-child { font-weight: 700; color: var(--text); margin-bottom: 4px; }
  .compare td:nth-child(2)::before { content: "Традиционно: "; color: var(--text-hint); font-weight: 600; }
  .compare td:nth-child(3) { background: transparent; }
}

/* Form block */
.form-block {
  background: #fff; border: 1px solid var(--border); border-radius: 24px;
  padding: 48px;
  box-shadow: 0 30px 70px rgba(16,16,40,.06);
}
@media (max-width: 720px) { .form-block { padding: 28px 20px; } }
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px;
}
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .field.full { grid-column: 1 / -1; }
.form-row-actions { display: flex; align-items: center; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
.form-success {
  display: none;
  text-align: center; padding: 32px;
  background: var(--success-bg);
  border-radius: 16px; color: var(--success-fg); font-weight: 600;
}
.form-success.is-shown { display: block; }

/* Trust pill row */
.trust-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }

/* Pipeline */
.pipeline {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
  align-items: center;
  margin: 24px 0;
}
@media (max-width: 900px) { .pipeline { grid-template-columns: repeat(2, 1fr); } }
.pipeline-step {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 16px 12px; text-align: center;
  position: relative;
}
.pipeline-step .n { width: 28px; height: 28px; border-radius: 50%; background: var(--purple-700); color: #fff; font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.pipeline-step h4 { font-size: 14px; font-weight: 700; margin: 0 0 4px; }
.pipeline-step p { font-size: 12px; color: var(--text-muted); margin: 0; }
.pipeline-step:not(:last-child)::after {
  content: "›"; position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
  color: var(--purple-mid); font-size: 24px; font-weight: 700; z-index: 1;
}
@media (max-width: 900px) {
  .pipeline-step:not(:last-child)::after { display: none; }
}

/* Plans */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; } }
.plan {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 32px; display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.plan:hover { transform: translateY(-4px); border-color: var(--purple-700); box-shadow: var(--shadow-lg); }
.plan .label { font-size: 12px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--purple-700); }
.plan h3 { font-size: 22px; }
.plan .body { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.plan .for { font-size: 13px; color: var(--text); font-weight: 600; }
.plan ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.plan ul li { font-size: 13px; padding-left: 22px; position: relative; color: var(--text); }
.plan ul li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--purple-700); font-weight: 700; }
.plan .price { font-size: 14px; color: var(--text-muted); }
.plan .btn { margin-top: auto; }
.plan.featured { border-color: var(--purple-700); position: relative; box-shadow: 0 24px 60px rgba(109,40,217,.18); }
.plan.featured::before {
  content: "Популярно"; position: absolute; top: -14px; left: 24px;
  background: var(--purple-700); color: #fff;
  padding: 4px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .4px;
}

/* About facts */
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 760px) { .facts-grid { grid-template-columns: repeat(2, 1fr); } }
.fact-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 32px 24px; text-align: center;
}
.fact-card .val { font-size: 40px; font-weight: 700; color: var(--purple-700); letter-spacing: -1px; line-height: 1; }
.fact-card .lbl { margin-top: 10px; color: var(--text-muted); font-size: 14px; }

/* Security list */
.security-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; list-style: none; padding: 0; margin: 24px 0 0; }
@media (max-width: 720px) { .security-list { grid-template-columns: 1fr; } }
.security-list li { padding: 14px 18px; border: 1px solid var(--border); border-radius: 12px; background: #fff; display: flex; gap: 12px; align-items: center; font-size: 14px; }
.security-list li::before { content: "✓"; color: var(--success-fg); font-weight: 700; font-size: 18px; }

/* Mission */
.mission-block {
  text-align: center; max-width: 880px; margin: 0 auto;
  padding: 80px 0;
}
.mission-block .q {
  font-size: clamp(24px, 3.5vw, 34px); line-height: 1.3; font-weight: 600; letter-spacing: -0.6px;
  color: var(--text);
}
.mission-block .q b { color: var(--purple-700); font-weight: 700; }

/* OCR hero scan visual */
.scan-visual {
  position: relative;
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: 22px;
  box-shadow: 0 30px 70px rgba(16,16,40,.10);
  overflow: hidden;
}
.scan-visual .doc-stack { position: relative; height: 320px; }
.scan-visual .doc-stack > div {
  position: absolute; inset: 0;
  background: var(--page-bg);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 16px;
}
.scan-visual .doc-stack .ds1 { transform: translate(12px, 12px) rotate(2deg); opacity: .6; }
.scan-visual .doc-stack .ds2 { transform: translate(6px, 6px) rotate(-1deg); opacity: .8; }
.scan-visual .doc-stack .ds3 {
  background: #fff; position: relative;
}
.scan-visual .doc-stack .line { height: 8px; background: var(--page-bg); border-radius: 4px; margin: 10px 0; }
.scan-visual .doc-stack .ds3 { overflow: hidden; }
.scan-visual .doc-stack .ds3::after {
  content: ""; position: absolute; left: 8px; right: 8px;
  height: 3px; background: linear-gradient(90deg, transparent, var(--purple-700), transparent);
  box-shadow: 0 0 16px var(--purple-700);
  animation: scanLine 2.4s ease-in-out infinite;
}
.scan-out-mini {
  margin-top: 18px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
}
.scan-out-mini .item {
  padding: 10px 12px; background: var(--purple-light); border-radius: 10px;
  font-size: 12px; color: var(--purple-900);
}
.scan-out-mini .item b { display: block; color: var(--purple-700); font-size: 10px; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 2px; }

/* OCR problem cards */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 32px; text-align: center;
}
.problem-card .v { font-size: 56px; font-weight: 700; color: var(--danger-fg); letter-spacing: -2px; line-height: 1; }
.problem-card h3 { margin: 14px 0 8px; }
.problem-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* OCR industries rows */
.ocr-industries .row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  padding: 40px 36px;
  margin-bottom: 24px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 18px;
}
.ocr-industries .row:nth-child(odd)  { background: #ffffff; }
.ocr-industries .row:nth-child(even) { background: #f1ebfb; }
.ocr-industries .row.reverse { direction: rtl; }
.ocr-industries .row.reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .ocr-industries .row { grid-template-columns: 1fr; gap: 24px; padding: 28px 22px; }
  .ocr-industries .row.reverse { direction: ltr; }
}
.ocr-industries .body { color: var(--text-muted); font-size: 16px; line-height: 1.6; margin: 14px 0 18px; }
.ocr-industries .field-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.ocr-industries .field-tags span { background: var(--purple-light); color: var(--purple-900); padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.ocr-industries .metric-row { display: flex; gap: 24px; margin-top: 18px; }
.ocr-industries .metric-row b { display: block; font-size: 22px; color: var(--purple-700); font-weight: 700; }
.ocr-industries .metric-row span { display: block; font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* About hero variations */
.about-hero { padding: 80px 0 40px; text-align: center; background: var(--page-bg); }
.about-hero .m-h1 { max-width: 760px; margin: 16px auto; }
.about-hero .m-sub { max-width: 600px; margin: 0 auto; }

/* Contact split */
.contact-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; }
@media (max-width: 900px) { .contact-split { grid-template-columns: 1fr; gap: 32px; } }
.contact-info { padding: 16px 0; }
.contact-info .item { padding: 18px 0; border-bottom: 1px solid var(--border); }
.contact-info .item:last-child { border-bottom: 0; }
.contact-info .item .l { font-size: 12px; text-transform: uppercase; letter-spacing: .6px; color: var(--text-muted); margin-bottom: 6px; }
.contact-info .item .v { font-size: 17px; font-weight: 600; color: var(--text); }
.contact-info .item .v a { color: inherit; }
.contact-info .item .v a:hover { color: var(--purple-700); }

/* =========================================================
   Bukhgalteriya / ERP — shared content blocks
   ========================================================= */

/* Hero stats row */
.hero-stats { display: flex; flex-wrap: wrap; gap: 28px 36px; margin-top: 28px; }
.hero-stats .s { display: flex; flex-direction: column; gap: 2px; }
.hero-stats .s b { font-size: 26px; font-weight: 800; color: var(--purple-700); letter-spacing: -0.5px; line-height: 1; }
.hero-stats .s span { font-size: 13px; color: var(--text-muted); }
@media (max-width: 480px) { .hero-stats { gap: 20px 24px; } .hero-stats .s b { font-size: 22px; } }

/* Micro-trust dots line */
.micro-trust {
  display: inline-flex; flex-wrap: wrap; gap: 18px;
  margin-top: 20px;
  font-size: 13px; color: var(--text-muted);
}
.micro-trust span { display: inline-flex; align-items: center; gap: 6px; }
.micro-trust span::before {
  content: "✓"; color: var(--success-fg); font-weight: 700;
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--success-bg); border-radius: 50%; font-size: 11px;
}

/* Includes / Excludes 2-column */
.incex-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 16px;
}
@media (max-width: 900px) { .incex-grid { grid-template-columns: 1fr; } }
.incex-col {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 28px 24px;
}
.incex-col.col-in   { border-color: rgba(21,128,61,.25); background: linear-gradient(180deg, rgba(21,128,61,.04), transparent 50%), #fff; }
.incex-col.col-out  { background: linear-gradient(180deg, rgba(107,114,128,.04), transparent 50%), #fff; }
.incex-col h3 { margin-bottom: 18px; font-size: 18px; display: flex; align-items: center; gap: 10px; }
.incex-col h3 .pill-tiny {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .3px;
}
.col-in h3 .pill-tiny { background: var(--success-bg); color: var(--success-fg); }
.col-out h3 .pill-tiny { background: var(--page-bg); color: var(--text-muted); }
.incex-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.incex-col li {
  display: grid; grid-template-columns: 22px 1fr; gap: 10px;
  font-size: 14px; line-height: 1.5;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}
.incex-col li:last-child { border-bottom: 0; }
.col-in  li .mark { color: var(--success-fg); font-weight: 700; margin-top: 1px; }
.col-out li .mark { color: var(--text-hint); font-weight: 700; margin-top: 1px; }
.col-out li .hint { display: inline-block; color: var(--purple-700); font-size: 12px; margin-left: 4px; font-weight: 600; }
.col-out li .hint a { color: inherit; border-bottom: 1px dashed currentColor; }

.incex-cta {
  margin-top: 24px;
  padding: 24px;
  background: var(--purple-light);
  border-radius: 14px;
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.incex-cta b { color: var(--purple-900); font-size: 15px; }
.incex-cta span { color: var(--purple-900); font-size: 14px; flex: 1; min-width: 200px; }

/* Scenarios with metric */
.scenario-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .scenario-row { grid-template-columns: 1fr; } }
.scenario-detailed {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s ease, border-color .25s, box-shadow .25s;
}
.scenario-detailed:hover { transform: translateY(-4px); border-color: var(--purple-700); box-shadow: var(--shadow-lg); }
.scenario-detailed .icon-tile { width: 44px; height: 44px; }
.scenario-detailed h3 { font-size: 19px; }
.scenario-detailed p { color: var(--text-muted); font-size: 14px; line-height: 1.55; }
.scenario-detailed .bene {
  margin-top: auto;
  padding: 12px 14px;
  background: var(--purple-light); color: var(--purple-900);
  border-radius: 10px;
  font-size: 13px; font-weight: 600;
}

/* Pricing tier cards (bukhgalteriya block 6) */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.tier {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 32px 28px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.tier:hover { transform: translateY(-6px); border-color: var(--purple-700); box-shadow: var(--shadow-lg); }
.tier .label { font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--text-muted); }
.tier .price { display: flex; align-items: baseline; gap: 6px; }
.tier .price b { font-size: 36px; font-weight: 800; color: var(--text); letter-spacing: -1px; }
.tier .price span { color: var(--text-muted); font-size: 14px; }
.tier ul { list-style: none; padding: 0; margin: 8px 0; display: flex; flex-direction: column; gap: 10px; }
.tier ul li {
  display: grid; grid-template-columns: 18px 1fr; gap: 10px;
  font-size: 14px; color: var(--text); line-height: 1.5;
}
.tier ul li::before { content: "✓"; color: var(--purple-700); font-weight: 700; }
.tier .btn { margin-top: auto; width: 100%; }
.tier.featured {
  border-color: var(--purple-700);
  box-shadow: 0 24px 50px rgba(109,40,217,.18);
  position: relative;
}
.tier.featured::before {
  content: "Хит"; position: absolute; top: -14px; left: 28px;
  background: var(--purple-700); color: #fff;
  padding: 4px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .4px;
}
.tier .ext-link { font-size: 12px; color: var(--purple-700); font-weight: 600; }
.tier .ext-link:hover { text-decoration: underline; }

.tiers-foot { text-align: center; margin-top: 24px; color: var(--text-muted); font-size: 13px; }

/* ERP comparison checkbox table */
.compare-mod table { width: 100%; }
.compare-mod th, .compare-mod td { padding: 16px 20px; }
.compare-mod th { text-align: left; }
.compare-mod th:nth-child(2), .compare-mod td:nth-child(2),
.compare-mod th:nth-child(3), .compare-mod td:nth-child(3) { text-align: center; }
.compare-mod .yes { color: var(--success-fg); font-weight: 700; }
.compare-mod .no  { color: var(--text-hint); font-weight: 700; }
.compare-mod th:nth-child(3) { color: var(--purple-700); }
.compare-mod th:nth-child(3), .compare-mod td:nth-child(3) { background: rgba(109,40,217,.04); }
@media (max-width: 720px) {
  .compare-mod th:first-child { font-weight: 700; color: var(--text); }
}

/* Chain visual for ERP hero — boxes connected by arrows */
.chain {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  padding: 24px;
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  box-shadow: 0 30px 70px rgba(16,16,40,.08);
  position: relative;
}
.chain-box {
  position: relative;
  padding: 18px 16px 16px;
  background: linear-gradient(135deg, rgba(109,40,217,.04), rgba(34,211,238,.03));
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: left;
  overflow: hidden;
}
.chain-box .icon-tile { width: 36px; height: 36px; border-radius: 10px; margin-bottom: 12px; }
.chain-box h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.chain-box p  { font-size: 11px; color: var(--text-muted); line-height: 1.45; }
.chain-box .badge-mini {
  position: absolute; right: 12px; top: 12px;
  font-size: 9px; font-weight: 700; padding: 3px 7px;
  background: var(--purple-light); color: var(--purple-900);
  border-radius: 999px; letter-spacing: .3px;
}
.chain-flow {
  position: absolute; left: 8px; right: 8px; top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(109,40,217,.3), transparent);
  pointer-events: none;
}
.chain-flow::after {
  content: ""; position: absolute; left: 0; top: -2px;
  width: 30px; height: 5px;
  background: linear-gradient(90deg, transparent, var(--purple-700), transparent);
  border-radius: 999px;
  animation: chainPulse 3s ease-in-out infinite;
}
@keyframes chainPulse {
  0%   { transform: translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(calc(100vw - 40px)); opacity: 0; }
}

/* ─── Mobile responsive ───────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Inner page hero */
  .page-hero { padding: 48px 0 56px; }

  /* Orbit animation — hides when grid is already single-column */
  .orbit-stage { display: none; }

  /* Mission */
  .mission-block { padding: 56px 0; }

  /* Card padding reductions */
  .plan              { padding: 24px 20px; }
  .tier              { padding: 24px 20px; }
  .scenario          { padding: 22px 18px; }
  .scenario-detailed { padding: 22px 18px; }
  .feature-card      { padding: 20px 18px; }

  /* incex-cta stacks */
  .incex-cta           { flex-direction: column; align-items: flex-start; gap: 12px; }
  .incex-cta .btn      { width: 100%; }

  /* OCR metric row wraps */
  .ocr-industries .metric-row { flex-wrap: wrap; gap: 16px; }
}
@media (max-width: 480px) {
  /* Pipeline steps: tighter on tiny screens */
  .pipeline           { gap: 8px; }
  .pipeline-step      { padding: 12px 8px; }
  .pipeline-step h4   { font-size: 12px; }
  .pipeline-step p    { font-size: 11px; }

  /* Problem cards */
  .problem-card     { padding: 24px 16px; }
  .problem-card .v  { font-size: 44px; }

  /* OCR industry row — tighter padding */
  .ocr-industries .row { padding: 32px 0; }

  /* Trust pills — compact */
  .trust-pills .pill { height: 28px; font-size: 12px; padding: 0 10px; gap: 6px; }
  .trust-pills .pill svg { display: none; }
}
