/* Shared styles for Softera Ratkaisut/Toimialat subpages */

/* Default accent (Etusivu sets this from a tweak; subpages just need a value) */
:root {
  --accent-button: #75FAC7;
  --accent: #75FAC7;
  --accent-bright: #75FAC7;
}

/* ---------- Hero refinements ---------- */
.page-hero { padding: 160px 56px 90px; }
.page-hero__inner { max-width: 1200px; }
.page-hero__crumbs {
  display: flex; width: max-content; max-width: 100%; align-items: center; gap: 10px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 13px; color: rgba(255,255,255,0.62);
  margin-bottom: 24px;
}
.page-hero__crumbs a {
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.page-hero__crumbs a:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.4); }
.page-hero__crumbs span { color: #fff; }
.page-hero__crumbs i { width: 14px; height: 14px; opacity: 0.5; }
.page-hero__eye {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--softera-mint);
  margin-bottom: 22px;
}
.page-hero__eye::before {
  content: ""; width: 24px; height: 1px; background: var(--softera-cyan);
}
.page-hero__h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 68px;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 24px;
  max-width: 22ch;
  text-wrap: balance;
}
.page-hero__h em { font-style: normal; color: var(--softera-mint); font-weight: 500; }
.page-hero__sub {
  font-size: 19px; line-height: 1.55;
  color: rgba(255,255,255,0.84);
  max-width: 62ch; margin: 0 0 36px;
}
.page-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero__ctas .btn { padding: 14px 22px; font-size: 15px; }

/* ---------- Stat strip (3 numbers under hero) ---------- */
.stat-strip {
  background: var(--softera-deep);
  color: #fff;
  padding: 0 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-strip__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid rgba(255,255,255,0.10);
}
.stat-strip__cell {
  padding: 44px 36px;
  border-right: 1px solid rgba(255,255,255,0.10);
  display: flex; flex-direction: column; gap: 8px;
}
.stat-strip__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--softera-mint);
}
.stat-strip__num small {
  font-size: 22px; color: rgba(255,255,255,0.55);
  font-weight: 400; letter-spacing: -0.005em;
  margin-left: 6px;
}
.stat-strip__lbl {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.45;
  max-width: 32ch;
}

/* ---------- Section anchor strip ---------- */
.anchor-strip {
  background: rgba(244,247,250,0.92);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 56px;
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(8px);
}
.anchor-strip__inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; gap: 28px; align-items: center;
  font-size: 13.5px;
}
.anchor-strip__lbl {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-3);
}
.anchor-strip a {
  color: var(--ink-2);
  text-decoration: none; border: 0;
  font-weight: 500;
  transition: color 140ms var(--ease-out);
}
.anchor-strip a:hover { color: var(--softera-blue); }

/* ---------- Solution / Section blocks ---------- */
.section-block {
  padding: 110px 56px;
  scroll-margin-top: 80px;
}
.section-block--alt { background: var(--bg-soft); }
.section-block--dark { background: var(--softera-deep); color: #fff; }
.section-block__inner { max-width: 1200px; margin: 0 auto; }

.section-block__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.section-block__head--centered {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 760px;
  margin-left: auto; margin-right: auto;
  align-items: center;
}
.section-block__strap {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--softera-sky);
  margin-bottom: 18px;
}
.section-block__strap::before {
  content: ""; width: 24px; height: 1px; background: var(--softera-cyan);
}
.section-block--dark .section-block__strap { color: var(--softera-mint); }
.section-block__h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.section-block--dark .section-block__h { color: #fff; }
.section-block__h em {
  font-style: normal;
  color: var(--softera-blue);
  font-weight: 500;
}
.section-block--dark .section-block__h em { color: var(--softera-mint); }
.section-block__lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 56ch;
}
.section-block--dark .section-block__lede { color: rgba(255,255,255,0.82); }

/* ---------- Capability grid ---------- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cap-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cap-grid--4 { grid-template-columns: repeat(4, 1fr); }
.cap-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}
.cap-card:hover {
  box-shadow: var(--shadow-2);
  border-color: var(--softera-cyan);
}
.cap-card__ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,150,198,0.10);
  color: var(--softera-blue);
  display: grid; place-items: center;
}
.cap-card__ico i { width: 22px; height: 22px; }
.cap-card__t {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.cap-card__d {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
}

/* ---------- Two-column feature row ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--line);
}
.section-block--alt .feature-row { border-top-color: var(--line); }
.feature-row--reverse .feature-row__visual { order: 2; }
.feature-row__eye {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--softera-sky);
  margin-bottom: 14px;
}
.feature-row__h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 16px;
  text-wrap: balance;
}
.feature-row__p {
  font-size: 16px; line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 22px;
  max-width: 48ch;
}
.feature-row__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.feature-row__list li {
  display: flex; gap: 10px;
  font-size: 14.5px; color: var(--ink-2);
}
.feature-row__list i {
  width: 18px; height: 18px;
  color: var(--softera-cyan);
  flex-shrink: 0; margin-top: 2px;
}

/* ---------- Feature visual (right-side gradient panel) ---------- */
.feature-row__visual {
  background: linear-gradient(135deg, #003B66 0%, #0061A1 50%, #0096C6 100%);
  border-radius: 18px;
  padding: 36px;
  min-height: 320px;
  display: flex; flex-direction: column; gap: 12px;
  color: #fff;
  box-shadow: var(--shadow-3);
  position: relative; overflow: hidden;
}
.feature-row__visual--horizon { background: linear-gradient(135deg, #003B66 0%, #0061A1 40%, #00CAD0 100%); }
.feature-row__visual--selfie { background: linear-gradient(135deg, #003B66 0%, #0096C6 60%, #75FAC7 120%); }
.feature-row__visual--mint { background: linear-gradient(135deg, #003B66 0%, #0061A1 40%, #75FAC7 130%); }
.fv__chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 5px 11px; border-radius: 999px;
  font-size: 12px; font-weight: 500;
  width: fit-content;
}
.fv__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px; letter-spacing: -0.01em;
  margin-top: 4px;
}
.fv__rows { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.fv__row {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px; padding: 12px 14px;
  font-size: 13px;
  display: flex; justify-content: space-between; align-items: center;
}
.fv__row strong { font-weight: 500; }
.fv__row em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: rgba(255,255,255,0.72);
}
.fv__pill {
  background: rgba(117,250,199,0.20);
  color: var(--softera-mint);
  padding: 3px 9px; border-radius: 999px;
  font-size: 11px; font-weight: 500;
}

/* ---------- Problem band (dark contrast block) ---------- */
.problem-band {
  background: var(--softera-deep);
  color: #fff;
  padding: 110px 56px;
  position: relative;
  overflow: hidden;
}
.problem-band::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 80% 30%, rgba(0,202,208,0.12), transparent 60%),
    radial-gradient(40% 60% at 10% 90%, rgba(117,250,199,0.08), transparent 60%);
  pointer-events: none;
}
.problem-band__inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.problem-band__strap {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--softera-cyan);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.problem-band__strap::before {
  content: ""; width: 24px; height: 1px; background: var(--softera-cyan);
}
.problem-band__h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}
.problem-band__p {
  font-size: 17px;
  line-height: 1.62;
  color: rgba(255,255,255,0.82);
  margin: 0 0 16px;
}
.problem-band__p:last-child { margin-bottom: 0; }
.problem-band__p strong {
  color: #fff;
  font-weight: 500;
}

/* ---------- Solid quote callout (referenssinosto) ---------- */
.quote-callout {
  background: linear-gradient(135deg, #003B66 0%, #0061A1 60%, #0096C6 110%);
  color: #fff;
  border-radius: 24px;
  padding: 64px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-3);
}
.quote-callout::before {
  content: "“";
  position: absolute;
  top: 24px; left: 36px;
  font-family: var(--font-display);
  font-size: 200px;
  line-height: 1;
  color: rgba(117,250,199,0.18);
  pointer-events: none;
}
.quote-callout::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(40% 60% at 90% 90%, rgba(117,250,199,0.12), transparent 60%);
  pointer-events: none;
}
.quote-callout__inner { position: relative; z-index: 1; max-width: 60ch; }
.quote-callout__q {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 28px;
  text-wrap: balance;
}
.quote-callout__by {
  display: flex; align-items: center; gap: 14px;
}
.quote-callout__av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--softera-mint);
  color: var(--softera-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  display: grid; place-items: center;
}
.quote-callout__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}
.quote-callout__role {
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  margin-top: 2px;
}

/* ---------- Two-product split (Solution = 360 + Horizon) ---------- */
.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}
.product-card:hover {
  box-shadow: var(--shadow-3);
  border-color: var(--softera-cyan);
}
.product-card--dark {
  background: linear-gradient(160deg, #003B66 0%, #0061A1 100%);
  color: #fff;
  border: 0;
}
.product-card__strap {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--softera-blue);
}
.product-card--dark .product-card__strap { color: var(--softera-mint); }
.product-card__h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.product-card--dark .product-card__h { color: #fff; }
.product-card__p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 6px;
  flex: 1;
}
.product-card--dark .product-card__p { color: rgba(255,255,255,0.82); }
.product-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; font-size: 14.5px;
  color: var(--softera-blue);
  text-decoration: none;
}
.product-card--dark .product-card__link { color: var(--softera-mint); }
.product-card__link i { width: 16px; height: 16px; }

/* ---------- Industry cards (Toimialat yleissivu) ---------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1180px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
.industry-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.industry-tile:hover {
  box-shadow: var(--shadow-3);
  border-color: var(--softera-cyan);
}
.industry-tile__art {
  height: 96px; margin: -28px -28px 0;
  background: linear-gradient(135deg, #003B66, #0061A1, #0096C6);
  position: relative; overflow: hidden;
}
.industry-tile--fiber .industry-tile__art { background: linear-gradient(135deg, #003B66, #0061A1, #00CAD0); }
.industry-tile--waste .industry-tile__art { background: linear-gradient(135deg, #003B66, #0096C6, #75FAC7); }
.industry-tile--energy .industry-tile__art { background: linear-gradient(135deg, #003B66, #0061A1 55%, #00CAD0); }
.industry-tile--realestate .industry-tile__art { background: linear-gradient(135deg, #00305A, #0061A1 50%, #75FAC7); }
.industry-tile__art-ico {
  position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  color: #fff;
}
.industry-tile__art-ico i { width: 24px; height: 24px; }
.industry-tile__art-lbl {
  position: absolute; left: 22px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.industry-tile__h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 8px 0 0;
  text-wrap: balance;
}
.industry-tile__p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
}
.industry-tile__products {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-top: 6px;
}
.industry-tile__product {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--ink-2);
  padding: 5px 11px; border-radius: 999px;
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.industry-tile__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; font-size: 14.5px;
  color: var(--softera-blue);
  text-decoration: none;
}
.industry-tile__link i { width: 16px; height: 16px; }

/* ---------- Two-up note band ---------- */
.note-band {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
.note-band__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--softera-blue);
}
.note-band__h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 12px;
  text-wrap: balance;
}
.note-band__p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  max-width: 60ch;
}

/* ---------- Compact info list (large bulleted) ---------- */
.info-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 0;
}
.info-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
}
.info-list li:last-child { border-bottom: 1px solid var(--line); }
.info-list__num {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--softera-sky);
  letter-spacing: 0.08em;
  padding-top: 4px;
}
.info-list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}

/* ---------- Final CTA (smaller, in-flow) ---------- */
.section-cta {
  padding: 110px 56px;
  background: var(--softera-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-cta::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 90% 20%, rgba(0,202,208,0.16), transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(117,250,199,0.12), transparent 60%);
  pointer-events: none;
}
.section-cta__inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.section-cta__strap {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--softera-mint);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.section-cta__strap::before {
  content: ""; width: 24px; height: 1px; background: var(--softera-cyan);
}
.section-cta__h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 18px;
  text-wrap: balance;
}
.section-cta__p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin: 0;
  max-width: 56ch;
}
.section-cta__ctas {
  display: flex; flex-direction: column; gap: 12px;
}
.section-cta__ctas .btn {
  padding: 14px 22px; font-size: 15px; justify-content: center;
}

/* ---------- Plain content blocks (text-only sections) ---------- */
.text-block { display: grid; gap: 24px; max-width: 70ch; }
.text-block p {
  font-size: 17px; line-height: 1.62;
  color: var(--ink-2);
  margin: 0;
}
.text-block strong { color: var(--ink); font-weight: 500; }

/* ---------- Module list (small product tiles) ---------- */
.modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.module {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.module__ico { color: var(--softera-blue); margin-bottom: 6px; }
.module__ico i { width: 20px; height: 20px; }
.module__t {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink);
}
.module__d {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.4;
}

/* ---------- Diff list (Miten tämä eroaa) ---------- */
.diff-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.diff-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex; gap: 14px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}
.diff-list li i {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--softera-mint);
  background: rgba(0,59,102,1);
  border-radius: 50%;
  padding: 4px;
  box-sizing: content-box;
  margin-top: 1px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .page-hero { padding: 130px 24px 70px; }
  .page-hero__h { font-size: 44px; }
  .page-hero__sub { font-size: 16px; }
  .stat-strip { padding: 0 24px; }
  .stat-strip__inner { grid-template-columns: 1fr; border-left: 0; }
  .stat-strip__cell { padding: 28px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.10); }
  .stat-strip__cell:last-child { border-bottom: 0; }
  .stat-strip__num { font-size: 40px; }
  .anchor-strip { padding: 14px 24px; }
  .anchor-strip__inner { gap: 14px; flex-wrap: wrap; }
  .section-block { padding: 70px 24px; }
  .section-block__head, .feature-row, .product-split, .industry-grid, .cap-grid, .cap-grid--4, .modules, .problem-band__inner, .section-cta__inner, .note-band, .diff-list { grid-template-columns: 1fr !important; gap: 24px !important; }
  .feature-row--reverse .feature-row__visual { order: 0; }
  .section-block__h { font-size: 34px; }
  .feature-row__h, .problem-band__h, .section-cta__h { font-size: 26px; }
  .problem-band, .section-cta { padding: 70px 24px; }
  .quote-callout { padding: 36px; border-radius: 16px; }
  .quote-callout__q { font-size: 21px; }
  .note-band { padding: 28px; }
}
