/* Saabsa Solutions — consulting portal design system */
:root {
  --navy: #0b2a4a;
  --navy-2: #0f3d6e;
  --navy-deep: #07192c;
  --ink: #0a1628;
  --muted: #5b6b7c;
  --line: #d9e2ec;
  --paper: #f6f8fb;
  --white: #ffffff;
  --orange: #f26a21;
  --orange-dark: #d45512;
  --teal: #0e8f8c;
  --gold: #c9a227;
  --ok: #1f7a4d;
  --shadow: 0 18px 50px rgba(11, 42, 74, 0.12);
  --shadow-sm: 0 8px 24px rgba(11, 42, 74, 0.08);
  --radius: 18px;
  --header-h: 76px;
  --max: 1180px;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.site {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.container-wide { width: min(1280px, calc(100% - 40px)); margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-2);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--orange);
}
h1, h2, .display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.22;
}
h2 + p,
h2 + .lede,
h2 + .prose {
  margin-top: 28px;
}
.lede {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.85;
}
.muted { color: var(--muted); }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(90deg, var(--navy-2), var(--orange));
  color: #fff;
  box-shadow: 0 10px 24px rgba(242, 106, 33, 0.28);
}
.btn-dark { background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-outline {
  background: #fff;
  color: var(--navy-2);
  border-color: var(--line);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Top bar */
.topbar {
  background: var(--navy-deep);
  color: #d7e3ef;
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 8px 0;
  flex-wrap: wrap;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--orange); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
}
.site-logo {
  display: flex;
  align-items: center;
  color: var(--navy);
}
.site-logo img {
  width: auto;
  height: 56px;
  border-radius: 0;
  display: block;
}
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav > a, .nav-drop > summary {
  list-style: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
}
.nav-drop > summary::-webkit-details-marker { display: none; }
.site-nav > a:hover, .nav-drop > summary:hover, .site-nav > a.active {
  color: var(--navy-2);
  background: var(--paper);
}
.site-nav > a.btn,
.site-nav > a.btn:hover {
  color: #fff;
  background: linear-gradient(90deg, var(--navy-2), var(--orange));
  margin-left: 6px;
}
.nav-drop { position: relative; }
.nav-drop[open] > summary { color: var(--navy-2); background: var(--paper); }
.mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-40%);
  width: min(720px, 90vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  z-index: 90;
}
.mega a {
  display: block;
  padding: 12px;
  border-radius: 12px;
}
.mega a:hover { background: var(--paper); }
.mega strong { display: block; font-size: 14px; color: var(--ink); }
.mega span { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  margin: 4px auto;
}

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(900px 400px at 85% 10%, rgba(242,106,33,.18), transparent 50%),
    radial-gradient(700px 380px at 10% 80%, rgba(14,143,140,.16), transparent 50%),
    linear-gradient(165deg, #07192c 0%, #0f3d6e 58%, #123a5c 100%);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 40%, transparent);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
  padding: 80px 0 72px;
}
.hero h1 { font-size: clamp(2.35rem, 4.6vw, 4rem); margin: 18px 0 24px; line-height: 1.2; }
.hero .lede {
  color: #d5e2ee;
  font-size: 1.12rem;
  line-height: 1.9;
  max-width: 38em;
}
.hero-kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.hero-panel {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  padding: 22px;
  backdrop-filter: blur(10px);
}
.hero-panel h3 { font-family: var(--sans); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; opacity: .8; margin-bottom: 14px; }
.hero-stat { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.hero-stat:last-child { border-bottom: 0; }
.hero-stat b { font-size: 1.35rem; }
.hero-stat span { color: #c9d7e6; font-size: 13px; text-align: right; }

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-head { margin-bottom: 48px; }
.section-head h2 { font-size: clamp(2rem, 3.8vw, 2.9rem); margin: 14px 0 18px; }
.section-head .lede { margin-top: 4px; }

.proof-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.proof-mark {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 12px;
  flex-shrink: 0;
}
.proof-logo {
  width: 42px; height: 42px; border-radius: 12px;
  object-fit: contain;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--line);
  padding: 5px;
}
.proof-logo--cover {
  object-fit: cover;
  padding: 0;
  border: 0;
}
.proof-logo--dark {
  background: #0b1220;
  border-color: #1e293b;
  padding: 4px;
}
.proof-item small { color: var(--muted); display: block; font-size: 12px; line-height: 1.45; margin-top: 2px; }

.cards { display: grid; gap: 18px; }
.cards-2 { grid-template-columns: 1fr 1fr; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { font-family: var(--sans); font-size: 1.15rem; margin: 14px 0 12px; line-height: 1.45; }
.card p { color: var(--muted); font-size: .98rem; line-height: 1.7; }
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy-2);
  background: #eaf1f8;
  padding: 4px 10px;
  border-radius: 999px;
}
.icon-box {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--paper);
  font-size: 22px;
}

.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.metric {
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 24px;
  min-height: 140px;
}
.metric b { display: block; font-size: 2.2rem; font-family: var(--serif); }
.metric span { color: #c9d7e6; font-size: 14px; line-height: 1.55; display: block; margin-top: 8px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step {
  position: relative;
  padding: 24px 20px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}
.step h3 { font-family: var(--sans); font-size: 1.05rem; margin-bottom: 12px; line-height: 1.4; }
.step p { color: var(--muted); font-size: .95rem; line-height: 1.7; }

.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px 0;
}
.product-copy h3 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2rem);
  margin: 12px 0 20px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.product-visual {
  border-radius: 24px;
  padding: 40px 32px;
  min-height: 300px;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
}
.product-visual h3 { font-family: var(--serif); font-size: 2.2rem; margin: 12px 0 8px; }
.product-visual .product-mark {
  display: block;
  width: 112px;
  height: auto;
  margin: 0 auto 16px;
}
.product-visual .product-lockup {
  display: block;
  width: min(100%, 280px);
  height: auto;
  margin: 0 auto;
}
.product-visual .product-appicon {
  display: block;
  width: 168px;
  height: 168px;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}
.product-visual--plain {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.product-visual--plain p { color: var(--muted); margin-top: 16px; line-height: 1.6; }
.product-visual--forgemeter {
  background-color: #f4f8fc;
  background-image:
    linear-gradient(rgba(15, 61, 110, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 61, 110, .07) 1px, transparent 1px);
  background-size: 22px 22px;
  color: #0f172a;
  border: 1px solid var(--line);
}
.product-visual--forgemeter h3 {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #0f172a;
}
.product-visual--forgemeter p { color: #475569; }
.dx-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  max-width: 420px;
}
.dx-brand img { width: 84px; height: auto; flex-shrink: 0; }
.dx-wordmark {
  font-family: var(--sans);
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0b1220;
  line-height: 1.1;
}
.dx-wordmark span {
  background: linear-gradient(90deg, #3b82f6, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dx-tagline {
  margin-top: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #475569;
  line-height: 1.45;
}
.outcome-list { list-style: none; display: grid; gap: 16px; margin: 8px 0 28px; }
.outcome-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: #334155;
  line-height: 1.65;
}
.outcome-list li::before { content: "✓"; color: var(--ok); font-weight: 800; }

/* Calculator */
.calc {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  background: var(--navy-deep);
  color: #fff;
  border-radius: 28px;
  padding: 32px;
}
.calc label { display: block; font-size: 13px; font-weight: 600; margin: 14px 0 6px; color: #c9d7e6; }
.calc select, .calc input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
}
.calc option { color: var(--ink); }
.calc-result {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 24px;
}
.calc-result .big { font-family: var(--serif); font-size: 2.6rem; color: #fff; }
.calc-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 18px 0; }
.calc-kpis div { background: rgba(0,0,0,.2); border-radius: 12px; padding: 12px; }
.calc-kpis b { display: block; font-size: 1.2rem; }

.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.tab {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 650;
  font-size: 13px;
  cursor: pointer;
  color: var(--navy-2);
}
.tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--orange); font-size: 22px; }
.faq details[open] summary::after { content: "–"; }
.faq p { color: var(--muted); margin-top: 10px; }

.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, #16497d 50%, #c45a1a 130%);
  color: #fff;
  border-radius: 28px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 24px;
  align-items: center;
}
.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 10px; }
.cta-band p { color: #d7e3ef; }

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(120%);
  z-index: 70;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 999px;
  padding: 10px 10px 10px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform .25s ease;
}
.sticky-cta.show { transform: translateX(-50%) translateY(0); }
.sticky-cta p { font-size: 14px; font-weight: 650; }

.site-footer {
  background: #07192c;
  color: #b7c6d4;
  padding: 56px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-footer h3 { color: #fff; font-size: 14px; margin-bottom: 14px; }
.site-footer ul { list-style: none; display: grid; gap: 8px; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
}
.brand-lockup { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; color: #fff; font-weight: 800; }
.brand-lockup img { width: 36px; height: 36px; border-radius: 0; }

.page-hero {
  background: linear-gradient(165deg, #07192c, #0f3d6e);
  color: #fff;
  padding: 72px 0 56px;
}
.page-hero .eyebrow { color: #fff; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 14px 0 20px; line-height: 1.22; }
.page-hero p { color: #c9d7e6; max-width: 700px; font-size: 1.1rem; line-height: 1.85; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-card label { display: block; font-size: 13px; font-weight: 700; margin: 14px 0 6px; }
.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
}
.form-card textarea { min-height: 120px; resize: vertical; }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
.prose { color: #334155; line-height: 1.8; }
.prose h2 { font-size: 2rem; margin: 36px 0 16px; color: var(--ink); line-height: 1.25; }
.prose h3 { font-family: var(--sans); font-size: 1.15rem; margin: 28px 0 12px; line-height: 1.4; }
.prose p, .prose li { margin-bottom: 16px; line-height: 1.8; }
.prose ul { padding-left: 18px; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); }
th { background: var(--paper); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }

.map-card {
  background: var(--paper);
  border-radius: 24px;
  padding: 28px;
  min-height: 280px;
  border: 1px solid var(--line);
}

.tag-product {
  background: #fff4e8;
  color: #9a4a12;
}
.tag-keep {
  background: #e8f6ef;
  color: var(--ok);
}

.offer-feature {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.offer-feature h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin: 10px 0 14px;
  line-height: 1.3;
}
.offer-aside {
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 24px;
}
.offer-aside h4 {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .75;
  margin-bottom: 12px;
}
.offer-aside ul { list-style: none; display: grid; gap: 10px; }
.offer-aside li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  color: #d7e3ef;
  font-size: 14px;
  line-height: 1.5;
}
.offer-aside li::before { content: "→"; color: var(--orange); font-weight: 800; }

.deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.deliverable {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 20px;
}
.deliverable h3 { font-family: var(--sans); font-size: 1.05rem; margin-bottom: 8px; }
.deliverable p { color: var(--muted); font-size: .95rem; line-height: 1.65; }

.lanes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lane {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 24px;
  background: #fff;
}
.lane.lane-lead {
  border-color: rgba(242, 106, 33, .35);
  box-shadow: 0 10px 30px rgba(242, 106, 33, .08);
}
.lane h3 { font-family: var(--sans); font-size: 1.12rem; margin: 10px 0 10px; }
.lane p { color: var(--muted); font-size: .95rem; line-height: 1.65; }
.lane ul { margin-top: 14px; padding-left: 18px; color: #334155; font-size: .92rem; display: grid; gap: 6px; }

.callout {
  background: #fff8f2;
  border: 1px solid #f3d5c0;
  border-radius: 16px;
  padding: 16px 18px;
  color: #5c3a24;
  font-size: .95rem;
  line-height: 1.65;
  margin-top: 18px;
}

.honesty {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .site-logo img { height: 44px; }
  .hero-grid, .product, .calc, .cta-band, .split, .cards-4, .metrics, .steps, .proof-grid, .footer-grid, .offer-feature, .deliverables, .lanes {
    grid-template-columns: 1fr;
  }
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-block; }
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  body.nav-open .site-nav { display: flex; }
  body.nav-open .site-nav > a.btn { width: 100%; margin-left: 0; }
  .mega { position: static; transform: none; width: 100%; box-shadow: none; }
  .sticky-cta { width: calc(100% - 24px); border-radius: 16px; }
  .dx-brand { flex-direction: column; text-align: center; }
  .hero-grid, .section { padding-top: 52px; padding-bottom: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card, .btn, .sticky-cta { transition: none; }
}
