/* Lean Champions landing design mirrored from the owner-managed lean.bg English page.
 * Source snapshot: 2026-08-30T14:53:31 UTC. Scoped to the lc-* component classes. */

.lc-hero {
  --lc-navy: #071c2c;
  --lc-navy-2: #0d2b3d;
  --lc-teal: #61c8b3;
  --lc-teal-light: #8ad8c8;
  --lc-white: #ffffff;
  --lc-muted: #c7d4dc;
  --lc-muted-2: #aebfc9;

  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(97,200,179,.16), transparent 32%),
    linear-gradient(135deg, var(--lc-navy) 0%, var(--lc-navy-2) 100%);
  color: var(--lc-white);
  font-family: inherit;
}

.lc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .09;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.lc-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px 38px 78px;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 68px;
  align-items: center;
}

.lc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--lc-teal-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.lc-eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--lc-teal);
}

.lc-hero h1 {
  margin: 0 0 24px;
  max-width: 760px;
  color: #fff;
  font-size: clamp(42px, 4.6vw, 66px);
  line-height: 1.06;
  letter-spacing: -.035em;
  font-weight: 760;
}

.lc-hero h1 .lc-highlight {
  display: inline-block;
  white-space: nowrap;
  color: var(--lc-teal);
}

.lc-hero-lead {
  max-width: 730px;
  margin: 0 0 24px;
  color: var(--lc-muted);
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.6;
}

.lc-hero-statement {
  max-width: 700px;
  margin: 0 0 32px;
  padding: 3px 0 3px 18px;
  border-left: 3px solid var(--lc-teal);
  color: #fff;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 650;
}

.lc-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 21px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all .2s ease;
}

.lc-btn-primary {
  background: var(--lc-teal);
  border: 1px solid var(--lc-teal);
  color: #06202d !important;
}

.lc-btn-primary:hover {
  background: var(--lc-teal-light);
  border-color: var(--lc-teal-light);
  transform: translateY(-1px);
}

.lc-btn-secondary {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff !important;
}

.lc-btn-secondary:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-1px);
}

.lc-hero-model {
  position: relative;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  border-radius: 12px;
  padding: 28px 28px 26px;
  box-shadow: 0 18px 50px rgba(0,0,0,.14);
}

.lc-model-label {
  margin-bottom: 20px;
  color: var(--lc-teal-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lc-model-step {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: center;
  padding: 10px 0;
}

.lc-model-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -7px;
  width: 1px;
  height: 14px;
  background: rgba(97,200,179,.32);
}

.lc-model-number {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(97,200,179,.7);
  border-radius: 50%;
  color: var(--lc-teal-light);
  font-size: 12px;
  font-weight: 700;
}

.lc-model-text strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}

.lc-model-text span {
  display: block;
  color: #c0cdd5;
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .lc-hero-inner {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 64px 28px 58px;
  }

  .lc-hero-model {
    max-width: 620px;
  }
}

@media (max-width: 560px) {
  .lc-hero-inner {
    padding: 50px 20px 46px;
  }

  .lc-hero h1 {
    font-size: 40px;
  }

  .lc-buttons {
    flex-direction: column;
  }

  .lc-btn {
    width: 100%;
  }
}

.lc-what {
  --lc-navy: #0b2233;
  --lc-teal: #61c8b3;
  --lc-text: #24343f;
  --lc-muted: #657580;
  --lc-bg: #f7f9fa;
  --lc-line: #dfe7eb;

  background: var(--lc-bg);
  font-family: inherit;
}

.lc-what-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px 38px;
}

.lc-what-top {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 55px;
}

.lc-what-kicker {
  color: var(--lc-teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lc-what h2 {
  margin: 0;
  color: var(--lc-navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.lc-what-intro {
  margin: 0;
  color: var(--lc-text);
  font-size: 21px;
  line-height: 1.65;
}

.lc-what-intro strong {
  color: var(--lc-navy);
}

.lc-what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.lc-what-card {
  background: #fff;
  border: 1px solid var(--lc-line);
  border-radius: 10px;
  padding: 30px 28px;
  min-height: 215px;
}

.lc-what-card-number {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--lc-teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.lc-what-card h3 {
  margin: 0 0 12px;
  color: var(--lc-navy);
  font-size: 20px;
  line-height: 1.25;
}

.lc-what-card p {
  margin: 0;
  color: var(--lc-muted);
  font-size: 15px;
  line-height: 1.6;
}

.lc-what-bottom {
  margin-top: 34px;
  padding: 26px 30px;
  border-left: 4px solid var(--lc-teal);
  background: #eef5f3;
  color: var(--lc-navy);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 650;
}

@media (max-width: 900px) {
  .lc-what-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lc-what-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .lc-what-inner {
    padding: 58px 20px;
  }

  .lc-what-intro {
    font-size: 18px;
  }

  .lc-what-bottom {
    font-size: 18px;
  }
}

.lc-why {
  --lc-navy: #0b2233;
  --lc-teal: #61c8b3;
  --lc-text: #263944;
  --lc-muted: #6b7c86;
  --lc-bg: #ffffff;
  --lc-soft: #f5f8f9;
  --lc-line: #dfe7eb;
  --lc-warn: #d98a57;

  background: var(--lc-bg);
  font-family: inherit;
}

.lc-why-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 84px 38px;
}

.lc-why-head {
  max-width: 900px;
  margin-bottom: 46px;
}

.lc-why-kicker {
  margin-bottom: 14px;
  color: var(--lc-teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lc-why h2 {
  margin: 0 0 22px;
  color: var(--lc-navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.lc-why-intro {
  margin: 0;
  max-width: 850px;
  color: var(--lc-text);
  font-size: 20px;
  line-height: 1.65;
}

.lc-why-intro strong {
  color: var(--lc-navy);
}

.lc-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.lc-why-card {
  position: relative;
  background: var(--lc-soft);
  border: 1px solid var(--lc-line);
  border-radius: 10px;
  padding: 30px 24px 28px;
  min-height: 245px;
}

.lc-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 42px;
  height: 3px;
  background: var(--lc-warn);
}

.lc-why-card-number {
  margin-bottom: 22px;
  color: var(--lc-warn);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.lc-why-card h3 {
  margin: 0 0 12px;
  color: var(--lc-navy);
  font-size: 19px;
  line-height: 1.3;
}

.lc-why-card p {
  margin: 0;
  color: var(--lc-muted);
  font-size: 14px;
  line-height: 1.65;
}

.lc-why-bridge {
  margin-top: 38px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 30px;
  background: var(--lc-navy);
  border-radius: 10px;
}

.lc-why-bridge-mark {
  color: var(--lc-teal);
  font-size: 34px;
  font-weight: 700;
}

.lc-why-bridge-text {
  color: #fff;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 600;
}

.lc-why-bridge-text span {
  color: var(--lc-teal-light, #8ad8c8);
}

@media (max-width: 1000px) {
  .lc-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .lc-why-inner {
    padding: 60px 20px;
  }

  .lc-why-grid {
    grid-template-columns: 1fr;
  }

  .lc-why-bridge {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.lc-how {
  --lc-navy: #071c2c;
  --lc-navy-2: #0d2b3d;
  --lc-teal: #61c8b3;
  --lc-teal-light: #8ad8c8;
  --lc-white: #ffffff;
  --lc-muted: #bfd0d8;
  --lc-line: rgba(255,255,255,.14);

  background:
    radial-gradient(circle at 12% 15%, rgba(97,200,179,.12), transparent 28%),
    linear-gradient(135deg, var(--lc-navy) 0%, var(--lc-navy-2) 100%);
  color: var(--lc-white);
  font-family: inherit;
}

.lc-how-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 38px 82px;
}

.lc-how-head {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 52px;
}

.lc-how-kicker {
  margin-bottom: 14px;
  color: var(--lc-teal-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lc-how h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.lc-how-intro {
  margin: 0;
  color: var(--lc-muted);
  font-size: 20px;
  line-height: 1.65;
}

.lc-how-intro strong {
  color: #fff;
}

.lc-how-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lc-how-step {
  position: relative;
  min-height: 230px;
  padding: 28px 25px;
  border: 1px solid var(--lc-line);
  border-radius: 10px;
  background: rgba(255,255,255,.045);
}

.lc-how-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 21px;
  border: 1px solid rgba(97,200,179,.65);
  border-radius: 50%;
  color: var(--lc-teal-light);
  font-size: 12px;
  font-weight: 700;
}

.lc-how-step h3 {
  margin: 0 0 11px;
  color: #fff;
  font-size: 19px;
  line-height: 1.3;
}

.lc-how-step p {
  margin: 0;
  color: var(--lc-muted);
  font-size: 14px;
  line-height: 1.62;
}

.lc-how-step strong {
  color: #fff;
}

.lc-how-note {
  margin-top: 34px;
  padding: 25px 28px;
  border-left: 4px solid var(--lc-teal);
  background: rgba(255,255,255,.055);
  color: #fff;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
}

@media (max-width: 950px) {
  .lc-how-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

@media (max-width: 650px) {
  .lc-how-inner {
    padding: 60px 20px;
  }

  .lc-how-flow {
    grid-template-columns: 1fr;
  }

  .lc-how-intro {
    font-size: 18px;
  }
}

.lc-self {
  --lc-navy: #0b2233;
  --lc-teal: #61c8b3;
  --lc-teal-soft: #eaf7f3;
  --lc-text: #2b3c46;
  --lc-muted: #6b7b85;
  --lc-line: #dfe7eb;
  --lc-bg: #ffffff;

  background: var(--lc-bg);
  font-family: inherit;
}

.lc-self-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 38px;
}

.lc-self-head {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 48px;
}

.lc-self-kicker {
  margin-bottom: 14px;
  color: var(--lc-teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lc-self h2 {
  margin: 0;
  color: var(--lc-navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.lc-self-intro {
  margin: 0;
  color: var(--lc-text);
  font-size: 20px;
  line-height: 1.65;
}

.lc-self-intro strong {
  color: var(--lc-navy);
}

.lc-self-question {
  margin: 46px 0;
  padding: 34px 38px;
  background: var(--lc-navy);
  border-radius: 10px;
  text-align: center;
}

.lc-self-question-small {
  margin-bottom: 9px;
  color: #b9c9d2;
  font-size: 14px;
  line-height: 1.5;
}

.lc-self-question-big {
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
  font-weight: 700;
}

.lc-self-question-big span {
  color: var(--lc-teal);
}

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

.lc-self-card {
  padding: 30px 27px;
  border: 1px solid var(--lc-line);
  border-radius: 10px;
  background: #f8fafb;
}

.lc-self-card-number {
  margin-bottom: 18px;
  color: var(--lc-teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.lc-self-card h3 {
  margin: 0 0 11px;
  color: var(--lc-navy);
  font-size: 19px;
  line-height: 1.3;
}

.lc-self-card p {
  margin: 0;
  color: var(--lc-muted);
  font-size: 14px;
  line-height: 1.65;
}

.lc-self-bottom {
  margin-top: 34px;
  padding: 28px 30px;
  background: var(--lc-teal-soft);
  border-left: 4px solid var(--lc-teal);
  color: var(--lc-navy);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 650;
}

.lc-self-link {
  margin-top: 24px;
}

.lc-self-link a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 21px;
  border-radius: 4px;
  background: var(--lc-navy);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 700;
  transition: .2s ease;
}

.lc-self-link a:hover {
  transform: translateY(-1px);
  background: #12344a;
}

@media (max-width: 900px) {
  .lc-self-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lc-self-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .lc-self-inner {
    padding: 60px 20px;
  }

  .lc-self-question {
    padding: 28px 20px;
  }

  .lc-self-intro {
    font-size: 18px;
  }
}

.lc-community {
  --navy: #071c2c;
  --navy-soft: #102d3f;
  --teal: #61c8b3;
  --teal-soft: #8ad8c8;
  --white: #ffffff;
  --muted: #b9c8d1;

  background: var(--navy);
  color: var(--white);
  font-family: inherit;
  padding: 78px 24px;
  overflow: hidden;
}

.lc-community-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: start;
}

/* IMAGE */

.lc-community-image {
  position: relative;
  margin-top: 34px;
}

.lc-community-image img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

.lc-community-image::after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: -14px;
  width: 120px;
  height: 4px;
  background: var(--teal);
}

/* CONTENT */

.lc-community-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lc-community-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--teal);
}

.lc-community h2 {
  margin: 0 0 26px;
  color: var(--white);
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 0.98;
  letter-spacing: -2px;
  font-weight: 800;
}

.lc-community h2 span {
  color: var(--teal);
}

.lc-community-lead {
  margin: 0 0 18px;
  max-width: 650px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--white);
}

.lc-community-lead strong {
  font-weight: 800;
}

.lc-community-text {
  margin: 0 0 28px;
  max-width: 650px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

/* THREE PRINCIPLES */

.lc-community-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,.20);
  margin: 30px 0;
}

.lc-community-point {
  padding: 20px 18px;
  min-height: 100px;
}

.lc-community-point + .lc-community-point {
  border-left: 1px solid rgba(255,255,255,.20);
}

.lc-community-number {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.lc-community-point strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  line-height: 1.4;
}

/* CTA */

.lc-community-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--teal);
  color: var(--navy) !important;
  text-decoration: none !important;
  padding: 15px 22px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 800;
  transition: all .2s ease;
}

.lc-community-cta:hover {
  background: var(--teal-soft);
  transform: translateY(-2px);
}

.lc-community-cta span {
  font-size: 18px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .lc-community {
    padding: 58px 22px;
  }

  .lc-community-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lc-community-image {
    margin-top: 0;
  }

  .lc-community-image img {
    height: 440px;
  }

  .lc-community h2 {
    font-size: 46px;
  }
}

@media (max-width: 600px) {
  .lc-community {
    padding: 46px 18px;
  }

  .lc-community-image img {
    height: 340px;
  }

  .lc-community h2 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .lc-community-points {
    grid-template-columns: 1fr;
  }

  .lc-community-point + .lc-community-point {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.20);
  }
}

.lc-proof {
  --navy: #0b2233;
  --teal: #61c8b3;
  --teal-soft: #eaf7f3;
  --text: #2b3c46;
  --muted: #6b7b85;
  --line: #dfe7eb;
  --bg: #f7f9fa;

  background: var(--bg);
  font-family: inherit;
  padding: 84px 24px;
}

.lc-proof-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.lc-proof-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 48px;
}

.lc-proof-kicker {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lc-proof h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -.03em;
}

.lc-proof-intro {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.65;
}

.lc-proof-intro strong {
  color: var(--navy);
}

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

.lc-proof-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px 28px;
  min-height: 215px;
}

.lc-proof-card-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.lc-proof-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.3;
}

.lc-proof-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.lc-proof-cta-row {
  margin-top: 34px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 28px 30px;
  background: var(--teal-soft);
  border-left: 4px solid var(--teal);
}

.lc-proof-cta-text {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 650;
  max-width: 760px;
}

.lc-proof-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 21px;
  border-radius: 4px;
  background: var(--navy);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 700;
  transition: .2s ease;
}

.lc-proof-btn:hover {
  background: #12344a;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .lc-proof-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lc-proof-grid {
    grid-template-columns: 1fr;
  }

  .lc-proof-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .lc-proof {
    padding: 60px 18px;
  }

  .lc-proof-intro {
    font-size: 18px;
  }

  .lc-proof-btn {
    width: 100%;
    justify-content: center;
  }
}

.lc-future {
  --lc-navy: #071c2c;
  --lc-navy-soft: #0d2b3d;
  --lc-teal: #61c8b3;
  --lc-teal-light: #8ad8c8;
  --lc-white: #ffffff;
  --lc-muted: #bfd0d8;
  --lc-line: rgba(255,255,255,.14);

  background:
    radial-gradient(circle at 85% 18%, rgba(97,200,179,.14), transparent 30%),
    linear-gradient(135deg, var(--lc-navy) 0%, var(--lc-navy-soft) 100%);
  color: var(--lc-white);
  font-family: inherit;
}

.lc-future-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 38px 82px;
}

.lc-future-head {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 48px;
}

.lc-future-kicker {
  margin-bottom: 14px;
  color: var(--lc-teal-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lc-future h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.08;
  letter-spacing: -.025em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
}

.lc-future-intro {
  margin: 0;
  color: var(--lc-muted);
  font-size: 20px;
  line-height: 1.65;
}

.lc-future-intro strong {
  color: #fff;
}

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

.lc-future-card {
  position: relative;
  min-height: 245px;
  padding: 30px 27px;
  border: 1px solid var(--lc-line);
  border-radius: 10px;
  background: rgba(255,255,255,.045);
}

.lc-future-number {
  margin-bottom: 20px;
  color: var(--lc-teal-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.lc-future-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
}

.lc-future-card p {
  margin: 0;
  color: var(--lc-muted);
  font-size: 14px;
  line-height: 1.65;
}

.lc-future-bottom {
  margin-top: 36px;
  padding: 28px 30px;
  border-left: 4px solid var(--lc-teal);
  background: rgba(255,255,255,.055);
  color: #fff;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 650;
}

.lc-future-bottom span {
  color: var(--lc-teal-light);
}

@media (max-width: 900px) {
  .lc-future-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lc-future-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .lc-future-inner {
    padding: 60px 20px;
  }

  .lc-future-intro {
    font-size: 18px;
  }
}

.lc-jury {
  --navy: #0b2233;
  --navy-soft: #153447;
  --teal: #61c8b3;
  --teal-soft: #eaf7f3;
  --text: #2d3d47;
  --muted: #71818b;
  --line: #dfe7eb;
  --bg: #f7f9fa;
  --white: #ffffff;

  background: var(--bg);
  font-family: inherit;
  padding: 86px 24px;
}

.lc-jury-inner {
  max-width: 1180px;
  margin: 0 auto;
}

/* HEADER */

.lc-jury-head {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 50px;
}

.lc-jury-kicker {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lc-jury h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -.03em;
}

.lc-jury-intro {
  margin: 0;
  color: var(--text);
  font-size: 19px;
  line-height: 1.7;
}

.lc-jury-intro strong {
  color: var(--navy);
}

/* PRINCIPLE */

.lc-jury-principle {
  margin-bottom: 42px;
  padding: 26px 30px;
  border-left: 4px solid var(--teal);
  background: var(--teal-soft);
  color: var(--navy);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 650;
}

/* GRID */

.lc-jury-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.lc-jury-card {
  grid-column: span 2;
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px 26px 27px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.lc-jury-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.lc-jury-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.lc-jury-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(11,34,51,.08);
}

/* PHOTO */

.lc-jury-avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 3px solid var(--teal);
  overflow: hidden;
  background: #fff;
}

.lc-jury-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lc-jury-card h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.3;
}

.lc-jury-role {
  margin-bottom: 17px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lc-jury-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* LINKEDIN */

.lc-jury-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--navy) !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 700;
  transition: .2s ease;
}

.lc-jury-link:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff !important;
}

.lc-jury-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background: #0a66c2;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

/* BOTTOM */

.lc-jury-bottom {
  margin-top: 40px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.lc-jury-bottom strong {
  color: var(--navy);
}

/* RESPONSIVE */

@media (max-width: 950px) {

  .lc-jury-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .lc-jury-card,
  .lc-jury-card:nth-child(4),
  .lc-jury-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 620px) {

  .lc-jury {
    padding: 60px 18px;
  }

  .lc-jury-grid {
    grid-template-columns: 1fr;
  }

  .lc-jury-intro {
    font-size: 18px;
  }
}

.lc-book {
  --navy: #071c2c;
  --navy-soft: #0d2b3d;
  --teal: #61c8b3;
  --teal-light: #8ad8c8;
  --white: #ffffff;
  --muted: #bfd0d8;

  background:
    radial-gradient(circle at 82% 20%, rgba(97,200,179,.12), transparent 30%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  font-family: inherit;
  padding: 86px 24px;
  overflow: hidden;
}

.lc-book-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

/* IMAGE */

.lc-book-image {
  position: relative;
}

.lc-book-image img {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 25px 60px rgba(0,0,0,.28);
}

.lc-book-image::after {
  content: "";
  position: absolute;
  left: 12%;
  bottom: -16px;
  width: 120px;
  height: 4px;
  background: var(--teal);
}

/* CONTENT */

.lc-book-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--teal-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lc-book-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--teal);
}

.lc-book h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.lc-book h2 span {
  color: var(--teal);
}

.lc-book-lead {
  margin: 0 0 20px;
  color: #e1e8ec;
  font-size: 19px;
  line-height: 1.7;
}

.lc-book-lead strong {
  color: #fff;
}

.lc-book-text {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.lc-book-quote {
  margin: 30px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--teal);
  background: rgba(255,255,255,.05);
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 650;
}

/* PATH / FLOW */

.lc-book-flow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin: 28px 0 32px;
  color: var(--teal-light);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.lc-book-flow span {
  display: inline-block;
  white-space: nowrap;
}

.lc-book-flow i {
  display: inline-block;
  flex: 0 0 auto;
  font-style: normal;
  color: rgba(255,255,255,.45);
  font-size: 15px;
  font-weight: 400;
}

/* BUTTON */

.lc-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 4px;
  background: var(--teal);
  color: var(--navy) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 800;
  transition: .2s ease;
}

.lc-book-btn:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}

/* TABLET */

@media (max-width: 1050px) {
  .lc-book-flow {
    flex-wrap: wrap;
    white-space: normal;
  }
}

@media (max-width: 900px) {

  .lc-book-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .lc-book-image img {
    max-width: 420px;
  }
}

/* MOBILE */

@media (max-width: 600px) {

  .lc-book {
    padding: 60px 18px;
  }

  .lc-book h2 {
    font-size: 40px;
  }

  .lc-book-lead {
    font-size: 18px;
  }

  .lc-book-flow {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .lc-book-flow i {
    transform: rotate(90deg);
    margin-left: 12px;
  }

  .lc-book-btn {
    width: 100%;
    justify-content: center;
  }
}

.lc-participation {
  --navy: #071c2c;
  --navy-soft: #0d2b3d;
  --teal: #61c8b3;
  --teal-light: #8ad8c8;
  --white: #ffffff;
  --text: #102536;
  --muted: #667783;
  --light: #f5f8f8;
  --border: #d9e2e5;

  background: #ffffff;
  color: var(--text);
  font-family: inherit;
  padding: 90px 24px;
}

.lc-participation-inner {
  max-width: 1180px;
  margin: 0 auto;
}

/* HEADER */

.lc-participation-kicker {
  color: #45bba5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lc-participation-header {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 48px;
}

.lc-participation h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -.03em;
  font-weight: 500;
}

.lc-participation-intro {
  margin: 3px 0 0;
  font-size: 17px;
  line-height: 1.75;
  color: #405562;
}

.lc-participation-intro strong {
  color: var(--navy);
}

/* VALUE CARDS */

.lc-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 52px;
}

.lc-value-card {
  padding: 25px 22px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 7px;
}

.lc-value-number {
  display: block;
  margin-bottom: 17px;
  color: #45bba5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.lc-value-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.35;
}

.lc-value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

/* TROPHY SECTION */

.lc-trophy {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  background: var(--navy);
  overflow: hidden;
  border-radius: 7px;
  margin-bottom: 28px;
}

.lc-trophy-image {
  height: 455px;
}

.lc-trophy-image img {
  display: block;
  width: 100%;
  height: 455px;
  object-fit: cover;
  object-position: center 42%;
}

.lc-trophy-content {
  padding: 48px 48px 44px;
  color: #fff;
}

.lc-trophy-label {
  color: var(--teal-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.lc-trophy h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 31px;
  line-height: 1.15;
}

.lc-trophy-content > p {
  margin: 0 0 22px;
  color: #c8d6dc;
  font-size: 14px;
  line-height: 1.75;
}

.lc-trophy-points {
  display: grid;
  gap: 13px;
  margin-top: 25px;
}

.lc-trophy-point {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 11px;
  align-items: start;
}

.lc-trophy-point span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border: 1px solid rgba(97,200,179,.65);
  border-radius: 50%;
  color: var(--teal-light);
  font-size: 10px;
  font-weight: 800;
}

.lc-trophy-point p {
  margin: 2px 0 0;
  color: #e4ecef;
  font-size: 13px;
  line-height: 1.55;
}

.lc-trophy-point strong {
  color: #fff;
}

/* INVESTMENT */

.lc-investment {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 7px;
  overflow: hidden;
}

.lc-investment-content {
  padding: 38px 42px;
}

.lc-investment-label {
  color: #45bba5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.lc-investment h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 25px;
}

.lc-investment-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.lc-investment-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 38px;
  background: #eaf6f3;
  border-left: 1px solid #cfe4df;
}

.lc-investment-price small {
  display: block;
  margin-bottom: 4px;
  color: #55716d;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.lc-investment-price strong {
  display: block;
  color: var(--navy);
  font-size: 39px;
  line-height: 1.05;
}

.lc-investment-price span {
  color: #4e6865;
  font-size: 13px;
  margin-top: 5px;
}

/* TRANSITIONAL RULE */

.lc-transition {
  margin-top: 18px;
  padding: 20px 24px;
  background: #f7f9f9;
  border-left: 3px solid var(--teal);
  color: #5e6f78;
  font-size: 12px;
  line-height: 1.65;
}

.lc-transition strong {
  color: var(--navy);
}

/* RESPONSIVE */

@media (max-width: 950px) {

  .lc-participation-header,
  .lc-trophy,
  .lc-investment {
    grid-template-columns: 1fr;
  }

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

  .lc-investment-price {
    border-left: 0;
    border-top: 1px solid #cfe4df;
  }
}

@media (max-width: 600px) {

  .lc-participation {
    padding: 65px 18px;
  }

  .lc-participation-header {
    gap: 25px;
  }

  .lc-value-grid {
    grid-template-columns: 1fr;
  }

  .lc-trophy-content {
    padding: 34px 25px;
  }

  .lc-trophy-image,
  .lc-trophy-image img {
    min-height: 280px;
  }

  .lc-investment-content,
  .lc-investment-price {
    padding: 28px 24px;
  }
}

.lc-final {
  --navy: #071c2c;
  --teal: #61c8b3;
  --teal-light: #8ad8c8;
  --white: #ffffff;
  --muted: #d3dee4;

  position: relative;
  min-height: 680px;
  background:
    linear-gradient(
      90deg,
      rgba(7,28,44,.96) 0%,
      rgba(7,28,44,.90) 38%,
      rgba(7,28,44,.55) 62%,
      rgba(7,28,44,.18) 100%
    ),
    url("/assets/knowledge/champions-final-team.jpg") center center / cover no-repeat;

  color: var(--white);
  font-family: inherit;
  display: flex;
  align-items: center;
  padding: 90px 24px;
  overflow: hidden;
}

.lc-final-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.lc-final-content {
  max-width: 650px;
}

.lc-final-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--teal-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lc-final-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--teal);
}

.lc-final h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(40px, 4.6vw, 66px);
  line-height: 1.03;
  letter-spacing: -.03em;
}

.lc-final h2 span {
  color: var(--teal);
}

.lc-final-text {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.lc-final-text strong {
  color: #fff;
}

.lc-final-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lc-final-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.45);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 700;
  transition: .2s ease;
}

.lc-final-btn-secondary:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-1px);
}

@media (max-width: 800px) {
  .lc-final {
    min-height: auto;
    padding: 72px 22px;
    background:
      linear-gradient(
        rgba(7,28,44,.88),
        rgba(7,28,44,.88)
      ),
      url("/assets/knowledge/champions-final-team.jpg") center center / cover no-repeat;
  }

  .lc-final-content {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .lc-final h2 {
    font-size: 42px;
  }

  .lc-final-text {
    font-size: 18px;
  }

  .lc-final-actions {
    flex-direction: column;
  }

  .lc-final-btn-secondary {
    width: 100%;
  }
}

.lc-nowrap { white-space: nowrap; }
.lean-champions-design { overflow: clip; background: #fff; }
.lean-champions-design img { max-width: 100%; height: auto; }

