:root {
  --navy-950: #07172b;
  --navy-900: #0b2038;
  --navy-850: #102943;
  --navy-800: #17334f;
  --navy-700: #264763;
  --blue: #5aaae4;
  --blue-strong: #2d8ed3;
  --blue-soft: #dff1fd;
  --blue-pale: #f1f8fd;
  --ink: #17263a;
  --slate: #586b7e;
  --muted: #718398;
  --line: #d9e6ef;
  --surface: #ffffff;
  --surface-soft: #f6f9fc;
  --surface-blue: #edf7fd;
  --success: #22b783;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 44px;
  --shadow-sm: 0 10px 30px rgba(18, 47, 75, .08);
  --shadow-md: 0 22px 70px rgba(5, 23, 43, .14);
  --shadow-dark: 0 30px 90px rgba(0, 0, 0, .34);
  --container: 1220px;
  --header-height: 82px;
  --font-sans: Inter, "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -.035em;
  line-height: 1.08;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.65rem);
}

h3 {
  font-size: 1.35rem;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--navy-950);
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}

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

.eyebrow {
  margin-bottom: 18px;
  color: #b7ddf6;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--blue-strong);
}

.eyebrow-light {
  color: #b8def8;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.15;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.primary-nav a:focus-visible,
.role-tab:focus-visible,
.capability-tab:focus-visible,
.text-link:focus-visible {
  outline: 3px solid rgba(90, 170, 228, .46);
  outline-offset: 4px;
}

.button-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, #8bc8f2, var(--blue));
  box-shadow: 0 14px 38px rgba(58, 151, 216, .28);
}

.button-primary:hover {
  box-shadow: 0 18px 48px rgba(58, 151, 216, .38);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .04);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, .66);
  background: rgba(255, 255, 255, .08);
}

.button-dark {
  color: #fff;
  background: var(--navy-900);
  box-shadow: 0 16px 40px rgba(11, 32, 56, .2);
}

.button-small {
  min-height: 44px;
  padding-inline: 17px;
  font-size: .88rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-strong);
  font-weight: 800;
}

.text-link:hover {
  color: var(--navy-900);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, border-color .2s ease;
}

.site-header.is-scrolled {
  border-color: rgba(23, 38, 58, .08);
  box-shadow: 0 10px 30px rgba(6, 24, 42, .07);
}

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

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 184px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--navy-700);
  font-size: .92rem;
  font-weight: 700;
}

.primary-nav > a {
  position: relative;
  padding-block: 12px;
}

.primary-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue);
  content: "";
  transition: transform .2s ease;
}

.primary-nav > a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 11px;
  background: var(--surface-soft);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy-900);
  transition: transform .2s ease, opacity .2s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(72, 155, 218, .17), transparent 28%),
    radial-gradient(circle at 28% 74%, rgba(27, 111, 176, .12), transparent 27%),
    linear-gradient(135deg, var(--navy-950), #0b2340 56%, #06172c);
}

.hero::after {
  position: absolute;
  right: -12%;
  bottom: -33%;
  width: 68%;
  height: 58%;
  transform: rotate(-8deg);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(90, 170, 228, .13), rgba(90, 170, 228, 0) 66%);
  content: "";
}

.hero-layout {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(520px, 1.06fr);
  align-items: center;
  gap: 54px;
  min-height: calc(100vh - var(--header-height));
  padding-block: 78px 92px;
}

.hero-grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(90, 170, 228, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 170, 228, .09) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent 0%, #000 52%, #000 100%);
}

.hero-glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(10px);
}

.hero-glow-one {
  top: 9%;
  right: 12%;
  width: 360px;
  height: 360px;
  background: rgba(65, 151, 215, .08);
}

.hero-glow-two {
  right: 45%;
  bottom: 2%;
  width: 260px;
  height: 260px;
  background: rgba(0, 115, 201, .07);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 625px;
}

.hero h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: clamp(3.05rem, 5.5vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -.055em;
}

.hero h1 span {
  color: var(--blue);
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 34px;
  color: #d8e5ef;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 45px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.hero-proof div {
  display: grid;
  gap: 3px;
}

.hero-proof strong {
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.2;
}

.hero-proof span {
  color: #a9bfd1;
  font-size: .76rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  z-index: 3;
  min-height: 590px;
}

.visual-orbit {
  position: absolute;
  border: 1px dashed rgba(90, 170, 228, .22);
  border-radius: 50%;
}

.orbit-one {
  top: 38px;
  right: 22px;
  width: 510px;
  height: 510px;
}

.orbit-two {
  top: 118px;
  right: 96px;
  width: 360px;
  height: 360px;
}

.dashboard-panel {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  background: linear-gradient(155deg, rgba(23, 51, 79, .94), rgba(7, 23, 43, .96));
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(12px);
}

.dashboard-main {
  top: 75px;
  right: 20px;
  width: min(100%, 610px);
  transform: perspective(1400px) rotateY(-2.5deg) rotateX(1deg);
}

.dashboard-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #c5d6e4;
  font-size: .75rem;
}

.dashboard-brand-mark {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(135deg, #72bcec, #2b75b1);
  font-weight: 900;
}

.dashboard-avatar {
  width: 29px;
  height: 29px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: linear-gradient(145deg, #b1d9f4, #367cb0);
}

.dashboard-body {
  display: grid;
  grid-template-columns: 45px 1fr;
  min-height: 405px;
}

.dashboard-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 21px;
  border-right: 1px solid rgba(255, 255, 255, .06);
  background: rgba(3, 19, 35, .38);
}

.dashboard-side span {
  width: 17px;
  height: 17px;
  border: 1px solid rgba(183, 216, 240, .28);
  border-radius: 5px;
}

.dashboard-side .active {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 0 18px rgba(90, 170, 228, .42);
}

.dashboard-content {
  padding: 19px;
}

.dashboard-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.dashboard-heading div {
  display: grid;
  gap: 3px;
}

.dashboard-kicker {
  color: #7593aa;
  font-size: .65rem;
}

.dashboard-heading strong {
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 0;
}

.status-pill {
  padding: 6px 10px;
  border: 1px solid rgba(90, 170, 228, .2);
  border-radius: 999px;
  color: #9bc9e9;
  background: rgba(90, 170, 228, .08);
  font-size: .6rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 11px;
}

.metric-card {
  position: relative;
  display: grid;
  gap: 3px;
  min-height: 110px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
}

.metric-card::after {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(90, 170, 228, .05);
  content: "";
}

.metric-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
  border: 1px solid rgba(90, 170, 228, .42);
  border-radius: 7px;
  background: rgba(90, 170, 228, .13);
}

.metric-card span {
  color: #95aabd;
  font-size: .6rem;
}

.metric-card strong {
  color: #fff;
  font-size: 1.35rem;
  letter-spacing: -.03em;
}

.metric-card small {
  color: #61caa4;
  font-size: .55rem;
}

.dashboard-lower {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 11px;
}

.chart-card,
.skill-card {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  background: rgba(255, 255, 255, .032);
}

.chart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #94a8bb;
  font-size: .62rem;
}

.chart-title strong {
  color: #63d3aa;
  font-size: .7rem;
}

.line-chart {
  width: 100%;
  margin-top: 7px;
}

.chart-grid-line {
  fill: none;
  stroke: rgba(255, 255, 255, .07);
  stroke-width: 1;
}

.chart-fill {
  fill: url(#chartFill);
}

.chart-line {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
  stroke-linecap: round;
}

.skill-card-head {
  display: grid;
  gap: 1px;
  margin-bottom: 14px;
}

.skill-card-head span {
  color: #7d95aa;
  font-size: .55rem;
}

.skill-card-head strong {
  color: #fff;
  font-size: .72rem;
}

.skill-row {
  display: grid;
  grid-template-columns: 62px 1fr 28px;
  align-items: center;
  gap: 7px;
  margin-bottom: 11px;
  color: #a8bac9;
  font-size: .52rem;
}

.skill-row i {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.skill-row b {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), #84caf3);
}

.skill-row em {
  color: #9bc9e9;
  font-style: normal;
  text-align: right;
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 9px;
  width: 176px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 15px;
  color: #bdd0df;
  background: rgba(15, 44, 70, .88);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .27);
  backdrop-filter: blur(15px);
}

.floating-card > span:not(.floating-icon) {
  font-size: .58rem;
}

.floating-card strong {
  grid-column: 2;
  color: #fff;
  font-size: .69rem;
  letter-spacing: 0;
}

.floating-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--blue);
  background: rgba(90, 170, 228, .13);
}

.floating-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-learning {
  top: 25px;
  left: 10px;
}

.floating-performance {
  right: 0;
  bottom: 25px;
}

.floating-insight {
  left: 38px;
  bottom: 5px;
}

/* Common sections */
.section {
  position: relative;
  padding-block: 112px;
}

.section-heading {
  margin-bottom: 56px;
}

.section-heading.centered {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered > p:last-child {
  max-width: 730px;
  margin-right: auto;
  margin-left: auto;
}

.section-heading p,
.split-heading > p,
.roles-copy > p,
.evidence-copy > p {
  color: var(--slate);
  font-size: 1.06rem;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 70px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 5px;
}

/* Problem */
.section-problem {
  background: var(--surface-soft);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem-card {
  position: relative;
  min-height: 290px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.problem-card::after {
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 170, 228, .12), transparent 67%);
  content: "";
}

.problem-card .number {
  position: absolute;
  top: 25px;
  right: 28px;
  color: #d8e7f1;
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: -.05em;
}

.problem-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 48px;
  border-radius: 15px;
  color: var(--blue-strong);
  background: var(--surface-blue);
}

.problem-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-card h3 {
  margin-bottom: 13px;
}

.problem-card p {
  margin-bottom: 0;
  color: var(--slate);
}

/* Platform */
.section-platform {
  overflow: hidden;
  background: #fff;
}

.section-platform::before {
  position: absolute;
  top: 10%;
  right: -15%;
  width: 50%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 170, 228, .08), transparent 67%);
  content: "";
}

.purpose-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.purpose-track {
  position: relative;
  z-index: 1;
  height: 1px;
  margin: 12px 8% -1px;
  background: linear-gradient(90deg, transparent, rgba(90, 170, 228, .45) 9%, rgba(90, 170, 228, .45) 91%, transparent);
}

.purpose-track span {
  position: absolute;
  top: -5px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(90, 170, 228, .09);
  animation: track-run 8s linear infinite;
}

@keyframes track-run {
  from { left: 0; }
  to { left: calc(100% - 11px); }
}

.purpose-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 395px;
  padding: 31px 27px 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.purpose-card:hover {
  transform: translateY(-6px);
  border-color: rgba(90, 170, 228, .5);
  box-shadow: var(--shadow-md);
}

.purpose-step {
  position: absolute;
  top: 29px;
  right: 26px;
  color: #c5d7e4;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.purpose-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border-radius: 18px;
  color: var(--blue-strong);
  background: linear-gradient(145deg, #eff8fd, #dcedf9);
  box-shadow: inset 0 0 0 1px rgba(90, 170, 228, .15);
}

.purpose-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.purpose-label {
  margin-bottom: 8px;
  color: var(--blue-strong);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.purpose-card h3 {
  min-height: 58px;
  margin-bottom: 16px;
}

.purpose-card > p:not(.purpose-label) {
  color: var(--slate);
}

.purpose-card a {
  margin-top: auto;
  color: var(--navy-800);
  font-size: .92rem;
  font-weight: 800;
}

.purpose-card a span {
  color: var(--blue-strong);
}

/* Roles */
.section-roles {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-950), #112c49);
}

.roles-layout {
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  align-items: center;
  gap: 72px;
}

.roles-copy h2 {
  color: #fff;
}

.roles-copy > p {
  color: #bdd0df;
}

.role-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.role-tab {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  color: #b9cddd;
  background: rgba(255, 255, 255, .035);
  cursor: pointer;
  font-size: .83rem;
  font-weight: 800;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.role-tab:hover,
.role-tab.active {
  color: var(--navy-950);
  border-color: var(--blue);
  background: var(--blue);
}

.role-panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(16px);
}

.role-panel-top {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 20px;
}

.role-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  color: var(--blue);
  background: rgba(90, 170, 228, .12);
  box-shadow: inset 0 0 0 1px rgba(90, 170, 228, .19);
}

.role-avatar svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.role-kicker {
  margin-bottom: 3px;
  color: #86bde2;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.role-panel h3 {
  margin-bottom: 0;
  color: #fff;
  font-size: 1.7rem;
}

.role-description {
  color: #b9cddd;
}

.role-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.role-benefits li {
  position: relative;
  padding-left: 28px;
  color: #d8e5ef;
}

.role-benefits li::before {
  position: absolute;
  top: .48em;
  left: 2px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  content: "";
}

.role-mini-dashboard {
  padding: 21px;
  border-radius: 18px;
  background: rgba(4, 23, 40, .5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .07);
}

.mini-header,
.mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mini-header {
  margin-bottom: 17px;
  color: #fff;
  font-size: .83rem;
  font-weight: 800;
}

.mini-header em {
  color: #6f8da5;
  font-size: .64rem;
  font-style: normal;
  font-weight: 500;
}

.mini-row {
  color: #9eb4c5;
  font-size: .7rem;
}

.mini-row b {
  color: #dce9f2;
  font-weight: 700;
}

.mini-progress {
  height: 6px;
  margin: 7px 0 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
}

.mini-progress i {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-strong), #8acdf3);
}

/* Capabilities */
.section-capabilities {
  color: #fff;
  background: var(--navy-950);
}

.capability-browser {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
  box-shadow: var(--shadow-dark);
}

.capability-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.capability-tab {
  min-height: 68px;
  border-right: 1px solid rgba(255, 255, 255, .07);
  color: #8da6ba;
  background: rgba(255, 255, 255, .015);
  cursor: pointer;
  font-weight: 900;
  transition: color .2s ease, background-color .2s ease;
}

.capability-tab:last-child {
  border-right: 0;
}

.capability-tab:hover,
.capability-tab.active {
  color: #fff;
  background: rgba(90, 170, 228, .1);
  box-shadow: inset 0 -3px 0 var(--blue);
}

.capability-content {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: 62px;
  padding: 56px;
}

.capability-kicker {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.capability-copy h3 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.capability-copy > p:not(.capability-kicker) {
  color: #b1c4d3;
}

.capability-copy ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
}

.capability-copy li {
  position: relative;
  padding-left: 27px;
  color: #d4e2ec;
}

.capability-copy li::before {
  position: absolute;
  top: .57em;
  left: 1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(90, 170, 228, .09);
  content: "";
}

.capability-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .3);
}

.visual-browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 10px 14px;
  border-bottom: 1px solid #e8eff4;
  color: #708398;
  background: #f8fbfd;
  font-size: .63rem;
}

.visual-browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bdd4e3;
}

.visual-browser-bar em {
  margin-left: 5px;
  font-style: normal;
}

.visual-browser-body {
  display: grid;
  grid-template-columns: 56px 1fr;
  min-height: 360px;
}

.visual-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  padding-top: 24px;
  background: var(--navy-900);
}

.visual-sidebar i {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, .27);
  border-radius: 5px;
}

.visual-sidebar .active {
  border-color: var(--blue);
  background: var(--blue);
}

.visual-content {
  padding: 25px;
  color: var(--ink);
}

.visual-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.visual-title-row strong {
  font-size: 1rem;
}

.visual-title-row span {
  color: var(--blue-strong);
  font-size: .65rem;
  font-weight: 800;
}

.course-list {
  display: grid;
  gap: 11px;
}

.course-list > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid #e4edf3;
  border-radius: 13px;
  background: #fbfdfe;
}

.course-thumb {
  width: 41px;
  height: 41px;
  border-radius: 11px;
  background: linear-gradient(145deg, #5aaae4, #1f6da8);
}

.course-thumb.alt {
  background: linear-gradient(145deg, #92cdf0, #3c8bc4);
}

.course-thumb.green {
  background: linear-gradient(145deg, #78d3b5, #2b9a76);
}

.course-list p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.course-list b {
  font-size: .69rem;
}

.course-list small {
  color: #8092a4;
  font-size: .58rem;
}

.course-list em {
  color: var(--blue-strong);
  font-size: .66rem;
  font-style: normal;
  font-weight: 900;
}

.visual-footer-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 13px;
}

.visual-footer-metrics div {
  display: grid;
  gap: 2px;
  padding: 12px;
  border-radius: 11px;
  background: var(--surface-blue);
}

.visual-footer-metrics strong {
  color: var(--navy-900);
  font-size: 1rem;
}

.visual-footer-metrics span {
  color: #6f8395;
  font-size: .55rem;
}

/* Why */
.section-why {
  background: var(--surface-soft);
}

.differentiator-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.differentiator-card {
  position: relative;
  min-height: 240px;
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.differentiator-card > span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--blue-strong);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.differentiator-card h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.differentiator-card p {
  margin-bottom: 0;
  color: var(--slate);
}

/* Evidence */
.section-evidence {
  overflow: hidden;
  background: #fff;
}

.section-evidence::after {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 65%;
  height: 200%;
  transform: rotate(12deg);
  background: linear-gradient(180deg, rgba(90, 170, 228, .08), transparent 70%);
  content: "";
}

.evidence-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 70px;
}

.evidence-copy h2 {
  font-size: clamp(2.15rem, 4vw, 3.7rem);
}

.evidence-copy .button {
  margin-top: 12px;
}

.evidence-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.evidence-stat {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #fff, #f6fafe);
  box-shadow: var(--shadow-sm);
}

.evidence-stat strong {
  align-self: end;
  color: var(--navy-900);
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: .95;
  letter-spacing: -.05em;
}

.evidence-stat span {
  color: var(--slate);
  font-size: .92rem;
}

/* Implementation */
.section-implementation {
  background: var(--surface-soft);
}

.implementation-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.implementation-steps li {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.implementation-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 40px;
  border-radius: 16px;
  color: var(--blue-strong);
  background: var(--surface-blue);
  font-weight: 900;
}

.implementation-steps h3 {
  margin-bottom: 12px;
  font-size: 1.42rem;
}

.implementation-steps p {
  margin-bottom: 0;
  color: var(--slate);
}

/* Insights */
.section-insights {
  background: #fff;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.insight-card {
  display: flex;
  flex-direction: column;
  min-height: 335px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.insight-category {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 45px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--blue-strong);
  background: var(--surface-blue);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin-bottom: 15px;
  font-size: 1.55rem;
}

.insight-card p {
  color: var(--slate);
}

.insight-card a {
  margin-top: auto;
  color: var(--navy-900);
  font-weight: 800;
}

.insight-card a span {
  color: var(--blue-strong);
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-950), #153955);
}

.final-cta-inner {
  position: relative;
  z-index: 3;
  max-width: 850px;
  padding-block: 110px;
  text-align: center;
}

.final-cta h2 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.final-cta p:not(.eyebrow) {
  max-width: 690px;
  margin-right: auto;
  margin-bottom: 35px;
  margin-left: auto;
  color: #c1d3e1;
  font-size: 1.07rem;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.final-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}

.orb-a {
  top: -150px;
  left: -120px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(90, 170, 228, .16), transparent 68%);
}

.orb-b {
  right: -170px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(90, 170, 228, .14), transparent 70%);
}

/* Footer */
.site-footer {
  color: #b7c8d5;
  background: #061425;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.15fr;
  gap: 44px;
  padding-block: 76px 60px;
}

.footer-brand img {
  width: 210px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: .95;
}

.footer-brand p {
  max-width: 315px;
  color: #8fa6b8;
}

.site-footer h2 {
  margin-bottom: 21px;
  color: #fff;
  font-size: .86rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer address {
  display: block;
  margin-bottom: 10px;
  color: #9db1c1;
  font-style: normal;
  font-size: .9rem;
}

.site-footer a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 21px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #7890a3;
  font-size: .78rem;
}

/* Modal */
.demo-modal {
  width: min(calc(100% - 32px), 760px);
  max-height: 90vh;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 28px;
  background: transparent;
}

.demo-modal::backdrop {
  background: rgba(5, 17, 31, .74);
  backdrop-filter: blur(5px);
}

.modal-card {
  position: relative;
  max-height: 90vh;
  padding: 42px;
  overflow-y: auto;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .35);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 19px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--surface-soft);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.modal-card h2 {
  max-width: 600px;
  margin-right: 35px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.modal-intro {
  color: var(--slate);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.modal-card form {
  display: grid;
  gap: 17px;
  margin-top: 28px;
}

.modal-card label {
  display: grid;
  gap: 7px;
  color: var(--navy-800);
  font-size: .82rem;
  font-weight: 800;
}

.modal-card input,
.modal-card textarea,
.modal-card select {
  width: 100%;
  border: 1px solid #cfdde7;
  border-radius: 12px;
  color: var(--ink);
  background: #fbfdfe;
  outline: none;
  font-weight: 500;
}

.modal-card input,
.modal-card select {
  min-height: 48px;
  padding: 10px 13px;
}

.modal-card textarea {
  min-height: 115px;
  padding: 13px;
  resize: vertical;
}

.modal-card input:focus,
.modal-card textarea:focus,
.modal-card select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(90, 170, 228, .14);
}

.modal-card .button {
  justify-self: start;
}

.form-status {
  margin: 0;
  color: var(--success);
  font-weight: 800;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1120px) {
  :root {
    --header-height: 74px;
  }

  .primary-nav {
    gap: 17px;
    font-size: .82rem;
  }

  .primary-nav .button {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 92px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .roles-layout,
  .evidence-layout {
    grid-template-columns: 1fr;
  }

  .roles-layout {
    gap: 45px;
  }

  .purpose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .purpose-track {
    display: none;
  }

  .capability-content {
    grid-template-columns: 1fr;
  }

  .implementation-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 15px;
    left: 15px;
    display: grid;
    gap: 0;
    padding: 14px;
    visibility: hidden;
    transform: translateY(-12px);
    border: 1px solid var(--line);
    border-radius: 20px;
    opacity: 0;
    background: #fff;
    box-shadow: var(--shadow-md);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
  }

  .primary-nav > a {
    padding: 13px 12px;
    border-bottom: 1px solid #edf2f6;
  }

  .primary-nav > a::after {
    display: none;
  }

  .primary-nav .button {
    display: inline-flex;
    margin-top: 12px;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .section {
    padding-block: 88px;
  }

  .split-heading,
  .capability-content {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .problem-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

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

  .problem-icon {
    margin-bottom: 34px;
  }

  .differentiator-grid {
    grid-template-columns: 1fr;
  }

  .capability-content {
    padding: 36px;
  }

  .evidence-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .brand img {
    width: 158px;
  }

  .hero-layout {
    padding-top: 68px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-proof div {
    grid-template-columns: 92px 1fr;
    align-items: baseline;
  }

  .hero-visual {
    min-height: 500px;
  }

  .dashboard-main {
    top: 65px;
    right: -8%;
    width: 116%;
    transform: scale(.84);
    transform-origin: center top;
  }

  .floating-card {
    transform: scale(.86);
  }

  .floating-learning {
    top: 8px;
    left: -10px;
  }

  .floating-performance {
    right: -8px;
    bottom: 14px;
  }

  .floating-insight {
    left: 0;
    bottom: -5px;
  }

  .purpose-grid {
    grid-template-columns: 1fr;
  }

  .purpose-card {
    min-height: 335px;
  }

  .purpose-card h3 {
    min-height: auto;
  }

  .role-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .role-tab:last-child {
    grid-column: 1 / -1;
  }

  .role-panel {
    padding: 25px;
  }

  .capability-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-tab:nth-child(2) {
    border-right: 0;
  }

  .capability-tab:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

  .capability-content {
    padding: 27px;
  }

  .visual-browser-body {
    grid-template-columns: 42px 1fr;
  }

  .visual-content {
    padding: 16px;
  }

  .course-list > div {
    grid-template-columns: auto 1fr;
  }

  .course-list em {
    display: none;
  }

  .visual-footer-metrics {
    grid-template-columns: 1fr;
  }

  .evidence-stats,
  .implementation-steps,
  .insight-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .evidence-stat {
    min-height: 150px;
  }

  .implementation-steps li {
    min-height: auto;
  }

  .implementation-steps span,
  .insight-category {
    margin-bottom: 26px;
  }

  .final-cta-inner {
    text-align: left;
  }

  .final-cta p:not(.eyebrow) {
    margin-left: 0;
  }

  .final-cta-actions {
    display: grid;
    justify-content: stretch;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .modal-card {
    padding: 32px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* v0.2 real-product showcase */
.hero-product-showcase{position:relative;min-height:590px;isolation:isolate}
.product-halo{position:absolute;inset:7% 2% 8% 8%;border-radius:50%;background:radial-gradient(circle at 50% 50%,rgba(90,170,228,.28),rgba(90,170,228,.05) 48%,transparent 72%);filter:blur(12px);z-index:-1}
.product-window{position:absolute;margin:0;overflow:hidden;border:1px solid rgba(255,255,255,.22);border-radius:18px;background:#fff;box-shadow:0 28px 75px rgba(0,0,0,.34)}
.product-window img{width:100%;height:100%;object-fit:cover;display:block}
.product-window-main{left:2%;top:16%;width:83%;height:66%;transform:rotate(-1deg);z-index:2}
.product-window-main img{object-position:top left}
.product-window-bar,.product-shot-bar{height:36px;display:flex;align-items:center;gap:7px;padding:0 13px;background:#f5f8fb;border-bottom:1px solid #e6edf3;color:#617386;font-size:.68rem}
.product-window-bar span{width:7px;height:7px;border-radius:50%;background:#c9d5df}.product-window-bar span:nth-child(2){background:#b9d8ec}.product-window-bar span:nth-child(3){background:#8ec6eb}.product-window-bar em{margin-left:5px;font-style:normal;font-weight:700}
.product-window-top{right:-1%;top:5%;width:44%;height:31%;z-index:4;transform:rotate(1.5deg)}
.product-window-bottom{right:2%;bottom:1%;width:46%;height:31%;z-index:4;transform:rotate(-1deg)}
.product-window-label{position:absolute;z-index:2;left:10px;top:10px;padding:7px 10px;border-radius:9px;background:rgba(7,23,43,.9);color:#fff;font-size:.65rem;font-weight:750;box-shadow:0 6px 18px rgba(7,23,43,.22)}
.product-window-label span{color:#8fcbf2;margin-right:5px}
.product-window-top img,.product-window-bottom img{height:100%;object-fit:cover;object-position:top center}
.connected-chip{position:absolute;z-index:6;display:flex;align-items:center;gap:9px;padding:9px 13px;border-radius:999px;background:rgba(255,255,255,.97);color:var(--navy-900);box-shadow:0 10px 28px rgba(0,0,0,.18)}
.connected-chip i{width:8px;height:8px;border-radius:50%;background:var(--blue);flex:0 0 auto}.connected-chip span{display:flex;flex-direction:column;line-height:1.05}.connected-chip strong{font-size:.62rem;letter-spacing:.08em;color:var(--blue-strong)}.connected-chip small{font-size:.68rem;font-weight:800;color:var(--navy-900);white-space:nowrap}.chip-learning{left:-2%;top:10%}.chip-skills{left:2%;bottom:13%}
.showcase-note{position:absolute;z-index:7;right:1%;left:auto;bottom:2%;display:flex;flex-direction:column;padding:10px 14px;border-radius:12px;background:rgba(7,23,43,.9);color:#fff;box-shadow:0 12px 30px rgba(0,0,0,.2)}.showcase-note strong{font-size:.77rem}.showcase-note span{font-size:.62rem;color:#b8def8}

.role-panel{overflow:hidden}.role-product-shot{margin:26px 0 0;border:1px solid var(--line);border-radius:18px;overflow:hidden;background:#fff;box-shadow:var(--shadow-sm)}
.role-product-shot img{width:100%;aspect-ratio:16/8.2;object-fit:cover;object-position:top center;transition:opacity .2s ease}
.product-shot-bar{justify-content:space-between}.product-shot-bar em{font-style:normal;color:var(--blue-strong);font-weight:800}

.capability-product-shot{margin:0;overflow:hidden;border:1px solid rgba(255,255,255,.14);border-radius:22px;background:#fff;box-shadow:var(--shadow-dark)}
.capability-product-shot img{width:100%;aspect-ratio:16/9;object-fit:cover;object-position:top center;background:#fff}
.capability-product-shot figcaption{padding:13px 17px;color:#d9e7f4;background:var(--navy-900);font-size:.82rem}
.capability-product-shot .product-shot-bar{background:#f6f9fc;color:var(--slate)}

.section-product-gallery{background:linear-gradient(180deg,#fff,#f3f8fc)}
.product-gallery-grid{display:grid;grid-template-columns:1.35fr 1fr;gap:22px;align-items:stretch}
.gallery-card{margin:0;overflow:hidden;border:1px solid var(--line);border-radius:24px;background:#fff;box-shadow:var(--shadow-sm)}
.gallery-card-wide{grid-row:span 2;display:flex;flex-direction:column}.gallery-card img{width:100%;height:240px;object-fit:cover;object-position:top center;background:#fff}.gallery-card-wide img{height:auto;max-height:520px;object-fit:contain;object-position:center top;flex:1 1 auto}
.gallery-card figcaption{display:flex;gap:10px;align-items:baseline;padding:17px 20px 19px}.gallery-card figcaption span{color:var(--blue-strong);font-size:.72rem;font-weight:900;letter-spacing:.1em;text-transform:uppercase}.gallery-card figcaption strong{font-size:.96rem;line-height:1.35}

@media (max-width: 1040px){.hero-product-showcase{min-height:520px}.product-window-main{width:88%;left:0}.product-window-top{right:0;width:42%}.product-window-bottom{right:0;width:44%}}
@media (max-width: 820px){.hero-product-showcase{min-height:510px;margin-top:10px}.product-window-main{left:2%;top:13%;width:94%;height:65%}.product-window-top{width:45%;height:27%;top:2%}.product-window-bottom{width:48%;height:27%;bottom:0}.connected-chip,.showcase-note{display:none}.product-gallery-grid{grid-template-columns:1fr}.gallery-card-wide{grid-row:auto}.gallery-card-wide img,.gallery-card img{height:auto;aspect-ratio:16/9}.role-product-shot img{aspect-ratio:16/10}}
@media (max-width: 560px){.hero-product-showcase{min-height:370px}.product-window-main{height:68%;top:15%;border-radius:13px}.product-window-top{width:48%;height:26%;border-radius:11px}.product-window-bottom{width:50%;height:26%;border-radius:11px}.product-window-label{font-size:.52rem;padding:5px 7px}.product-window-bar{height:28px}.product-window-bar em{display:none}.role-product-shot img{aspect-ratio:4/3}.gallery-card figcaption{flex-direction:column;gap:4px}}


/* v0.3 refined hero visual */
.hero-visual.hero-product-showcase{min-height:auto;display:flex;align-items:center;justify-content:center;padding:18px 0 14px;isolation:isolate}
.hero-product-showcase::before{content:"";position:absolute;inset:8% 6% auto auto;width:76%;height:76%;border-radius:50%;border:1px solid rgba(90,170,228,.16);filter:drop-shadow(0 0 18px rgba(90,170,228,.1))}
.hero-product-showcase::after{content:"";position:absolute;inset:auto auto 4% 14%;width:52%;height:18%;background:radial-gradient(circle at center, rgba(90,170,228,.20), rgba(90,170,228,0) 72%);filter:blur(14px)}
.hero-heroframe{position:relative;z-index:2;width:min(100%, 760px);border-radius:34px;overflow:hidden;background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));border:1px solid rgba(255,255,255,.14);box-shadow:0 34px 90px rgba(0,0,0,.34)}
.hero-heroframe img{display:block;width:100%;height:auto;object-fit:contain}
@media (max-width: 1180px){.hero-heroframe{width:min(100%,700px)}}
@media (max-width: 860px){.hero-visual.hero-product-showcase{padding-top:6px}.hero-product-showcase::before{display:none}}
@media (max-width: 650px){.hero-visual.hero-product-showcase{width:100%;padding:2px 0 6px}.hero-heroframe{width:100%;border-radius:24px;box-shadow:0 22px 55px rgba(0,0,0,.28)}}


/* WordPress / Elementor integration */
body.kh-elementor-site{margin:0;background:#fff;color:#101c2b}
body.kh-elementor-site main{overflow:hidden}
body.kh-elementor-site .elementor-section.elementor-section-stretched{left:auto!important;width:100%!important}
body.kh-elementor-site .elementor-widget-html>.elementor-widget-container{width:100%}
.site-header .primary-nav .menu{display:flex;align-items:center;gap:28px;list-style:none;margin:0;padding:0}
.site-header .primary-nav .menu a{color:inherit;text-decoration:none;font-weight:700}
.site-header .primary-nav .current-menu-item>a{color:#2a8ed1}
.site-header .primary-nav .kh-header-cta{margin-left:12px}

/* Refined transparent hero artwork */
.hero-visual.hero-product-showcase{min-height:auto;display:flex;align-items:center;justify-content:center;padding:18px 0 14px;isolation:isolate}
.hero-product-showcase::before{content:"";position:absolute;inset:8% 6% auto auto;width:76%;height:76%;border-radius:50%;border:1px solid rgba(90,170,228,.16);filter:drop-shadow(0 0 18px rgba(90,170,228,.1))}
.hero-product-showcase::after{content:"";position:absolute;inset:auto auto 4% 14%;width:52%;height:18%;background:radial-gradient(circle at center, rgba(90,170,228,.20), rgba(90,170,228,0) 72%);filter:blur(14px)}
.hero-heroframe{position:relative;z-index:2;width:min(100%,760px);background:none!important;border:none!important;box-shadow:none!important;overflow:visible!important;border-radius:0!important}
.hero-heroframe img{display:block;width:100%;height:auto;object-fit:contain;filter:drop-shadow(0 28px 58px rgba(0,0,0,.28))}

/* Generic KKB page system */
.kh-inner-hero{position:relative;padding:120px 0 92px;background:linear-gradient(135deg,#07172b 0%,#0f2a47 60%,#0b2039 100%);color:#fff;overflow:hidden}
.kh-inner-hero:after{content:"";position:absolute;right:-10%;top:-20%;width:55%;height:150%;background:radial-gradient(circle,rgba(90,170,228,.20),transparent 64%);pointer-events:none}
.kh-inner-hero .container{position:relative;z-index:2;display:grid;grid-template-columns:minmax(0,.95fr) minmax(360px,1.05fr);align-items:center;gap:58px}
.kh-breadcrumb{display:flex;gap:8px;align-items:center;margin-bottom:24px;color:#a9cbe3;font-size:.82rem}
.kh-breadcrumb a{color:#c9e4f5;text-decoration:none}
.kh-inner-hero .eyebrow{margin-bottom:18px}
.kh-inner-hero h1{max-width:800px;margin:0 0 24px;font-size:clamp(2.7rem,5vw,4.7rem);line-height:1.02;letter-spacing:-.045em;color:#fff}
.kh-inner-hero p.kh-intro{max-width:760px;margin:0;color:#d5e4ef;font-size:1.12rem;line-height:1.72}
.kh-inner-shot{margin:0;position:relative}
.kh-inner-shot img{display:block;width:100%;border-radius:24px;background:#fff;box-shadow:0 34px 90px rgba(0,0,0,.34)}
.kh-page-section{padding:92px 0;background:#fff}
.kh-page-section.kh-light{background:#f5f9fc}
.kh-page-section.kh-navy{background:#0b2039;color:#fff}
.kh-copy-grid{display:grid;grid-template-columns:minmax(0,.88fr) minmax(0,1.12fr);gap:70px;align-items:center}
.kh-copy-grid.reverse .kh-copy-media{order:-1}
.kh-page-section h2{margin:0 0 20px;font-size:clamp(2rem,3.6vw,3.35rem);line-height:1.08;letter-spacing:-.035em;color:#101c2b}
.kh-page-section.kh-navy h2{color:#fff}
.kh-page-section p{font-size:1.04rem;line-height:1.78;color:#52667a}
.kh-page-section.kh-navy p{color:#d2e1ec}
.kh-copy-media img{display:block;width:100%;border-radius:22px;background:#fff;box-shadow:0 22px 60px rgba(9,30,52,.14)}
.kh-card-section{padding:92px 0;background:#f5f9fc}
.kh-card-section .kh-section-head{max-width:820px;margin-bottom:42px}
.kh-card-section h2,.kh-section-head h2{margin:0 0 18px;font-size:clamp(2.1rem,3.6vw,3.4rem);line-height:1.08;color:#101c2b}
.kh-card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.kh-card{padding:28px;border:1px solid #dfe9f1;border-radius:20px;background:#fff;box-shadow:0 12px 36px rgba(15,42,71,.07)}
.kh-card .kh-card-kicker{margin:0 0 9px;color:#2e91d1;font-weight:900;font-size:.72rem;letter-spacing:.1em;text-transform:uppercase}
.kh-card h3{margin:0 0 12px;font-size:1.22rem;color:#101c2b}
.kh-card p{margin:0;color:#5f7080;font-size:.93rem;line-height:1.65}
.kh-highlight{padding:80px 0;background:linear-gradient(135deg,#eaf5fc,#f8fbfd)}
.kh-highlight-inner{padding:34px 38px;border:1px solid #cfe5f3;border-radius:22px;background:#fff;box-shadow:0 16px 40px rgba(15,42,71,.08)}
.kh-highlight h2{margin:0 0 14px;font-size:1.8rem;color:#101c2b}.kh-highlight p{margin:0;color:#52667a;line-height:1.75}
.kh-list{display:grid;gap:10px;margin:18px 0 0;padding:0;list-style:none}
.kh-list li{position:relative;padding-left:28px;color:#52667a;line-height:1.62}.kh-list li:before{content:"✓";position:absolute;left:0;top:0;color:#2e91d1;font-weight:900}
.kh-status-note{padding:24px 28px;border-left:4px solid #fd7774;border-radius:12px;background:#fff2f1;color:#62342f;line-height:1.65}
.kh-page-cta{padding:80px 0;background:#07172b;color:#fff}
.kh-page-cta .container{display:flex;align-items:center;justify-content:space-between;gap:36px}
.kh-page-cta h2{margin:0 0 10px;color:#fff;font-size:clamp(2rem,3.2vw,3.15rem)}
.kh-page-cta p{margin:0;color:#c7d9e8;max-width:760px}
.kh-page-cta a{flex:0 0 auto}
.kh-contact-form{display:grid;gap:18px}.kh-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.kh-contact-form label{display:grid;gap:7px;font-weight:800;color:#26394b}.kh-contact-form input,.kh-contact-form select,.kh-contact-form textarea{width:100%;box-sizing:border-box;padding:13px 14px;border:1px solid #cedbe5;border-radius:10px;font:inherit;background:#fff}.kh-contact-form textarea{min-height:140px;resize:vertical}.kh-contact-form .kh-consent{font-size:.86rem;font-weight:500;color:#637587}.kh-form-success{padding:18px;border-radius:12px;background:#e8f7ef;color:#1f6d48}.kh-form-error{padding:18px;border-radius:12px;background:#fff0ef;color:#8b3e37}
.kh-insights-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.kh-insight-card{padding:26px;border:1px solid #dfe9f1;border-radius:18px;background:#fff}.kh-insight-card a{color:#101c2b;text-decoration:none}.kh-insight-card h3{margin:8px 0 12px;font-size:1.2rem}.kh-insight-card p{font-size:.92rem;color:#617386}
.kh-draft-banner{padding:14px 18px;background:#fff3cd;border:1px solid #f0dc8c;border-radius:10px;color:#6e5b18;font-weight:700;margin-bottom:24px}
@media(max-width:1040px){.kh-inner-hero .container,.kh-copy-grid{grid-template-columns:1fr}.kh-inner-shot{max-width:780px}.kh-card-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:700px){.kh-inner-hero{padding:88px 0 70px}.kh-inner-hero .container{gap:38px}.kh-page-section,.kh-card-section{padding:70px 0}.kh-card-grid,.kh-insights-grid,.kh-form-grid{grid-template-columns:1fr}.kh-page-cta .container{align-items:flex-start;flex-direction:column}.kh-copy-grid.reverse .kh-copy-media{order:0}}

.kh-contact-form input[type=checkbox]{width:auto;margin-right:8px}

/* ================================================================
   KnowHow Elementor Build v1.0
   Native Elementor alignment layer
   Homepage source of truth: Static Homepage Prototype v0.3.3 Approved
   ================================================================ */
.kh-elementor-v1 .elementor-element.e-con{--padding-top:0;--padding-right:0;--padding-bottom:0;--padding-left:0;--gap:0px;}
.kh-elementor-v1 .elementor-widget-text-editor p:last-child{margin-bottom:0}
.kh-elementor-v1 .elementor-widget-heading .elementor-heading-title{font-family:var(--font-sans);color:inherit;line-height:inherit;letter-spacing:inherit}
.kh-elementor-v1 .elementor-widget-text-editor{font-family:var(--font-sans)}
.kh-elementor-v1 .section>.e-con-inner,.kh-elementor-v1 .hero>.e-con-inner,.kh-elementor-v1 .final-cta>.e-con-inner{max-width:none!important;width:100%!important}
.kh-elementor-v1 .container{max-width:var(--container)!important;width:min(calc(100% - 40px),var(--container))!important;margin-inline:auto!important;padding:0!important}

/* Native button widgets mapped to the approved button treatments */
.kh-elementor-v1 .kh-button-primary .elementor-button,
.kh-elementor-v1 .kh-button-secondary .elementor-button,
.kh-elementor-v1 .kh-button-dark .elementor-button{
  display:inline-flex;align-items:center;justify-content:center;min-height:52px;padding:13px 21px;border-radius:14px;font-family:var(--font-sans);font-weight:800;line-height:1.15;text-decoration:none;transition:transform .2s ease,box-shadow .2s ease,background-color .2s ease,border-color .2s ease
}
.kh-elementor-v1 .kh-button-primary .elementor-button{color:var(--navy-950);background:linear-gradient(135deg,#8bc8f2,var(--blue));box-shadow:0 14px 38px rgba(58,151,216,.28);border:1px solid transparent}
.kh-elementor-v1 .kh-button-primary .elementor-button:hover{transform:translateY(-2px);box-shadow:0 18px 48px rgba(58,151,216,.38)}
.kh-elementor-v1 .kh-button-secondary .elementor-button{color:#fff;border:1px solid rgba(255,255,255,.38);background:rgba(255,255,255,.04)}
.kh-elementor-v1 .kh-button-secondary .elementor-button:hover{transform:translateY(-2px);border-color:rgba(255,255,255,.66);background:rgba(255,255,255,.08)}
.kh-elementor-v1 .kh-button-dark .elementor-button{color:#fff;background:var(--navy-900);box-shadow:0 16px 40px rgba(11,32,56,.2)}
.kh-elementor-v1 .kh-text-button .elementor-button{padding:0!important;min-height:0!important;border:0!important;background:none!important;box-shadow:none!important;color:var(--blue-strong)!important;font-weight:800!important;text-align:left!important;justify-content:flex-start!important}
.kh-elementor-v1 .kh-text-button .elementor-button:hover{color:var(--navy-900)!important}

/* Hero native Elementor composition */
.kh-elementor-v1 .kh-home-hero{position:relative;overflow:hidden;background:radial-gradient(circle at 80% 18%,rgba(48,118,176,.22),transparent 31%),radial-gradient(circle at 28% 74%,rgba(27,111,176,.12),transparent 27%),linear-gradient(135deg,var(--navy-950),#0b2340 56%,#06172c);color:#fff}
.kh-elementor-v1 .kh-home-hero:after{position:absolute;right:-12%;bottom:-33%;width:68%;height:58%;transform:rotate(-8deg);border-radius:50%;background:radial-gradient(ellipse at center,rgba(90,170,228,.13),rgba(90,170,228,0) 66%);content:"";pointer-events:none}
.kh-elementor-v1 .hero-layout{position:relative;z-index:4;display:grid!important;grid-template-columns:minmax(0,.94fr) minmax(520px,1.06fr)!important;align-items:center!important;gap:54px!important;min-height:calc(100vh - var(--header-height));padding-block:78px 92px!important}
.kh-elementor-v1 .hero-copy{display:block!important;position:relative;z-index:3;max-width:625px}
.kh-elementor-v1 .hero-copy>.elementor-element{margin:0}
.kh-elementor-v1 .hero-copy .eyebrow{margin-bottom:18px}
.kh-elementor-v1 .eyebrow .elementor-widget-container,.kh-elementor-v1 .eyebrow p{margin:0;color:inherit;font-size:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;text-transform:inherit}
.kh-elementor-v1 .kh-hero-title .elementor-heading-title{margin:0 0 30px;color:#fff;font-size:clamp(3.05rem,5.5vw,5.4rem);font-weight:700;letter-spacing:-.055em;line-height:1.08}
.kh-elementor-v1 .kh-hero-title .elementor-heading-title span{color:var(--blue)}
.kh-elementor-v1 .hero-intro{max-width:610px;margin-bottom:34px!important;color:#d8e5ef;font-size:clamp(1.02rem,1.6vw,1.18rem);line-height:1.7}
.kh-elementor-v1 .hero-intro p{color:inherit;font-size:inherit;line-height:inherit;margin:0}
.kh-elementor-v1 .hero-actions{display:flex!important;flex-direction:row!important;flex-wrap:wrap!important;gap:14px!important;margin-bottom:45px!important}
.kh-elementor-v1 .hero-actions>.elementor-element{width:auto!important;flex:0 0 auto!important}
.kh-elementor-v1 .hero-proof{display:grid!important;grid-template-columns:repeat(3,1fr)!important;gap:22px!important;padding-top:28px!important;border-top:1px solid rgba(255,255,255,.14)}
.kh-elementor-v1 .hero-proof .kh-proof-item{display:block!important}
.kh-elementor-v1 .kh-proof-number .elementor-heading-title{margin:0 0 3px;color:#fff;font-size:1.45rem;line-height:1.2;font-weight:800}
.kh-elementor-v1 .kh-proof-copy p{margin:0;color:#a9bfd1;font-size:.76rem;line-height:1.45}
.kh-elementor-v1 .hero-visual{position:relative;z-index:3;display:flex!important;align-items:center!important;justify-content:center!important;padding:18px 0 14px!important;isolation:isolate}
.kh-elementor-v1 .hero-product-showcase:before{content:"";position:absolute;inset:8% 6% auto auto;width:76%;height:76%;border-radius:50%;border:1px solid rgba(90,170,228,.16);filter:drop-shadow(0 0 18px rgba(90,170,228,.1))}
.kh-elementor-v1 .hero-product-showcase:after{content:"";position:absolute;inset:auto auto 4% 14%;width:52%;height:18%;background:radial-gradient(circle at center,rgba(90,170,228,.20),rgba(90,170,228,0) 72%);filter:blur(14px)}
.kh-elementor-v1 .hero-heroframe{position:relative;z-index:2;display:block!important;width:min(100%,760px)!important;background:none!important;border:0!important;box-shadow:none!important;overflow:visible!important;border-radius:0!important}
.kh-elementor-v1 .kh-hero-image img{display:block;width:100%;height:auto;object-fit:contain;filter:drop-shadow(0 28px 58px rgba(0,0,0,.28))}

/* Section heading wrappers */
.kh-elementor-v1 .section-heading{display:block!important}
.kh-elementor-v1 .section-heading.centered{text-align:center!important;max-width:860px!important;margin:0 auto 54px!important}
.kh-elementor-v1 .section-heading.centered>.elementor-element{width:100%!important}
.kh-elementor-v1 .section-heading.centered .elementor-heading-title{text-align:center}
.kh-elementor-v1 .section-heading.centered .elementor-widget-text-editor p{text-align:center}
.kh-elementor-v1 .split-heading{display:grid!important;grid-template-columns:minmax(0,1.05fr) minmax(330px,.7fr)!important;align-items:end!important;gap:70px!important;margin-bottom:50px!important}
.kh-elementor-v1 .split-heading .kh-split-title{display:block!important}
.kh-elementor-v1 .split-heading .kh-split-copy{align-self:end}
.kh-elementor-v1 .section-heading h2,.kh-elementor-v1 .section-heading .elementor-heading-title{margin:0 0 22px;color:var(--ink);font-size:clamp(2rem,4vw,3.65rem);font-weight:700;letter-spacing:-.035em;line-height:1.08}
.kh-elementor-v1 .section-heading p,.kh-elementor-v1 .kh-split-copy p{margin:0;color:var(--slate);font-size:1rem;line-height:1.75}

/* Problem cards */
.kh-elementor-v1 .problem-grid{display:grid!important;grid-template-columns:repeat(3,1fr)!important;gap:22px!important}
.kh-elementor-v1 .problem-card{display:block!important;position:relative;min-height:330px;padding:28px!important;border:1px solid var(--line);border-radius:24px;background:#fff;box-shadow:var(--shadow-sm)}
.kh-elementor-v1 .problem-card .number span{display:block;margin-bottom:22px;color:#a7b9c8;font-size:.74rem;font-weight:900;letter-spacing:.14em}
.kh-elementor-v1 .problem-card .problem-icon{display:grid!important;place-items:center;width:58px;height:58px;margin-bottom:44px;border-radius:18px;color:var(--blue-strong);background:var(--blue-pale)}
.kh-elementor-v1 .problem-card .problem-icon .elementor-icon{color:var(--blue-strong);font-size:25px}
.kh-elementor-v1 .problem-card h3{margin:0 0 13px;font-size:1.35rem;color:var(--ink)}
.kh-elementor-v1 .problem-card p{margin:0;color:var(--slate);font-size:.92rem;line-height:1.7}

/* Purpose cards */
.kh-elementor-v1 .purpose-grid{display:grid!important;grid-template-columns:repeat(4,1fr)!important;gap:18px!important}
.kh-elementor-v1 .purpose-card{display:block!important;position:relative;min-height:395px;padding:27px!important;border:1px solid var(--line);border-radius:24px;background:#fff;box-shadow:var(--shadow-sm)}
.kh-elementor-v1 .purpose-step span{display:block;margin-bottom:25px;color:#a7b7c5;font-size:.72rem;font-weight:900;letter-spacing:.13em}
.kh-elementor-v1 .purpose-icon{display:grid!important;place-items:center;width:56px;height:56px;margin-bottom:30px;border-radius:17px;color:var(--blue-strong);background:var(--blue-pale)}
.kh-elementor-v1 .purpose-icon .elementor-icon{color:var(--blue-strong);font-size:24px}
.kh-elementor-v1 .purpose-label p{margin:0 0 8px;color:var(--blue-strong);font-size:.72rem;font-weight:900;letter-spacing:.12em;text-transform:uppercase}
.kh-elementor-v1 .purpose-card h3{margin:0 0 15px;min-height:58px;color:var(--ink);font-size:1.27rem;line-height:1.15}
.kh-elementor-v1 .purpose-card>.elementor-widget-text-editor:not(.purpose-label) p{margin:0 0 24px;color:var(--slate);font-size:.9rem;line-height:1.65}

/* Interactive custom widgets preserve v0.3.3 DOM and styling */
.kh-elementor-v1 .kh-role-widget-wrap,.kh-elementor-v1 .kh-capability-widget-wrap{width:100%!important}
.kh-elementor-v1 .kh-role-widget-wrap>.elementor-widget-container,.kh-elementor-v1 .kh-capability-widget-wrap>.elementor-widget-container{width:100%}

/* Product gallery native wrapper corrections */
.kh-elementor-v1 .product-gallery-grid{display:grid!important;grid-template-columns:1.35fr 1fr!important;gap:22px!important;align-items:stretch!important}
.kh-elementor-v1 .gallery-card{display:flex!important;flex-direction:column!important;margin:0;overflow:hidden;border:1px solid var(--line);border-radius:24px;background:#fff;box-shadow:var(--shadow-sm)}
.kh-elementor-v1 .gallery-card-wide{grid-row:span 2}
.kh-elementor-v1 .kh-gallery-image{width:100%!important}
.kh-elementor-v1 .gallery-card:not(.gallery-card-wide) .kh-gallery-image img{width:100%;height:240px;object-fit:cover;object-position:top center;background:#fff}
.kh-elementor-v1 .gallery-card-wide .kh-gallery-image img{width:100%;height:auto;max-height:520px;object-fit:contain;object-position:center top;background:#fff}
.kh-elementor-v1 .kh-gallery-caption{display:flex!important;flex-direction:row!important;gap:10px!important;align-items:baseline!important;padding:17px 20px 19px!important}
.kh-elementor-v1 .kh-gallery-label{width:auto!important}.kh-elementor-v1 .kh-gallery-label span{color:var(--blue-strong);font-size:.72rem;font-weight:900;letter-spacing:.1em;text-transform:uppercase}
.kh-elementor-v1 .kh-gallery-title{width:auto!important}.kh-elementor-v1 .kh-gallery-title .elementor-heading-title{margin:0;font-size:.96rem;line-height:1.35;color:var(--ink)}

/* Differentiators */
.kh-elementor-v1 .differentiator-grid{display:grid!important;grid-template-columns:repeat(2,1fr)!important;gap:18px!important}
.kh-elementor-v1 .differentiator-card{display:block!important;padding:28px!important;border:1px solid var(--line);border-radius:22px;background:#fff}
.kh-elementor-v1 .kh-diff-number span{display:block;margin-bottom:28px;color:var(--blue-strong);font-size:.75rem;font-weight:900;letter-spacing:.12em}
.kh-elementor-v1 .differentiator-card h3{margin:0 0 12px;font-size:1.3rem;color:var(--ink)}
.kh-elementor-v1 .differentiator-card p{margin:0;color:var(--slate);font-size:.92rem;line-height:1.7}

/* Evidence */
.kh-elementor-v1 .evidence-layout{display:grid!important;grid-template-columns:minmax(0,.88fr) minmax(500px,1.12fr)!important;gap:70px!important;align-items:center!important}
.kh-elementor-v1 .evidence-copy{display:block!important}.kh-elementor-v1 .evidence-copy h2{margin:0 0 22px;font-size:clamp(2rem,4vw,3.65rem);color:var(--ink)}
.kh-elementor-v1 .evidence-copy p{color:var(--slate);line-height:1.75}.kh-elementor-v1 .evidence-copy .kh-button-dark{margin-top:18px}
.kh-elementor-v1 .evidence-stats{display:grid!important;grid-template-columns:repeat(2,1fr)!important;gap:18px!important}
.kh-elementor-v1 .evidence-stat{display:block!important;min-height:180px;padding:27px!important;border:1px solid var(--line);border-radius:22px;background:#fff;box-shadow:var(--shadow-sm)}
.kh-elementor-v1 .evidence-stat .elementor-heading-title{margin:0 0 12px;color:var(--navy-900);font-size:1.55rem}
.kh-elementor-v1 .evidence-stat p{margin:0;color:var(--slate);font-size:.88rem;line-height:1.6}

/* Implementation */
.kh-elementor-v1 .implementation-steps{display:grid!important;grid-template-columns:repeat(4,1fr)!important;gap:18px!important}
.kh-elementor-v1 .kh-implementation-step{display:block!important;position:relative;min-height:285px;padding:26px!important;border-top:2px solid var(--blue);background:#fff}
.kh-elementor-v1 .kh-step-number span{display:block;margin-bottom:55px;color:var(--blue-strong);font-size:.75rem;font-weight:900;letter-spacing:.12em}
.kh-elementor-v1 .kh-implementation-step h3{margin:0 0 12px;font-size:1.28rem;color:var(--ink)}
.kh-elementor-v1 .kh-implementation-step p{margin:0;color:var(--slate);font-size:.91rem;line-height:1.68}

/* Insights */
.kh-elementor-v1 .insight-grid{display:grid!important;grid-template-columns:repeat(3,1fr)!important;gap:22px!important}
.kh-elementor-v1 .insight-card{display:block!important;min-height:340px;padding:28px!important;border:1px solid var(--line);border-radius:24px;background:#fff;box-shadow:var(--shadow-sm)}
.kh-elementor-v1 .insight-category span{display:inline-flex;margin-bottom:32px;padding:6px 10px;border-radius:999px;color:var(--blue-strong);background:var(--blue-pale);font-size:.7rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.kh-elementor-v1 .insight-card h3{margin:0 0 16px;font-size:1.35rem;line-height:1.25;color:var(--ink)}
.kh-elementor-v1 .insight-card p{margin:0 0 24px;color:var(--slate);font-size:.92rem;line-height:1.7}

/* Final CTA */
.kh-elementor-v1 .final-cta{position:relative;padding:95px 0!important;overflow:hidden;color:#fff;background:linear-gradient(135deg,#07172b,#0b2745)}
.kh-elementor-v1 .final-cta-inner{display:block!important;position:relative;z-index:2;max-width:900px!important;text-align:center}
.kh-elementor-v1 .final-cta-inner h2{margin:0 0 22px;color:#fff;font-size:clamp(2.2rem,4.5vw,4rem)}
.kh-elementor-v1 .final-cta-inner>.elementor-widget-text-editor:not(.eyebrow) p{max-width:720px;margin:0 auto 28px;color:#cfe0ec;font-size:1.05rem;line-height:1.7}
.kh-elementor-v1 .final-cta-actions{display:flex!important;flex-direction:row!important;justify-content:center!important;gap:14px!important}
.kh-elementor-v1 .final-cta-actions>.elementor-element{width:auto!important}

/* Generic native Elementor page layout */
.kh-elementor-v1 .kh-inner-hero-grid{display:grid!important;grid-template-columns:minmax(0,.95fr) minmax(360px,1.05fr)!important;align-items:center!important;gap:58px!important}
.kh-elementor-v1 .kh-inner-copy{display:block!important}.kh-elementor-v1 .kh-inner-copy>.elementor-element{width:100%!important}
.kh-elementor-v1 .kh-inner-hero .kh-breadcrumb-widget{margin-bottom:24px}.kh-elementor-v1 .kh-inner-hero .kh-breadcrumb-widget .kh-breadcrumb{margin:0}
.kh-elementor-v1 .kh-inner-hero .elementor-heading-title{max-width:800px;margin:0 0 24px;font-size:clamp(2.7rem,5vw,4.7rem);line-height:1.02;letter-spacing:-.045em;color:#fff}
.kh-elementor-v1 .kh-inner-hero .kh-intro p{max-width:760px;margin:0;color:#d5e4ef;font-size:1.12rem;line-height:1.72}
.kh-elementor-v1 .kh-inner-shot{display:block!important}.kh-elementor-v1 .kh-inner-shot img{display:block;width:100%;border-radius:24px;background:#fff;box-shadow:0 34px 90px rgba(0,0,0,.34)}
.kh-elementor-v1 .kh-card-grid{display:grid!important;grid-template-columns:repeat(3,1fr)!important;gap:22px!important}.kh-elementor-v1 .kh-card{display:block!important}
.kh-elementor-v1 .kh-highlight-inner{display:block!important}.kh-elementor-v1 .kh-page-cta>.container{display:flex!important;flex-direction:row!important;align-items:center!important;justify-content:space-between!important;gap:36px!important}.kh-elementor-v1 .kh-page-cta-copy{display:block!important}

/* Theme header compatibility with v0.3.3 */
.kh-elementor-v1 .site-header .primary-nav .menu{display:flex;align-items:center;gap:28px;list-style:none;margin:0;padding:0}
.kh-elementor-v1 .site-header .primary-nav .menu li{margin:0;padding:0}.kh-elementor-v1 .site-header .primary-nav .menu a{display:block;color:var(--navy-900);font-weight:700}.kh-elementor-v1 .site-header .primary-nav .menu a:hover{color:var(--blue-strong)}
.kh-elementor-v1 .site-header .kh-header-cta{margin-left:12px}

@media (max-width:1040px){
 .kh-elementor-v1 .hero-layout{grid-template-columns:1fr!important;min-height:auto;padding-top:92px!important}.kh-elementor-v1 .hero-copy{max-width:760px}.kh-elementor-v1 .hero-visual{width:min(100%,760px)!important;margin-inline:auto!important}
 .kh-elementor-v1 .purpose-grid{grid-template-columns:repeat(2,1fr)!important}.kh-elementor-v1 .evidence-layout{grid-template-columns:1fr!important}.kh-elementor-v1 .kh-inner-hero-grid{grid-template-columns:1fr!important}
}
@media (max-width:860px){
 .kh-elementor-v1 .split-heading{grid-template-columns:1fr!important;gap:26px!important}.kh-elementor-v1 .problem-grid,.kh-elementor-v1 .insight-grid{grid-template-columns:1fr!important}.kh-elementor-v1 .differentiator-grid{grid-template-columns:1fr!important}.kh-elementor-v1 .evidence-stats{grid-template-columns:1fr 1fr!important}.kh-elementor-v1 .implementation-steps{grid-template-columns:repeat(2,1fr)!important}.kh-elementor-v1 .product-gallery-grid{grid-template-columns:1fr!important}.kh-elementor-v1 .gallery-card-wide{grid-row:auto}.kh-elementor-v1 .gallery-card-wide .kh-gallery-image img,.kh-elementor-v1 .gallery-card .kh-gallery-image img{height:auto;aspect-ratio:16/9;object-fit:contain}
}
@media (max-width:650px){
 .kh-elementor-v1 .container{width:min(calc(100% - 30px),var(--container))!important}.kh-elementor-v1 .hero-layout{padding-top:68px!important;padding-bottom:70px!important}.kh-elementor-v1 .kh-hero-title .elementor-heading-title{font-size:clamp(2.75rem,13vw,4rem)}.kh-elementor-v1 .hero-actions{display:grid!important}.kh-elementor-v1 .hero-actions>.elementor-element{width:100%!important}.kh-elementor-v1 .hero-actions .elementor-button{width:100%}.kh-elementor-v1 .hero-proof{grid-template-columns:1fr!important;gap:14px!important}.kh-elementor-v1 .kh-proof-item{display:grid!important;grid-template-columns:92px 1fr!important;align-items:baseline!important}.kh-elementor-v1 .hero-product-showcase:before{display:none}.kh-elementor-v1 .purpose-grid,.kh-elementor-v1 .evidence-stats,.kh-elementor-v1 .implementation-steps{grid-template-columns:1fr!important}.kh-elementor-v1 .final-cta-inner{text-align:left}.kh-elementor-v1 .final-cta-inner>.elementor-widget-text-editor:not(.eyebrow) p{margin-left:0}.kh-elementor-v1 .final-cta-actions{display:grid!important;justify-content:stretch!important}.kh-elementor-v1 .final-cta-actions>.elementor-element{width:100%!important}.kh-elementor-v1 .final-cta-actions .elementor-button{width:100%}.kh-elementor-v1 .kh-page-cta>.container{align-items:flex-start!important;flex-direction:column!important}
}

/* v1.0 header/footer integration refinements */
.kh-elementor-v1 .site-footer h3{margin:0 0 15px;color:#fff;font-size:1rem;letter-spacing:0;line-height:1.2}
.kh-elementor-v1 .footer-bottom>div{display:flex;gap:18px;flex-wrap:wrap;align-items:center}
@media (max-width:860px){
  .kh-elementor-v1 .site-header .primary-nav .menu{display:grid!important;gap:0!important;width:100%}
  .kh-elementor-v1 .site-header .primary-nav .menu li{width:100%}
  .kh-elementor-v1 .site-header .primary-nav .menu li a{padding:13px 12px;border-bottom:1px solid #edf2f6}
  .kh-elementor-v1 .site-header .kh-header-cta{margin:12px 0 0!important;width:100%}
}


/* ========================================================================
   KnowHow Elementor Build v1.1 — v0.3.3 Fidelity Correction
   Approved visual source: KnowHow Static Homepage Prototype v0.3.3
   This layer intentionally overrides v1.0 conversion drift only.
   ======================================================================== */

/* 1) FULL-BLEED SECTION ARCHITECTURE
   The approved prototype uses viewport-width section backgrounds with a
   1220px inner content container. This rule remains reliable even when an
   Elementor/site wrapper is set to boxed width. */
body.kh-elementor-v11{overflow-x:clip}
.kh-elementor-v11 main#main{overflow-x:clip}
.kh-elementor-v11 .elementor > .elementor-element.kh-home-hero,
.kh-elementor-v11 .elementor > .elementor-element.section,
.kh-elementor-v11 .elementor > .elementor-element.final-cta,
.kh-elementor-v11 .kh-home-hero,
.kh-elementor-v11 .section,
.kh-elementor-v11 .final-cta{
  position:relative!important;
  width:100vw!important;
  max-width:100vw!important;
  margin-left:calc(50% - 50vw)!important;
  margin-right:calc(50% - 50vw)!important;
  --width:100vw!important;
  --content-width:100%!important;
  flex:0 0 auto!important;
}
.kh-elementor-v11 .section>.e-con-inner,
.kh-elementor-v11 .kh-home-hero>.e-con-inner,
.kh-elementor-v11 .final-cta>.e-con-inner{max-width:none!important;width:100%!important}
.kh-elementor-v11 .container{
  width:min(calc(100% - 40px),1220px)!important;
  max-width:1220px!important;
  margin-left:auto!important;
  margin-right:auto!important;
  padding-left:0!important;
  padding-right:0!important;
}
.kh-elementor-v11 .section{padding-top:112px!important;padding-bottom:112px!important}

/* 2) TYPOGRAPHY / SECTION HEADINGS */
.kh-elementor-v11 .section-heading{margin-bottom:56px!important}
.kh-elementor-v11 .section-heading.centered{max-width:820px!important;margin:0 auto 56px!important;text-align:center!important}
.kh-elementor-v11 .section-heading.centered>.elementor-widget-text-editor:last-child p{max-width:730px;margin-left:auto;margin-right:auto}
.kh-elementor-v11 .split-heading{grid-template-columns:1.1fr .9fr!important;gap:70px!important;margin-bottom:56px!important;align-items:end!important}
.kh-elementor-v11 .split-heading .kh-split-copy{margin-bottom:5px!important}
.kh-elementor-v11 .section-heading p,
.kh-elementor-v11 .kh-split-copy p{font-size:1.06rem!important;line-height:1.65!important}
.kh-elementor-v11 .split-heading .elementor-heading-title{margin-bottom:0!important}
.kh-elementor-v11 .section-capabilities .section-heading .elementor-heading-title{color:#fff!important}
.kh-elementor-v11 .section-capabilities .section-heading>.elementor-widget-text-editor:not(.eyebrow) p{color:#b1c4d3!important}
.kh-elementor-v11 .section-capabilities .eyebrow p{color:#b8def8!important}
.kh-elementor-v11 .section-roles .eyebrow{color:#5aaae4!important}

/* 3) HERO — retain approved v0.3.3 composition, restore intended scale */
.kh-elementor-v11 .hero-layout{min-height:calc(100vh - var(--header-height))!important;padding-top:78px!important;padding-bottom:92px!important}
.kh-elementor-v11 .hero-heroframe{width:min(100%,760px)!important}
.kh-elementor-v11 .kh-hero-image img{filter:drop-shadow(0 28px 58px rgba(0,0,0,.28))}

/* 4) ORGANISATIONAL CHALLENGE */
.kh-elementor-v11 .problem-grid{grid-template-columns:repeat(3,1fr)!important;gap:20px!important}
.kh-elementor-v11 .problem-card{
  display:block!important;position:relative!important;overflow:hidden!important;
  min-height:290px!important;padding:32px!important;border:1px solid var(--line)!important;
  border-radius:var(--radius-md)!important;background:#fff!important;box-shadow:var(--shadow-sm)!important
}
.kh-elementor-v11 .problem-card:after{position:absolute;right:-35px;bottom:-35px;width:120px;height:120px;border-radius:50%;background:radial-gradient(circle,rgba(90,170,228,.12),transparent 67%);content:"";pointer-events:none}
.kh-elementor-v11 .problem-card>.number{position:absolute!important;top:25px!important;right:28px!important;width:auto!important;z-index:2}
.kh-elementor-v11 .problem-card>.number span{margin:0!important;color:#d8e7f1!important;font-size:2.3rem!important;font-weight:900!important;letter-spacing:-.05em!important;line-height:1!important}
.kh-elementor-v11 .problem-icon{
  position:relative!important;display:grid!important;place-items:center!important;width:54px!important;height:54px!important;
  margin:0 0 48px!important;border-radius:15px!important;color:var(--blue-strong)!important;background:var(--surface-blue)!important;overflow:hidden
}
.kh-elementor-v11 .problem-icon .elementor-widget-container,.kh-elementor-v11 .problem-icon .elementor-icon{opacity:0!important;width:0!important;height:0!important;overflow:hidden!important}
.kh-elementor-v11 .problem-icon:before{content:"";display:block;width:27px;height:27px;background:center/contain no-repeat}
.kh-elementor-v11 .kh-icon-disconnected:before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d8ed3' stroke-width='1.55' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6h6v6H4zM14 12h6v6h-6zM10 9h4M12 9v6'/%3E%3C/svg%3E")}
.kh-elementor-v11 .kh-icon-coordination:before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d8ed3' stroke-width='1.55' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h16M7 4v6M17 4v6M5 12h5v7H5zM14 12h5v3h-5zM14 17h5v2h-5z'/%3E%3C/svg%3E")}
.kh-elementor-v11 .kh-icon-visibility:before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d8ed3' stroke-width='1.55' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 17l5-5 4 3 7-8M15 7h4v4'/%3E%3Cpath d='M4 21h16'/%3E%3C/svg%3E")}
.kh-elementor-v11 .problem-card h3{margin:0 0 13px!important;font-size:1.35rem!important;line-height:1.08!important}
.kh-elementor-v11 .problem-card p{margin:0!important;color:var(--slate)!important;font-size:1rem!important;line-height:1.65!important}

/* 5) FOUR CONNECTED PURPOSES */
.kh-elementor-v11 .purpose-track{position:relative!important;z-index:1!important;display:block!important;height:1px!important;min-height:1px!important;margin:12px 8% -1px!important;background:linear-gradient(90deg,transparent,rgba(90,170,228,.45) 9%,rgba(90,170,228,.45) 91%,transparent)!important}
.kh-elementor-v11 .purpose-track:after{position:absolute;top:-5px;left:0;width:11px;height:11px;border:2px solid var(--blue);border-radius:50%;background:#fff;box-shadow:0 0 0 6px rgba(90,170,228,.09);content:"";animation:kh-v11-track-run 8s linear infinite}
@keyframes kh-v11-track-run{from{left:0}to{left:calc(100% - 11px)}}
.kh-elementor-v11 .purpose-card{display:flex!important;flex-direction:column!important;position:relative!important;min-height:395px!important;padding:31px 27px 27px!important;border-radius:var(--radius-md)!important}
.kh-elementor-v11 .purpose-card>.purpose-step{position:absolute!important;top:29px!important;right:26px!important;width:auto!important}
.kh-elementor-v11 .purpose-step span{margin:0!important;color:#c5d7e4!important;font-size:.9rem!important;letter-spacing:.08em!important}
.kh-elementor-v11 .purpose-icon{position:relative!important;display:grid!important;place-items:center!important;width:58px!important;height:58px!important;margin:0 0 28px!important;border-radius:18px!important;background:linear-gradient(145deg,#eff8fd,#dcedf9)!important;box-shadow:inset 0 0 0 1px rgba(90,170,228,.15)!important;overflow:hidden}
.kh-elementor-v11 .purpose-icon .elementor-widget-container,.kh-elementor-v11 .purpose-icon .elementor-icon{opacity:0!important;width:0!important;height:0!important;overflow:hidden!important}
.kh-elementor-v11 .purpose-icon:before{content:"";display:block;width:29px;height:29px;background:center/contain no-repeat}
.kh-elementor-v11 .kh-icon-learn:before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d8ed3' stroke-width='1.65' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5.5A2.5 2.5 0 0 1 6.5 3H11v16H6.5A2.5 2.5 0 0 0 4 21.5zM20 5.5A2.5 2.5 0 0 0 17.5 3H13v16h4.5a2.5 2.5 0 0 1 2.5 2.5z'/%3E%3C/svg%3E")}
.kh-elementor-v11 .kh-icon-perform:before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d8ed3' stroke-width='1.65' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='7'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='m15 9 5-5M17 4h3v3'/%3E%3C/svg%3E")}
.kh-elementor-v11 .kh-icon-develop:before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d8ed3' stroke-width='1.65' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Cpath d='M3 20v-1a6 6 0 0 1 12 0v1M17 8h4M19 6v4M16 15h5'/%3E%3C/svg%3E")}
.kh-elementor-v11 .kh-icon-understand:before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d8ed3' stroke-width='1.65' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19V9M10 19V5M16 19v-7M22 19H2'/%3E%3C/svg%3E")}
.kh-elementor-v11 .purpose-label p{margin:0 0 8px!important;font-size:.74rem!important;letter-spacing:.14em!important}
.kh-elementor-v11 .purpose-card h3{min-height:58px!important;margin:0 0 16px!important;font-size:1.35rem!important;line-height:1.08!important}
.kh-elementor-v11 .purpose-card>.elementor-widget-text-editor:not(.purpose-label) p{margin:0!important;color:var(--slate)!important;font-size:1rem!important;line-height:1.65!important}
.kh-elementor-v11 .purpose-card>.kh-text-button{margin-top:auto!important;padding-top:20px!important}

/* 6) ROLE EXPERIENCE */
.kh-elementor-v11 .kh-role-widget-wrap,.kh-elementor-v11 .kh-role-widget-wrap>.elementor-widget-container{width:100%!important}
.kh-elementor-v11 .roles-layout{grid-template-columns:.93fr 1.07fr!important;gap:72px!important;align-items:center!important}
.kh-elementor-v11 .roles-copy h2{font-size:clamp(2rem,4vw,3.65rem)!important;line-height:1.08!important;margin:0 0 22px!important}
.kh-elementor-v11 .roles-copy>p:not(.eyebrow){font-size:1.06rem!important;line-height:1.65!important;color:#bdd0df!important}
.kh-elementor-v11 .role-tabs{margin-top:32px!important;gap:9px!important}
.kh-elementor-v11 .role-panel{padding:34px!important;border-radius:var(--radius-lg)!important}
.kh-elementor-v11 .role-product-shot{margin-top:26px!important;border-radius:18px!important}
.kh-elementor-v11 .role-product-shot img{width:100%!important;aspect-ratio:16/8.2!important;object-fit:cover!important;object-position:top center!important}

/* 7) CAPABILITY BROWSER */
.kh-elementor-v11 .kh-capability-widget-wrap,.kh-elementor-v11 .kh-capability-widget-wrap>.elementor-widget-container{width:100%!important}
.kh-elementor-v11 .capability-browser{border-radius:var(--radius-lg)!important}
.kh-elementor-v11 .capability-tabs{grid-template-columns:repeat(4,1fr)!important}
.kh-elementor-v11 .capability-tab{min-height:68px!important}
.kh-elementor-v11 .capability-content{grid-template-columns:.86fr 1.14fr!important;gap:62px!important;padding:56px!important;align-items:center!important}
.kh-elementor-v11 .capability-copy h3{font-size:clamp(1.8rem,3vw,2.7rem)!important;color:#fff!important;line-height:1.08!important}
.kh-elementor-v11 .capability-copy>p:not(.capability-kicker){color:#b1c4d3!important;font-size:1rem!important}
.kh-elementor-v11 .capability-product-shot img{aspect-ratio:16/9!important;object-fit:cover!important;object-position:top center!important}

/* 8) PLATFORM IN PRACTICE */
.kh-elementor-v11 .product-gallery-grid{grid-template-columns:1.35fr 1fr!important;gap:22px!important}
.kh-elementor-v11 .gallery-card{border-radius:24px!important}
.kh-elementor-v11 .gallery-card-wide .kh-gallery-image img{max-height:520px!important;object-fit:contain!important;object-position:center top!important}
.kh-elementor-v11 .gallery-card:not(.gallery-card-wide) .kh-gallery-image img{height:240px!important;object-fit:cover!important;object-position:top center!important}

/* 9) WHY KNOWHOW */
.kh-elementor-v11 .differentiator-card{min-height:240px!important;padding:35px!important;border-radius:var(--radius-md)!important;box-shadow:var(--shadow-sm)!important}
.kh-elementor-v11 .kh-diff-number span{margin-bottom:34px!important;font-size:.8rem!important;letter-spacing:.15em!important}
.kh-elementor-v11 .differentiator-card h3{margin:0 0 14px!important;font-size:1.55rem!important}
.kh-elementor-v11 .differentiator-card p{font-size:1rem!important;line-height:1.65!important}

/* 10) EVIDENCE */
.kh-elementor-v11 .section-evidence:after{top:-50%!important;right:-20%!important;width:65%!important;height:200%!important;transform:rotate(12deg)!important;background:linear-gradient(180deg,rgba(90,170,228,.08),transparent 70%)!important}
.kh-elementor-v11 .evidence-layout{grid-template-columns:.88fr 1.12fr!important;gap:70px!important;align-items:center!important}
.kh-elementor-v11 .evidence-copy .elementor-heading-title{font-size:clamp(2.15rem,4vw,3.7rem)!important;line-height:1.08!important}
.kh-elementor-v11 .evidence-copy>p,.kh-elementor-v11 .evidence-copy .elementor-widget-text-editor p{font-size:1.06rem!important;line-height:1.65!important}
.kh-elementor-v11 .evidence-stats{gap:16px!important}
.kh-elementor-v11 .evidence-stat{display:grid!important;grid-template-rows:1fr auto!important;gap:10px!important;min-height:190px!important;padding:29px!important;border-radius:var(--radius-md)!important;background:linear-gradient(145deg,#fff,#f6fafe)!important}
.kh-elementor-v11 .evidence-stat>.elementor-widget-heading{align-self:end!important}
.kh-elementor-v11 .evidence-stat .elementor-heading-title{margin:0!important;color:var(--navy-900)!important;font-size:clamp(2rem,3.4vw,3.1rem)!important;line-height:.95!important;letter-spacing:-.05em!important}
.kh-elementor-v11 .evidence-stat p{margin:0!important;color:var(--slate)!important;font-size:.92rem!important;line-height:1.55!important}

/* 11) IMPLEMENTATION — restore exact approved card construction */
.kh-elementor-v11 .implementation-steps{grid-template-columns:repeat(4,1fr)!important;gap:16px!important}
.kh-elementor-v11 .kh-implementation-step{display:block!important;min-height:250px!important;padding:30px!important;border:1px solid var(--line)!important;border-radius:var(--radius-md)!important;background:#fff!important;box-shadow:none!important}
.kh-elementor-v11 .kh-step-number{width:auto!important}
.kh-elementor-v11 .kh-step-number span{display:inline-flex!important;align-items:center!important;justify-content:center!important;width:50px!important;height:50px!important;margin:0 0 40px!important;border-radius:16px!important;color:var(--blue-strong)!important;background:var(--surface-blue)!important;font-size:1rem!important;font-weight:900!important;letter-spacing:0!important}
.kh-elementor-v11 .kh-implementation-step h3{margin:0 0 12px!important;font-size:1.42rem!important;line-height:1.08!important}
.kh-elementor-v11 .kh-implementation-step p{font-size:1rem!important;line-height:1.65!important}

/* 12) INSIGHTS */
.kh-elementor-v11 .insight-grid{gap:18px!important}
.kh-elementor-v11 .insight-card{display:flex!important;flex-direction:column!important;min-height:335px!important;padding:31px!important;border-radius:var(--radius-md)!important}
.kh-elementor-v11 .insight-category span{margin-bottom:45px!important;padding:7px 11px!important;font-size:.67rem!important}
.kh-elementor-v11 .insight-card h3{margin:0 0 15px!important;font-size:1.55rem!important;line-height:1.18!important}
.kh-elementor-v11 .insight-card p{font-size:1rem!important;line-height:1.65!important}
.kh-elementor-v11 .insight-card>.kh-text-button{margin-top:auto!important}

/* 13) FINAL CTA */
.kh-elementor-v11 .final-cta{padding:0!important;background:linear-gradient(135deg,var(--navy-950),#153955)!important}
.kh-elementor-v11 .final-cta-inner{max-width:850px!important;padding-top:110px!important;padding-bottom:110px!important;text-align:center!important}
.kh-elementor-v11 .final-cta-inner .elementor-heading-title{font-size:clamp(2.5rem,5vw,4.8rem)!important;line-height:1.08!important}
.kh-elementor-v11 .final-cta-inner>.elementor-widget-text-editor:not(.eyebrow) p{max-width:690px!important;margin:0 auto 35px!important;color:#c1d3e1!important;font-size:1.07rem!important}

/* Responsive values follow the approved prototype breakpoints. */
@media(max-width:1040px){
  .kh-elementor-v11 .hero-layout{grid-template-columns:1fr!important;min-height:auto!important;padding-top:92px!important}
  .kh-elementor-v11 .hero-copy{max-width:760px!important}
  .kh-elementor-v11 .hero-visual{width:min(100%,760px)!important;margin-inline:auto!important}
  .kh-elementor-v11 .purpose-grid{grid-template-columns:repeat(2,1fr)!important}
  .kh-elementor-v11 .purpose-track{display:none!important}
  .kh-elementor-v11 .roles-layout,.kh-elementor-v11 .evidence-layout{grid-template-columns:1fr!important}
}
@media(max-width:860px){
  .kh-elementor-v11 .section{padding-top:88px!important;padding-bottom:88px!important}
  .kh-elementor-v11 .split-heading,.kh-elementor-v11 .capability-content{grid-template-columns:1fr!important;gap:26px!important}
  .kh-elementor-v11 .problem-grid,.kh-elementor-v11 .insight-grid,.kh-elementor-v11 .differentiator-grid{grid-template-columns:1fr!important}
  .kh-elementor-v11 .capability-content{padding:36px!important}
  .kh-elementor-v11 .evidence-stats{grid-template-columns:1fr 1fr!important}
  .kh-elementor-v11 .implementation-steps{grid-template-columns:repeat(2,1fr)!important}
  .kh-elementor-v11 .product-gallery-grid{grid-template-columns:1fr!important}
  .kh-elementor-v11 .gallery-card-wide{grid-row:auto!important}
  .kh-elementor-v11 .gallery-card-wide .kh-gallery-image img,.kh-elementor-v11 .gallery-card .kh-gallery-image img{height:auto!important;aspect-ratio:16/9!important;object-fit:contain!important}
}
@media(max-width:650px){
  .kh-elementor-v11 .container{width:min(calc(100% - 30px),1220px)!important}
  .kh-elementor-v11 .hero-layout{padding-top:68px!important;padding-bottom:70px!important}
  .kh-elementor-v11 .purpose-grid,.kh-elementor-v11 .evidence-stats,.kh-elementor-v11 .implementation-steps{grid-template-columns:1fr!important}
  .kh-elementor-v11 .problem-card{min-height:auto!important}
  .kh-elementor-v11 .purpose-card{min-height:335px!important}
  .kh-elementor-v11 .roles-layout{gap:45px!important}
  .kh-elementor-v11 .capability-content{padding:27px!important}
  .kh-elementor-v11 .final-cta-inner{padding-top:90px!important;padding-bottom:90px!important;text-align:left!important}
  .kh-elementor-v11 .final-cta-inner>.elementor-widget-text-editor:not(.eyebrow) p{margin-left:0!important}
}
@media(prefers-reduced-motion:reduce){.kh-elementor-v11 .purpose-track:after{animation:none!important}}


/* ========================================================================
   KnowHow Elementor Build v1.2 — Final v0.3.3 Fidelity Pass
   Approved visual source: KnowHow Static Homepage Prototype v0.3.3
   Scope: architecture + final visual fidelity only. No copy/content redesign.
   ======================================================================== */

/* A) TRUE FULL-WIDTH ELEMENTOR CANVAS
   v1.1 used a viewport breakout as a defensive fallback. On the live site the
   Elementor/page wrapper itself remained boxed, which clipped those sections.
   v1.2 normalises the root wrappers first, then uses ordinary 100%-width outer
   sections. The approved 1220px constraint lives ONLY on .container. */
html:has(body.kh-elementor-v12.home){overflow-x:hidden!important}
body.kh-elementor-v12.home{width:100%!important;max-width:none!important;overflow-x:hidden!important;background:#fff!important}
body.kh-elementor-v12.home #page,
body.kh-elementor-v12.home .site,
body.kh-elementor-v12.home .site-content,
body.kh-elementor-v12.home .content-area,
body.kh-elementor-v12.home .site-main,
body.kh-elementor-v12.home main#main,
body.kh-elementor-v12.home main#main>.elementor{
  width:100%!important;max-width:none!important;margin:0!important;padding-left:0!important;padding-right:0!important;
}
body.kh-elementor-v12.home main#main{overflow:visible!important}
body.kh-elementor-v12.home main#main>.elementor{
  --container-max-width:100%!important;
  --content-width:100%!important;
}
body.kh-elementor-v12.home main#main>.elementor>.e-con.e-parent,
body.kh-elementor-v12.home main#main>.elementor>.elementor-element.e-con,
body.kh-elementor-v12.home .elementor>.kh-home-hero,
body.kh-elementor-v12.home .elementor>.section,
body.kh-elementor-v12.home .elementor>.final-cta,
body.kh-elementor-v12.home .kh-home-hero,
body.kh-elementor-v12.home .section,
body.kh-elementor-v12.home .final-cta{
  --width:100%!important;
  --content-width:100%!important;
  --container-max-width:100%!important;
  width:100%!important;
  max-width:none!important;
  margin-left:0!important;
  margin-right:0!important;
  left:auto!important;
  right:auto!important;
  transform:none!important;
  flex-basis:auto!important;
}
body.kh-elementor-v12.home .kh-home-hero>.e-con-inner,
body.kh-elementor-v12.home .section>.e-con-inner,
body.kh-elementor-v12.home .final-cta>.e-con-inner{
  width:100%!important;max-width:none!important;margin:0!important;padding:0!important;
}
body.kh-elementor-v12.home .container{
  width:min(calc(100% - 40px),1220px)!important;
  max-width:1220px!important;
  margin-left:auto!important;
  margin-right:auto!important;
  padding-left:0!important;
  padding-right:0!important;
}
/* Prevent legacy Elementor/theme content-width variables from re-boxing nested
   layout wrappers that are themselves the approved inner container. */
body.kh-elementor-v12.home .container.e-con,
body.kh-elementor-v12.home .container.e-flex{
  --width:min(calc(100% - 40px),1220px)!important;
  --container-max-width:1220px!important;
}
body.kh-elementor-v12.home .section,
body.kh-elementor-v12.home .kh-home-hero,
body.kh-elementor-v12.home .final-cta{margin-top:0!important;margin-bottom:0!important}

/* B) EXACT DESKTOP SECTION RHYTHM FROM v0.3.3 */
@media (min-width:1041px){
  body.kh-elementor-v12.home .section{padding-top:112px!important;padding-bottom:112px!important}
  body.kh-elementor-v12.home .section-heading{margin-bottom:56px!important}
  body.kh-elementor-v12.home .hero-layout{grid-template-columns:minmax(0,.94fr) minmax(520px,1.06fr)!important;gap:54px!important;padding-top:78px!important;padding-bottom:92px!important}
  body.kh-elementor-v12.home .roles-layout{grid-template-columns:.93fr 1.07fr!important;gap:72px!important}
  body.kh-elementor-v12.home .capability-content{grid-template-columns:.86fr 1.14fr!important;gap:62px!important;padding:56px!important}
  body.kh-elementor-v12.home .evidence-layout{grid-template-columns:.88fr 1.12fr!important;gap:70px!important}
  body.kh-elementor-v12.home .product-gallery-grid{grid-template-columns:1.35fr 1fr!important;gap:22px!important}
}

/* C) ROLE TABS — block Elementor/global button accent leakage. */
body.kh-elementor-v12.home .kh-role-widget button.role-tab{
  appearance:none!important;-webkit-appearance:none!important;
  padding:10px 15px!important;border:1px solid rgba(255,255,255,.15)!important;border-radius:999px!important;
  color:#b9cddd!important;background:rgba(255,255,255,.035)!important;background-image:none!important;
  box-shadow:none!important;text-shadow:none!important;font-size:.83rem!important;font-weight:800!important;line-height:1.2!important;
}
body.kh-elementor-v12.home .kh-role-widget button.role-tab:hover,
body.kh-elementor-v12.home .kh-role-widget button.role-tab.active,
body.kh-elementor-v12.home .kh-role-widget button.role-tab[aria-selected="true"]{
  color:#07172b!important;border-color:#5aaae4!important;background:#5aaae4!important;background-image:none!important;box-shadow:none!important;
}

/* D) CAPABILITY TABS — exact neutral + KnowHow blue state from v0.3.3. */
body.kh-elementor-v12.home .kh-capability-widget button.capability-tab{
  appearance:none!important;-webkit-appearance:none!important;
  min-height:68px!important;border-top:0!important;border-bottom:0!important;border-left:0!important;
  border-right:1px solid rgba(255,255,255,.07)!important;border-radius:0!important;
  color:#8da6ba!important;background:rgba(255,255,255,.015)!important;background-image:none!important;
  box-shadow:none!important;text-shadow:none!important;font-weight:900!important;
}
body.kh-elementor-v12.home .kh-capability-widget button.capability-tab:last-child{border-right:0!important}
body.kh-elementor-v12.home .kh-capability-widget button.capability-tab:hover,
body.kh-elementor-v12.home .kh-capability-widget button.capability-tab.active,
body.kh-elementor-v12.home .kh-capability-widget button.capability-tab[aria-selected="true"]{
  color:#fff!important;background:rgba(90,170,228,.10)!important;background-image:none!important;
  box-shadow:inset 0 -3px 0 #5aaae4!important;
}

/* E) EVIDENCE DECORATION — exact v0.3.3 geometry but clipped to its own section. */
body.kh-elementor-v12.home .section-evidence{
  position:relative!important;overflow:hidden!important;isolation:isolate!important;clip-path:inset(0)!important;
}
body.kh-elementor-v12.home .section-evidence::after{
  top:-50%!important;right:-20%!important;width:65%!important;height:200%!important;
  transform:rotate(12deg)!important;background:linear-gradient(180deg,rgba(90,170,228,.08),transparent 70%)!important;
  z-index:0!important;pointer-events:none!important;
}
body.kh-elementor-v12.home .section-evidence>.container,
body.kh-elementor-v12.home .section-evidence>.e-con-inner,
body.kh-elementor-v12.home .section-evidence .evidence-layout{position:relative!important;z-index:2!important}

/* F) FINAL PROPORTION GUARDS */
body.kh-elementor-v12.home .problem-card{min-height:290px!important;padding:32px!important}
body.kh-elementor-v12.home .purpose-card{min-height:395px!important;padding:31px 27px 27px!important}
body.kh-elementor-v12.home .differentiator-card{min-height:240px!important;padding:35px!important}
body.kh-elementor-v12.home .evidence-stat{min-height:190px!important;padding:29px!important}
body.kh-elementor-v12.home .kh-implementation-step{min-height:250px!important;padding:30px!important}
body.kh-elementor-v12.home .insight-card{min-height:335px!important;padding:31px!important}

/* G) RESPONSIVE: retain approved v0.3.3 breakpoints after root-width reset. */
@media (max-width:1040px){
  body.kh-elementor-v12.home .container{width:min(calc(100% - 40px),1220px)!important}
}
@media (max-width:860px){
  body.kh-elementor-v12.home .section{padding-top:88px!important;padding-bottom:88px!important}
}
@media (max-width:650px){
  body.kh-elementor-v12.home .container{width:min(calc(100% - 30px),1220px)!important}
}


/* ========================================================================
   KnowHow Elementor Build v1.3 — Approved Review Corrections
   Source of truth: KnowHow Static Homepage Prototype v0.3.3 (Approved)
   User review batch: 2026-08-21
   Scope: targeted fidelity corrections only; no redesign/content changes.
   ======================================================================== */

/* 1) HERO — exact approved coral accent + slightly larger product composition. */
body.kh-elementor-v13.home .kh-hero-eyebrow .kh-hero-eyebrow-accent{
  color:#FC7774!important;
}
@media (min-width:1041px){
  body.kh-elementor-v13.home .hero-visual.hero-product-showcase{overflow:visible!important}
  body.kh-elementor-v13.home .hero-heroframe{
    width:min(112%,850px)!important;
    max-width:none!important;
    transform:translateX(3%)!important;
    transform-origin:center center!important;
  }
}
@media (max-width:1040px){
  body.kh-elementor-v13.home .hero-heroframe{transform:none!important}
}

/* 2) ORGANISATIONAL CHALLENGE — top-row alignment + mathematically centred SVG artwork. */
body.kh-elementor-v13.home .problem-card>.number{
  top:32px!important;
  right:28px!important;
}
body.kh-elementor-v13.home .problem-icon{
  position:relative!important;
  display:block!important;
}
body.kh-elementor-v13.home .problem-icon:before{
  position:absolute!important;
  top:50%!important;
  left:50%!important;
  width:27px!important;
  height:27px!important;
  margin:0!important;
  transform:translate(-50%,-50%)!important;
  transform-origin:center!important;
  background-position:center!important;
  background-repeat:no-repeat!important;
  background-size:contain!important;
}

/* 3) CONNECTED RESPONSE — centre all four approved SVGs within their icon tiles. */
body.kh-elementor-v13.home .purpose-icon{
  position:relative!important;
  display:block!important;
}
body.kh-elementor-v13.home .purpose-icon:before{
  position:absolute!important;
  top:50%!important;
  left:50%!important;
  width:29px!important;
  height:29px!important;
  margin:0!important;
  transform:translate(-50%,-50%)!important;
  transform-origin:center!important;
  background-position:center!important;
  background-repeat:no-repeat!important;
  background-size:contain!important;
}

/* 4) DESIGNED AROUND EVERY ROLE — prevent global Elementor heading colour leakage. */
body.kh-elementor-v13.home .kh-role-widget .role-panel h3,
body.kh-elementor-v13.home .kh-role-widget [data-kh-role-title]{
  color:#fff!important;
  -webkit-text-fill-color:#fff!important;
}

/* 5) PLATFORM IN PRACTICE — remove empty flex area below the large left screenshot. */
@media (min-width:861px){
  body.kh-elementor-v13.home .gallery-card-wide{
    align-self:stretch!important;
    display:flex!important;
    flex-direction:column!important;
  }
  body.kh-elementor-v13.home .gallery-card-wide>.kh-gallery-image,
  body.kh-elementor-v13.home .gallery-card-wide>.kh-gallery-image>.elementor-widget-container{
    flex:1 1 auto!important;
    min-height:0!important;
    height:100%!important;
    margin:0!important;
    padding:0!important;
  }
  body.kh-elementor-v13.home .gallery-card-wide .kh-gallery-image img{
    display:block!important;
    width:100%!important;
    height:100%!important;
    min-height:0!important;
    max-height:none!important;
    object-fit:cover!important;
    object-position:top center!important;
  }
  body.kh-elementor-v13.home .gallery-card-wide>.kh-gallery-caption{
    flex:0 0 auto!important;
  }
}

/* 6) INSIGHTS — compact category pill sized to its text, matching v0.3.3. */
body.kh-elementor-v13.home .insight-card>.insight-category{
  display:block!important;
  width:auto!important;
  max-width:none!important;
  margin:0 0 45px!important;
  padding:0!important;
  border-radius:0!important;
  color:inherit!important;
  background:none!important;
  letter-spacing:normal!important;
  text-transform:none!important;
}
body.kh-elementor-v13.home .insight-card>.insight-category>.elementor-widget-container{
  display:flex!important;
  justify-content:flex-start!important;
  align-items:center!important;
  width:100%!important;
  margin:0!important;
  padding:0!important;
  background:none!important;
}
body.kh-elementor-v13.home .insight-card>.insight-category span{
  display:inline-flex!important;
  align-items:center!important;
  width:auto!important;
  max-width:max-content!important;
  margin:0!important;
  padding:7px 11px!important;
  border-radius:999px!important;
  color:var(--blue-strong)!important;
  background:var(--surface-blue)!important;
  font-size:.67rem!important;
  font-weight:900!important;
  line-height:1.2!important;
  letter-spacing:.08em!important;
  text-transform:uppercase!important;
  white-space:nowrap!important;
}

/* 7) PRIMARY NAVIGATION — approved information architecture; Blog retained by request. */
body.kh-elementor-v13 .site-header .primary-nav .menu{
  gap:24px!important;
}
body.kh-elementor-v13 .site-header .primary-nav .menu a{
  white-space:nowrap!important;
}


/* ========================================================================
   KnowHow Elementor Build v2.0 — final site-family implementation controls
   Source: final visual review v0.3, 24 Aug 2026.
   ======================================================================== */
body.kh-elementor-v20.home .purpose-track{z-index:3!important;margin:12px 8% 16px!important}
body.kh-elementor-v20.home .evidence-stat{display:grid!important;grid-template-rows:auto 1fr!important;align-content:start!important}
body.kh-elementor-v20.home .evidence-stat>.elementor-widget-heading{align-self:start!important}
body.kh-elementor-v20.home .evidence-stat .elementor-heading-title{margin:0!important}
body.kh-elementor-v20.home .differentiator-card:nth-child(3){border-top:3px solid #FC7774!important}
body.kh-elementor-v20.home .differentiator-card:nth-child(3) .kh-diff-number span{color:#FC7774!important}
body.kh-elementor-v20.home .kh-button-coral .elementor-button{color:#07172b!important;background:#FC7774!important;box-shadow:0 16px 40px rgba(252,119,116,.25)!important}
body.kh-elementor-v20.home .kh-button-coral .elementor-button:hover{background:#ff8a87!important}
/* Approved rendered prototypes own their internal visual system. */
body[class*="kh-approved-page-"] .kh-approved-page-renderer,
body[class*="kh-approved-page-"] .kh-approved-page-renderer>.elementor-widget-container{width:100%!important;margin:0!important;padding:0!important}
body[class*="kh-approved-page-"] .elementor-widget-html.kh-approved-page-renderer{margin:0!important}


/* ========================================================================
   KnowHow Elementor Build v2.1 — implementation QA corrections
   ======================================================================== */
/* Platform in Practice: preserve the full left screenshot. */
@media (min-width:861px){
  body.kh-elementor-v21.home .gallery-card-wide .kh-gallery-image img{
    width:100%!important;height:100%!important;max-height:none!important;
    object-fit:contain!important;object-position:center top!important;background:#fff!important;
  }
}
/* Coral secondary CTA uses the same geometry/weight as approved hero buttons. */
body.kh-elementor-v21.home .kh-button-coral .elementor-button{
  display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:12px!important;
  min-height:52px!important;padding:13px 21px!important;border:1px solid transparent!important;border-radius:14px!important;
  color:#07172b!important;background:#FC7774!important;font-weight:800!important;line-height:1.15!important;
  box-shadow:0 16px 40px rgba(252,119,116,.25)!important;transition:transform .2s ease,box-shadow .2s ease,background-color .2s ease!important;
}
body.kh-elementor-v21.home .kh-button-coral .elementor-button:hover{transform:translateY(-2px)!important;background:#ff8a87!important;box-shadow:0 18px 46px rgba(252,119,116,.34)!important}

/* ========================================================================
   KnowHow Elementor Build v2.1.3 — global QA consolidation
   Header active state, tailored-demo modal and approved Blog presentation.
   ======================================================================== */

/* Global header CTA: retain the approved rounded KnowHow button geometry even
   when the live header is supplied by the legacy Elementor Header 2023 template. */
.elementor-location-header .kh-open-demo .elementor-button,
.elementor-location-header a.kh-open-demo,
.site-header .kh-header-cta{
  border-radius:14px!important;
}

/* Current-page navigation indicator — matches the approved prototype family. */
.site-header .primary-nav .current-menu-item>a,
.site-header .primary-nav .current_page_item>a,
.site-header .primary-nav .current-menu-parent>a,
.site-header .primary-nav .current-menu-ancestor>a,
.elementor-location-header .current-menu-item>a,
.elementor-location-header .current_page_item>a,
.elementor-location-header .current-menu-parent>a,
.elementor-location-header .current-menu-ancestor>a{
  position:relative;
  color:var(--navy-900)!important;
}
.site-header .primary-nav .current-menu-item>a::after,
.site-header .primary-nav .current_page_item>a::after,
.site-header .primary-nav .current-menu-parent>a::after,
.site-header .primary-nav .current-menu-ancestor>a::after,
.elementor-location-header .current-menu-item>a::after,
.elementor-location-header .current_page_item>a::after,
.elementor-location-header .current-menu-parent>a::after,
.elementor-location-header .current-menu-ancestor>a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  height:2px;
  border-radius:2px;
  background:var(--blue);
}
/* Blog articles and Platform capability children are not always direct menu
   ancestors when the navigation uses custom URL items, so preserve section context. */
body.single-post .site-header .primary-nav a[href$="/blog/"],
body.single-post .elementor-location-header a[href$="/blog/"],
body.kh-approved-page-learning-management .site-header .primary-nav a[href$="/platform/"],
body.kh-approved-page-performance-development .site-header .primary-nav a[href$="/platform/"],
body.kh-approved-page-skills-competency-development .site-header .primary-nav a[href$="/platform/"],
body.kh-approved-page-reporting-workforce-insight .site-header .primary-nav a[href$="/platform/"],
body.kh-approved-page-ai-assisted-content-creation .site-header .primary-nav a[href$="/platform/"],
body.kh-approved-page-events-blended-learning .site-header .primary-nav a[href$="/platform/"],
body.kh-approved-page-evaluations-assessments .site-header .primary-nav a[href$="/platform/"],
body.kh-approved-page-configuration-integrations-administration .site-header .primary-nav a[href$="/platform/"],
body.kh-approved-page-learning-management .elementor-location-header a[href$="/platform/"],
body.kh-approved-page-performance-development .elementor-location-header a[href$="/platform/"],
body.kh-approved-page-skills-competency-development .elementor-location-header a[href$="/platform/"],
body.kh-approved-page-reporting-workforce-insight .elementor-location-header a[href$="/platform/"],
body.kh-approved-page-ai-assisted-content-creation .elementor-location-header a[href$="/platform/"],
body.kh-approved-page-events-blended-learning .elementor-location-header a[href$="/platform/"],
body.kh-approved-page-evaluations-assessments .elementor-location-header a[href$="/platform/"],
body.kh-approved-page-configuration-integrations-administration .elementor-location-header a[href$="/platform/"]{
  position:relative;
}
body.single-post .site-header .primary-nav a[href$="/blog/"]::after,
body.single-post .elementor-location-header a[href$="/blog/"]::after,
body.kh-approved-page-learning-management .site-header .primary-nav a[href$="/platform/"]::after,
body.kh-approved-page-performance-development .site-header .primary-nav a[href$="/platform/"]::after,
body.kh-approved-page-skills-competency-development .site-header .primary-nav a[href$="/platform/"]::after,
body.kh-approved-page-reporting-workforce-insight .site-header .primary-nav a[href$="/platform/"]::after,
body.kh-approved-page-ai-assisted-content-creation .site-header .primary-nav a[href$="/platform/"]::after,
body.kh-approved-page-events-blended-learning .site-header .primary-nav a[href$="/platform/"]::after,
body.kh-approved-page-evaluations-assessments .site-header .primary-nav a[href$="/platform/"]::after,
body.kh-approved-page-configuration-integrations-administration .site-header .primary-nav a[href$="/platform/"]::after,
body.kh-approved-page-learning-management .elementor-location-header a[href$="/platform/"]::after,
body.kh-approved-page-performance-development .elementor-location-header a[href$="/platform/"]::after,
body.kh-approved-page-skills-competency-development .elementor-location-header a[href$="/platform/"]::after,
body.kh-approved-page-reporting-workforce-insight .elementor-location-header a[href$="/platform/"]::after,
body.kh-approved-page-ai-assisted-content-creation .elementor-location-header a[href$="/platform/"]::after,
body.kh-approved-page-events-blended-learning .elementor-location-header a[href$="/platform/"]::after,
body.kh-approved-page-evaluations-assessments .elementor-location-header a[href$="/platform/"]::after,
body.kh-approved-page-configuration-integrations-administration .elementor-location-header a[href$="/platform/"]::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  height:2px;
  border-radius:2px;
  background:var(--blue);
}

/* Tailored demonstration modal: compact enough to fit a normal laptop viewport,
   while retaining graceful scrolling on genuinely short screens. */
.demo-modal{
  width:min(calc(100% - 32px),760px);
  max-height:calc(100vh - 32px);
}
.demo-modal .modal-card{
  max-height:calc(100vh - 32px);
  padding:30px 34px;
  overflow-y:auto;
}
.demo-modal .modal-card h2{
  font-size:clamp(2rem,3.2vw,2.5rem);
  line-height:1.05;
  margin-bottom:14px;
}
.demo-modal .modal-card form{
  gap:12px;
  margin-top:18px;
}
.demo-modal .form-grid{gap:12px 14px}
.demo-modal .modal-card label{gap:5px}
.demo-modal .modal-card input:not([type="checkbox"]),
.demo-modal .modal-card select{
  min-height:42px;
  padding:8px 12px;
}
.demo-modal .modal-card textarea{
  min-height:84px;
  height:84px;
  padding:10px 12px;
}
.demo-modal .kh-consent{
  display:flex!important;
  grid-template-columns:none!important;
  align-items:flex-start;
  gap:10px!important;
  margin:0;
  color:#718398;
  font-size:12px;
  font-weight:500;
  line-height:1.45;
  cursor:pointer;
}
.demo-modal .kh-consent input[type="checkbox"]{
  -webkit-appearance:none;
  appearance:none;
  flex:0 0 19px;
  width:19px!important;
  height:19px!important;
  min-width:19px!important;
  min-height:19px!important;
  padding:0!important;
  margin:1px 0 0;
  border:1.5px solid #b9cedd;
  border-radius:5px;
  background:#fff;
  display:grid;
  place-content:center;
  cursor:pointer;
  transition:background-color .15s ease,border-color .15s ease,box-shadow .15s ease;
}
.demo-modal .kh-consent input[type="checkbox"]::before{
  content:"";
  width:9px;
  height:5px;
  border-left:2px solid #fff;
  border-bottom:2px solid #fff;
  transform:rotate(-45deg) scale(0);
  transform-origin:center;
  transition:transform .12s ease;
}
.demo-modal .kh-consent input[type="checkbox"]:checked{
  background:var(--blue);
  border-color:var(--blue);
}
.demo-modal .kh-consent input[type="checkbox"]:checked::before{transform:rotate(-45deg) scale(1)}
.demo-modal .kh-consent input[type="checkbox"]:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(90,170,228,.16);
}

/* Blog Hub — approved v0.1 design with visitor-ready v0.1.1 copy. */
.kh-blog-hub{width:100%;overflow:hidden;background:#fff;color:var(--ink)}
.kh-blog-hero{position:relative;overflow:hidden;background:linear-gradient(120deg,#07172b 0%,#0b2038 58%,#143a5d 100%);color:#fff;padding:92px 0 88px}
.kh-blog-hero:after{content:"";position:absolute;width:640px;height:640px;border:1px solid rgba(90,170,228,.12);border-radius:50%;right:-180px;top:-310px;box-shadow:0 0 0 70px rgba(90,170,228,.035),0 0 0 140px rgba(90,170,228,.025)}
.kh-blog-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:1.02fr .98fr;gap:70px;align-items:center}
.kh-blog-hero .eyebrow{color:#b7d8ee}.kh-blog-hero .eyebrow span{color:var(--coral)}
.kh-blog-hero h1{font-size:clamp(3.6rem,5.8vw,5.8rem);line-height:.98;letter-spacing:-.055em;margin:0 0 24px;color:#fff}
.kh-blog-hero h1 strong{color:var(--blue);font-weight:900}.kh-blog-intro{max-width:690px;color:#a7bac9;font-size:1.08rem;line-height:1.72}
.kh-blog-featured-card{background:#fff;color:var(--ink);border-radius:26px;padding:30px;box-shadow:0 34px 95px rgba(0,0,0,.25);position:relative}
.kh-blog-featured-visual,.kh-blog-card-visual{position:relative;overflow:hidden;background:linear-gradient(145deg,#dff1fd,#f7fbfe 62%,rgba(252,119,116,.22));display:flex;align-items:flex-end}
.kh-blog-featured-visual{height:188px;border-radius:19px;padding:22px}.kh-blog-card-visual{height:160px;padding:22px}
.kh-blog-featured-visual:before,.kh-blog-card-visual:before{content:"";position:absolute;border:1px solid rgba(45,142,211,.18);width:210px;height:210px;border-radius:50%;right:-70px;top:-90px;box-shadow:0 0 0 38px rgba(90,170,228,.06),0 0 0 76px rgba(90,170,228,.035)}
.kh-blog-featured-visual.has-image,.kh-blog-card-visual.has-image{padding:0;background:#eef7fd}
.kh-blog-featured-visual.has-image:before,.kh-blog-card-visual.has-image:before{display:none}
.kh-blog-featured-visual img,.kh-blog-card-visual img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.kh-blog-visual-label{position:relative;z-index:2;font-size:.78rem;font-weight:900;letter-spacing:.13em;text-transform:uppercase;color:var(--blue-strong);background:rgba(255,255,255,.9);border-radius:9px;padding:7px 9px;margin:0 0 0 0}
.has-image .kh-blog-visual-label{margin:0 0 18px 18px}
.kh-blog-featured-card h2{font-size:2rem;line-height:1.08;letter-spacing:-.035em;margin:19px 0 12px;color:var(--ink)}
.kh-blog-featured-card>p{color:var(--slate);line-height:1.55;margin:0 0 18px}.kh-blog-meta{display:flex;gap:10px;align-items:center;flex-wrap:wrap;color:#718398;font-size:.78rem}
.kh-blog-featured-meta{margin-top:20px}.kh-blog-topic-chip{display:inline-flex;align-items:center;border:1px solid #d6e9f6;background:#f6fbfe;color:#31556f;border-radius:999px;padding:9px 13px;font-size:.78rem;font-weight:800;white-space:nowrap}.kh-blog-topic-chip.coral{background:rgba(252,119,116,.08);border-color:rgba(252,119,116,.35);color:#d85d5a}
.kh-blog-read-link{display:inline-flex;gap:9px;align-items:center;margin-top:20px;color:#1f7fbd;font-weight:850;text-decoration:none}.kh-blog-read-link:hover{color:var(--blue-strong)}
.kh-blog-section{padding:95px 0}.kh-blog-section-intro{display:flex;align-items:end;justify-content:space-between;gap:36px;margin-bottom:36px}.kh-blog-section-intro h2{font-size:clamp(2.7rem,4vw,4rem);line-height:1;letter-spacing:-.045em;margin:0;color:var(--ink)}.kh-blog-section-intro>p{max-width:560px;color:var(--slate);line-height:1.65;margin:0}
.kh-blog-filters{display:flex;gap:9px;flex-wrap:wrap;margin:0 0 34px}.kh-blog-filter{border:1px solid var(--line);border-radius:999px;padding:10px 14px;background:#fff;color:#48667c;font-size:.8rem;font-weight:800;cursor:pointer}.kh-blog-filter.active{background:var(--navy-950);color:#fff;border-color:var(--navy-950)}
.kh-blog-post-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.kh-blog-post-card{border:1px solid var(--line);border-radius:22px;overflow:hidden;background:#fff;box-shadow:var(--shadow-sm);display:flex;flex-direction:column;min-height:470px}.kh-blog-post-card:nth-child(3n+2) .kh-blog-card-visual:not(.has-image){background:linear-gradient(145deg,#fff1f0,#fff)}.kh-blog-post-card:nth-child(3n+2) .kh-blog-card-visual:not(.has-image) .kh-blog-visual-label{color:#d85d5a}
.kh-blog-card-body{padding:22px 22px 24px;display:flex;flex-direction:column;flex:1}.kh-blog-post-card h3{font-size:1.25rem;line-height:1.2;letter-spacing:-.025em;margin:13px 0 10px}.kh-blog-post-card h3 a{color:var(--ink);text-decoration:none}.kh-blog-post-card p{color:var(--slate);font-size:.91rem;line-height:1.58;margin:0}.kh-blog-post-card .kh-blog-read-link{margin-top:auto;padding-top:20px}
.kh-blog-post-card[hidden]{display:none!important}.kh-blog-empty{grid-column:1/-1;color:var(--slate)}.kh-blog-pagination{display:flex;justify-content:center;margin-top:34px}.button-outline-dark{color:var(--navy-900);border-color:var(--line);background:#fff;box-shadow:var(--shadow-sm)}
.kh-blog-topic-section{padding:88px 0;background:var(--surface-blue)}.kh-blog-topic-layout{display:grid;grid-template-columns:.8fr 1.2fr;gap:70px;align-items:center}.kh-blog-topic-layout h2{font-size:clamp(2.7rem,4vw,4.1rem);line-height:1.01;letter-spacing:-.05em;margin:0 0 20px;color:var(--ink)}.kh-blog-topic-layout>div>p:not(.eyebrow){color:var(--slate);line-height:1.65}.kh-blog-topic-cloud{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}.kh-blog-topic-tile{appearance:none;text-align:left;background:#fff;border:1px solid var(--line);border-radius:18px;padding:21px;min-height:120px;cursor:pointer}.kh-blog-topic-tile span{display:block;font-size:.72rem;color:var(--blue-strong);font-weight:900;letter-spacing:.13em}.kh-blog-topic-tile strong{display:block;margin-top:10px;font-size:1.1rem;color:var(--ink)}.kh-blog-topic-tile.coral-tile{border-color:rgba(252,119,116,.45)}.kh-blog-topic-tile.coral-tile span{color:var(--coral)}.kh-blog-topic-tile:hover{transform:translateY(-2px);box-shadow:var(--shadow-sm)}
.kh-blog-final-cta{position:relative;padding:92px 0;background:linear-gradient(135deg,#07172b,#0b2745);color:#fff;text-align:center}.kh-blog-final-cta h2{max-width:900px;margin:0 auto 18px;color:#fff;font-size:clamp(2.3rem,4.3vw,4rem);line-height:1.04;letter-spacing:-.045em}.kh-blog-final-cta>div>p:not(.eyebrow){max-width:730px;margin:0 auto 28px;color:#b8cbd9;font-size:1.02rem;line-height:1.65}.kh-blog-actions{display:flex;justify-content:center;gap:14px;flex-wrap:wrap}

/* Blog article template */
.kh-article-hero{background:linear-gradient(120deg,#07172b,#143a5d);color:#fff;padding:82px 0 74px}.kh-article-hero-inner{max-width:980px;margin:auto}.kh-article-breadcrumbs{display:flex;gap:8px;align-items:center;font-size:.8rem;color:#8fa5b8;margin-bottom:30px}.kh-article-breadcrumbs a{color:#bcd8e9;text-decoration:none}.kh-article-hero .eyebrow{color:#b7d8ee}.kh-article-hero .eyebrow span{color:var(--coral);margin-left:4px}.kh-article-hero h1{font-size:clamp(3.3rem,5vw,5rem);line-height:1;letter-spacing:-.055em;margin:15px 0 22px;color:#fff}.kh-article-deck{max-width:820px;color:#afc0cc;font-size:1.12rem;line-height:1.7}.kh-article-meta{display:flex;gap:12px;align-items:center;flex-wrap:wrap;margin-top:24px;color:#9db1c1;font-size:.82rem}
.kh-article-wrap{padding:76px 0 92px}.kh-article-layout{display:grid;grid-template-columns:minmax(0,790px) 290px;gap:78px;align-items:start}.kh-article-body{font-size:1.04rem;line-height:1.82;color:#394e61}.kh-article-content>p{margin:0 0 24px}.kh-article-content h2{color:var(--ink);font-size:2rem;line-height:1.12;letter-spacing:-.035em;margin:54px 0 18px}.kh-article-content h3{color:var(--ink);margin:36px 0 14px}.kh-article-content a{color:var(--blue-strong)}.kh-article-content blockquote{margin:38px 0;padding:26px 28px;border-left:4px solid var(--blue);background:var(--surface-blue);border-radius:0 18px 18px 0;color:#23465e;font-weight:700}.kh-article-visual{height:320px;border-radius:24px;background:linear-gradient(145deg,#dff1fd,#fff 62%,rgba(252,119,116,.2));position:relative;overflow:hidden;margin:0 0 40px}.kh-article-visual:before{content:"";position:absolute;width:430px;height:430px;border:1px solid rgba(45,142,211,.18);border-radius:50%;right:-120px;top:-210px;box-shadow:0 0 0 70px rgba(90,170,228,.055),0 0 0 140px rgba(90,170,228,.03)}.kh-article-visual span{position:absolute;left:28px;bottom:25px;text-transform:uppercase;font-size:.76rem;letter-spacing:.18em;font-weight:900;color:var(--blue-strong)}.kh-article-image{margin:0 0 40px}.kh-article-image img{display:block;width:100%;max-height:480px;object-fit:cover;border-radius:24px}.kh-back-blog{margin-top:34px}
.kh-blog-sidebar{position:sticky;top:110px}.kh-side-card{border:1px solid var(--line);border-radius:20px;padding:22px;margin-bottom:18px;background:#fff}.kh-side-card.coral{border-color:rgba(252,119,116,.45)}.kh-side-card h3{margin:0 0 12px;font-size:1rem;color:var(--ink)}.kh-side-card p{color:#718398;font-size:.86rem;line-height:1.55}.kh-side-card a{color:var(--blue-strong);font-size:.85rem;font-weight:800;text-decoration:none}
.kh-blog-related{padding:82px 0;background:var(--surface-soft)}.kh-blog-related h2{font-size:2.7rem;letter-spacing:-.04em;margin:0 0 28px;color:var(--ink)}.kh-related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.kh-related-card{background:#fff;border:1px solid var(--line);border-radius:18px;padding:22px;min-height:190px}.kh-related-card>span{color:var(--blue-strong);font-size:.72rem;font-weight:900;letter-spacing:.12em}.kh-related-card h3{font-size:1.05rem;line-height:1.3;margin:12px 0 18px}.kh-related-card h3 a{color:var(--ink);text-decoration:none}.kh-related-card>a{color:var(--blue-strong);font-weight:800;font-size:.83rem;text-decoration:none}

@media(max-width:1000px){.kh-blog-hero-grid,.kh-blog-topic-layout{grid-template-columns:1fr}.kh-blog-featured-card{max-width:760px}.kh-blog-post-grid{grid-template-columns:repeat(2,1fr)}.kh-article-layout{grid-template-columns:1fr}.kh-blog-sidebar{position:static}.kh-related-grid{grid-template-columns:1fr}}
@media(max-width:700px){.kh-blog-hero{padding:64px 0}.kh-blog-hero h1{font-size:3.2rem}.kh-blog-section,.kh-blog-topic-section{padding:68px 0}.kh-blog-section-intro{display:block}.kh-blog-section-intro>p{margin-top:18px}.kh-blog-post-grid,.kh-blog-topic-cloud{grid-template-columns:1fr}.kh-blog-actions{display:grid}.kh-blog-actions .button{width:100%}.kh-article-hero{padding:64px 0}.kh-article-hero h1{font-size:clamp(2.6rem,12vw,3.5rem)}.kh-article-wrap{padding:58px 0}.kh-article-visual{height:220px}}
@media(max-height:760px) and (min-width:701px){.demo-modal .modal-card{padding-top:24px;padding-bottom:24px}.demo-modal .modal-card form{gap:9px;margin-top:14px}.demo-modal .modal-card textarea{height:70px;min-height:70px}.demo-modal .modal-card input:not([type="checkbox"]),.demo-modal .modal-card select{min-height:39px}}

/* The same consent control is used on the full Contact fallback page. */
.kh-contact-form .kh-consent{
  display:flex!important;
  grid-template-columns:none!important;
  align-items:flex-start;
  gap:10px!important;
  color:#718398;
  font-size:12px;
  font-weight:500;
  line-height:1.45;
  cursor:pointer;
}
.kh-contact-form .kh-consent input[type="checkbox"]{
  -webkit-appearance:none;
  appearance:none;
  flex:0 0 19px;
  width:19px!important;
  height:19px!important;
  min-width:19px!important;
  min-height:19px!important;
  padding:0!important;
  margin:1px 0 0;
  border:1.5px solid #b9cedd;
  border-radius:5px;
  background:#fff;
  display:grid;
  place-content:center;
}
.kh-contact-form .kh-consent input[type="checkbox"]::before{content:"";width:9px;height:5px;border-left:2px solid #fff;border-bottom:2px solid #fff;transform:rotate(-45deg) scale(0);transition:transform .12s ease}
.kh-contact-form .kh-consent input[type="checkbox"]:checked{background:var(--blue);border-color:var(--blue)}
.kh-contact-form .kh-consent input[type="checkbox"]:checked::before{transform:rotate(-45deg) scale(1)}


/* ========================================================================
   KnowHow Elementor Build v2.1.5 — final human-review correction layer
   ======================================================================== */
/* Platform parent dropdown in both packaged theme and Elementor menu widgets. */
.site-header .primary-nav .menu>li.menu-item-has-children,
.elementor-location-header .menu>li.menu-item-has-children{position:relative}
.site-header .primary-nav .sub-menu,
.elementor-location-header .sub-menu{position:absolute;z-index:1000;top:calc(100% + 18px);left:-20px;display:grid!important;gap:0!important;width:min(380px,88vw);padding:10px!important;margin:0!important;border:1px solid #dce8f1;border-radius:16px;background:#fff;box-shadow:0 22px 55px rgba(7,23,43,.16);list-style:none;opacity:0;visibility:hidden;transform:translateY(-6px);transition:.18s ease}
.site-header .primary-nav .menu>li.menu-item-has-children:hover>.sub-menu,
.site-header .primary-nav .menu>li.menu-item-has-children:focus-within>.sub-menu,
.elementor-location-header .menu>li.menu-item-has-children:hover>.sub-menu,
.elementor-location-header .menu>li.menu-item-has-children:focus-within>.sub-menu{opacity:1;visibility:visible;transform:none}
.site-header .primary-nav .sub-menu a,
.elementor-location-header .sub-menu a{display:block!important;padding:11px 13px!important;border-radius:10px!important;color:#17263a!important;font-size:.86rem!important;line-height:1.3!important;font-weight:700!important;white-space:normal!important}
.site-header .primary-nav .sub-menu a:hover,
.elementor-location-header .sub-menu a:hover{background:#f1f8fd!important;color:#2d8ed3!important}
.site-header .primary-nav .sub-menu a::after,
.elementor-location-header .sub-menu a::after{display:none!important}
@media(max-width:1000px){
  .site-header .primary-nav .sub-menu,.elementor-location-header .sub-menu{position:static!important;width:100%!important;padding:4px 0 4px 16px!important;border:0!important;border-radius:0!important;background:#f8fbfd!important;box-shadow:none!important;opacity:1!important;visibility:visible!important;transform:none!important}
}

/* Global footer aligned to the final site structure. */
.site-footer.kh-global-footer-v216 .footer-grid{grid-template-columns:1.25fr .9fr .8fr 1.45fr;gap:42px;padding-block:70px 52px}
.site-footer.kh-global-footer-v216 h3{margin:0 0 16px;color:#fff;font-size:1rem;font-weight:800}
.site-footer.kh-global-footer-v216 .footer-grid>div>a,.site-footer.kh-global-footer-v216 address{display:block;margin:0 0 10px;color:#b7c8d5;font-size:.9rem;line-height:1.45;font-style:normal;text-decoration:none}
.site-footer.kh-global-footer-v216 .footer-brand p{max-width:320px}
.site-footer.kh-global-footer-v216 .footer-bottom{display:flex;justify-content:space-between;gap:28px;align-items:center;padding-block:22px 32px;border-top:1px solid rgba(255,255,255,.09)}
.site-footer.kh-global-footer-v216 .footer-bottom>div{display:flex;flex-wrap:wrap;gap:14px 20px;justify-content:flex-end}
@media(max-width:980px){.site-footer.kh-global-footer-v216 .footer-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:620px){.site-footer.kh-global-footer-v216 .footer-grid{grid-template-columns:1fr}.site-footer.kh-global-footer-v216 .footer-bottom{display:grid}.site-footer.kh-global-footer-v216 .footer-bottom>div{justify-content:flex-start}}

/* One approved screenshot-caption system: light on light sections, dark on dark sections. */
body[class*="kh-approved-page-"] .kh-static-main figure figcaption{display:flex!important;align-items:baseline!important;justify-content:space-between!important;gap:14px!important;min-height:54px!important;padding:14px 17px!important;border-top:1px solid #e1eaf1!important;background:#fff!important;color:#17263a!important;font-family:Inter,"Avenir Next","Segoe UI",Arial,sans-serif!important;font-size:.8rem!important;font-weight:700!important;line-height:1.4!important}
body[class*="kh-approved-page-"] .kh-static-main .section-dark figure figcaption,
body[class*="kh-approved-page-"] .kh-static-main [class*="-hero"] figure figcaption{border-top-color:rgba(255,255,255,.12)!important;background:#0b2038!important;color:#dfeaf3!important}
body[class*="kh-approved-page-"] .kh-static-main figure figcaption span{color:#2d8ed3!important;font-size:.68rem!important;font-weight:900!important;letter-spacing:.08em!important;text-transform:uppercase!important}
body[class*="kh-approved-page-"] .kh-static-main .section-dark figure figcaption span,
body[class*="kh-approved-page-"] .kh-static-main [class*="-hero"] figure figcaption span{color:#5AAAE4!important}
body.kh-elementor-v215.home .kh-gallery-caption{min-height:58px!important;padding:15px 18px!important;background:#fff!important}
body.kh-elementor-v215.home .capability-product-shot figcaption{min-height:54px!important;padding:14px 17px!important;background:#0b2038!important;color:#dfeaf3!important;font-size:.8rem!important;font-weight:700!important}

/* Homepage eyebrow and visitor-facing utility corrections. */
body.kh-elementor-v215.home .kh-hero-eyebrow p{margin:0!important;color:#b7d8ee!important;font-size:.72rem!important;font-weight:900!important;line-height:1.25!important;letter-spacing:.14em!important;text-transform:uppercase!important}
body.kh-elementor-v215.home .kh-hero-eyebrow .kh-hero-eyebrow-accent{color:#FC7774!important}
body.kh-elementor-v215.home .evidence-copy .kh-button-coral{display:flex!important;justify-content:center!important;margin-top:28px!important}
body.kh-elementor-v215.home .kh-home-real-insights .insight-card h3 a{color:inherit;text-decoration:none}
body.kh-elementor-v215.home .kh-home-real-insights .text-link{display:inline-flex;margin-top:auto;color:#2d8ed3;font-weight:800;text-decoration:none}

/* Blog hero hierarchy and genuine archive pagination. */
.kh-blog-hero-grid{align-items:start!important}
.kh-blog-hero-copy{padding-top:34px}
.kh-blog-hero h1,.kh-blog-hub .kh-blog-hero h1{color:#fff!important}
.kh-blog-hero h1 strong,.kh-blog-hub .kh-blog-hero h1 strong{color:#5AAAE4!important}
.kh-blog-hero .eyebrow span{color:#FC7774!important}
.kh-blog-pagination{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;margin-top:34px}
@media(max-width:700px){.kh-blog-hero-copy{padding-top:0}}

/* Respect reduced-motion preference for every progressive line treatment. */
.kh-progressive-journey{position:relative;isolation:isolate}
.kh-progressive-journey:after{content:"";position:absolute;z-index:0;left:5%;right:5%;top:47px;height:2px;background:linear-gradient(90deg,#5AAAE4 0 46%,#FC7774 52%,#5AAAE4 100%);background-size:220% 100%;animation:khJourneyFlow 6s linear infinite;opacity:.7;pointer-events:none}
.kh-progressive-journey>article{position:relative;z-index:1}
@keyframes khJourneyFlow{to{background-position:-220% 0}}
@media(prefers-reduced-motion:reduce){.kh-progressive-journey:after{animation:none!important}}
@media(max-width:900px){.kh-progressive-journey:after{display:none}}


/* ========================================================================
   KnowHow Elementor Build v2.1.6 - human acceptance correction layer
   ======================================================================== */
/* F01: support both Elementor Nav Menu and WordPress Menu widget markup, and
   prevent header containers from clipping the Platform child menu. */
.elementor-location-header,.elementor-location-header .elementor-element,.elementor-location-header .elementor-widget-container,.elementor-location-header nav,.site-header,.site-header .header-inner,.site-header .primary-nav{overflow:visible!important}
.elementor-location-header .elementor-widget-nav-menu,.elementor-location-header .elementor-widget-wp-widget-nav_menu,.elementor-location-header .elementor-nav-menu--main,.site-header .primary-nav{position:relative!important;z-index:1200!important}
.elementor-location-header .elementor-nav-menu--main .elementor-nav-menu>li.menu-item-has-children,.elementor-location-header .menu>li.menu-item-has-children,.site-header .primary-nav .menu>li.menu-item-has-children{position:relative!important}
.elementor-location-header .elementor-nav-menu--main .elementor-nav-menu>li.menu-item-has-children>.sub-menu,.elementor-location-header .menu>li.menu-item-has-children>.sub-menu,.site-header .primary-nav .menu>li.menu-item-has-children>.sub-menu{
 position:absolute!important;z-index:2000!important;top:calc(100% - 2px)!important;left:-20px!important;display:grid!important;width:min(390px,88vw)!important;height:auto!important;max-height:none!important;overflow:visible!important;clip:auto!important;padding:10px!important;margin:0!important;border:1px solid #dce8f1!important;border-radius:16px!important;background:#fff!important;box-shadow:0 22px 55px rgba(7,23,43,.16)!important;list-style:none!important;opacity:0!important;visibility:hidden!important;pointer-events:none!important;transform:translateY(8px)!important;transition:opacity .18s ease,transform .18s ease,visibility .18s ease!important
}
.elementor-location-header .elementor-nav-menu--main .elementor-nav-menu>li.menu-item-has-children:hover>.sub-menu,.elementor-location-header .elementor-nav-menu--main .elementor-nav-menu>li.menu-item-has-children:focus-within>.sub-menu,.elementor-location-header .menu>li.menu-item-has-children:hover>.sub-menu,.elementor-location-header .menu>li.menu-item-has-children:focus-within>.sub-menu,.site-header .primary-nav .menu>li.menu-item-has-children:hover>.sub-menu,.site-header .primary-nav .menu>li.menu-item-has-children:focus-within>.sub-menu{opacity:1!important;visibility:visible!important;pointer-events:auto!important;transform:none!important}
.elementor-location-header .sub-menu a,.site-header .primary-nav .sub-menu a{display:block!important;padding:11px 13px!important;border-radius:10px!important;color:#17263a!important;background:transparent!important;font-size:.86rem!important;line-height:1.3!important;font-weight:700!important;white-space:normal!important}
.elementor-location-header .sub-menu a:hover,.elementor-location-header .sub-menu a:focus,.site-header .primary-nav .sub-menu a:hover,.site-header .primary-nav .sub-menu a:focus{background:#f1f8fd!important;color:#2d8ed3!important}
@media(max-width:1000px){.elementor-location-header .elementor-nav-menu--main .elementor-nav-menu>li.menu-item-has-children>.sub-menu,.elementor-location-header .menu>li.menu-item-has-children>.sub-menu,.site-header .primary-nav .menu>li.menu-item-has-children>.sub-menu{position:static!important;left:auto!important;width:100%!important;padding:4px 0 4px 16px!important;border:0!important;border-radius:0!important;background:#f8fbfd!important;box-shadow:none!important;opacity:1!important;visibility:visible!important;pointer-events:auto!important;transform:none!important}}

/* V01/C03: one screenshot annotation family. Positioning remains page-specific;
   geometry and typography do not. */
body[class*="kh-approved-page-"] .kh-static-main .visual-note{padding:13px 16px!important;border:1px solid rgba(255,255,255,.1)!important;border-radius:14px!important;background:#0b2038!important;color:#fff!important;box-shadow:0 14px 32px rgba(7,23,43,.16)!important;gap:3px!important}
body[class*="kh-approved-page-"] .kh-static-main .visual-note b{font-family:Inter,"Avenir Next","Segoe UI",Arial,sans-serif!important;font-size:.8rem!important;font-weight:800!important;line-height:1.3!important}
body[class*="kh-approved-page-"] .kh-static-main .visual-note small{font-family:Inter,"Avenir Next","Segoe UI",Arial,sans-serif!important;color:#a9bfd0!important;font-size:.67rem!important;font-weight:500!important;line-height:1.35!important}


/* ========================================================================
   KnowHow Elementor Build v2.1.8 - staging verification correction layer
   Scope: H01, V01/H03, H02, H04 only on Home. No unapproved copy changes.
   ======================================================================== */
/* H01: restore deliberate breathing room above the global footer on Home.
   The white/inverted footer logo remains intentional. */
body.kh-elementor-v218.home .site-footer.kh-global-footer-v216 .footer-grid{
  padding-top:92px!important;
  padding-bottom:52px!important;
}
body.kh-elementor-v218.home .site-footer.kh-global-footer-v216 .footer-brand img{
  filter:brightness(0) invert(1)!important;
  opacity:.95!important;
}

/* V01/H03: adjacent Home product-image footers use one recognisable caption family.
   Light/dark colour variants remain, but geometry and hierarchy are shared. */
body.kh-elementor-v218.home .capability-product-shot figcaption,
body.kh-elementor-v218.home .kh-gallery-caption{
  display:flex!important;
  flex-direction:row!important;
  align-items:baseline!important;
  gap:10px!important;
  min-height:58px!important;
  padding:15px 18px!important;
  border-top:1px solid #e1eaf1!important;
  font-family:Inter,"Avenir Next","Segoe UI",Arial,sans-serif!important;
  line-height:1.35!important;
}
body.kh-elementor-v218.home .capability-product-shot figcaption{
  background:#0b2038!important;
  border-top-color:rgba(255,255,255,.12)!important;
  color:#dfeaf3!important;
}
body.kh-elementor-v218.home .kh-gallery-caption{background:#fff!important;color:#17263a!important}
body.kh-elementor-v218.home .capability-product-shot figcaption>span,
body.kh-elementor-v218.home .kh-gallery-label span{
  flex:0 0 auto!important;
  color:#5AAAE4!important;
  font-size:.72rem!important;
  font-weight:900!important;
  letter-spacing:.1em!important;
  text-transform:uppercase!important;
}
body.kh-elementor-v218.home .kh-gallery-label span{color:var(--blue-strong)!important}
body.kh-elementor-v218.home .capability-product-shot figcaption>strong,
body.kh-elementor-v218.home .kh-gallery-title .elementor-heading-title{
  margin:0!important;
  color:inherit!important;
  font-size:.96rem!important;
  font-weight:700!important;
  line-height:1.35!important;
}
@media(max-width:560px){
  body.kh-elementor-v218.home .capability-product-shot figcaption,
  body.kh-elementor-v218.home .kh-gallery-caption{flex-direction:column!important;align-items:flex-start!important;gap:4px!important}
}

/* H04: change the implementation cards into a connected journey/timeline.
   Existing Discover -> Configure -> Enable -> Improve wording is unchanged. */
body.kh-elementor-v218.home .kh-implementation-timeline{
  position:relative!important;
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:34px!important;
  padding:8px 8px 0!important;
  isolation:isolate!important;
}
body.kh-elementor-v218.home .kh-implementation-timeline:before{
  content:"";
  position:absolute;
  z-index:0;
  left:8%;
  right:8%;
  top:38px;
  height:2px;
  background:linear-gradient(90deg,rgba(90,170,228,.25),#5AAAE4 30%,#FC7774 64%,rgba(90,170,228,.35));
}
body.kh-elementor-v218.home .kh-implementation-timeline .kh-implementation-step{
  position:relative!important;
  z-index:1!important;
  display:block!important;
  min-height:0!important;
  padding:0 10px!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
  text-align:center!important;
}
body.kh-elementor-v218.home .kh-implementation-timeline .kh-step-number{display:flex!important;justify-content:center!important;width:100%!important}
body.kh-elementor-v218.home .kh-implementation-timeline .kh-step-number span{
  display:grid!important;
  place-items:center!important;
  width:60px!important;
  height:60px!important;
  margin:0 auto 26px!important;
  border:1px solid rgba(90,170,228,.34)!important;
  border-radius:50%!important;
  color:var(--blue-strong)!important;
  background:#fff!important;
  box-shadow:0 8px 24px rgba(18,47,75,.08)!important;
}
body.kh-elementor-v218.home .kh-implementation-timeline .kh-implementation-step:nth-child(3) .kh-step-number span{
  border-color:rgba(252,119,116,.5)!important;
  color:#b64f4c!important;
  background:#fff8f8!important;
}
body.kh-elementor-v218.home .kh-implementation-timeline .kh-implementation-step h3{margin:0 0 10px!important;font-size:1.35rem!important}
body.kh-elementor-v218.home .kh-implementation-timeline .kh-implementation-step p{margin:0!important;color:var(--slate)!important;font-size:.96rem!important;line-height:1.65!important}
@media(max-width:760px){
  body.kh-elementor-v218.home .kh-implementation-timeline{
    grid-template-columns:1fr!important;
    gap:28px!important;
    padding:0!important;
  }
  body.kh-elementor-v218.home .kh-implementation-timeline:before{
    left:29px!important;right:auto!important;top:18px!important;bottom:18px!important;width:2px!important;height:auto!important;
    background:linear-gradient(180deg,rgba(90,170,228,.25),#5AAAE4 35%,#FC7774 70%,rgba(90,170,228,.35))!important;
  }
  body.kh-elementor-v218.home .kh-implementation-timeline .kh-implementation-step{
    display:grid!important;
    grid-template-columns:60px 1fr!important;
    grid-template-areas:"num title" "num copy"!important;
    column-gap:18px!important;
    row-gap:5px!important;
    padding:0!important;
    text-align:left!important;
  }
  body.kh-elementor-v218.home .kh-implementation-timeline .kh-step-number{grid-area:num!important}
  body.kh-elementor-v218.home .kh-implementation-timeline .kh-step-number span{margin:0!important}
  body.kh-elementor-v218.home .kh-implementation-timeline .kh-implementation-step>.elementor-widget-heading{grid-area:title!important;align-self:end!important}
  body.kh-elementor-v218.home .kh-implementation-timeline .kh-implementation-step>.elementor-widget-text-editor:last-child{grid-area:copy!important}
}

/* ========================================================================
   KnowHow Elementor Build v2.1.9 - final focused staging correction layer
   Scope: N18-01 Blog footer spacing + H04A Home timeline motion only.
   ======================================================================== */
/* N18-01: Blog uses the same deliberate footer breathing room accepted on Home. */
body.kh-elementor-v219.kh-page-blog .site-footer.kh-global-footer-v216 .footer-grid{
  padding-top:92px!important;
  padding-bottom:52px!important;
}
body.kh-elementor-v219.kh-page-blog .site-footer.kh-global-footer-v216 .footer-brand img{
  filter:brightness(0) invert(1)!important;
  opacity:.95!important;
}

/* H04A: retain the accepted Home timeline design, but make progression from
   Discover -> Configure -> Enable -> Improve visibly travel along the connector. */
body.kh-elementor-v219.home .kh-implementation-timeline:before{
  background:rgba(90,170,228,.24)!important;
}
body.kh-elementor-v219.home .kh-implementation-timeline:after{
  content:"";
  position:absolute;
  z-index:0;
  left:8%;
  top:36px;
  width:16%;
  height:6px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(90,170,228,0),#5AAAE4 28%,#fff 52%,#FC7774 72%,rgba(252,119,116,0));
  box-shadow:0 0 14px rgba(90,170,228,.38),0 0 18px rgba(252,119,116,.24);
  opacity:.9;
  pointer-events:none;
  animation:khHomeImplementationTravelV219 4.2s ease-in-out infinite;
}
@keyframes khHomeImplementationTravelV219{
  0%{left:8%;opacity:.18}
  12%{opacity:.95}
  88%{opacity:.95}
  100%{left:76%;opacity:.18}
}
@media(max-width:760px){
  body.kh-elementor-v219.home .kh-implementation-timeline:before{
    background:rgba(90,170,228,.24)!important;
  }
  body.kh-elementor-v219.home .kh-implementation-timeline:after{
    left:27px!important;
    top:18px;
    width:6px;
    height:72px;
    background:linear-gradient(180deg,rgba(90,170,228,0),#5AAAE4 28%,#fff 52%,#FC7774 72%,rgba(252,119,116,0));
    animation:khHomeImplementationTravelMobileV219 4.2s ease-in-out infinite;
  }
  @keyframes khHomeImplementationTravelMobileV219{
    0%{top:18px;opacity:.18}
    12%{opacity:.95}
    88%{opacity:.95}
    100%{top:calc(100% - 90px);opacity:.18}
  }
}
@media(prefers-reduced-motion:reduce){
  body.kh-elementor-v219.home .kh-implementation-timeline:after{display:none!important;animation:none!important}
}



/* ========================================================================
   KnowHow Elementor Build v2.2.2 - R04-M focused correction layer
   R04M-T01: At 768-1000px retain the desktop/tablet header, but do not force
   the Platform submenu permanently open. Restore the accepted hover/focus
   dropdown behaviour while leaving phone (<768px) to the mobile shell.
   ======================================================================== */
@media (min-width:768px) and (max-width:1000px){
  .elementor-location-header .elementor-nav-menu--main .elementor-nav-menu>li.menu-item-has-children>.sub-menu,
  .elementor-location-header .menu>li.menu-item-has-children>.sub-menu,
  .site-header .primary-nav .menu>li.menu-item-has-children>.sub-menu{
    position:absolute!important;
    z-index:2000!important;
    top:calc(100% - 2px)!important;
    left:-20px!important;
    display:grid!important;
    width:min(390px,88vw)!important;
    height:auto!important;
    max-height:none!important;
    overflow:visible!important;
    padding:10px!important;
    margin:0!important;
    border:1px solid #dce8f1!important;
    border-radius:16px!important;
    background:#fff!important;
    box-shadow:0 22px 55px rgba(7,23,43,.16)!important;
    opacity:0!important;
    visibility:hidden!important;
    pointer-events:none!important;
    transform:translateY(8px)!important;
  }
  .elementor-location-header .elementor-nav-menu--main .elementor-nav-menu>li.menu-item-has-children:hover>.sub-menu,
  .elementor-location-header .elementor-nav-menu--main .elementor-nav-menu>li.menu-item-has-children:focus-within>.sub-menu,
  .elementor-location-header .menu>li.menu-item-has-children:hover>.sub-menu,
  .elementor-location-header .menu>li.menu-item-has-children:focus-within>.sub-menu,
  .site-header .primary-nav .menu>li.menu-item-has-children:hover>.sub-menu,
  .site-header .primary-nav .menu>li.menu-item-has-children:focus-within>.sub-menu{
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
    transform:none!important;
  }
}


/* ========================================================================
   KnowHow Elementor Build v2.2.6 - residual staging integrity correction
   R226-05: preserve the desktop/tablet shell at 768px while giving the
   Elementor Theme Builder header enough horizontal capacity to keep Blog
   and About on separate, non-overlapping items. Normal desktop remains
   unchanged; the phone shell still stops at 767px.
   ======================================================================== */
@media (min-width:768px) and (max-width:900px){
  .elementor-location-header .elementor-nav-menu--main>.elementor-nav-menu,
  .elementor-location-header .elementor-nav-menu--main .elementor-nav-menu,
  .elementor-location-header .menu{
    display:flex!important;
    flex-wrap:nowrap!important;
    align-items:center!important;
    gap:0!important;
    white-space:nowrap!important;
  }
  .elementor-location-header .elementor-nav-menu--main .elementor-nav-menu>li,
  .elementor-location-header .menu>li{
    flex:0 0 auto!important;
    width:auto!important;
    min-width:0!important;
  }
  .elementor-location-header .elementor-nav-menu--main .elementor-nav-menu>li>a,
  .elementor-location-header .menu>li>a{
    padding-left:7px!important;
    padding-right:7px!important;
    font-size:12px!important;
    line-height:1.2!important;
    white-space:nowrap!important;
  }
  .elementor-location-header .elementor-widget-image img,
  .elementor-location-header img.custom-logo{
    width:auto!important;
    max-width:104px!important;
    height:auto!important;
  }
  .elementor-location-header .kh-open-demo .elementor-button,
  .elementor-location-header a.kh-open-demo{
    min-width:0!important;
    padding:12px 13px!important;
    font-size:11px!important;
    line-height:1.16!important;
    white-space:normal!important;
  }
  .elementor-location-header .e-con,
  .elementor-location-header .elementor-container{
    column-gap:8px!important;
  }
}


/* ========================================================================
   KnowHow Elementor Build v2.2.7 - exact boundary + Blog runtime correction
   R227-02: v2.2.6 is clean from roughly 785px upward. At 768-784px only,
   compact the Elementor Theme Builder header further so the final About item
   and tailored-demo CTA remain geometrically separate. Phone still ends at
   767px and normal desktop remains unchanged.
   ======================================================================== */
@media (min-width:768px) and (max-width:784px){
  .elementor-location-header .elementor-widget-nav-menu,
  .elementor-location-header .elementor-nav-menu--main{
    min-width:0!important;
    flex:1 1 auto!important;
  }
  .elementor-location-header .elementor-nav-menu--main>.elementor-nav-menu,
  .elementor-location-header .elementor-nav-menu--main .elementor-nav-menu,
  .elementor-location-header .menu{
    gap:0!important;
    flex-wrap:nowrap!important;
    white-space:nowrap!important;
  }
  .elementor-location-header .elementor-nav-menu--main .elementor-nav-menu>li>a,
  .elementor-location-header .menu>li>a{
    padding-left:4px!important;
    padding-right:4px!important;
    font-size:11px!important;
    letter-spacing:-.01em!important;
  }
  .elementor-location-header .elementor-widget-image img,
  .elementor-location-header img.custom-logo{
    max-width:90px!important;
  }
  .elementor-location-header .kh-open-demo,
  .elementor-location-header .elementor-widget-button,
  .elementor-location-header .elementor-button-wrapper{
    min-width:0!important;
    flex-shrink:1!important;
  }
  .elementor-location-header .kh-open-demo .elementor-button,
  .elementor-location-header a.kh-open-demo{
    max-width:126px!important;
    padding:10px 8px!important;
    font-size:10px!important;
    line-height:1.12!important;
  }
  .elementor-location-header .e-con,
  .elementor-location-header .elementor-container{
    column-gap:4px!important;
  }
}


/* ========================================================================
   KnowHow Elementor Build v2.2.8 - narrow tablet header geometry correction
   R228-01: staging proved the header itself is stable, but at ~785px the
   active About underline can visually intrude beneath the tailored-demo CTA.
   Across 768-899px only, reserve a small gap after the final nav item and
   inset the active About underline. Phone <=767px and 900px+ remain untouched.
   ======================================================================== */
@media (min-width:768px) and (max-width:899px){
  .elementor-location-header .elementor-nav-menu--main>.elementor-nav-menu>li:last-child,
  .elementor-location-header .elementor-nav-menu--main .elementor-nav-menu>li:last-child,
  .elementor-location-header .menu>li:last-child{
    margin-right:6px!important;
  }
  body.kh-approved-page-about .elementor-location-header a[href$="/about/"]::after,
  .elementor-location-header .current-menu-item>a[href$="/about/"]::after,
  .elementor-location-header .current_page_item>a[href$="/about/"]::after,
  .elementor-location-header .current-menu-parent>a[href$="/about/"]::after,
  .elementor-location-header .current-menu-ancestor>a[href$="/about/"]::after{
    left:4px!important;
    right:8px!important;
  }
}


/* ========================================================================
   KnowHow Elementor Build v2.2.9 - launch corrections + FAQ candidate
   ======================================================================== */
body.kh-elementor-v229 .kh-home-faq-entry{padding:54px 0;background:#f5f8fb;border-top:1px solid #e4edf3}
body.kh-elementor-v229 .kh-home-faq-entry-inner{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:44px!important}
body.kh-elementor-v229 .kh-home-faq-copy{display:block!important;max-width:800px}.kh-home-faq-copy h2{margin:0 0 12px;font-size:clamp(2rem,3.2vw,3.2rem);line-height:1.08;color:var(--ink)}
body.kh-elementor-v229 .kh-home-faq-copy p:not(.eyebrow){margin:0;color:var(--slate);line-height:1.65}.kh-home-faq-button{flex:0 0 auto}
body.kh-elementor-v229 .kh-blog-article .kh-blog-final-cta{margin-bottom:64px}
body.kh-elementor-v229 .kh-article-content>.elementor,.kh-article-content>.wp-block-group{max-width:100%}
@media(max-width:760px){body.kh-elementor-v229 .kh-home-faq-entry-inner{align-items:flex-start!important;flex-direction:column!important;gap:24px!important}.kh-home-faq-button{width:100%}.kh-mobile-faq-entry h2{font-size:30px;line-height:1.08;margin:0 0 14px}.kh-mobile-faq-entry p:not(.eyebrow){color:#607386;line-height:1.6}.kh-mobile-faq-entry .btn{width:100%;margin-top:12px}}


/* ========================================================================
   KnowHow Elementor Build v2.2.12 - contained visual correction layer
   RTO-02: enforce approved light heading treatment on the owned Blog Article hero.
   RTO-04/05: remove external white gap and place breathing room inside the footer.
   BLOG-M547-01: mid-mobile Blog Hub geometry is handled in mobile/css/blog.css.
   C05: standalone Home FAQ block removed; FAQ is now a coral action in Your Next Step.
   ======================================================================== */
body.kh-elementor-v2212.kh-runtime-owned-single-post-v2212 .kh-blog-article .kh-article-hero h1.kh-article-title{
  color:#fff!important;
  -webkit-text-fill-color:#fff!important;
}
body.kh-elementor-v2212.kh-runtime-owned-single-post-v2212 .kh-blog-article .kh-blog-final-cta{
  margin-bottom:0!important;
}
body.kh-elementor-v2212.kh-runtime-owned-single-post-v2212 .site-footer.kh-global-footer-v216 .footer-grid{
  padding-top:92px!important;
  padding-bottom:52px!important;
}
body.kh-elementor-v2212.home .kh-home-faq-entry{display:none!important}
body.kh-elementor-v2212.home .final-cta .kh-home-final-faq .elementor-button{
  color:#07172b!important;
  border-color:#FC7774!important;
  background:#FC7774!important;
  box-shadow:0 16px 40px rgba(252,119,116,.25)!important;
}
body.kh-elementor-v2212.home .final-cta .kh-home-final-faq .elementor-button:hover{
  background:#ff8a87!important;
  box-shadow:0 18px 46px rgba(252,119,116,.34)!important;
}
