:root {
  --cream: #F9F5EE;
  --cream-dark: #F2EDE2;
  --cream-mid: #EDE6D6;
  --gold: #B8954A;
  --gold-light: #D4B06A;
  --gold-pale: #E8D5A8;
  --gold-deep: #8A6D2F;
  --ink: #1C1912;
  --ink-mid: #3D3828;
  --ink-soft: #6B6250;
  --ink-ghost: #A09880;
  --white: #FFFFFF;
  --stone: #D9D6CC;
  --sage: #A7AAA0;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.kl-lp-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 40px;
  background: rgba(249, 245, 238, 0.94);
  border-bottom: 1px solid rgba(184, 149, 74, 0.18);
  backdrop-filter: blur(14px);
}

.kl-lp-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.kl-lp-logo__mark {
  display: block;
  width: 108px;
  height: auto;
  max-height: 34px;
  object-fit: contain;
}

.kl-lp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex: 1;
}

.kl-lp-nav a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-mid);
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
}

.kl-lp-nav a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.kl-lp-header__cta {
  flex: 0 0 auto;
}

.kl-btn,
.kl-btn-dark,
.kl-btn-ghost,
.kl-btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.kl-btn {
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
}

.kl-btn:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.kl-btn-dark {
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
}

.kl-btn-dark:hover {
  color: var(--white);
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

.kl-btn-ghost {
  color: var(--gold);
  background: transparent;
  border-color: rgba(184, 149, 74, 0.46);
}

.kl-btn-ghost:hover {
  color: var(--white);
  background: var(--gold);
}

.kl-btn-light {
  color: var(--cream);
  background: transparent;
  border-color: rgba(249, 245, 238, 0.36);
}

.kl-btn-light:hover {
  color: var(--ink);
  background: var(--cream);
}

.kl-lp-hero {
  min-height: 92vh;
  padding-top: 76px;
  position: relative;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: var(--ink);
}

.kl-lp-hero__media,
.kl-lp-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.kl-lp-hero__media img {
  object-fit: cover;
  opacity: 0.72;
}

.kl-lp-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 25, 18, 0.88), rgba(28, 25, 18, 0.52) 48%, rgba(28, 25, 18, 0.18)),
    linear-gradient(0deg, rgba(28, 25, 18, 0.72), rgba(28, 25, 18, 0.06) 44%);
}

.kl-lp-hero__grid {
  position: absolute;
  inset: 76px 0 0;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(0deg, #B8954A 0, #B8954A 1px, transparent 1px, transparent 84px),
    repeating-linear-gradient(90deg, #B8954A 0, #B8954A 1px, transparent 1px, transparent 84px);
}

.kl-lp-hero__content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.62fr);
  gap: 72px;
  align-items: end;
  padding: 118px 0 80px;
}

.kl-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.kl-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.kl-kicker--plain::before {
  display: none;
}

.kl-lp-hero h1,
.kl-section-title,
.kl-thanks-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0;
}

.kl-lp-hero h1 {
  max-width: 760px;
  font-size: clamp(52px, 6vw, 88px);
  color: var(--cream);
  text-shadow: 0 8px 44px rgba(0, 0, 0, 0.34);
}

.kl-lp-hero h1 em,
.kl-section-title em,
.kl-thanks-title em {
  font-style: italic;
  color: var(--gold-light);
}

.kl-lp-hero__lead {
  max-width: 560px;
  margin: 28px 0 42px;
  color: rgba(249, 245, 238, 0.7);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 300;
}

.kl-lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.kl-lp-hero__panel {
  align-self: end;
  border: 1px solid rgba(184, 149, 74, 0.28);
  background: rgba(249, 245, 238, 0.08);
  backdrop-filter: blur(12px);
  padding: 34px;
}

.kl-lp-hero__panel-title {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--cream);
}

.kl-lp-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(184, 149, 74, 0.18);
}

.kl-lp-stat {
  min-height: 118px;
  padding: 22px;
  background: rgba(28, 25, 18, 0.74);
}

.kl-lp-stat__num {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  color: var(--gold-light);
}

.kl-lp-stat__label {
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.58);
}

.kl-strip {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 18px 64px;
  background: var(--ink);
  border-top: 1px solid rgba(184, 149, 74, 0.2);
  border-bottom: 1px solid rgba(184, 149, 74, 0.2);
  overflow: hidden;
}

.kl-strip__label {
  flex: 0 0 auto;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.kl-strip__items {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

.kl-strip__items span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.46);
}

.kl-section {
  padding: 112px 64px;
}

.kl-section--white {
  background: var(--white);
}

.kl-section--cream {
  background: var(--cream);
}

.kl-section--muted {
  background: #ECEBE5;
}

.kl-section--dark {
  background: var(--ink);
  color: var(--cream);
}

.kl-section__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.kl-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 64px;
}

.kl-section-title {
  font-size: clamp(38px, 4vw, 62px);
  color: var(--ink);
}

.kl-section--dark .kl-section-title {
  color: var(--cream);
}

.kl-section-copy {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
  font-weight: 300;
}

.kl-section--dark .kl-section-copy {
  color: rgba(249, 245, 238, 0.58);
}

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

.kl-conversion-card {
  min-height: 260px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(184, 149, 74, 0.15);
  background: rgba(255, 255, 255, 0.76);
}

.kl-conversion-card--dark {
  color: var(--cream);
  background: var(--ink);
  border-color: rgba(184, 149, 74, 0.32);
}

.kl-conversion-card__eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.kl-conversion-card h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}

.kl-conversion-card--dark h3 {
  color: var(--cream);
}

.kl-conversion-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.75;
}

.kl-conversion-card--dark p {
  color: rgba(249, 245, 238, 0.64);
}

.kl-offer-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.45fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 42px;
}

.kl-offer-panel {
  padding: 34px;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid rgba(184, 149, 74, 0.28);
}

.kl-offer-panel h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.12;
}

.kl-offer-panel p {
  margin: 0 0 24px;
  color: rgba(249, 245, 238, 0.62);
  font-size: 14px;
  line-height: 1.8;
}

.kl-offer-list {
  display: grid;
  gap: 1px;
  background: rgba(184, 149, 74, 0.22);
}

.kl-offer-list span {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  background: rgba(249, 245, 238, 0.08);
  color: rgba(249, 245, 238, 0.74);
  font-size: 11px;
  letter-spacing: 0.16em;
  line-height: 1.55;
  text-transform: uppercase;
}

.kl-muted-note {
  color: var(--ink-ghost);
  font-size: 11px;
  letter-spacing: 0.16em;
  line-height: 1.6;
  text-transform: uppercase;
}

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

.kl-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  overflow: hidden;
  background: var(--cream-dark);
  border: 1px solid rgba(184, 149, 74, 0.14);
}

.kl-product-card__image {
  position: relative;
  flex: 1 1 auto;
  min-height: 310px;
  overflow: hidden;
  background: var(--stone);
}

.kl-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.kl-product-card:hover .kl-product-card__image img {
  transform: scale(1.045);
}

.kl-product-card__body {
  min-height: 210px;
  padding: 24px;
  background: var(--cream);
  border-top: 1px solid rgba(184, 149, 74, 0.14);
}

.kl-product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.kl-product-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
}

.kl-product-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.kl-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.kl-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(184, 149, 74, 0.26);
  color: var(--gold-deep);
  background: rgba(184, 149, 74, 0.08);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kl-category-grid,
.kl-capability-grid,
.kl-factory-grid,
.kl-testimonial-grid,
.kl-faq-grid {
  display: grid;
  gap: 16px;
}

.kl-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.kl-mini-tile,
.kl-capability,
.kl-testimonial,
.kl-faq,
.kl-form-panel,
.kl-thanks-panel {
  border: 1px solid rgba(184, 149, 74, 0.15);
  background: rgba(255, 255, 255, 0.72);
}

.kl-mini-tile {
  padding: 26px 22px;
}

.kl-category-grid--visual .kl-mini-tile {
  padding: 0;
  overflow: hidden;
}

.kl-mini-tile__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--stone);
}

.kl-mini-tile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.kl-category-grid--visual .kl-mini-tile:hover img {
  transform: scale(1.045);
}

.kl-mini-tile__body {
  padding: 22px;
}

.kl-mini-tile__label {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
}

.kl-mini-tile__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.kl-cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 38px;
  margin-top: 40px;
  padding: 40px 44px;
  background: var(--ink);
  color: var(--cream);
}

.kl-cta-band__title {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.12;
}

.kl-cta-band__copy {
  max-width: 620px;
  margin: 0;
  color: rgba(249, 245, 238, 0.6);
  font-size: 14px;
  line-height: 1.8;
}

.kl-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}

.kl-split__media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
}

.kl-split__media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.kl-split__media-caption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 22px;
  background: rgba(28, 25, 18, 0.72);
  border: 1px solid rgba(184, 149, 74, 0.28);
  color: rgba(249, 245, 238, 0.72);
  font-size: 12px;
  line-height: 1.75;
  backdrop-filter: blur(10px);
}

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

.kl-capability {
  padding: 30px;
}

.kl-capability__num {
  display: block;
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  color: rgba(184, 149, 74, 0.34);
}

.kl-capability h3,
.kl-project-card h3,
.kl-testimonial h3,
.kl-faq summary,
.kl-form-panel h2,
.kl-thanks-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}

.kl-capability h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.kl-capability p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.kl-video-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: 40px;
  align-items: center;
}

.kl-video {
  position: relative;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(184, 149, 74, 0.18);
}

.kl-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.kl-video-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border: 1px solid rgba(184, 149, 74, 0.18);
  color: var(--cream);
  text-decoration: none;
}

.kl-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  transition: transform 0.55s ease, opacity 0.55s ease;
}

.kl-video-card:hover img {
  transform: scale(1.035);
  opacity: 0.62;
}

.kl-video-card__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 32px;
  background: linear-gradient(90deg, rgba(28, 25, 18, 0.55), rgba(28, 25, 18, 0.16));
}

.kl-video-card__content {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.kl-video-card__play {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

.kl-video-card__play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid currentColor;
}

.kl-video-card__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.6;
  text-transform: uppercase;
}

.kl-video-card__hint {
  display: block;
  color: rgba(249, 245, 238, 0.7);
  font-size: 13px;
  line-height: 1.7;
}

.kl-feature-list {
  display: grid;
  gap: 14px;
}

.kl-feature-list div {
  padding: 20px 0;
  border-bottom: 1px solid rgba(184, 149, 74, 0.16);
}

.kl-feature-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold);
}

.kl-feature-list span {
  display: block;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.75;
}

.kl-network {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.kl-network-map {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(237, 230, 214, 0.62)),
    repeating-linear-gradient(0deg, rgba(184, 149, 74, 0.08) 0, rgba(184, 149, 74, 0.08) 1px, transparent 1px, transparent 42px),
    repeating-linear-gradient(90deg, rgba(184, 149, 74, 0.08) 0, rgba(184, 149, 74, 0.08) 1px, transparent 1px, transparent 42px);
  border: 1px solid rgba(184, 149, 74, 0.14);
}

.kl-network-map--image {
  padding: 0;
  overflow: hidden;
  background: var(--cream-dark);
}

.kl-network-map--image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.kl-network-map__title {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.02;
  text-transform: uppercase;
  color: rgba(28, 25, 18, 0.78);
}

.kl-network-map__title span {
  display: block;
  color: var(--gold);
}

.kl-region-grid {
  display: grid;
  gap: 12px;
}

.kl-region {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(184, 149, 74, 0.15);
}

.kl-region__ratio {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  color: var(--gold);
}

.kl-region__name {
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}

.kl-region__copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.kl-cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.kl-cert {
  min-width: 76px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(184, 149, 74, 0.26);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.kl-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.kl-proof-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(184, 149, 74, 0.15);
}

.kl-proof-card__image {
  aspect-ratio: 16 / 10;
  background: var(--stone);
}

.kl-proof-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kl-proof-card__body {
  padding: 26px;
}

.kl-proof-card__body h3 {
  margin: 0 0 10px;
  font-size: 30px;
}

.kl-proof-card__body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.75;
}

.kl-project-doc-pack {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 18px;
  margin-top: 32px;
}

.kl-project-doc-pack--image-only {
  grid-template-columns: 1fr;
}

.kl-project-doc-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(184, 149, 74, 0.18);
}

.kl-project-doc-card--media {
  display: grid;
  grid-template-rows: auto 1fr;
}

.kl-project-doc-card--image-only {
  display: block;
  border: 0;
  background: transparent;
}

.kl-project-doc-card__image {
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(249, 245, 238, 0.74)),
    var(--cream);
  border-bottom: 1px solid rgba(184, 149, 74, 0.16);
}

.kl-project-doc-card__image img {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
}

.kl-project-doc-card--image-only .kl-project-doc-card__image {
  padding: 0;
  background: transparent;
  border: 0;
  border-bottom: 0;
}

.kl-project-doc-card--image-only .kl-project-doc-card__image img {
  display: block;
  height: auto;
  max-height: none;
}

.kl-project-doc-card__body,
.kl-project-doc-card--summary {
  padding: 30px;
}

.kl-project-doc-card h3 {
  margin: 0 0 12px;
  font-size: 32px;
}

.kl-project-doc-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.78;
}

.kl-doc-kit {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 18px;
  align-items: stretch;
}

.kl-doc-card {
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(184, 149, 74, 0.18);
}

.kl-doc-card--patent {
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
}

.kl-doc-card--factory {
  display: grid;
  grid-template-rows: minmax(280px, 0.78fr) auto;
}

.kl-doc-card__media {
  overflow: hidden;
  background: var(--cream-dark);
}

.kl-doc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.kl-doc-card:hover .kl-doc-card__media img {
  transform: scale(1.035);
}

.kl-doc-card__body {
  padding: 28px;
}

.kl-doc-tag {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.kl-doc-card__body h3 {
  margin: 0 0 12px;
  font-size: 32px;
}

.kl-doc-card__body p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.78;
}

.kl-doc-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.kl-doc-chip-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(184, 149, 74, 0.24);
  color: var(--gold-deep);
  background: rgba(184, 149, 74, 0.06);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kl-doc-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(184, 149, 74, 0.18);
  border: 1px solid rgba(184, 149, 74, 0.18);
}

.kl-doc-steps div {
  min-height: 138px;
  padding: 24px;
  background: rgba(249, 245, 238, 0.8);
}

.kl-doc-steps span {
  display: block;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  color: var(--gold);
}

.kl-doc-steps strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kl-doc-steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.kl-cert-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.kl-cert-showcase--market .kl-doc-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kl-cert-panel {
  display: grid;
  gap: 26px;
  align-items: center;
  background: rgba(249, 245, 238, 0.62);
  border: 1px solid rgba(184, 149, 74, 0.2);
  padding: 18px;
}

.kl-cert-panel--patent {
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
}

.kl-cert-panel--factory {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
}

.kl-cert-panel--image-only {
  grid-template-columns: 1fr;
  padding: 0;
  border: 0;
  background: transparent;
}

.kl-cert-panel__image {
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(249, 245, 238, 0.76)),
    var(--white);
  border: 1px solid rgba(184, 149, 74, 0.18);
  padding: 16px;
}

.kl-cert-panel--patent .kl-cert-panel__image {
  aspect-ratio: 449 / 317;
}

.kl-cert-panel--patent.kl-cert-panel--image-only .kl-cert-panel__image {
  aspect-ratio: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.kl-cert-panel--image-only .kl-cert-panel__image {
  padding: 0;
  border: 0;
  background: transparent;
}

.kl-cert-panel--factory .kl-cert-panel__image {
  aspect-ratio: 3 / 4;
}

.kl-cert-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.kl-cert-panel--image-only .kl-cert-panel__image img {
  display: block;
  height: auto;
  max-height: none;
}

.kl-cert-panel--patent.kl-cert-panel--image-only .kl-cert-panel__image img {
  max-height: none;
}

.kl-cert-panel__content {
  padding: 18px 10px;
}

.kl-cert-panel__content h3 {
  margin: 0 0 12px;
  font-size: 32px;
}

.kl-cert-panel__content p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.78;
}

.kl-cert-showcase .kl-doc-steps {
  grid-column: auto;
}

.kl-factory-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 0;
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(184, 149, 74, 0.18);
}

.kl-factory-proof__image {
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(249, 245, 238, 0.74)),
    var(--cream);
  border-right: 1px solid rgba(184, 149, 74, 0.16);
}

.kl-factory-proof__image img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.kl-factory-proof--image-only {
  grid-template-columns: 1fr;
  background: transparent;
  border: 0;
}

.kl-factory-proof--image-only .kl-factory-proof__image {
  padding: 0;
  background: transparent;
  border: 0;
}

.kl-factory-proof--image-only .kl-factory-proof__image img {
  display: block;
  height: auto;
  max-height: none;
}

.kl-factory-proof__body {
  align-self: center;
  padding: 34px;
}

.kl-factory-proof__body h3 {
  margin: 0 0 12px;
  font-size: 32px;
}

.kl-factory-proof__body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.78;
}

.kl-factory-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: minmax(220px, 1fr);
}

.kl-factory-grid--campus {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr) minmax(0, 1fr);
}

.kl-factory-tile {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  background: var(--ink);
}

.kl-factory-tile--large {
  grid-row: span 2;
}

.kl-factory-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 0.7s ease;
}

.kl-factory-tile:hover img {
  transform: scale(1.04);
}

.kl-factory-tile__label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.kl-factory-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kl-factory-grid--six .kl-factory-tile--large {
  grid-column: span 2;
  grid-row: span 2;
}

.kl-factory-grid--workshop {
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 1fr) minmax(0, 1fr);
}

.kl-factory-grid--workshop .kl-factory-tile--large {
  grid-column: span 1;
  grid-row: span 2;
}

.kl-exhibit-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.kl-exhibit {
  min-height: 240px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.kl-exhibit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.kl-exhibit span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  color: var(--cream);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kl-exhibit::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(0deg, rgba(28, 25, 18, 0.72), transparent);
}

.kl-exhibit span {
  z-index: 1;
}

.kl-testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 18px;
}

.kl-testimonial-grid--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kl-testimonial-grid--project-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kl-testimonial {
  position: relative;
  min-height: 340px;
  padding: 36px 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(249, 245, 238, 0.72)),
    var(--cream);
  border-color: rgba(184, 149, 74, 0.18);
  box-shadow: 0 18px 46px rgba(28, 25, 18, 0.05);
}

.kl-testimonial::after {
  content: "\"";
  position: absolute;
  top: 22px;
  right: 28px;
  color: rgba(184, 149, 74, 0.34);
  font-family: var(--serif);
  font-size: 78px;
  font-style: italic;
  line-height: 1;
}

.kl-testimonial p {
  margin: 0;
  max-width: 92%;
  color: rgba(28, 25, 18, 0.72);
  font-family: var(--serif);
  font-size: clamp(18px, 1.28vw, 23px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.76;
}

.kl-testimonial > div {
  position: relative;
  min-height: 0;
  padding-left: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(184, 149, 74, 0.22);
}

.kl-testimonial > div::before,
.kl-testimonial > div::after {
  content: "";
  position: absolute;
}

.kl-testimonial > div::before {
  left: 0;
  top: -1px;
  width: 82px;
  height: 1px;
  background: var(--gold);
}

.kl-testimonial > div::after {
  left: 0;
  top: -4px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.kl-testimonial h3 {
  margin: 0 0 7px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
}

.kl-testimonial__role {
  display: block;
  color: rgba(107, 98, 80, 0.68);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.kl-testimonial__type {
  display: block;
  margin-top: 7px;
  color: var(--gold-deep);
  font-size: 10px;
  letter-spacing: 0.18em;
  line-height: 1.6;
  text-transform: uppercase;
}

.kl-testimonial-grid--project-four .kl-testimonial {
  min-height: 360px;
  padding: 32px 26px 28px;
}

.kl-testimonial-grid--project-four .kl-testimonial p {
  max-width: 100%;
  font-size: clamp(17px, 1vw, 20px);
}

.kl-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kl-faq {
  padding: 0;
}

.kl-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 26px;
  font-size: 22px;
}

.kl-faq summary::-webkit-details-marker {
  display: none;
}

.kl-faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-family: var(--sans);
}

.kl-faq[open] summary::after {
  content: "-";
}

.kl-faq p {
  margin: 0;
  padding: 0 26px 26px;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.8;
}

.kl-project-groups {
  display: grid;
  gap: 54px;
}

.kl-project-group__head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(184, 149, 74, 0.18);
  padding-bottom: 18px;
}

.kl-project-group__head h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  color: var(--ink);
}

.kl-project-group__head a {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 149, 74, 0.34);
  padding-bottom: 4px;
}

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

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

.kl-project-card {
  background: var(--cream);
  border: 1px solid rgba(184, 149, 74, 0.14);
}

.kl-project-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--stone);
}

.kl-project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.kl-project-card:hover img {
  transform: scale(1.045);
}

.kl-project-card__body {
  min-height: 128px;
  padding: 22px;
}

.kl-project-card h3 {
  margin-bottom: 8px;
  font-size: 23px;
}

.kl-project-card h3.kl-title-nowrap {
  white-space: nowrap;
  font-size: 21px;
}

.kl-project-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12.8px;
  line-height: 1.7;
}

.kl-material-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.kl-material {
  min-height: 104px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(184, 149, 74, 0.12), rgba(255, 255, 255, 0.74)),
    var(--cream-dark);
  border: 1px solid rgba(184, 149, 74, 0.16);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}

.kl-material--image {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  align-items: flex-end;
  background:
    linear-gradient(135deg, rgba(249, 245, 238, 0.92), rgba(232, 213, 168, 0.62)),
    var(--cream-dark);
  border: 1px solid rgba(184, 149, 74, 0.34);
  color: var(--cream);
}

.kl-material--image::before,
.kl-material--image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.kl-material--image::before {
  z-index: 1;
  background: linear-gradient(135deg, rgba(232, 213, 168, 0.18), rgba(184, 149, 74, 0.24));
}

.kl-material--image::after {
  z-index: 2;
  inset: auto 0 0;
  height: 64%;
  background: linear-gradient(0deg, rgba(138, 109, 47, 0.74), rgba(184, 149, 74, 0.24), transparent);
}

.kl-material--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 0.7s ease;
}

.kl-material--image:hover img {
  transform: scale(1.045);
}

.kl-material--image span {
  position: relative;
  z-index: 3;
  text-shadow: 0 2px 12px rgba(62, 48, 20, 0.32);
}

.kl-flow {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid rgba(184, 149, 74, 0.2);
}

.kl-flow-step {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(184, 149, 74, 0.16);
}

.kl-flow-step__num {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  color: var(--gold);
}

.kl-flow-step__title {
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.kl-flow-step__copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.75;
}

.kl-form-section {
  padding: 112px 64px;
  background:
    linear-gradient(90deg, rgba(28, 25, 18, 0.82), rgba(28, 25, 18, 0.58)),
    url("../../images/landing/common/form-background.webp") center / cover;
}

.kl-form-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.68fr);
  gap: 70px;
  align-items: start;
}

.kl-form-copy {
  color: var(--cream);
}

.kl-form-copy .kl-section-title {
  color: var(--cream);
}

.kl-form-copy p {
  max-width: 520px;
  color: rgba(249, 245, 238, 0.62);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 300;
}

.kl-form-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 560px;
  margin-top: 38px;
  background: rgba(184, 149, 74, 0.28);
}

.kl-form-proof span {
  min-height: 94px;
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  background: rgba(249, 245, 238, 0.08);
  color: rgba(249, 245, 238, 0.72);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kl-form-panel {
  padding: 34px;
  background: rgba(249, 245, 238, 0.96);
}

.kl-form-panel h2 {
  margin-bottom: 10px;
  font-size: 34px;
}

.kl-form-panel > p {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.kl-form {
  display: grid;
  gap: 15px;
}

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

.kl-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
}

.kl-field input,
.kl-field select,
.kl-field textarea {
  width: 100%;
  border: 1px solid rgba(28, 25, 18, 0.13);
  border-radius: 4px;
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(28, 25, 18, 0.03);
  outline: none;
}

.kl-field textarea {
  min-height: 118px;
  resize: vertical;
}

.kl-field input:focus,
.kl-field select:focus,
.kl-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 149, 74, 0.12);
}

.kl-form-note {
  margin: 0;
  color: rgba(107, 98, 80, 0.72);
  font-size: 11px;
  line-height: 1.65;
}

.kl-hp-field {
  height: 0;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.kl-lp-footer {
  padding: 58px 64px 34px;
  background: var(--ink);
  color: var(--cream);
}

.kl-lp-footer__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  border-top: 1px solid rgba(184, 149, 74, 0.2);
  padding-top: 34px;
}

.kl-lp-footer__brand {
  max-width: 360px;
}

.kl-lp-footer__brand strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.kl-lp-footer__brand p,
.kl-lp-footer__links a {
  color: rgba(249, 245, 238, 0.54);
  font-size: 13px;
  line-height: 1.8;
}

.kl-lp-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: flex-start;
  justify-content: flex-end;
}

.kl-lp-footer__links a {
  text-decoration: none;
}

.kl-lp-footer__links a:hover {
  color: var(--gold-light);
}

.kl-thanks {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 28px 64px;
  background:
    linear-gradient(90deg, rgba(28, 25, 18, 0.86), rgba(28, 25, 18, 0.58)),
    url("../../images/landing/common/form-background.webp") center / cover;
}

.kl-thanks-panel {
  width: min(720px, 100%);
  padding: 54px;
  background: rgba(249, 245, 238, 0.96);
}

.kl-thanks-title {
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 72px);
  color: var(--ink);
}

.kl-thanks-panel p {
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
}

.kl-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.kl-reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .kl-lp-nav {
    display: none;
  }

  .kl-lp-header {
    justify-content: space-between;
  }

  .kl-lp-hero__content,
  .kl-form-layout,
  .kl-split,
  .kl-video-wrap,
  .kl-network,
  .kl-proof-grid,
    .kl-project-doc-pack,
    .kl-doc-kit,
    .kl-cert-showcase,
    .kl-cert-panel,
    .kl-factory-proof,
    .kl-offer-row {
      grid-template-columns: 1fr;
    }

  .kl-lp-hero__panel {
    max-width: 560px;
  }

  .kl-product-grid,
  .kl-project-grid,
  .kl-material-grid,
  .kl-conversion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kl-category-grid,
  .kl-testimonial-grid,
  .kl-exhibit-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kl-factory-grid {
    grid-template-columns: 1fr 1fr;
  }

  .kl-cert-showcase--market .kl-doc-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kl-factory-proof__image {
    border-right: 0;
    border-bottom: 1px solid rgba(184, 149, 74, 0.16);
  }
}

@media (max-width: 760px) {
  .kl-lp-header {
    height: 68px;
    padding: 0 18px;
  }

  .kl-lp-logo__mark {
    width: 88px;
    max-height: 28px;
  }

  .kl-lp-header__cta {
    display: none;
  }

  .kl-lp-hero {
    min-height: auto;
    padding-top: 68px;
  }

  .kl-lp-hero__content {
    width: calc(100% - 36px);
    padding: 88px 0 48px;
    gap: 38px;
  }

  .kl-lp-hero h1 {
    font-size: clamp(44px, 13vw, 60px);
  }

  .kl-lp-hero__lead {
    margin-bottom: 30px;
  }

  .kl-lp-hero__panel,
  .kl-form-panel,
  .kl-thanks-panel {
    padding: 26px;
  }

  .kl-lp-hero__panel {
    display: none;
  }

  .kl-lp-stat-grid,
  .kl-product-grid,
  .kl-category-grid,
  .kl-capability-grid,
  .kl-conversion-grid,
  .kl-offer-row,
  .kl-proof-grid,
  .kl-doc-steps,
  .kl-factory-grid,
  .kl-testimonial-grid,
  .kl-faq-grid,
  .kl-project-grid,
  .kl-material-grid,
  .kl-exhibit-row,
  .kl-form-proof,
  .kl-form__row {
    grid-template-columns: 1fr;
  }

  .kl-strip {
    padding: 16px 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .kl-section,
  .kl-form-section {
    padding: 78px 18px;
  }

  .kl-section-head,
  .kl-cta-band,
  .kl-project-group__head,
  .kl-lp-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .kl-section-head {
    margin-bottom: 42px;
  }

  .kl-cta-band {
    padding: 30px 24px;
  }

  .kl-split__media,
  .kl-split__media img {
    min-height: 380px;
  }

  .kl-factory-tile--large {
    grid-row: auto;
    grid-column: auto;
  }

  .kl-project-card h3.kl-title-nowrap {
    white-space: normal;
    font-size: 23px;
  }

  .kl-cert-showcase--market .kl-doc-steps {
    grid-template-columns: 1fr;
  }

  .kl-doc-card--patent,
  .kl-doc-card--factory {
    grid-template-rows: minmax(250px, auto) auto;
  }

  .kl-region {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .kl-lp-footer {
    padding: 46px 18px 28px;
  }

  .kl-lp-footer__links {
    justify-content: flex-start;
  }
}
