/* LSK Landing — design tokens from Figma */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

@font-face {
  font-family: "Kelson Sans RU";
  src: url("../assets/fonts/KelsonSans-LightRU.woff2") format("woff2"),
    url("../assets/fonts/KelsonSans-LightRU.woff") format("woff"),
    url("../assets/fonts/KelsonSans-LightRU.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kelson Sans RU";
  src: url("../assets/fonts/KelsonSans-RegularRU.woff2") format("woff2"),
    url("../assets/fonts/KelsonSans-RegularRU.woff") format("woff"),
    url("../assets/fonts/KelsonSans-RegularRU.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Map 500/600 (used in CSS) to Regular — Figma “Normal” */
@font-face {
  font-family: "Kelson Sans RU";
  src: url("../assets/fonts/KelsonSans-RegularRU.woff2") format("woff2"),
    url("../assets/fonts/KelsonSans-RegularRU.woff") format("woff"),
    url("../assets/fonts/KelsonSans-RegularRU.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kelson Sans RU";
  src: url("../assets/fonts/KelsonSans-RegularRU.woff2") format("woff2"),
    url("../assets/fonts/KelsonSans-RegularRU.woff") format("woff"),
    url("../assets/fonts/KelsonSans-RegularRU.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kelson Sans RU";
  src: url("../assets/fonts/KelsonSans-BoldRU.woff2") format("woff2"),
    url("../assets/fonts/KelsonSans-BoldRU.woff") format("woff"),
    url("../assets/fonts/KelsonSans-BoldRU.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --lsk-navy: #143d87;
  --lsk-blue: #3d71d0;
  --lsk-red: #da5b59;
  --lsk-mint: #a3ffa6;
  --lsk-sky: #a0bef5;
  --lsk-gray: #f3f3f3;
  --lsk-muted: #595959;
  --lsk-text: #2c2c2c;
  --lsk-black: #000;
  --lsk-white: #fff;
  --lsk-radius: 15px;
  --lsk-radius-sm: 3px;
  --lsk-radius-pill: 31px;
  /* Figma frame «1200-1920»: artboard 1440, content inset 140 → 1160 */
  --lsk-frame: 1440px;
  --lsk-container: 1160px;
  --lsk-pad: 140px;
  /* Figma: Inter (body) + Kelson Sans RU (display) */
  --lsk-font: "Inter", system-ui, sans-serif;
  --lsk-display: "Kelson Sans RU", "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body.lsk-page,
body:has(.lsk-main) {
  margin: 0;
  font-family: var(--lsk-font) !important;
  font-size: 17px;
  line-height: 1.45;
  color: var(--lsk-text);
  background: var(--lsk-white);
  -webkit-font-smoothing: antialiased;
}

/* Beat Elementor/Hello typography on LSK blocks */
.lsk-header,
.lsk-main,
.lsk-footer,
.lsk-nav,
.lsk-page .elementor-widget-html,
body:has(.lsk-main) .elementor-widget-html {
  font-family: var(--lsk-font);
}

.lsk-page img,
.lsk-main img {
  max-width: 100%;
  height: auto;
  display: block;
}

.lsk-page a,
.lsk-main a {
  color: inherit;
  text-decoration: none;
}

.lsk-section {
  padding: 90px 0;
  overflow: visible;
}

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

.lsk-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 40px;
  padding: 0 20px;
  border-radius: var(--lsk-radius-pill);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--lsk-gray);
  color: var(--lsk-muted);
}

.lsk-badge--white {
  background: var(--lsk-white);
  color: var(--lsk-blue);
}

.lsk-badge--red {
  background: var(--lsk-red);
  color: var(--lsk-white);
}

.lsk-h1 {
  margin: 0;
  font-family: var(--lsk-display);
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.15;
  text-transform: uppercase;
}

.lsk-h2 {
  margin: 0;
  font-family: var(--lsk-font);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 45px);
  line-height: 1.35;
  color: var(--lsk-text);
}

.lsk-accent {
  font-family: var(--lsk-display);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 27px);
  line-height: 1.45;
}

.lsk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 10px 24px;
  border: 1px solid transparent;
  border-radius: var(--lsk-radius-sm);
  font-family: var(--lsk-font);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.lsk-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.lsk-btn--red {
  background: var(--lsk-red);
  color: var(--lsk-white);
}

.lsk-btn--blue {
  background: var(--lsk-blue);
  color: var(--lsk-white);
}

.lsk-btn--outline-white {
  background: transparent;
  border-color: var(--lsk-white);
  color: var(--lsk-white);
}

.lsk-btn--outline-blue {
  background: var(--lsk-white);
  border-color: var(--lsk-blue);
  color: var(--lsk-blue);
}

.lsk-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.lsk-check-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--lsk-radius);
  flex-shrink: 0;
}

.lsk-check-box--mint {
  background: var(--lsk-mint);
}

.lsk-check-box--outline {
  border: 1px solid var(--lsk-blue);
  background: transparent;
}

.lsk-check-box img {
  width: 32px;
  height: 32px;
}

/* ========== Header ========== */
.lsk-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--lsk-white);
}

.lsk-nav__links {
  display: contents;
}

.lsk-nav__meta {
  display: none;
}

.lsk-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 80px;
  width: min(100% - 40px, var(--lsk-container));
  margin-inline: auto;
}

.lsk-logo {
  font-family: var(--lsk-display);
  font-size: 27px;
  font-weight: 600;
  color: var(--lsk-black);
  white-space: nowrap;
  min-height: 39px;
  display: inline-block;
}

.lsk-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: wrap;
  margin-right: 8px;
}

.lsk-nav a {
  font-size: 17px;
  color: var(--lsk-text);
  transition: color 0.2s ease;
}

.lsk-nav a:hover {
  color: var(--lsk-blue);
}

.lsk-header__contacts {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lsk-header__tg {
  display: flex;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.lsk-header__phone {
  font-family: var(--lsk-display);
  font-size: clamp(18px, 1.8vw, 27px);
  font-weight: 500;
  color: var(--lsk-text);
  white-space: nowrap;
  line-height: 1;
}

/* Figma 1:1456 «меню» — 50×50, gray #f3f3f3, radius 7, blue 30×2 bars */
header.lsk-header button.lsk-burger,
.lsk-burger {
  display: none;
  position: relative;
  z-index: 220;
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 7px;
  background: var(--lsk-gray);
  box-shadow: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 9px;
  appearance: none;
  -webkit-appearance: none;
}

header.lsk-header button.lsk-burger span,
.lsk-burger span {
  display: block;
  width: 30px;
  height: 2px;
  margin: 0;
  border-radius: 0;
  background: var(--lsk-blue);
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.lsk-burger.is-open {
  background: transparent;
}

.lsk-burger.is-open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.lsk-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.lsk-burger.is-open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* ========== Hero ========== */
.lsk-hero {
  /* On ≥1440 banner is full frame width; gutters only below frame */
  padding: 0 0 60px;
  width: 100%;
  max-width: var(--lsk-frame);
  margin-inline: auto;
}

.lsk-hero__banner {
  position: relative;
  overflow: hidden;
  min-height: 801px;
  width: 100%;
  max-width: var(--lsk-frame);
  margin-inline: auto;
  border-radius: var(--lsk-radius);
  background: var(--lsk-navy);
  color: var(--lsk-white);
}

/* Ellipse 1 — декоративное кольцо сверху справа (Figma 1:281) */
.lsk-hero__ring {
  position: absolute;
  left: 76.6%; /* 1103/1440 */
  top: -35.3%; /* -283/801 */
  width: 36.6%; /* 527/1440 */
  max-width: none;
  height: auto;
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 0;
}

.lsk-hero__glow {
  position: absolute;
  border-radius: 50%;
  background: var(--lsk-mint);
  opacity: 0.5;
  filter: blur(122px);
  pointer-events: none;
  z-index: 0;
}

/* Ellipse 4 top-right (Figma 1:282) */
.lsk-hero__glow--tr {
  left: 64.2%; /* 925/1440 */
  top: -40.6%; /* -325/801 */
  width: 39%; /* 561/1440 */
  aspect-ratio: 1;
}

/* Ellipse bottom-left (Figma 1:284) */
.lsk-hero__glow--bl {
  left: 3.8%; /* 55/1440 */
  top: 76.15%; /* 610/801 */
  width: 27.6%; /* 398/1440 */
  aspect-ratio: 1;
}

.lsk-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  min-height: 801px;
  /* 1160 centered in 1440 banner = 140px inset (Figma) */
  width: min(100% - 40px, var(--lsk-container));
  margin-inline: auto;
  padding: 50px 0 60px;
}

.lsk-hero__copy {
  display: flex;
  flex-direction: column;
  max-width: 620px;
  padding-top: 30px;
  position: relative;
  z-index: 2;
}

.lsk-hero__title {
  margin: 0 0 8px;
}

.lsk-hero__subtitle {
  margin: 0;
  font-family: var(--lsk-display);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.15;
}

.lsk-main hr.lsk-hero__line,
.lsk-hero__line {
  width: min(100%, 848px);
  height: 3px;
  margin: 24px 0 28px;
  border: 0;
  background: linear-gradient(90deg, #fff 0%, var(--lsk-mint) 100%);
  background-color: var(--lsk-mint);
}

.lsk-hero__audience {
  margin: 0;
  font-family: var(--lsk-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
}

.lsk-hero__bottom {
  margin-top: auto;
  padding-top: 48px;
}

.lsk-hero__lead {
  margin: 0 0 24px;
  max-width: 360px;
  font-family: var(--lsk-display);
  font-size: clamp(22px, 1.9vw, 27px);
  font-weight: 500;
  color: #f3f3f3;
}

/* Visual anchored to banner (Figma cubes 949/-19/718×779) */
.lsk-hero__visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.lsk-hero__cubes-clip {
  position: absolute;
  left: 65.9%; /* 949/1440 */
  top: -2.4%; /* -19/801 */
  width: 49.86%; /* 718/1440 */
  height: 97.25%; /* 779/801 */
  overflow: hidden;
  pointer-events: none;
}

.lsk-page .lsk-hero__cubes,
.lsk-main .lsk-hero__cubes {
  position: absolute;
  left: -11.74%;
  top: -1.22%;
  width: 115.57%;
  max-width: none;
  height: 106.57%;
  object-fit: cover;
  animation: lsk-float 6s ease-in-out infinite;
}

.lsk-hero__quote {
  position: absolute;
  left: 58.3%; /* 840/1440 */
  top: 60%; /* 481/801 */
  width: min(459px, 32%);
  padding: 40px;
  border-radius: var(--lsk-radius);
  background: rgba(0, 71, 201, 0.5);
  backdrop-filter: blur(12.5px);
  -webkit-backdrop-filter: blur(12.5px);
  animation: lsk-fade-up 0.9s ease both;
  z-index: 2;
  pointer-events: auto;
}

.lsk-hero__quote p {
  margin: 0;
  font-family: var(--lsk-display);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.35;
  text-align: center;
}

@keyframes lsk-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes lsk-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== Format ========== */
.lsk-format {
  text-align: center;
  padding: 70px 0 40px;
}

.lsk-format__title {
  margin: 24px 0 16px;
  font-family: var(--lsk-display);
  font-size: 27px;
  font-weight: 500;
  color: var(--lsk-text);
}

.lsk-main hr.lsk-format__line,
.lsk-format__line {
  width: 160px;
  height: 3px;
  margin: 0 auto 20px;
  border: 0;
  background: var(--lsk-red);
  background-color: var(--lsk-red);
}

.lsk-format__text {
  max-width: 520px;
  margin: 0 auto;
  font-family: var(--lsk-font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--lsk-muted);
}

/* ========== Requests ========== */
.lsk-requests__title {
  text-align: center;
  margin-bottom: 48px;
  white-space: nowrap; /* 1200+: one line (Figma) */
}

.lsk-requests__title br {
  display: none;
}

.lsk-requests__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: stretch;
  overflow: visible;
}

.lsk-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 550px;
  padding: 40px;
  border-radius: var(--lsk-radius);
  background: var(--lsk-gray);
  position: relative;
  z-index: 0;
}

.lsk-card__num {
  font-family: var(--lsk-display);
  font-size: 27px;
  color: var(--lsk-blue);
}

.lsk-card__title {
  margin: 0 0 24px;
  font-family: var(--lsk-display);
  font-size: 27px;
  font-weight: 500;
}

.lsk-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lsk-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.lsk-list strong {
  font-weight: 600;
}

.lsk-requests__visual {
  position: relative;
  z-index: 2;
  width: 360px;
  max-width: 100%;
  border-radius: var(--lsk-radius);
  background: var(--lsk-blue);
  overflow: visible;
  min-height: 550px;
}

.lsk-requests__visual img {
  position: absolute;
  left: -80px; /* телефон выезжает влево в зазор и чуть на карточку 02 */
  right: auto;
  bottom: 0;
  width: 440px;
  height: 550px;
  max-width: none;
  object-fit: contain;
  object-position: right bottom;
  transform: none;
  pointer-events: none;
  z-index: 1;
}

/* ========== What is LSK ========== */
.lsk-what__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: visible;
}

.lsk-what__visual {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 460 / 553;
  min-height: 0;
  overflow: visible; /* кубы и плашки вылезают наружу */
}

/* серый фон + свечение только внутри скруглённой рамки */
.lsk-what__glow-clip {
  position: absolute;
  inset: 0;
  border-radius: var(--lsk-radius);
  background: var(--lsk-gray);
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.lsk-what__glow {
  position: absolute;
  left: -10%;
  bottom: -5%;
  width: 85%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(163, 255, 166, 0.35) 0%, transparent 70%);
}

.lsk-page .lsk-what__cubes,
.lsk-main .lsk-what__cubes {
  position: absolute;
  /* Figma: cubes frame + image inset left/-15.55% scale 130.7% */
  left: -8.4%;
  top: -20%;
  width: 132%;
  height: 138%;
  max-width: none;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  z-index: 1;
  pointer-events: none;
}

.lsk-tag {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  max-width: 70%;
  height: 61px;
  padding: 0 20px;
  border-radius: var(--lsk-radius);
  background: var(--lsk-navy);
  color: var(--lsk-white);
  font-family: var(--lsk-display);
  font-size: clamp(18px, 2vw, 24px);
  text-align: center;
  box-shadow: 0 8px 24px rgba(20, 61, 135, 0.25);
  z-index: 2;
  white-space: nowrap;
}

.lsk-tag--1 {
  /* Figma: x 400 → 260/460, y 2552 → 267/553 */
  top: 48.3%;
  left: 56.5%;
  right: auto;
  transform: none;
}

.lsk-tag--2 {
  /* Figma: x 340 → 200/460, y 2623 → 338/553 */
  top: 61.1%;
  left: 43.5%;
  right: auto;
  transform: none;
}

.lsk-what__lead {
  margin: 20px 0 28px;
  font-family: var(--lsk-display);
  font-size: 27px;
  font-weight: 500;
}

.lsk-what__label {
  margin: 0 0 16px;
  color: var(--lsk-text);
}

/* ========== When useful ========== */
.lsk-when {
  background: var(--lsk-blue);
  color: var(--lsk-white);
  border-radius: 0;
  padding: 90px 0;
}

.lsk-when .lsk-h2 {
  color: var(--lsk-white);
  max-width: 860px;
  margin: 24px 0 40px;
}

.lsk-when__items {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.lsk-when__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lsk-when__text {
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 12px 20px;
  border-radius: var(--lsk-radius);
  background: var(--lsk-white);
  color: var(--lsk-blue);
  font-family: var(--lsk-display);
  font-size: clamp(18px, 1.8vw, 27px);
  font-weight: 500;
}

/* ========== Process ========== */
.lsk-process {
  text-align: center;
}

.lsk-process .lsk-h2 {
  max-width: 660px;
  margin: 24px auto 48px;
}

.lsk-process .lsk-h2 span {
  color: var(--lsk-blue);
}

.lsk-process__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  text-align: left;
}

.lsk-day {
  position: relative;
}

.lsk-day__label {
  margin: 0 0 24px;
  font-size: 45px;
  font-weight: 700;
  color: #dedede;
  line-height: 1.2;
}

.lsk-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lsk-timeline__item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  position: relative;
  padding-bottom: 36px;
}

.lsk-timeline__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 32px;
  bottom: 0;
  width: 1px;
  background: var(--lsk-sky);
}

.lsk-timeline__num {
  font-family: var(--lsk-display);
  font-size: 27px;
  color: var(--lsk-blue);
  line-height: 1.2;
}

.lsk-timeline__star {
  width: 32px;
  height: 32px;
}

.lsk-timeline__title {
  margin: 0 0 8px;
  font-family: var(--lsk-display);
  font-size: 27px;
  font-weight: 500;
}

.lsk-timeline__text {
  margin: 0;
  color: var(--lsk-text);
}

/* Figma 1200–1920 (1:145 / 1:146): gray «01» 460×234 + map 402×249 overhang −16 */
.lsk-process__cols,
.lsk-day,
.lsk-timeline__item:has(.lsk-process__card),
.lsk-timeline__item:has(.lsk-process__card) > div {
  overflow: visible;
}

.lsk-timeline__item:has(.lsk-process__card) {
  padding-bottom: 0;
}

.lsk-process__card {
  display: block;
  position: relative;
  /* Span full day column (num 60 + gap 20 + text) — Figma gray w460 */
  width: calc(100% + 60px + 20px);
  max-width: 460px;
  height: 234px;
  margin: 68px 0 0 calc(-60px - 20px);
  padding: 0;
  border-radius: 15px;
  background: var(--lsk-gray);
  box-shadow: none;
  overflow: visible;
}

.lsk-process__card img {
  position: absolute;
  left: 31px; /* Figma x271 − day x240 */
  top: -16px; /* Figma y5086 − gray y5102 */
  display: block;
  width: 402px;
  height: 249px;
  max-width: none;
  /* Pre-cropped asset — no page chrome / sheet border */
  content: url("/wp-content/uploads/lsk/assets/images/process-card-960.png");
  object-fit: contain;
  border: 0;
  outline: none;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 -2px 6px rgba(0, 0, 0, 0.08));
}

/* ========== Results ========== */
.lsk-results {
  background: var(--lsk-gray);
}

.lsk-results__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.lsk-results__lead {
  margin: 20px 0 32px;
  max-width: 420px;
  font-family: var(--lsk-display);
  font-size: 27px;
  font-weight: 500;
}

.lsk-results__lead span {
  color: var(--lsk-blue);
}

.lsk-results__media {
  position: relative;
  width: 100%;
}

.lsk-results__bg {
  width: 100%;
  max-width: 640px;
  max-height: 380px;
  object-fit: contain;
  object-position: left center;
  opacity: 0.95;
  margin: 12px 0 24px;
  display: block;
}

.lsk-results__takeaway {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.lsk-results__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 12px 28px;
  border-radius: var(--lsk-radius);
  background: var(--lsk-red);
  color: var(--lsk-white);
  font-family: var(--lsk-display);
  font-size: 24px;
  text-align: center;
}

.lsk-results__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--lsk-radius);
  background: var(--lsk-red);
}

.lsk-results__arrow img {
  width: 32px;
  height: 32px;
  transform: rotate(135deg);
}

.lsk-results__cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.lsk-result-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 40px;
  border-radius: var(--lsk-radius);
  background: var(--lsk-blue);
  color: var(--lsk-white);
}

.lsk-result-card__num {
  font-family: var(--lsk-display);
  font-size: 27px;
  color: var(--lsk-mint);
}

.lsk-result-card__text {
  margin: 24px 0 0;
  font-family: var(--lsk-display);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.45;
}

/* —— Results desktop 1200–1679: Figma 1:91 (1440) —— */
@media (min-width: 1200px) {
  /*
    Figma: section 1425, gray plate 1346 (= image bottom).
    Card 04 hangs ~79px below the gray into white.
  */
  .lsk-results {
    position: relative;
    background: transparent;
    padding-top: 150px; /* title y5636 − section y5486 */
    padding-bottom: 0;
    overflow-x: clip;
    overflow-y: visible;
  }

  .lsk-results::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1346px; /* Rectangle 576 — ends with karta image */
    background: var(--lsk-gray);
    z-index: 0;
    pointer-events: none;
  }

  .lsk-results__grid {
    position: relative;
    z-index: 1;
    grid-template-columns: 600px 560px; /* cards x740 − content x140 */
    column-gap: 0;
    row-gap: 0;
    align-items: start;
    overflow: visible;
  }

  .lsk-results__grid > .lsk-reveal:first-child {
    position: relative;
    min-height: 1275px; /* 4×300 + 3×25 */
    overflow: visible;
    z-index: 0;
  }

  .lsk-results .lsk-h2 {
    position: relative;
    z-index: 2;
    max-width: 421px;
    margin: 0;
    font-size: 45px;
    line-height: 1.35;
  }

  .lsk-results__lead {
    position: relative;
    z-index: 2;
    max-width: 421px;
    margin: 49px 0 0; /* y5746 − y5636 − ~61 */
    font-size: 27px;
    line-height: 1.45;
  }

  .lsk-results__media {
    position: static;
    width: auto;
    overflow: visible;
  }

  /* Figma 1:93: x44 y5949 → rel content −96 / title +313; 1392×883 */
  .lsk-page .lsk-results__bg,
  .lsk-main .lsk-results__bg,
  .elementor-page .lsk-main img.lsk-results__bg,
  .lsk-results__grid > .lsk-reveal:first-child > .lsk-results__bg,
  .lsk-results__media .lsk-results__bg {
    position: absolute;
    left: -96px;
    top: 313px;
    display: block;
    width: 1392px !important;
    height: 883px !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    object-fit: cover;
    object-position: left top;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.06));
    content: url("/wp-content/uploads/lsk/assets/images/lsk-karta-no-bgd.png");
  }

  /* Figma takeaway y6611 − title y5636 = 975 (aligns card 04) */
  .lsk-results__takeaway,
  .lsk-results__grid > .lsk-reveal:first-child > .lsk-results__takeaway,
  .lsk-results__media .lsk-results__takeaway {
    position: absolute;
    left: 0;
    top: 975px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px; /* arrow x560 − pill x140 − 410 */
    margin: 0;
  }

  .lsk-results__pill {
    box-sizing: border-box;
    width: 410px;
    min-height: 60px;
    height: 60px;
    padding: 0 20px;
    font-size: 24px;
    line-height: 1.35;
  }

  .lsk-results__arrow {
    flex-shrink: 0;
  }

  .lsk-results__cards {
    gap: 25px;
    position: relative;
    z-index: 2;
  }

  .lsk-result-card {
    box-sizing: border-box;
    width: 560px;
    min-height: 300px;
    height: 300px;
    padding: 40px;
  }

  .lsk-result-card__text {
    margin: 0;
  }
}

/* ========== Gallery ========== */
.lsk-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 0 20px;
}

.lsk-gallery img {
  width: 100%;
  border-radius: var(--lsk-radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* ========== After ========== */
/* Свечение уходит под #host; кубы остаются поверх белого фона */
.lsk-after {
  background: var(--lsk-gray);
  overflow: visible;
  position: relative;
  z-index: auto;
  padding-top: 90px;
  padding-bottom: 0;
}

.lsk-after__glow-clip {
  --lsk-glow-size: 398px;
  --lsk-glow-peek: 0.7; /* доля свечения ниже серого блока */
  --lsk-glow-clip-extra: 320px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: calc(var(--lsk-glow-clip-extra) * -1);
  overflow: hidden;
  pointer-events: none;
  z-index: 0; /* ниже #host — свечение «под» белой секцией */
}

/* Ellipse 4: 30% в сером, 70% уходит под #host */
.lsk-after__glow {
  position: absolute;
  left: max(24px, calc((100% - var(--lsk-container)) / 2 + 40px));
  bottom: calc(
    var(--lsk-glow-clip-extra) - var(--lsk-glow-size) * var(--lsk-glow-peek)
  );
  width: var(--lsk-glow-size);
  height: var(--lsk-glow-size);
  border-radius: 50%;
  background: var(--lsk-mint);
  opacity: 0.5;
  filter: blur(122px);
}

.lsk-after__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
  overflow: visible;
  position: relative;
  z-index: 2; /* контент + кубы выше #host */
  padding-bottom: 28px;
}

.lsk-after .lsk-h2 {
  margin: 24px 0 0;
  max-width: 460px;
  position: relative;
  z-index: 1;
}

.lsk-after__left {
  position: relative;
  overflow: visible;
  min-height: 480px;
  padding-bottom: 220px;
}

.lsk-after__media {
  position: absolute;
  left: -12px;
  bottom: -180px;
  width: 392px;
  max-width: calc(100% + 12px);
  height: 374px;
  overflow: visible;
  z-index: 3;
  pointer-events: none;
}

.lsk-page .lsk-after__cubes,
.lsk-main .lsk-after__cubes {
  position: absolute;
  left: -9%;
  bottom: -8%;
  width: 118%;
  max-width: none;
  height: auto;
  animation: lsk-float 7s ease-in-out infinite;
}

.lsk-after__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}

.lsk-after__item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lsk-after__text {
  display: inline-flex;
  align-items: center;
  min-height: 60px;
  padding: 12px 25px;
  border-radius: var(--lsk-radius);
  background: var(--lsk-blue);
  color: var(--lsk-white);
  font-family: var(--lsk-display);
  font-size: clamp(18px, 1.8vw, 27px);
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(61, 113, 208, 0.2);
}

/* ========== Host ========== */
.lsk-host {
  position: relative;
  z-index: 1; /* перекрывает свечение непрозрачным фоном */
  background: var(--lsk-white);
  padding-top: 200px; /* место под кубы из #after */
  overflow: visible;
}

.lsk-host__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.lsk-host__name {
  margin: 24px 0 12px;
  font-family: var(--lsk-display);
  font-size: 27px;
  font-weight: 500;
}

.lsk-host__role {
  margin: 0 0 28px;
  max-width: 360px;
}

.lsk-host__stat {
  margin-bottom: 24px;
}

.lsk-host__stat-label {
  margin: 0 0 8px;
  font-family: var(--lsk-display);
  font-size: 27px;
  font-weight: 500;
  color: var(--lsk-blue);
}

.lsk-host__stat > p:not(.lsk-host__stat-label) {
  margin: 0;
  max-width: 400px;
}

.lsk-host__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
  max-width: 460px;
}

.lsk-host__media {
  position: relative;
  overflow: visible;
}

.lsk-main img.lsk-host__photo,
.elementor img.lsk-host__photo,
.lsk-host__photo {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: cover;
  border-radius: 15px;
}

.lsk-quote {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px;
  width: min(92%, 540px);
  max-width: 540px;
  margin: 0 auto;
  padding: 40px;
  border-radius: var(--lsk-radius);
  background: var(--lsk-blue);
  color: var(--lsk-white);
  text-align: center;
  z-index: 3;
  box-shadow: 0 12px 30px rgba(61, 113, 208, 0.28);
}

.lsk-quote p {
  margin: 0;
  font-style: italic;
}

/* —— Host desktop 1200+: Figma 1:45 / 1:375 + quote 1:58 / 1:388 —— */
@media (min-width: 1200px) {
  .lsk-host {
    /* quote hangs 72px below photo; +150px white to gray form (y9596 − quote end 9446) */
    padding-bottom: 222px;
    overflow: visible;
  }

  .lsk-host__grid {
    grid-template-columns: 460px 657px;
    gap: 40px; /* photo x640 − copy x140 − 460 */
    align-items: stretch;
    overflow: visible;
  }

  .lsk-host__grid > .lsk-reveal:not(.lsk-host__media) {
    display: flex;
    flex-direction: column;
    min-height: 788px;
    box-sizing: border-box;
  }

  .lsk-host .lsk-h2 {
    margin: 0;
    max-width: 560px;
    font-size: 45px;
    line-height: 1.35;
  }

  .lsk-host__name {
    margin: 80px 0 23px; /* y8728 − title − 62 */
    font-size: 27px;
    font-weight: 400;
    line-height: 1.45;
  }

  .lsk-host__role {
    margin: 0 0 40px;
    max-width: 360px;
    font-size: 17px;
    line-height: 1.45;
  }

  .lsk-host__stat {
    margin-bottom: 40px;
  }

  .lsk-host__stat:has(+ .lsk-host__actions) {
    margin-bottom: 0;
  }

  .lsk-host__stat-label {
    margin: 0 0 23px;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.45;
  }

  .lsk-host__stat > p:not(.lsk-host__stat-label) {
    margin: 0;
    max-width: 400px;
    font-size: 17px;
    line-height: 1.45;
  }

  /* Bottom of buttons = bottom of photo */
  .lsk-host__actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 460px;
    gap: 25px;
    margin-top: auto;
  }

  .lsk-host__actions .lsk-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 60px;
    height: 60px;
    padding: 10px;
    border-radius: 3px;
    font-family: var(--lsk-font);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    text-transform: uppercase;
    text-decoration: none;
    box-sizing: border-box;
  }

  .lsk-host__actions .lsk-btn--blue,
  body.lsk-page .lsk-host__actions a.lsk-btn--blue,
  body:has(.lsk-main) .lsk-host__actions a.lsk-btn--blue {
    background: var(--lsk-blue) !important;
    border: 1px solid var(--lsk-blue) !important;
    color: var(--lsk-white) !important;
  }

  .lsk-host__actions .lsk-btn--outline-blue,
  body.lsk-page .lsk-host__actions a.lsk-btn--outline-blue,
  body:has(.lsk-main) .lsk-host__actions a.lsk-btn--outline-blue {
    background: var(--lsk-white) !important;
    border: 1px solid var(--lsk-blue) !important;
    color: var(--lsk-blue) !important;
  }

  .lsk-host__media {
    position: relative;
    width: 657px;
    max-width: 100%;
    height: 788px;
    margin: 0;
    overflow: visible;
  }

  /* Figma IMG 657×788, crop top −7.87% / h 125.07% */
  .lsk-main img.lsk-host__photo,
  .elementor img.lsk-host__photo,
  .lsk-host__photo {
    display: block;
    width: 657px;
    max-width: 100%;
    height: 788px;
    min-height: 0;
    object-fit: cover;
    object-position: center 8%;
    border-radius: 15px;
  }

  /* Quote overlays photo bottom and hangs 72px below */
  .lsk-host .lsk-quote,
  .lsk-host__media .lsk-quote {
    position: absolute;
    left: 59px; /* quote x699 − photo x640 */
    right: auto;
    top: auto;
    bottom: -72px;
    width: 540px;
    max-width: calc(100% - 59px);
    min-height: 167px;
    height: auto;
    margin: 0;
    padding: 40px;
    box-sizing: border-box;
  }

  .lsk-host .lsk-quote p,
  .lsk-host__media .lsk-quote p {
    margin: 0;
    font-size: 17px;
    font-style: italic;
    line-height: 1.45;
  }
}

/* ========== Form ========== */
.lsk-form-section {
  background: var(--lsk-gray);
  padding: 100px 0;
}

.lsk-form {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 80px 100px 70px;
  border-radius: var(--lsk-radius);
  background: var(--lsk-white);
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--lsk-blue);
  text-align: center;
}

.lsk-form .lsk-h2 {
  margin-bottom: 20px;
}

.lsk-form__lead {
  max-width: 560px;
  margin: 0 auto 36px;
}

.lsk-form__fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 559px;
  margin: 0 auto;
  text-align: left;
}

.lsk-input {
  width: 100%;
  height: 60px;
  padding: 0 18px;
  border: 1px solid #b7b7b7;
  border-radius: var(--lsk-radius-sm);
  font: inherit;
  color: var(--lsk-text);
  background: var(--lsk-white);
}

.lsk-input::placeholder {
  color: var(--lsk-muted);
}

.lsk-input--phone {
  /* flag + mask provided by intl-tel-input (masktel.js) */
  background-image: none;
}

.lsk-form__fields .iti {
  width: 100%;
  display: block;
}

.lsk-form__fields .iti input.lsk-input,
.lsk-form__fields .iti input[type="tel"] {
  width: 100%;
  height: 60px;
  box-sizing: border-box;
}

.lsk-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 8px 0 8px;
}

.lsk-checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 16px;
  align-items: start;
  color: var(--lsk-muted);
  cursor: pointer;
}

.lsk-checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--lsk-blue);
}

.lsk-checkbox a {
  display: block;
  margin-top: 4px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lsk-form .lsk-btn {
  width: 100%;
  margin-top: 12px;
}

.lsk-form__note {
  display: none;
  margin-top: 16px;
  color: var(--lsk-blue);
  font-weight: 600;
}

.lsk-form__note.is-visible {
  display: block;
}

/* Contact Form 7: wrappers / wpautop <br> / <p> */
.lsk-form-section .wpcf7 {
  margin: 0;
}

.lsk-form-section .wpcf7-form > .lsk-form {
  /* card already on .lsk-form */
}

.lsk-form__fields > p,
.lsk-checkboxes > p {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
}

.lsk-checkboxes > p {
  gap: 20px;
}

.lsk-form__fields > p > br,
.lsk-checkboxes br,
.lsk-checkbox br,
.lsk-form .lsk-checkbox span br {
  display: none;
}

.lsk-form__fields .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.lsk-form .lsk-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.lsk-form .lsk-checkbox .wpcf7-form-control-wrap {
  flex: 0 0 20px;
  width: 20px;
  display: block;
}

.lsk-form .lsk-checkbox .wpcf7-acceptance,
.lsk-form .lsk-checkbox .wpcf7-list-item {
  display: block;
  margin: 0;
  padding: 0;
}

.lsk-form .lsk-checkbox .wpcf7-list-item-label {
  display: none;
}

.lsk-form .lsk-checkbox > span:not(.wpcf7-form-control-wrap) {
  flex: 1;
  min-width: 0;
}

.lsk-form .lsk-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--lsk-blue);
}

.lsk-form input.wpcf7-submit.lsk-btn {
  width: 100%;
  margin-top: 12px;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.lsk-form-section .wpcf7-spinner {
  margin: 0;
}

.lsk-form-section .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: var(--lsk-radius-sm);
  text-align: center;
}

/* ========== Legal pages (privacy / consent) ========== */
.lsk-legal-page {
  background: var(--lsk-white);
}

.lsk-legal {
  padding: 60px 0 100px;
}

.lsk-legal__inner {
  max-width: 780px;
}

.lsk-legal__back {
  margin: 0 0 24px;
  font-size: 15px;
}

.lsk-legal__back a {
  color: var(--lsk-blue);
  text-decoration: none;
}

.lsk-legal__back a:hover {
  text-decoration: underline;
}

.lsk-legal__title {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 45px);
  line-height: 1.25;
}

.lsk-legal__subtitle {
  margin: 0 0 12px;
  font-family: var(--lsk-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--lsk-muted);
}

.lsk-legal__meta {
  margin: 0 0 36px;
  font-size: 14px;
  color: var(--lsk-muted);
}

.lsk-legal__body {
  font-size: 17px;
  line-height: 1.55;
  color: var(--lsk-text);
}

.lsk-legal__body h2 {
  margin: 36px 0 12px;
  font-family: var(--lsk-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--lsk-black);
}

.lsk-legal__body p {
  margin: 0 0 14px;
}

.lsk-legal__body ul {
  margin: 0 0 16px;
  padding-left: 1.25em;
}

.lsk-legal__body li {
  margin-bottom: 6px;
}

.lsk-legal__body a {
  color: var(--lsk-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ========== Footer ========== */
.lsk-footer {
  background: var(--lsk-white);
  color: var(--lsk-muted);
  /* Figma 1:21 — 80px top/bottom, min-height 359 (mobile MQs override) */
  padding: 80px 0;
  min-height: 359px;
  box-sizing: border-box;
}

.lsk-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 360px) 1fr;
  column-gap: 40px;
  align-items: end;
  min-height: 199px;
}

.lsk-footer__left {
  display: flex;
  flex-direction: column;
  max-width: 460px;
  align-self: stretch;
}

.lsk-footer .lsk-logo {
  color: var(--lsk-black);
  margin-bottom: 40px;
  font-family: var(--lsk-display);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.45;
  min-height: 39px;
}

.lsk-footer__company,
.lsk-footer__address,
.lsk-footer__legal {
  margin: 0;
  font-family: var(--lsk-font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--lsk-muted);
}

.lsk-footer__company {
  max-width: 460px;
}

.lsk-footer__address {
  max-width: 460px;
  margin-top: auto;
  padding-top: 24px;
}

.lsk-footer__legal {
  max-width: 360px;
  margin-top: 0;
  align-self: end;
}

.lsk-footer__docs {
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.45;
}

.lsk-footer__docs a {
  color: var(--lsk-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lsk-footer__docs a:hover {
  color: var(--lsk-blue);
}

.lsk-footer__contacts {
  text-align: right;
  align-self: end;
  justify-self: end;
}

.lsk-footer__phone,
.lsk-footer__email {
  display: block;
  font-family: var(--lsk-display);
  font-size: 27px;
  font-weight: 400;
  color: var(--lsk-text);
}

.lsk-footer__phone {
  margin-bottom: 25px;
}

.lsk-footer__email {
  margin-bottom: 20px;
}

.lsk-footer__tg {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-family: var(--lsk-display);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--lsk-text);
  text-decoration: none;
}

.lsk-footer__tg img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}

.lsk-footer__tg:hover {
  color: var(--lsk-blue);
}

/* ========== Reveal motion ========== */
.lsk-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ========== Responsive — Figma frames ==========
   1920 | 1200–1920 (1440) | 960–1200 | 640–960 | 320–640
*/
@media (min-width: 1680px) {
  /* Frame «1920»: hero 1760 + 80px gutters, full-bleed gray sections */
  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-main),
  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-header),
  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-footer) {
    --container-max-width: 100%;
  }

  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-main) > .e-con-inner,
  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-header) > .e-con-inner,
  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-footer) > .e-con-inner {
    max-width: none;
  }

  .lsk-main,
  .lsk-header,
  .lsk-footer {
    max-width: none;
  }

  .lsk-header__inner {
    width: min(100% - 160px, 1760px);
  }

  .lsk-hero {
    max-width: none;
    padding-inline: 0;
  }

  .lsk-hero__banner {
    max-width: 1760px;
    width: min(100% - 160px, 1760px);
    margin-inline: auto;
  }

  .lsk-hero__cubes-clip {
    left: 57.3%; /* 1008/1760 */
    top: -7.9%;
    width: 49.8%; /* 876/1760 */
    height: 109%;
  }

  .lsk-hero__quote {
    left: 65.9%; /* 1160/1760 */
    top: 56%;
    width: min(446px, 25%);
  }
}

@media (max-width: 1479px) {
  .lsk-hero {
    padding-inline: 0;
  }
}

/* ≤1199 — Figma «меню гамб» + compact overlay hero, stack most grids */
@media (max-width: 1199px) {
  .lsk-requests__title {
    white-space: normal;
  }

  .lsk-requests__title br {
    display: inline;
  }

  header.lsk-header button.lsk-burger,
  .lsk-burger {
    display: flex;
  }

  .lsk-header__inner {
    grid-template-columns: 1fr auto;
    width: min(100% - 20px, var(--lsk-container));
  }

  /* Figma 1:1462 — top popup panel (not fullscreen) */
  .lsk-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    z-index: 210;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 28px;
    margin: 0;
    padding: 72px 20px 28px;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    max-height: min(80vh, 640px);
    background: var(--lsk-blue);
    box-shadow: 0 16px 40px rgba(20, 61, 135, 0.28);
    border: 0;
    border-radius: 0 0 15px 15px;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
  }

  .lsk-nav.is-open {
    display: flex;
  }

  .lsk-nav__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px; /* tops ~35px apart at 17/1.45 */
  }

  /* specificity > `.lsk-page a { color: inherit }` */
  body.lsk-page .lsk-nav__links a,
  body:has(.lsk-main) .lsk-nav__links a {
    color: var(--lsk-white);
    font-family: var(--lsk-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
  }

  body.lsk-page .lsk-nav__links a:hover,
  body:has(.lsk-main) .lsk-nav__links a:hover {
    color: var(--lsk-mint);
  }

  .lsk-nav__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 8px;
    padding-top: 0;
  }

  .lsk-nav__tg {
    display: flex;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .lsk-nav__tg img {
    width: 24px;
    height: 24px;
    display: block;
  }

  /* Figma: phone white, email #F3F3F3 — beat `.lsk-page a { color: inherit }` */
  body.lsk-page .lsk-nav a.lsk-nav__phone,
  body:has(.lsk-main) .lsk-nav a.lsk-nav__phone {
    font-family: var(--lsk-display);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--lsk-white);
  }

  body.lsk-page .lsk-nav a.lsk-nav__email,
  body:has(.lsk-main) .lsk-nav a.lsk-nav__email {
    font-family: var(--lsk-display);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--lsk-gray);
  }

  /* Phone stays in header on 640–1199 (Figma 640-960 / 960); hide only on ≤639 */
  .lsk-header__phone {
    display: block;
    font-size: 20px;
    font-weight: 500;
  }

  /* Allow page scroll under popup; keep close button above panel */
  body.lsk-menu-open {
    overflow: auto;
  }

  body.lsk-menu-open .elementor-location-header,
  body.lsk-menu-open .lsk-header {
    z-index: 230;
    background: transparent;
  }

  body.lsk-menu-open .lsk-header__inner {
    position: relative;
    z-index: 231;
  }

  body.lsk-menu-open .lsk-logo,
  body.lsk-menu-open .lsk-header__tg,
  body.lsk-menu-open .lsk-header__phone {
    visibility: hidden;
  }

  /* Close (X) — white bars on blue popup */
  body.lsk-menu-open header.lsk-header button.lsk-burger,
  body.lsk-menu-open .lsk-burger,
  body.lsk-menu-open .lsk-header__contacts .lsk-burger,
  body.lsk-menu-open header.lsk-header button.lsk-burger.is-open {
    position: relative;
    z-index: 240;
    display: flex !important;
    pointer-events: auto;
    background: transparent !important;
    border: 0;
    opacity: 1;
    visibility: visible;
  }

  body.lsk-menu-open header.lsk-header button.lsk-burger span,
  body.lsk-menu-open header.lsk-header button.lsk-burger.is-open span,
  body.lsk-menu-open .lsk-burger span,
  body.lsk-menu-open .lsk-burger.is-open span,
  body:has(.lsk-main).lsk-menu-open .lsk-burger span,
  body:has(.lsk-main).lsk-menu-open .lsk-burger.is-open span {
    background: #fff !important;
    background-color: #fff !important;
  }

  body.lsk-menu-open .lsk-header__contacts {
    position: relative;
    z-index: 240;
    pointer-events: auto;
  }

  .lsk-requests__grid,
  .lsk-what__grid,
  .lsk-results__grid,
  .lsk-after__grid,
  .lsk-host__grid,
  .lsk-gallery {
    grid-template-columns: 1fr;
  }

  .lsk-requests__grid {
    gap: 20px;
  }

  .lsk-requests__visual {
    width: 100%;
    min-height: 420px;
    overflow: hidden;
  }

  .lsk-requests__visual img {
    left: 50%;
    width: auto;
    height: 100%;
    transform: translateX(-50%);
  }

  .lsk-what__visual {
    max-width: none;
    overflow: visible;
    aspect-ratio: 460 / 480;
  }

  .lsk-page .lsk-what__cubes,
  .lsk-main .lsk-what__cubes {
    left: -4%;
    top: -8%;
    width: 110%;
    height: 120%;
  }

  .lsk-tag--1,
  .lsk-tag--2 {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: 80%;
  }

  .lsk-tag--1 {
    top: 52%;
  }

  .lsk-tag--2 {
    top: 66%;
  }

  .lsk-form {
    padding: 48px 24px;
  }

  .lsk-footer__contacts {
    text-align: left;
  }

  .lsk-quote {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 24px;
    width: 100%;
    max-width: none;
  }

  .lsk-main img.lsk-host__photo,
  .elementor img.lsk-host__photo,
  .lsk-host__photo {
    min-height: 480px;
    border-radius: 15px;
  }

  .lsk-when__item {
    width: 100%;
  }

  .lsk-when__text {
    flex: 1;
    font-size: 18px;
  }

  /* Kill Elementor container side padding — blocks full-bleed sections */
  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-main),
  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-header),
  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-footer) {
    --padding-left: 0px !important;
    --padding-right: 0px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-main) > .e-con-inner,
  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-header) > .e-con-inner,
  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-footer) > .e-con-inner {
    max-width: none;
    width: 100%;
    padding-inline: 0;
  }

  .lsk-main,
  .lsk-header,
  .lsk-footer {
    max-width: none;
    width: 100%;
  }

  /* Full-bleed colored bands (Figma 320/640/960) */
  .lsk-when,
  .lsk-after,
  .lsk-form-section,
  .lsk-results,
  .lsk-footer {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    border-radius: 0;
  }

  .lsk-when .lsk-container,
  .lsk-after .lsk-container,
  .lsk-form-section .lsk-container {
    width: min(100% - 20px, var(--lsk-container));
  }
}

/* 960–1199 — Figma frame 960-1200 (1:609): keep multi-column layouts */
@media (max-width: 1199px) and (min-width: 960px) {
  .lsk-container {
    width: min(100% - 20px, 940px);
  }

  .lsk-section {
    padding: 80px 0;
  }

  /* —— Header: logo | centered tg+phone | burger —— */
  .lsk-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100% - 20px, 940px);
    min-height: 80px;
  }

  .lsk-header__contacts {
    position: static;
    gap: 16px;
  }

  .lsk-header__tg {
    position: absolute;
    left: calc(50% - 129px); /* Figma x≈351 */
    top: 50%;
    transform: translateY(-50%);
  }

  .lsk-header__phone {
    position: absolute;
    left: calc(50% - 88px); /* Figma x≈392 */
    top: 50%;
    transform: translateY(-50%);
    font-size: 21px;
    font-weight: 500;
  }

  /* —— Hero (1:869): overlay, not stacked —— */
  .lsk-hero {
    padding-inline: 0;
    padding-bottom: 60px;
  }

  .lsk-hero__banner {
    border-radius: var(--lsk-radius);
    min-height: 801px;
  }

  .lsk-hero__grid {
    width: min(100% - 40px, 780px);
    min-height: 801px;
    /* Figma title top 106 inside 801 banner */
    padding: 106px 0 72px;
  }

  .lsk-hero__copy {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto 1fr;
    grid-template-areas:
      "title"
      "subtitle"
      "audience"
      "line"
      "bottom";
    max-width: 685px;
    padding-top: 0;
    height: 100%;
    align-content: stretch;
  }

  .lsk-hero__title {
    grid-area: title;
    margin: 0;
    font-size: 80px;
    font-weight: 400;
    line-height: 1.15;
    /* Match Figma text-box-trim so Kelson metrics don’t inflate rows */
    text-box: trim-both cap alphabetic;
  }

  .lsk-hero__subtitle {
    grid-area: subtitle;
    margin: 15px 0 0; /* Figma sub top 200 vs title ~106+79 */
    max-width: 685px;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.15;
    text-box: trim-both cap alphabetic;
  }

  .lsk-main hr.lsk-hero__line,
  .lsk-hero__line {
    grid-area: line;
    width: min(100%, 725px);
    margin: 35px 0 0; /* Figma line y 365 after audience y 302 */
    background: var(--lsk-mint);
    background-color: var(--lsk-mint);
  }

  .lsk-hero__audience {
    grid-area: audience;
    margin: 18px 0 0;
    margin-left: min(198px, 22%); /* Figma x 288 vs copy at 90 */
    max-width: none;
    width: max-content;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.35;
    white-space: nowrap;
    text-box: trim-both cap alphabetic;
  }

  .lsk-hero__bottom {
    grid-area: bottom;
    margin-top: auto;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 21px; /* Figma CTA bottom 708 vs grid pad 72 → 801-72-60=669; want 648 → +21 */
  }

  .lsk-hero__lead {
    max-width: 320px;
    margin: 0 0 40px;
    font-size: 27px;
    line-height: 1.45;
    text-box: trim-both cap alphabetic;
  }

  .lsk-hero__cubes-clip {
    left: 75%; /* 720/960 */
    top: 35%; /* Figma cubes top 281/801 */
    width: 54%;
    height: 70%;
  }

  /* Figma 1:879: top 417, h 291 — bottoms align with CTA at 708 */
  .lsk-hero__quote {
    left: 51.04%; /* 490/960 */
    top: 417px;
    bottom: auto;
    width: min(380px, 39.5%);
    height: 291px;
    min-height: 291px;
    max-height: 291px;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    animation: none;
    opacity: 1;
    transform: none;
  }

  .lsk-hero__quote p {
    font-size: 24px;
    line-height: 1.35;
  }

  .lsk-hero__glow--tr {
    left: 71.5%; /* 686/960 */
    top: -48%;
    width: 58%;
  }

  .lsk-hero__glow--bl {
    left: -4%;
    top: 79%;
    width: 41%;
  }

  .lsk-hero__ring {
    left: 85%;
    top: -36%;
    width: 55%;
  }

  .lsk-btn--block,
  .lsk-hero .lsk-btn {
    width: min(300px, 100%);
  }

  /* —— Format (1:862) —— */
  .lsk-format {
    padding: 70px 0 50px;
  }

  .lsk-format__text {
    max-width: 468px;
  }

  /* —— Requests (1:822): 3 columns —— */
  .lsk-requests__title {
    text-align: left;
    max-width: 833px;
    margin: 0 0 48px;
    font-size: 45px;
    line-height: 1.35;
  }

  .lsk-requests__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(260px, 300px);
    gap: 20px;
    align-items: stretch;
  }

  .lsk-card {
    min-height: 448px;
    padding: 20px;
  }

  .lsk-card__title {
    margin: 0 0 40px;
  }

  /* Phone overflows blue frame (Figma 1:823/1:825): −59px left, 358×448 on ~299 frame */
  .lsk-requests__grid {
    overflow: visible;
  }

  .lsk-requests__visual {
    width: 100%;
    min-height: 448px;
    max-width: none;
    overflow: visible;
    border-radius: var(--lsk-radius);
  }

  .lsk-requests__visual img {
    left: -20%; /* ~−59/299 */
    right: auto;
    bottom: 0;
    top: auto;
    width: 120%; /* ~358/299 */
    height: 100%;
    max-width: none;
    transform: none;
    object-fit: contain;
    object-position: left bottom;
  }

  /* —— What (1:794): visual 300 | gap 100 | copy from x410 —— */
  .lsk-what,
  .lsk-what__grid {
    overflow: visible;
  }

  .lsk-what__grid {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 100px; /* Figma: visual ends 310, copy at 410 */
    align-items: start;
  }

  .lsk-what__visual {
    width: 300px;
    max-width: 300px;
    height: 516px;
    aspect-ratio: 300 / 516;
    overflow: visible;
  }

  /* Figma Ellipse 1:813 inside gray frame: x−106 y336 size 398 */
  .lsk-what__glow {
    left: -35.3%;
    top: 65.1%;
    bottom: auto;
    width: 132.7%;
    height: auto;
    aspect-ratio: 1;
    background: var(--lsk-mint);
    opacity: 0.5;
    filter: blur(122px);
    border-radius: 50%;
  }

  /* Cubes 1:814: frame −15/15 375×418 + inner img −15.55%/−23.9% 130.7%×146.45% */
  .lsk-page .lsk-what__cubes,
  .lsk-main .lsk-what__cubes,
  .elementor-page .lsk-main img.lsk-what__cubes {
    left: -73px; /* -15 + (-15.55% of 375) */
    top: -85px; /* 15 + (-23.9% of 418) */
    width: 490px; /* 375 × 130.7% */
    height: 612px; /* 418 × 146.45% */
    max-width: none;
    object-fit: fill;
    object-position: center center;
    overflow: visible;
    /* Keep Figma crop window (frame) so cubes bleed past gray, not full asset canvas */
    clip-path: inset(100px 57px 94px 58px);
  }

  /* If Elementor has <picture>, use it as the 375×418 overflow frame */
  .lsk-what__visual picture {
    position: absolute;
    left: -15px;
    top: 15px;
    width: 375px;
    height: 418px;
    display: block;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
  }

  .lsk-what__visual picture .lsk-what__cubes {
    left: -15.55%;
    top: -23.9%;
    width: 130.7%;
    height: 146.45%;
    clip-path: none;
  }

  .lsk-tag {
    left: auto;
    right: auto;
    transform: none;
    max-width: 280px;
    width: 280px;
  }

  /* 1:815 плашка анализ: x90→80, y2513→336 */
  .lsk-tag--1 {
    top: 336px;
    left: 80px;
    transform: none;
  }

  /* 1:817 плашка цели: x46→36, y2584→407 */
  .lsk-tag--2 {
    top: 407px;
    left: 36px;
    transform: none;
  }

  /* Keep copy above overflowing tags if gap ever tightens */
  .lsk-what__grid > .lsk-reveal:not(.lsk-what__visual) {
    position: relative;
    z-index: 3;
  }

  .lsk-what .lsk-h2 {
    font-size: 45px;
    line-height: 1.35;
    max-width: 540px;
  }

  .lsk-what__lead {
    font-size: 27px;
    max-width: 376px;
  }

  /* —— When (1:756): pills wrap; first row can be 2-up —— */
  .lsk-when {
    padding: 150px 0 110px;
  }

  .lsk-when .lsk-container {
    /* Figma content inset ~90 → usable ~780–860 */
    width: min(100% - 100px, 860px);
    margin-inline: auto 0;
    margin-left: max(10px, calc((100% - 940px) / 2 + 80px));
  }

  .lsk-when .lsk-h2 {
    max-width: 620px;
    font-size: 45px;
    line-height: 1.35;
  }

  .lsk-when__items {
    gap: 30px 10px;
  }

  .lsk-when__item {
    width: auto;
    max-width: 100%;
    flex: 0 0 auto;
  }

  .lsk-when__text {
    flex: 0 0 auto;
    font-size: 27px;
    white-space: nowrap;
  }

  .lsk-when .lsk-btn {
    width: min(380px, 100%);
  }

  /* —— Process (1:706): two day columns —— */
  .lsk-process .lsk-h2 {
    max-width: 660px;
    font-size: 45px;
    line-height: 1.35;
  }

  /* Blue span on its own line(s), separate from «Как проходит работа:» */
  .lsk-process .lsk-h2 span {
    display: block;
    color: var(--lsk-blue);
  }

  .lsk-process__cols {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    overflow: visible;
  }

  .lsk-day {
    overflow: visible;
  }

  .lsk-day__label {
    font-size: 45px;
  }

  .lsk-timeline__item {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 16px;
    padding-bottom: 40px;
  }

  /* Figma lines: 70px tall with gaps from numbers (~15–16px) */
  .lsk-timeline__item:not(:last-child)::before {
    display: block;
    left: 19px;
    top: 36px;
    bottom: 16px;
    width: 1px;
    background: var(--lsk-sky);
  }

  /* Day 2 star clear of connecting line */
  .lsk-timeline__star {
    position: relative;
    z-index: 2;
    width: 32px;
    height: 32px;
    margin-top: 0;
    background: var(--lsk-bg, #fff);
  }

  /* Figma 1:734 gray «01» 460×234 + 1:735 card img 402×249 overhang top −16 */
  .lsk-timeline__item:has(.lsk-process__card) {
    overflow: visible;
    padding-bottom: 0;
  }

  .lsk-timeline__item:has(.lsk-process__card) > div {
    overflow: visible;
  }

  .lsk-process__card {
    display: block;
    position: relative;
    /* Span full day column (num 70 + gap 16 + text) — Figma gray w460 */
    width: calc(100% + 70px + 16px);
    max-width: 460px;
    height: 234px;
    margin: 68px 0 0 calc(-70px - 16px);
    padding: 0;
    background: var(--lsk-gray);
    border-radius: 15px;
    box-shadow: none;
    overflow: visible;
  }

  .lsk-process__card img {
    position: absolute;
    left: 31px; /* Figma x41 − day x10 */
    top: -16px; /* Figma y5004 − gray y5020 — sticks out above «01» */
    display: block;
    width: 402px;
    height: 249px;
    max-width: none;
    /* Pre-cropped asset — no page chrome / sheet border */
    content: url("/wp-content/uploads/lsk/assets/images/process-card-960.png");
    object-fit: contain;
    object-view-box: unset;
    border: 0;
    outline: none;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 -2px 6px rgba(0, 0, 0, 0.08));
  }

  /* —— Results (1:680): title+lead+karta bleed | 4×300 cards —— */
  .lsk-results {
    overflow-x: clip;
    overflow-y: visible;
  }

  .lsk-results__grid {
    grid-template-columns: 460px 460px;
    gap: 20px; /* Figma cards x490 vs title x10 → 480 after 460 col */
    align-items: start;
    overflow: visible;
  }

  /* Left column stretches to cards stack: 4×300 + 3×25 = 1275 */
  .lsk-results__grid > .lsk-reveal:first-child {
    position: relative;
    min-height: 1275px;
    overflow: visible;
    z-index: 0;
  }

  .lsk-results .lsk-h2 {
    position: relative;
    z-index: 2;
    font-size: 45px;
    line-height: 1.35;
    max-width: 460px;
    margin: 0;
  }

  .lsk-results__lead {
    position: relative;
    z-index: 2;
    max-width: 421px;
    margin: 50px 0 0; /* Figma lead y5665 − title y5554 − ~61 */
    font-size: 27px;
    line-height: 1.45;
  }

  /* Media wraps karta + takeaway (or siblings if Elementor HTML is stale) */
  .lsk-results__media {
    position: static;
    width: auto;
    overflow: visible;
  }

  /* Figma 1:682: x−141 y5837 (rel title 5554 → top 283) 1441×914 */
  .lsk-page .lsk-results__bg,
  .lsk-main .lsk-results__bg,
  .elementor-page .lsk-main img.lsk-results__bg,
  .lsk-results__grid > .lsk-reveal:first-child > .lsk-results__bg,
  .lsk-results__media .lsk-results__bg {
    position: absolute;
    left: -151px; /* −141 − grid inset ~10 */
    top: 283px;
    width: 1441px !important;
    height: 914px !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    object-fit: cover;
    object-position: left top;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
    /* Prefer no-bgd asset even if Elementor still has lsk-karta-bg.jpg */
    content: url("/wp-content/uploads/lsk/assets/images/lsk-karta-no-bgd.png");
  }

  /* Figma takeaway y6529 − title 5554 = 1125; aligns with card 04 */
  .lsk-results__takeaway,
  .lsk-results__grid > .lsk-reveal:first-child > .lsk-results__takeaway,
  .lsk-results__media .lsk-results__takeaway {
    position: absolute;
    left: 0;
    top: 1125px;
    z-index: 2;
    margin: 0;
    pointer-events: auto;
  }

  .lsk-results__pill {
    width: 380px;
    min-height: 60px;
    padding: 0 20px;
    font-size: 24px;
  }

  .lsk-results__cards {
    position: relative;
    z-index: 1;
    gap: 25px;
  }

  .lsk-result-card {
    min-height: 300px;
    height: 300px;
    padding: 40px;
    box-sizing: border-box;
  }

  .lsk-result-card__num,
  .lsk-result-card__text {
    font-size: 27px;
  }

  /* —— Gallery: two images side-by-side —— */
  .lsk-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 19px;
    padding: 20px 0 40px;
  }

  /* —— After (1:649 / cubes 1:677): list left; cubes bottom-right —— */
  .lsk-after {
    position: relative;
    padding-top: 150px;
    padding-bottom: 0;
    min-height: 940px;
    box-sizing: border-box;
    overflow: visible;
  }

  .lsk-after__grid {
    position: relative;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    min-height: 790px; /* 940 − pad 150 */
    padding-bottom: 0;
    overflow: visible;
  }

  .lsk-after__left {
    position: static !important;
    min-height: 0;
    padding-bottom: 0;
    max-width: 620px;
    /* kill reveal transform — would trap absolute cubes */
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
  }

  .lsk-after .lsk-h2 {
    max-width: 460px;
    font-size: 45px;
    line-height: 1.35;
    margin: 24px 0 40px;
    position: relative;
    z-index: 2;
  }

  .lsk-after__list {
    max-width: 680px;
    gap: 36px;
    position: relative;
    z-index: 2;
  }

  .lsk-after__text {
    font-size: 27px;
  }

  /* Figma 1:677: x630; raised so cubes don’t cover #host photo */
  .lsk-after__media {
    position: absolute;
    left: 620px; /* 630 − container inset 10 */
    top: 540px; /* was 609 — ~70px higher, less bleed into host */
    right: auto;
    bottom: auto;
    width: 289px;
    height: 276px;
    max-width: 289px;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
  }

  /* Inner crop like Figma: −11.72% / −17.35% / 125.75% × 131.81% */
  .lsk-page .lsk-after__cubes,
  .lsk-main .lsk-after__cubes,
  .elementor-page .lsk-main img.lsk-after__cubes {
    position: absolute;
    left: -11.72%;
    top: -17.35%;
    bottom: auto;
    width: 125.75%;
    height: 131.81%;
    max-width: none;
    object-fit: fill;
    object-position: center;
    animation: none;
  }

  /* Figma Ellipse in Frame 26: ~x582 y762 size 398 within 960×940 */
  .lsk-after__glow {
    left: auto;
    right: -20px;
    bottom: calc(
      var(--lsk-glow-clip-extra) - var(--lsk-glow-size) * 0.55
    );
  }

  /* —— Host (1:634) + quote (1:647) under photo —— */
  .lsk-host {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .lsk-host__grid {
    grid-template-columns: 460px 460px;
    gap: 20px; /* photo x490 vs copy x10 */
    align-items: stretch; /* equal column heights */
  }

  /* Left copy stretches to photo+quote; buttons sit on the bottom edge */
  .lsk-host__grid > .lsk-reveal:not(.lsk-host__media) {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    box-sizing: border-box;
  }

  .lsk-host .lsk-h2 {
    margin: 0;
    font-size: 45px;
    line-height: 1.35;
    max-width: 560px;
  }

  /* Figma: name y8712 − title y8570 − ~62 → ~80 */
  .lsk-host__name {
    margin: 80px 0 23px;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.45;
  }

  .lsk-host__role {
    margin: 0 0 40px;
    max-width: 360px;
    font-size: 17px;
    line-height: 1.45;
  }

  .lsk-host__stat {
    margin-bottom: 40px;
  }

  /* :last-of-type fails when next sibling is also a div (actions) */
  .lsk-host__stat:has(+ .lsk-host__actions) {
    margin-bottom: 0;
  }

  .lsk-host__stat-label {
    margin: 0 0 23px;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.45;
  }

  .lsk-host__stat > p:not(.lsk-host__stat-label) {
    margin: 0;
    max-width: 400px;
    font-size: 17px;
    line-height: 1.45;
  }

  /* Push buttons to bottom so they share the media column’s bottom edge */
  .lsk-host__actions {
    display: flex;
    flex-direction: column;
    max-width: 380px;
    gap: 25px;
    margin-top: auto;
  }

  .lsk-host__actions .lsk-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 60px;
    height: 60px;
    padding: 10px;
    border-radius: 3px;
    font-family: var(--lsk-font);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    text-transform: uppercase;
    text-decoration: none;
    box-sizing: border-box;
  }

  /* Beat Elementor / inherited link colors */
  .lsk-host__actions .lsk-btn--blue,
  body.lsk-page .lsk-host__actions a.lsk-btn--blue,
  body:has(.lsk-main) .lsk-host__actions a.lsk-btn--blue {
    background: var(--lsk-blue) !important;
    border: 1px solid var(--lsk-blue) !important;
    color: var(--lsk-white) !important;
  }

  .lsk-host__actions .lsk-btn--outline-blue,
  body.lsk-page .lsk-host__actions a.lsk-btn--outline-blue,
  body:has(.lsk-main) .lsk-host__actions a.lsk-btn--outline-blue {
    background: var(--lsk-white) !important;
    border: 1px solid var(--lsk-blue) !important;
    color: var(--lsk-blue) !important;
  }

  .lsk-host__media {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Figma photo → quote */
    width: 460px;
    max-width: 100%;
    margin-top: 0;
    height: 100%;
    min-height: 100%;
    box-sizing: border-box;
  }

  /* Figma 1:635: 460×551, image crop top −7.87% / h 125.07% */
  .lsk-main img.lsk-host__photo,
  .elementor img.lsk-host__photo,
  .lsk-host__photo {
    display: block;
    width: 100%;
    min-height: 0;
    height: 551px;
    flex: 0 0 551px;
    object-fit: cover;
    object-position: center 8%;
    border-radius: 15px;
  }

  /* Figma 1:647: 460×188; mt:auto pins quote to column bottom (= buttons) */
  .lsk-quote {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin-top: auto;
    margin-bottom: 0;
    padding: 40px;
    box-sizing: border-box;
    min-height: 188px;
    height: 188px;
    flex: 0 0 188px;
  }

  .lsk-quote p {
    margin: 0;
    font-size: 17px;
    line-height: 1.45;
  }

  /* —— Form (1:618): 780 card, 460 fields —— */
  .lsk-form-section {
    padding: 80px 0;
  }

  .lsk-form {
    width: min(100% - 40px, 780px);
    padding: 100px 160px 100px;
  }

  .lsk-form .lsk-h2 {
    font-size: 45px;
  }

  .lsk-form__lead {
    max-width: 559px;
  }

  .lsk-form__fields {
    max-width: 460px;
  }

  .lsk-form .lsk-btn {
    max-width: 460px;
    width: 100%;
  }

  /* —— Footer (1:610): company | legal | contacts —— */
  .lsk-footer {
    padding: 69px 0 80px;
    min-height: 386px;
    box-sizing: border-box;
  }

  .lsk-footer .lsk-container {
    width: min(100% - 20px, 940px);
  }

  .lsk-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 300px) minmax(0, 213px) 1fr;
    column-gap: 100px;
    align-items: end;
    min-height: 240px;
  }

  .lsk-footer__left {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    align-self: stretch;
  }

  .lsk-footer .lsk-logo {
    margin-bottom: 40px;
  }

  .lsk-footer__company {
    max-width: 300px;
  }

  .lsk-footer__address {
    max-width: 300px;
    margin-top: auto;
    padding-top: 24px;
  }

  .lsk-footer__legal {
    max-width: 213px;
    margin-top: 0;
    align-self: end;
  }

  .lsk-footer__contacts {
    align-self: end;
    justify-self: end;
    text-align: right;
  }

  .lsk-footer__phone,
  .lsk-footer__email {
    font-size: 27px;
  }

  .lsk-footer__phone {
    margin-bottom: 25px;
  }
}

/* ≤959 — Figma 640–960: centered stacked hero */
@media (max-width: 959px) {
  .lsk-process__cols {
    grid-template-columns: 1fr;
    gap: 56px;
    margin-top: 48px;
  }

  /* —— Process (Figma 1:993 640): Day left of steps, no lines/card —— */
  .lsk-process .lsk-badge {
    margin-inline: auto;
  }

  .lsk-process .lsk-h2 {
    max-width: 460px;
    margin: 24px auto 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
  }

  .lsk-process .lsk-h2 span {
    display: block;
    color: var(--lsk-blue);
  }

  .lsk-day {
    display: grid;
    grid-template-columns: minmax(90px, 140px) minmax(0, 1fr);
    column-gap: 12px;
    align-items: start;
    text-align: left;
  }

  .lsk-day__label {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
    color: #dedede;
  }

  .lsk-timeline__item {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 40px;
  }

  .lsk-timeline__item:not(:last-child)::before {
    display: none;
  }

  .lsk-process__card {
    display: none;
  }

  .lsk-timeline__num {
    font-family: var(--lsk-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--lsk-blue);
  }

  .lsk-timeline__title {
    margin: 0 0 12px;
    font-family: var(--lsk-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--lsk-text);
  }

  .lsk-timeline__text {
    font-family: var(--lsk-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--lsk-text);
  }

  .lsk-timeline__star {
    width: 32px;
    height: 32px;
  }

  /* —— Requests (Figma 1:1109): 2 cards side-by-side, no phone —— */
  .lsk-requests__title {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
  }

  .lsk-requests__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
  }

  .lsk-requests__visual {
    display: none;
  }

  .lsk-card {
    min-height: 448px;
    padding: 25px;
    border-radius: 15px;
    background: var(--lsk-gray);
  }

  .lsk-card__num {
    font-family: var(--lsk-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--lsk-blue);
  }

  .lsk-card__title {
    margin: 0 0 40px;
    font-family: var(--lsk-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--lsk-text);
  }

  .lsk-requests .lsk-list {
    gap: 25px;
  }

  /* —— What (Figma 1:1081 «Что такое ЛСК сессия» 640) —— */
  .lsk-what,
  .lsk-what .lsk-container,
  .lsk-what__grid {
    overflow: visible;
  }

  .lsk-what__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .lsk-what__visual {
    order: -1;
    width: 100%;
    max-width: none;
    /* gray 336 + overhang above/below; keep room for cube bleed */
    aspect-ratio: 620 / 384;
    margin: 48px 0 46px;
    overflow: visible;
    z-index: 2;
  }

  .lsk-what__visual picture {
    display: contents;
  }

  .lsk-what__glow-clip {
    inset: auto 0 auto 0;
    top: calc(24 / 384 * 100%);
    height: calc(336 / 384 * 100%);
    border-radius: 15px;
    background: var(--lsk-gray);
    overflow: hidden;
    z-index: 0;
  }

  .lsk-what__glow {
    display: block;
    left: -6%;
    bottom: -30%;
    width: 64%;
    height: 120%;
    opacity: 0.9;
  }

  /* Cubes frame 345×384 @ (17,-0) + image inset past gray (1:1104) */
  .lsk-page .lsk-what__cubes,
  .lsk-main .lsk-what__cubes,
  .elementor-page .lsk-main img.lsk-what__cubes {
    content: unset;
    position: absolute;
    left: calc((17 - 0.1555 * 345) / 620 * 100%);
    top: calc(-0.239 * 384 / 384 * 100%);
    width: calc(345 * 1.307 / 620 * 100%);
    height: calc(146.45%);
    max-width: none;
    object-fit: fill;
    object-position: left top;
    pointer-events: none;
    z-index: 1;
  }

  .lsk-tag {
    width: calc(280 / 620 * 100%);
    max-width: none;
    height: calc(61 / 384 * 100%);
    padding: 0 16px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    white-space: nowrap;
    border-radius: 15px;
    box-shadow: none;
  }

  .lsk-tag--1,
  .lsk-tag--2 {
    right: auto;
    transform: none;
    max-width: none;
  }

  /* Figma: tags on the right over cubes */
  .lsk-tag--1 {
    top: calc(126 / 384 * 100%);
    left: calc(320 / 620 * 100%);
  }

  .lsk-tag--2 {
    top: calc(197 / 384 * 100%);
    left: calc(252 / 620 * 100%);
  }

  .lsk-what .lsk-h2 {
    max-width: 460px;
    margin: 0 auto;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
  }

  .lsk-what__lead {
    max-width: 460px;
    margin: 36px auto 40px;
    font-family: var(--lsk-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    text-align: center;
    color: var(--lsk-text);
  }

  .lsk-what__label {
    max-width: 460px;
    margin: 0 auto 24px;
    font-family: var(--lsk-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    text-align: left;
    color: var(--lsk-text);
  }

  .lsk-what .lsk-list {
    max-width: 460px;
    margin: 0 auto;
    gap: 25px;
  }

  .lsk-what .lsk-list li {
    gap: 10px;
    font-size: 17px;
    line-height: 1.45;
    color: var(--lsk-text);
  }

  /* —— When (Figma 1:1043 640): 60×60 checks, hug-content pills —— */
  .lsk-when {
    padding: 150px 0 150px;
  }

  .lsk-when .lsk-badge--white {
    background: var(--lsk-white);
    color: var(--lsk-blue);
  }

  .lsk-when .lsk-h2 {
    max-width: 460px;
    margin: 60px 0 80px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--lsk-white);
  }

  .lsk-when__items {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 80px;
  }

  .lsk-when__item {
    width: auto;
    max-width: 100%;
    align-items: center;
    gap: 10px;
  }

  .lsk-when .lsk-check-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 15px;
  }

  .lsk-when .lsk-check-box img {
    width: 32px;
    height: 32px;
  }

  .lsk-when__text {
    flex: 0 1 auto;
    width: max-content;
    max-width: calc(100% - 70px);
    min-height: 60px;
    height: auto;
    padding: 18px 20px;
    border-radius: 15px;
    background: var(--lsk-white);
    color: var(--lsk-blue);
    font-family: var(--lsk-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
  }

  .lsk-when .lsk-btn--outline-white {
    width: 380px;
    max-width: 100%;
    min-height: 60px;
    border-radius: 3px;
  }

  .lsk-hero {
    padding-inline: 0;
  }

  .lsk-hero__grid {
    grid-template-columns: 1fr;
    width: min(100% - 20px, 620px);
    padding: 40px 0 24px;
    min-height: auto;
  }

  .lsk-hero__banner {
    min-height: auto;
    padding-bottom: 0;
  }

  .lsk-h1 {
    font-size: clamp(48px, 10vw, 60px);
    text-align: center;
  }

  .lsk-hero__subtitle {
    font-size: clamp(36px, 7vw, 44px);
    text-align: center;
  }

  .lsk-hero__copy {
    padding-top: 10px;
    max-width: none;
    align-items: center;
    text-align: center;
  }

  .lsk-main hr.lsk-hero__line,
  .lsk-hero__line {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .lsk-hero__audience {
    text-align: center;
    font-size: clamp(22px, 4vw, 27px);
  }

  .lsk-hero__bottom {
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .lsk-hero__lead {
    max-width: 455px;
    text-align: center;
  }

  .lsk-hero .lsk-btn {
    width: min(320px, 100%);
  }

  /* visual was absolute inset:0 → quote sat on top of the title; flow it after copy */
  .lsk-hero__visual {
    position: static;
    inset: auto;
    min-height: 0;
    margin-top: 0;
    pointer-events: none;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .lsk-hero__cubes-clip {
    position: absolute;
    left: 67.5%; /* 432/640 */
    top: 59%;
    width: 78%;
    height: 71%;
    overflow: hidden;
    pointer-events: none;
  }

  .lsk-page .lsk-hero__cubes,
  .lsk-main .lsk-hero__cubes {
    position: absolute;
    left: -11.74%;
    top: -1.22%;
    width: 115.57%;
    height: 106.57%;
  }

  .lsk-hero__quote {
    position: relative;
    left: auto;
    top: auto;
    width: min(100% - 20px, 620px);
    max-width: 620px;
    margin: 28px auto 24px;
    z-index: 3;
    pointer-events: auto;
  }

  .lsk-hero__quote p {
    font-size: clamp(18px, 3.4vw, 22px);
  }

  .lsk-hero__ring {
    left: 77%;
    top: -42%;
    width: 82%;
  }

  .lsk-hero__glow--tr {
    left: 56%;
    top: -38%;
    width: 88%;
  }

  .lsk-hero__glow--bl {
    left: -18%;
    top: auto;
    bottom: -8%;
    width: 62%;
  }

  /* —— After (Figma 1:936 640): badge → title → list → cubes BR —— */
  .lsk-after {
    padding-top: 150px;
    padding-bottom: 0;
    overflow: visible;
  }

  .lsk-after__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 0;
    overflow: visible;
  }

  .lsk-after__left {
    display: contents;
  }

  .lsk-after__left .lsk-badge {
    order: 1;
    align-self: flex-start;
  }

  .lsk-after .lsk-h2 {
    order: 2;
    max-width: 460px;
    margin: 50px 0 80px;
    font-family: var(--lsk-font);
    font-size: 45px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    color: var(--lsk-text);
  }

  .lsk-after__list {
    order: 3;
    gap: 30px;
    margin: 0 0 40px;
    max-width: none;
  }

  .lsk-after__item {
    align-items: center;
    gap: 20px;
  }

  .lsk-after .lsk-check-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 15px;
  }

  .lsk-after .lsk-check-box img {
    width: 32px;
    height: 32px;
  }

  .lsk-after__text {
    flex: 0 1 auto;
    width: max-content;
    max-width: calc(100% - 80px);
    min-height: 60px;
    height: auto;
    padding: 18px 25px;
    border-radius: 15px;
    font-family: var(--lsk-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    box-shadow: none;
  }

  .lsk-after__media {
    order: 4;
    position: relative;
    left: auto;
    right: 0;
    bottom: auto;
    align-self: flex-end;
    width: min(289px, 48%);
    height: auto;
    aspect-ratio: 289 / 276;
    margin: -40px 0 -80px;
    overflow: visible;
    z-index: 3;
  }

  .lsk-page .lsk-after__cubes,
  .lsk-main .lsk-after__cubes,
  .elementor-page .lsk-main img.lsk-after__cubes {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: right bottom;
  }

  .lsk-after__glow-clip {
    --lsk-glow-size: 398px;
    --lsk-glow-peek: 0.55;
    --lsk-glow-clip-extra: 220px;
  }

  .lsk-after__glow {
    left: auto;
    right: -40px;
    top: auto;
    filter: blur(122px);
  }

  /* —— Host (Figma 1:921 + 1:933 + 1:934 640): text → 2 btns → photo → quote —— */
  .lsk-host {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .lsk-host__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .lsk-host .lsk-h2 {
    margin: 0;
    font-family: var(--lsk-font);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--lsk-text);
  }

  .lsk-host__name {
    margin: 50px 0 23px;
    font-family: var(--lsk-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--lsk-text);
  }

  .lsk-host__role {
    margin: 0 0 40px;
    max-width: none;
    font-family: var(--lsk-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--lsk-text);
  }

  .lsk-host__stat {
    margin-bottom: 40px;
  }

  .lsk-host__stat-label {
    margin: 0 0 15px;
    font-family: var(--lsk-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--lsk-blue);
  }

  .lsk-host__stat > p:not(.lsk-host__stat-label) {
    max-width: none;
    margin: 0;
    font-family: var(--lsk-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--lsk-text);
  }

  .lsk-host__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 20px;
    max-width: none;
    width: 100%;
    margin-top: 0;
    padding-top: 0;
  }

  .lsk-host__actions .lsk-btn {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    min-height: 60px;
    height: 60px;
    padding: 10px;
    border-radius: 3px;
    font-family: var(--lsk-font);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    box-shadow: none;
    box-sizing: border-box;
  }

  .lsk-host__actions .lsk-btn--blue {
    background: var(--lsk-blue) !important;
    border: 1px solid var(--lsk-blue) !important;
    color: var(--lsk-white) !important;
  }

  .lsk-host__actions .lsk-btn--outline-blue {
    background: var(--lsk-white) !important;
    border: 1px solid var(--lsk-blue) !important;
    color: var(--lsk-blue) !important;
  }

  .lsk-host__media {
    display: flex;
    flex-direction: column;
    margin-top: 80px;
    overflow: visible;
  }

  .lsk-main img.lsk-host__photo,
  .elementor img.lsk-host__photo,
  .lsk-host__photo {
    width: 100%;
    min-height: 0;
    height: auto;
    aspect-ratio: 619 / 743;
    object-fit: cover;
    object-position: center top;
    border-radius: 15px;
  }

  .lsk-quote {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin: 12px 0 0;
    padding: 40px;
    border-radius: 15px;
  }

  .lsk-quote p {
    margin: 0;
    font-family: var(--lsk-font);
    font-size: 17px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.35;
    color: var(--lsk-white);
    text-align: center;
  }

  /* —— Footer (Figma 1:897 640): left stack + contacts bottom-right —— */
  .lsk-footer {
    padding: 68px 0 48px;
    min-height: 477px;
    box-sizing: border-box;
  }

  .lsk-footer .lsk-container {
    width: min(100% - 20px, var(--lsk-container));
  }

  .lsk-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 300px) 1fr;
    grid-template-areas:
      "brand contacts"
      "legal contacts";
    column-gap: 24px;
    align-items: end;
  }

  .lsk-footer__left {
    grid-area: brand;
    max-width: 300px;
  }

  .lsk-footer .lsk-logo {
    margin-bottom: 40px;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--lsk-black);
  }

  .lsk-footer__company,
  .lsk-footer__address,
  .lsk-footer__legal {
    font-size: 17px;
    line-height: 1.45;
    color: var(--lsk-muted);
  }

  .lsk-footer__address {
    margin-top: 24px;
  }

  .lsk-footer__legal {
    grid-area: legal;
    margin-top: 32px;
    max-width: 300px;
    align-self: start;
  }

  .lsk-footer__contacts {
    grid-area: contacts;
    margin-top: 0;
    text-align: right;
    align-self: end;
    justify-self: end;
  }

  .lsk-footer__phone,
  .lsk-footer__email {
    font-family: var(--lsk-display);
    font-size: 27px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--lsk-text);
  }

  .lsk-footer__phone {
    margin-bottom: 25px;
  }

  /* —— Results (Figma 1:967 640): title → lead → cards → media —— */
  .lsk-results {
    padding: 80px 0 0;
    /* wide karta bleed must not create page scroll; clip Y so pills/img stay in section */
    overflow-x: clip;
    overflow-y: hidden;
  }

  .lsk-results__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-x: clip;
    overflow-y: visible;
  }

  .lsk-results__grid > .lsk-reveal:first-child {
    display: contents;
  }

  .lsk-results__grid > .lsk-reveal:first-child .lsk-h2 {
    order: 1;
    max-width: 460px;
    margin: 0 0 0;
    font-family: var(--lsk-font);
    font-size: 45px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    color: var(--lsk-text);
  }

  .lsk-results__grid > .lsk-reveal:first-child .lsk-results__lead {
    order: 2;
    max-width: 620px;
    margin: 50px 0 40px;
    font-family: var(--lsk-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--lsk-text);
  }

  .lsk-results__lead span {
    display: inline;
    color: var(--lsk-blue);
  }

  .lsk-results__cards {
    order: 3;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 0 0 40px;
  }

  .lsk-result-card {
    width: 100%;
    height: 300px;
    min-height: 300px;
    aspect-ratio: auto;
    padding: 40px;
    border-radius: 15px;
    justify-content: space-between;
  }

  .lsk-result-card__num {
    font-family: var(--lsk-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--lsk-mint);
  }

  .lsk-result-card__text {
    margin: 0;
    font-family: var(--lsk-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--lsk-white);
  }

  .lsk-results__media,
  .lsk-results__grid > .lsk-reveal:first-child > .lsk-results__bg {
    order: 4;
  }

  .lsk-results__media {
    position: relative;
    width: 100%;
    aspect-ratio: 924 / 586;
    height: auto;
    margin: 0;
    overflow: visible;
  }

  .lsk-results__bg[src*="lsk-karta-bg"],
  .lsk-results__bg[src*="lsk-karta.jpg"] {
    content: url("/wp-content/uploads/lsk/assets/images/lsk-karta-no-bgd.png");
  }

  /* Figma 1:969: wide bleed via transform; keep layout height = image */
  .lsk-results__bg,
  .elementor-page .lsk-main img.lsk-results__bg,
  .lsk-results__grid > .lsk-reveal:first-child > .lsk-results__bg {
    position: relative !important;
    left: 0 !important;
    top: auto !important;
    width: calc(924 / 620 * 100%) !important;
    max-width: none !important;
    max-height: none !important;
    height: auto !important;
    aspect-ratio: 924 / 586;
    margin: 0 !important;
    transform: translateX(calc(-65 / 924 * 100%));
    opacity: 1;
    object-fit: cover;
    object-position: center 42%;
    object-view-box: unset;
    display: block;
    z-index: 1;
  }

  .lsk-results__media .lsk-results__bg {
    position: absolute !important;
    inset: 0 auto auto 0 !important;
    width: calc(924 / 620 * 100%) !important;
    height: 100% !important;
    aspect-ratio: auto;
    margin: 0 !important;
    object-fit: cover;
    object-position: center 42%;
    transform: translateX(calc(-65 / 924 * 100%));
  }

  /* Pills on image, ~30px above image bottom (Figma 8485 / 8515) */
  .lsk-results__media .lsk-results__takeaway {
    position: absolute;
    left: 0;
    right: auto;
    top: auto;
    bottom: 30px;
    width: auto;
    margin: 0;
    z-index: 3;
  }

  /*
    Elementor: img + takeaway siblings (display:contents).
    margin-top pulls pills onto image; margin-bottom keeps section
    height ending at image bottom — no pull-up of gallery.
  */
  .lsk-results__grid > .lsk-reveal:first-child > .lsk-results__takeaway {
    order: 5;
    position: relative;
    z-index: 3;
    width: auto;
    margin-top: -90px;
    margin-bottom: 30px;
  }

  .lsk-results__takeaway {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: flex-start;
  }

  .lsk-results__pill {
    flex: 0 0 auto;
    width: min(380px, calc(100% - 80px));
    max-width: 380px;
    height: 60px;
    min-height: 60px;
    padding: 0 20px;
    font-family: var(--lsk-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    text-align: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }

  .lsk-results__arrow {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }

  .lsk-results__arrow img {
    transform: rotate(90deg);
  }
}

/* ≤639 — Figma 320–640 */
@media (max-width: 639px) {
  .lsk-container {
    width: min(100% - 20px, var(--lsk-container));
  }

  .lsk-section {
    padding: 60px 0;
  }

  .lsk-h2 {
    font-size: 28px;
  }

  /* Mobile: hide what-cubes block + gallery images */
  .lsk-what__visual {
    display: none !important;
  }

  .lsk-gallery,
  .lsk-section:has(> .lsk-gallery) {
    display: none !important;
  }

  /* —— Header —— */
  .lsk-header__inner {
    width: min(100% - 20px, var(--lsk-container));
    min-height: 64px;
  }

  .lsk-header__tg {
    display: none;
  }

  .lsk-header__phone {
    display: none;
  }

  /* Figma 1:1456 меню — size already set in base */

  /* —— Hero (Figma 1:1440 «Первый экран» 320) —— */
  .lsk-hero {
    padding: 0 0 24px;
  }

  .lsk-hero__banner {
    width: 100%;
    max-width: none;
    min-height: 0;
    border-radius: 15px;
    padding-bottom: 13px;
    overflow: hidden;
    background: var(--lsk-blue);
    background-image: none;
  }

  .lsk-hero__grid {
    display: flex;
    flex-direction: column;
    width: min(100% - 20px, 300px);
    min-height: 0;
    padding: 60px 0 0;
    margin-inline: auto;
  }

  .lsk-hero__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
    padding-top: 0;
    text-align: center;
  }

  .lsk-h1.lsk-hero__title,
  .lsk-hero__title {
    margin: 0;
    max-width: 300px;
    font-family: var(--lsk-display);
    font-size: 60px;
    font-weight: 400;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
  }

  .lsk-hero__subtitle {
    margin: 10px 0 0;
    max-width: 300px;
    font-family: var(--lsk-display);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.15;
    text-align: center;
  }

  .lsk-main hr.lsk-hero__line,
  .lsk-hero__line {
    width: 200px;
    height: 3px;
    margin: 19px auto 40px;
    border: 0;
    background: var(--lsk-mint);
    background-color: var(--lsk-mint);
  }

  .lsk-hero__audience {
    margin: 0;
    max-width: 299px;
    font-family: var(--lsk-display);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
    color: var(--lsk-white);
  }

  .lsk-hero__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 50px;
    padding-top: 0;
  }

  .lsk-hero__lead {
    margin: 0 0 50px;
    max-width: 300px;
    font-family: var(--lsk-display);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
    color: #f3f3f3;
  }

  .lsk-hero .lsk-btn {
    width: 100%;
    max-width: 299px;
    min-height: 60px;
    height: 60px;
    padding: 10px;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 700;
  }

  .lsk-hero .lsk-btn--red,
  .lsk-hero .lsk-btn {
    background: #7eddd4;
    border-color: #7eddd4;
    color: var(--lsk-navy);
  }

  .lsk-hero .lsk-btn--red:hover,
  .lsk-hero .lsk-btn:hover {
    background: #6ed1c8;
    border-color: #6ed1c8;
    color: var(--lsk-navy);
    opacity: 1;
  }

  .lsk-hero__cubes-clip,
  .lsk-page .lsk-hero__cubes,
  .lsk-main .lsk-hero__cubes,
  .lsk-hero__ring,
  .lsk-hero__glow,
  .lsk-hero__glow--tr,
  .lsk-hero__glow--bl {
    display: none !important;
  }

  /* Quote stays; glows removed for flat blue */

  .lsk-hero__visual {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 60px;
    pointer-events: none;
  }

  .lsk-hero__quote {
    width: min(100% - 20px, 300px);
    max-width: 300px;
    min-height: 186px;
    margin: 0 auto;
    padding: 24px 20px;
    border-radius: 15px;
    background: rgba(0, 71, 201, 0.5);
    backdrop-filter: blur(12.5px);
    -webkit-backdrop-filter: blur(12.5px);
  }

  .lsk-hero__quote p {
    font-family: var(--lsk-display);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
  }

  /* —— Format (Figma 1:1433 «О формате» 320) —— */
  .lsk-format {
    padding: 100px 0 40px; /* hero ends ~993, format y=1093 */
  }

  .lsk-format .lsk-badge {
    display: inline-flex;
    min-width: 160px;
    width: 160px;
    height: 40px;
    margin-inline: auto;
    font-family: var(--lsk-font);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--lsk-muted);
    background: var(--lsk-gray);
  }

  .lsk-format h2.lsk-format__title,
  .lsk-format__title {
    max-width: 300px;
    margin: 50px auto 43px;
    font-family: var(--lsk-display);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
    color: var(--lsk-text);
  }

  .lsk-main hr.lsk-format__line,
  .lsk-format__line {
    width: 160px;
    height: 3px;
    margin: 0 auto 37px;
    border: 0;
    background: var(--lsk-red);
    background-color: var(--lsk-red);
  }

  .lsk-format__text {
    max-width: 300px;
    margin: 0 auto;
    font-family: var(--lsk-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    text-align: center;
    color: var(--lsk-muted);
  }

  /* —— Requests: Figma 320 — stack cards, title 30px; phone hidden —— */
  .lsk-requests__title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 28px;
  }

  .lsk-requests__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lsk-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .lsk-card__title {
    margin: 0 0 24px;
    font-family: var(--lsk-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
  }

  .lsk-card__num {
    font-family: var(--lsk-display);
    font-size: 22px;
  }

  .lsk-requests__visual {
    display: none;
  }

  /* —— What: Figma 320 — cubes overflow gray frame —— */
  .lsk-what__grid {
    display: flex;
    flex-direction: column;
  }

  .lsk-what__visual {
    order: -1;
    margin-bottom: 24px;
    max-width: none;
    width: 100%;
    /* cubes 335 + frame overhang 40 below = 375 */
    aspect-ratio: 300 / 375;
    overflow: visible;
    border-radius: 0;
  }

  /* Gray+glow sits lower; cubes stick out above (Figma Δy=40) */
  .lsk-what__glow-clip {
    inset: auto 0 auto 0;
    top: calc(40 / 375 * 100%);
    height: calc(335 / 375 * 100%);
    border-radius: var(--lsk-radius);
    background-color: var(--lsk-gray);
    background-image: url("../assets/images/what-glow-m.png");
    background-size: cover;
    background-position: center;
  }

  .lsk-what__glow {
    display: none;
  }

  .lsk-page .lsk-what__cubes,
  .lsk-main .lsk-what__cubes,
  .elementor-page .lsk-main img.lsk-what__cubes {
    content: url("../assets/images/cubes-what-m.png?v=2");
    left: 5%;
    top: 2%;
    width: 90%;
    height: calc(335 / 375 * 90%);
    object-fit: contain;
    object-position: center center;
    object-view-box: unset;
  }

  .lsk-what .lsk-h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    margin: 0;
  }

  .lsk-what__lead {
    margin: 48px 0 40px;
    font-family: var(--lsk-display);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
    color: var(--lsk-text);
  }

  .lsk-what__label {
    margin: 0 0 24px;
    font-family: var(--lsk-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    text-align: left;
    color: var(--lsk-text);
  }

  .lsk-what .lsk-list {
    gap: 25px;
  }

  .lsk-what .lsk-list li {
    gap: 10px;
    font-size: 17px;
    line-height: 1.45;
    color: var(--lsk-text);
  }

  .lsk-what .lsk-check {
    width: 16px;
    height: 16px;
    margin-top: 3px;
  }

  .lsk-tag {
    width: calc(280 / 300 * 100%);
    max-width: none;
    height: calc(60 / 375 * 100%);
    padding: 0 16px;
    font-size: 27px;
    font-weight: 500;
    line-height: 1.1;
    white-space: nowrap;
    border-radius: 24px;
    box-shadow: none;
  }

  .lsk-tag--1,
  .lsk-tag--2 {
    left: calc(10 / 300 * 100%);
    right: auto;
    transform: none;
    max-width: none;
  }

  .lsk-tag--1 {
    top: calc(225 / 375 * 100%);
  }

  .lsk-tag--2 {
    top: calc(296 / 375 * 100%);
  }

  /* —— When: full-bleed + compact checks (Figma 30×30) —— */
  .lsk-when {
    padding: 70px 0;
  }

  .lsk-when .lsk-h2 {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .lsk-when__items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 28px;
  }

  /* Figma 320: partner decision before motivation */
  .lsk-when__item:nth-child(5) {
    order: 6;
  }

  .lsk-when__item:nth-child(6) {
    order: 5;
  }

  .lsk-when__item {
    align-items: flex-start;
    gap: 10px;
  }

  .lsk-when .lsk-check-box {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 8px;
  }

  .lsk-when .lsk-check-box img {
    width: 16px;
    height: 16px;
  }

  .lsk-when__text {
    flex: 1;
    min-height: 60px;
    padding: 10px;
    font-size: 17px;
    line-height: 1.25;
  }

  .lsk-when .lsk-btn {
    width: 100%;
  }

  /* —— Process (Figma 320) —— */
  .lsk-process .lsk-badge {
    margin-inline: auto;
  }

  .lsk-process .lsk-h2 {
    max-width: none;
    margin: 24px auto 48px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
  }

  .lsk-process .lsk-h2 span {
    display: block;
    color: var(--lsk-blue);
  }

  .lsk-day {
    display: block;
  }

  .lsk-day__label {
    margin: 0 0 28px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    color: #dedede;
  }

  .lsk-process__card {
    display: none; /* hidden in Figma 320 */
  }

  .lsk-timeline__item {
    grid-template-columns: 70px 1fr;
    gap: 10px;
    padding-bottom: 40px;
  }

  /* connector lines hidden in Figma 320 */
  .lsk-timeline__item:not(:last-child)::before {
    display: none;
  }

  .lsk-timeline__num {
    font-family: var(--lsk-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--lsk-blue);
  }

  .lsk-timeline__title {
    margin: 0 0 12px;
    font-family: var(--lsk-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--lsk-text);
  }

  .lsk-timeline__text {
    font-family: var(--lsk-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--lsk-text);
  }

  .lsk-timeline__star {
    width: 32px;
    height: 32px;
  }

  /* —— Results (Figma 320) —— */
  .lsk-results {
    padding: 60px 0 0;
    overflow-x: clip;
    overflow-y: hidden;
  }

  .lsk-results__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-x: clip;
    overflow-y: visible;
  }

  .lsk-results__grid > .lsk-reveal:first-child {
    display: contents;
  }

  .lsk-results__grid > .lsk-reveal:first-child .lsk-h2 {
    order: 1;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
    margin: 0;
  }

  .lsk-results__grid > .lsk-reveal:first-child .lsk-results__lead {
    order: 2;
    max-width: none;
    margin: 20px 0 8px;
    font-family: var(--lsk-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--lsk-text);
  }

  .lsk-results__lead span {
    color: var(--lsk-blue);
  }

  .lsk-results__cards {
    order: 3;
    gap: 25px;
  }

  /* Figma 1:1254: karta 591×375 @ x=-65; plates 1:1255/1:1257 over bottom */
  .lsk-results__media,
  .lsk-results__grid > .lsk-reveal:first-child > .lsk-results__bg {
    order: 4;
  }

  .lsk-results__media {
    position: relative;
    width: 100%;
    aspect-ratio: 591 / 375;
    height: auto;
    margin: 0;
    overflow: visible;
  }

  /* Live Elementor still serves lsk-karta-bg.jpg — swap to Figma cutout */
  .lsk-results__bg[src*="lsk-karta-bg"],
  .lsk-results__bg[src*="lsk-karta.jpg"] {
    content: url("/wp-content/uploads/lsk/assets/images/lsk-karta-no-bgd.png");
  }

  .lsk-results__bg,
  .elementor-page .lsk-main img.lsk-results__bg,
  .lsk-results__grid > .lsk-reveal:first-child > .lsk-results__bg {
    position: relative !important;
    left: 0 !important;
    top: auto !important;
    width: calc(591 / 300 * 100%) !important;
    max-width: none !important;
    max-height: none !important;
    height: auto !important;
    aspect-ratio: 591 / 375;
    margin: 0 !important;
    transform: translateX(calc(-65 / 591 * 100%));
    opacity: 1;
    object-fit: cover;
    object-position: center 42%;
    object-view-box: unset;
    display: block;
    z-index: 1;
  }

  .lsk-results__media .lsk-results__bg {
    position: absolute !important;
    inset: 0 auto auto 0 !important;
    width: calc(591 / 300 * 100%) !important;
    height: 100% !important;
    aspect-ratio: auto;
    margin: 0 !important;
    object-fit: cover;
    object-position: center 42%;
    object-view-box: unset;
    transform: translateX(calc(-65 / 591 * 100%));
  }

  .lsk-results__media .lsk-results__takeaway {
    position: absolute;
    left: 0;
    right: auto;
    top: auto;
    bottom: 24px;
    width: auto;
    margin: 0;
    z-index: 3;
  }

  .lsk-results__grid > .lsk-reveal:first-child > .lsk-results__takeaway {
    order: 5;
    position: relative;
    z-index: 3;
    width: auto;
    margin-top: -84px;
    margin-bottom: 24px;
  }

  .lsk-results__takeaway {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 19px;
    justify-content: flex-start;
  }

  .lsk-result-card {
    width: 100%;
    aspect-ratio: 1;
    min-height: 0;
    height: auto;
    padding: 30px;
    border-radius: 15px;
  }

  .lsk-result-card__num {
    font-family: var(--lsk-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--lsk-mint);
  }

  .lsk-result-card__text {
    margin: 0;
    margin-top: auto;
    font-family: var(--lsk-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--lsk-white);
  }

  .lsk-results__pill {
    flex: 0 0 221px;
    width: 221px;
    max-width: 221px;
    height: 80px;
    min-height: 80px;
    padding: 20px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
    text-align: left;
    justify-content: flex-start;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }

  .lsk-results__arrow {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }

  .lsk-results__arrow img {
    /* 225° − 135° CCW → arrow points up */
    transform: rotate(90deg);
  }

  /* —— Gallery (Figma 1:1250/1:1251: 300×261 stacked) —— */
  .lsk-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 8px 0 24px;
  }

  .lsk-gallery img {
    width: 100%;
    height: auto;
    aspect-ratio: 300 / 261;
    object-fit: cover;
    border-radius: 0;
  }

  /* —— After: badge/title → list (cubes hidden, glow kept) —— */
  .lsk-after {
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: hidden;
  }

  .lsk-after__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 0;
  }

  .lsk-after__left {
    min-height: 0;
    padding-bottom: 0;
    display: contents;
  }

  .lsk-after__left .lsk-badge {
    order: 1;
  }

  .lsk-after .lsk-h2 {
    order: 2;
    max-width: none;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    margin: 16px 0 8px;
  }

  .lsk-after__list {
    order: 3;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    margin-bottom: 0;
  }

  .lsk-after__media,
  .lsk-after__cubes {
    display: none !important;
  }

  .lsk-after .lsk-check-box {
    width: 30px;
    height: 30px;
    min-width: 30px;
    flex: 0 0 30px;
    border-radius: 8px;
  }

  .lsk-after .lsk-check-box img {
    width: 16px;
    height: 16px;
  }

  .lsk-after__item {
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .lsk-after__text {
    flex: 1 1 auto;
    width: auto;
    max-width: 100%;
    min-width: 0;
    min-height: 60px;
    padding: 10px 12px;
    font-size: 17px;
    line-height: 1.25;
    box-sizing: border-box;
    overflow-wrap: anywhere;
  }

  .lsk-after__glow-clip {
    --lsk-glow-size: 240px;
    --lsk-glow-peek: 0.35;
    --lsk-glow-clip-extra: 80px;
    bottom: calc(var(--lsk-glow-clip-extra) * -1);
  }

  .lsk-after__glow {
    display: block;
    left: auto;
    right: -60px;
    bottom: calc(
      var(--lsk-glow-clip-extra) - var(--lsk-glow-size) * var(--lsk-glow-peek)
    );
    filter: blur(90px);
    opacity: 0.55;
  }

  /* —— Host: text → buttons → photo → quote (Figma 320 1:1206 + 1:1216) —— */
  .lsk-host {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .lsk-host__grid {
    gap: 0;
  }

  .lsk-host .lsk-h2 {
    font-family: var(--lsk-font);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--lsk-text);
  }

  .lsk-host__name {
    margin: 50px 0 16px;
    font-family: var(--lsk-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--lsk-text);
  }

  .lsk-host__role {
    margin: 0 0 40px;
    max-width: none;
    font-family: var(--lsk-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--lsk-text);
  }

  .lsk-host__stat {
    margin-bottom: 40px;
  }

  .lsk-host__stat-label {
    margin: 0 0 15px;
    font-family: var(--lsk-display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--lsk-blue);
  }

  .lsk-host__stat > p:not(.lsk-host__stat-label) {
    max-width: none;
    margin: 0;
    font-family: var(--lsk-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--lsk-text);
  }

  .lsk-host__actions {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    max-width: none;
    width: 100%;
    margin-top: 0;
    padding-top: 20px; /* + last stat mb 40 → 60px; avoid margin collapse */
    gap: 15px;
  }

  .lsk-host__actions .lsk-btn {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 60px;
    padding: 10px;
    border-radius: 3px;
    font-family: var(--lsk-font);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    box-shadow: none;
    box-sizing: border-box;
  }

  .lsk-host__actions .lsk-btn--blue {
    background: var(--lsk-blue) !important;
    border: 1px solid var(--lsk-blue) !important;
    color: var(--lsk-white) !important;
  }

  .lsk-host__actions .lsk-btn--outline-blue {
    background: var(--lsk-white) !important;
    border: 1px solid var(--lsk-blue) !important;
    color: var(--lsk-blue) !important;
  }

  .lsk-host__media {
    display: flex;
    flex-direction: column;
    margin-top: 50px; /* Figma: photo y=11172 after outline btn ends 11122 */
  }

  .lsk-main img.lsk-host__photo,
  .elementor img.lsk-host__photo,
  .lsk-host__photo {
    width: 100%;
    min-height: 0;
    height: auto;
    aspect-ratio: 300 / 360;
    object-fit: cover;
    border-radius: 15px;
  }

  .lsk-quote {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin: 12px 0 0;
    padding: 30px;
  }

  .lsk-quote p {
    font-family: var(--lsk-font);
    font-size: 17px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.35;
    color: var(--lsk-white);
    text-align: center;
  }

  /* —— Form —— */
  .lsk-form-section {
    padding: 60px 0;
  }

  .lsk-form {
    width: 100%;
    padding: 48px 16px 40px;
    border-radius: var(--lsk-radius);
  }

  .lsk-form .lsk-h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
  }

  .lsk-form__lead {
    font-size: 17px;
    line-height: 1.45;
    text-align: center;
  }

  .lsk-form__fields {
    max-width: none;
  }

  .lsk-btn {
    width: 100%;
  }

  /* —— Footer (Figma 1:1182 320): stacked left —— */
  .lsk-footer {
    padding: 60px 0 40px;
    min-height: 0;
  }

  .lsk-footer__grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .lsk-footer__left {
    max-width: none;
    flex: none;
    width: 100%;
  }

  .lsk-footer .lsk-logo {
    margin-bottom: 36px;
  }

  .lsk-footer__legal {
    margin-top: 40px;
  }

  .lsk-footer__contacts {
    margin-top: 40px;
    text-align: left;
    align-self: flex-start;
  }

  .lsk-footer__phone,
  .lsk-footer__email,
  .lsk-footer__tg {
    font-family: var(--lsk-display);
    font-size: 27px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--lsk-text);
  }

  .lsk-footer__phone {
    margin-bottom: 25px;
  }

  .lsk-footer__tg {
    justify-content: flex-start;
  }
}

/* ========== Elementor / Hello theme compatibility ========== */
/*
  Kit sets --container-max-width: 1140px on .e-con (post-8.css).
  Figma «1200-1920» artboard is 1440; content column is 1160.
  Below 1680 keep the 1440 frame; at 1680+ unlock to full viewport (Figma «1920»).
*/

/* No side padding from Elementor — sections go edge-to-edge */
body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-main),
body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-header),
body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-footer) {
  --padding-left: 0px !important;
  --padding-right: 0px !important;
  --padding-inline-start: 0px !important;
  --padding-inline-end: 0px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-inline-start: 0 !important;
  padding-inline-end: 0 !important;
}

body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-main) > .e-con-inner,
body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-header) > .e-con-inner,
body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-footer) > .e-con-inner {
  padding-inline: 0 !important;
  padding-inline-start: 0 !important;
  padding-inline-end: 0 !important;
}

.lsk-main > section,
.lsk-main > .lsk-section,
.lsk-main > .lsk-hero,
.lsk-main > .lsk-when,
.lsk-main > .lsk-form-section,
.lsk-footer {
  padding-inline-start: 0;
  padding-inline-end: 0;
}

@media (max-width: 1679px) {
  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-main),
  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-header),
  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-footer) {
    --container-max-width: var(--lsk-frame);
  }

  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-main) > .e-con-inner,
  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-header) > .e-con-inner,
  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-footer) > .e-con-inner {
    max-width: var(--lsk-frame);
    width: 100%;
    margin-inline: auto;
    padding-inline: 0;
    padding-block-start: 0;
    padding-block-end: 0;
  }

  .lsk-main,
  .lsk-header,
  .lsk-footer {
    width: 100%;
    max-width: var(--lsk-frame);
    margin-inline: auto;
  }
}

@media (min-width: 1680px) {
  /* Must live after Elementor rules — earlier 1680 block was overridden by max-width: 1440 */
  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-main),
  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-header),
  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-footer) {
    --container-max-width: 100%;
  }

  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-main) > .e-con-inner,
  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-header) > .e-con-inner,
  body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-footer) > .e-con-inner {
    max-width: none;
    width: 100%;
    margin-inline: auto;
    padding-inline: 0;
    padding-block-start: 0;
    padding-block-end: 0;
  }

  .lsk-main,
  .lsk-header,
  .lsk-footer {
    width: 100%;
    max-width: none;
    margin-inline: auto;
  }

  .lsk-header__inner {
    width: min(100% - 160px, 1760px);
  }

  /* Banner inset via width/margin — section itself has no side padding */
  .lsk-hero {
    max-width: none;
    padding-inline: 0;
  }

  .lsk-hero__banner {
    max-width: 1760px;
    width: min(100% - 160px, 1760px);
    margin-inline: auto;
  }

  /* Figma 1:306: copy inset ~158px in 1760 banner (not 140/1160 of 1440) */
  .lsk-hero__grid {
    width: min(100% - 316px, 1444px);
    margin-inline: auto;
  }

  .lsk-hero__cubes-clip {
    left: 57.3%; /* 1008/1760 */
    top: -7.9%;
    width: 49.8%; /* 876/1760 */
    height: 109%;
  }

  .lsk-hero__quote {
    left: 65.9%; /* 1160/1760 */
    top: 56%;
    width: min(446px, 25%);
  }

  .lsk-footer .lsk-container {
    width: min(100% - 160px, 1760px);
  }

  /* —— Results Figma 1:421 (1920): karta 1617×1026 @ x303 —— */
  .lsk-results__grid {
    grid-template-columns: 600px 560px; /* cards x977 − content x377 */
  }

  .lsk-page .lsk-results__bg,
  .lsk-main .lsk-results__bg,
  .elementor-page .lsk-main img.lsk-results__bg,
  .lsk-results__grid > .lsk-reveal:first-child > .lsk-results__bg,
  .lsk-results__media .lsk-results__bg {
    left: -74px; /* 303 − 377 */
    top: 170px; /* 5806 − 5636 */
    width: 1617px !important;
    height: 1026px !important;
    /* Figma crop ~126% height */
    object-fit: cover;
    object-position: left top;
  }
}

body:has(.lsk-main) .e-con-boxed.e-parent:has(.lsk-footer),
body:has(.lsk-main) .elementor-widget-html:has(.lsk-footer),
body:has(.lsk-main) .elementor-widget-html:has(.lsk-footer) .elementor-widget-container {
  padding-block-start: 0 !important;
  padding-block-end: 0 !important;
}

body:has(.lsk-main) .elementor-widget-html:has(.lsk-main),
body:has(.lsk-main) .elementor-widget-html:has(.lsk-header),
body:has(.lsk-main) .elementor-widget-html:has(.lsk-footer) {
  margin-block-end: 0;
}

.elementor-page .elementor-widget-html,
.elementor-page .elementor-widget-container,
.elementor-page .elementor-element,
.elementor-page .e-con,
.elementor-page .e-con-inner,
.elementor-page .elementor-section,
.elementor-page .elementor-container,
.elementor-page .elementor-column-wrap {
  overflow: visible !important;
}

.elementor-page .lsk-main,
.elementor-page .lsk-hero,
.elementor-page .lsk-hero__visual,
.elementor-page .lsk-what,
.elementor-page .lsk-what__grid,
.elementor-page .lsk-what__visual,
.elementor-page .lsk-after,
.elementor-page .lsk-after__media {
  overflow: visible !important;
}

/* Results karta bleed: clip at section only so grid can paint under cards */
.elementor-page .lsk-results {
  overflow-x: clip !important;
  overflow-y: visible !important;
}

.elementor-page .lsk-results__grid,
.elementor-page .lsk-results__media {
  overflow: visible !important;
}

body:has(.lsk-main),
body.lsk-page {
  overflow-x: clip;
}

.elementor-page .lsk-main {
  overflow-x: clip !important;
  overflow-y: visible !important;
}

.elementor-page .lsk-main img.lsk-hero__cubes,
.elementor-page .lsk-main img.lsk-what__cubes,
.elementor-page .lsk-main img.lsk-after__cubes {
  max-width: none;
}

/* Elementor kit uses Roboto — force LSK fonts inside our markup */
body.lsk-page .lsk-header,
body.lsk-page .lsk-main,
body.lsk-page .lsk-footer,
body.lsk-page .lsk-nav,
body.lsk-page .elementor-widget-html,
body.lsk-page .elementor-widget-html .elementor-widget-container,
body:has(.lsk-main) .lsk-header,
body:has(.lsk-main) .lsk-main,
body:has(.lsk-main) .lsk-footer,
body:has(.lsk-main) .lsk-nav {
  font-family: var(--lsk-font) !important;
}

body.lsk-page .lsk-h1,
body.lsk-page .lsk-accent,
body.lsk-page .lsk-logo,
body.lsk-page .lsk-header__phone,
body.lsk-page .lsk-hero__subtitle,
body.lsk-page .lsk-hero__audience,
body.lsk-page .lsk-hero__lead,
body.lsk-page .lsk-hero__quote,
body.lsk-page .lsk-format__title,
body.lsk-page .lsk-card__num,
body.lsk-page .lsk-card__title,
body.lsk-page .lsk-result-card__num,
body.lsk-page .lsk-result-card__text,
body.lsk-page .lsk-timeline__num,
body.lsk-page .lsk-timeline__title,
body.lsk-page .lsk-host__name,
body.lsk-page .lsk-host__stat-label,
body:has(.lsk-main) .lsk-host__name,
body:has(.lsk-main) .lsk-host__stat-label,
body.lsk-page .lsk-nav__phone,
body.lsk-page .lsk-nav__email,
body.lsk-page .lsk-footer__phone,
body.lsk-page .lsk-footer__email,
body.lsk-page .lsk-footer__tg,
body:has(.lsk-main) .lsk-h1,
body:has(.lsk-main) .lsk-accent,
body:has(.lsk-main) .lsk-logo,
body:has(.lsk-main) .lsk-hero__subtitle {
  font-family: var(--lsk-display) !important;
}

/* Temporary: hide PC/desktop — white empty screen (mobile ≤639 still works) */
@media (min-width: 640px) {
  html:has(.lsk-main),
  body:has(.lsk-main),
  body.lsk-page {
    background: #fff !important;
    min-height: 100%;
  }

  body:has(.lsk-main) .elementor-location-header,
  body:has(.lsk-main) .elementor-location-footer,
  body:has(.lsk-main) #content,
  body:has(.lsk-main) .site-header,
  body:has(.lsk-main) .site-footer,
  body:has(.lsk-main) .lsk-header,
  body:has(.lsk-main) .lsk-main,
  body:has(.lsk-main) .lsk-footer,
  body.lsk-page .lsk-header,
  body.lsk-page .lsk-main,
  body.lsk-page .lsk-footer {
    display: none !important;
  }
}
