.lekala-page {
  --lekala-bg: #0f0c0f;
  --lekala-surface: #171617;
  --lekala-surface-2: #201e20;
  --lekala-text: #fff;
  --lekala-muted: #b1b1b1;
  --lekala-line: rgba(255, 255, 255, .13);
  --lekala-green: #0cb563;
  --lekala-green-hover: #11ca70;
  --lekala-light: #f2f2f2;
  --lekala-ink: #151315;
  background: var(--lekala-bg);
  color: var(--lekala-text);
  overflow-x: clip;
}

.lekala-page *,
.lekala-page *::before,
.lekala-page *::after { box-sizing: border-box; }
.lekala-page main { display: block; }
.lekala-page h1,
.lekala-page h2,
.lekala-page h3,
.lekala-page p,
.lekala-page ol,
.lekala-page ul { margin-top: 0; }
.lekala-page button,
.lekala-page input,
.lekala-page select,
.lekala-page textarea { font: inherit; }

.lekala-main {
  min-width: 0;
  background:
    radial-gradient(circle at 87% 4%, rgba(12, 181, 99, .14), transparent 24rem),
    var(--lekala-bg);
  font-family: Montserrat, Arial, sans-serif;
}

.lekala-breadcrumbs,
.lekala-hero,
.lekala-request,
.lekala-packages,
.lekala-examples,
.lekala-order,
.lekala-for-pro,
.lekala-process,
.lekala-control,
.lekala-films,
.lekala-terms,
.lekala-faq,
.lekala-final {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.lekala-breadcrumbs {
  padding-top: 32px;
  font-family: Lato, Arial, sans-serif;
}
.lekala-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--gray-500, #5b5b5b);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}
.lekala-breadcrumbs li {
  display: flex;
  align-items: center;
  margin: 0 6px 0 0;
  padding: 0;
  counter-increment: none;
}
.lekala-breadcrumbs li:last-child { margin-right: 0; }
.lekala-breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: currentColor;
}
.lekala-breadcrumbs li::before { content: none; display: none; }
.lekala-breadcrumbs a {
  color: inherit;
  text-decoration: none;
  transition: color .3s ease;
}
.lekala-breadcrumbs a:hover { color: var(--gray-300, #b1b1b1); }
.lekala-breadcrumbs a:focus-visible {
  outline: 2px solid var(--gray-300, #b1b1b1);
  outline-offset: 3px;
}

.lekala-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  padding: 72px 0 112px;
}
.lekala-kicker {
  margin-bottom: 18px;
  color: var(--lekala-green);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.lekala-hero h1,
.lekala-section-heading h2,
.lekala-for-pro h2,
.lekala-control h2,
.lekala-final h2 {
  font-family: DelaGothicOne, Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.lekala-hero h1 {
  max-width: 800px;
  margin-bottom: 26px;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: .98;
  letter-spacing: -.02em;
}
.lekala-hero__lead {
  max-width: 760px;
  margin-bottom: 26px;
  color: #d7d5d7;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}
.lekala-hero__facts {
  display: grid;
  gap: 10px;
  padding: 0;
  margin-bottom: 34px;
  list-style: none;
  color: var(--lekala-muted);
  font-size: 15px;
  line-height: 1.45;
}
.lekala-hero__facts li { position: relative; padding-left: 27px; }
.lekala-hero__facts li::before {
  content: "";
  position: absolute;
  top: .52em;
  left: 0;
  width: 13px;
  height: 7px;
  border: solid var(--lekala-green);
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}
.lekala-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.lekala-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.lekala-button--primary { background: var(--lekala-green); color: #07150e; }
.lekala-button--primary:hover { background: var(--lekala-green-hover); color: #07150e; transform: translateY(-2px); }
.lekala-button--secondary { border-color: var(--lekala-line); background: transparent; color: var(--lekala-text); }
.lekala-button--secondary:hover { border-color: var(--lekala-green); color: var(--lekala-text); }
.lekala-button:focus-visible,
.lekala-video-toggle:focus-visible,
.lekala-modal__close:focus-visible,
.lekala-page summary:focus-visible,
.lekala-page input:focus-visible,
.lekala-page select:focus-visible,
.lekala-page textarea:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.lekala-hero-media {
  position: relative;
  width: min(100%, 390px);
  margin: 0;
  justify-self: end;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(12, 181, 99, .36);
  border-radius: 30px;
  background: #171a18;
  box-shadow: 0 36px 90px rgba(0, 0, 0, .42);
  isolation: isolate;
}
.lekala-hero-media::before {
  content: "";
  position: absolute;
  top: 22px;
  right: -34px;
  z-index: 2;
  width: 96px;
  height: 4px;
  border-radius: 999px;
  background: var(--lekala-green);
  transform: rotate(45deg);
  pointer-events: none;
}
.lekala-hero-video {
  display: block;
  width: 100%;
  aspect-ratio: 714 / 1280;
  border-radius: 21px;
  background: #0b0c0b;
  object-fit: cover;
}
.lekala-video-toggle {
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  background: rgba(15, 12, 15, .82);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
  backdrop-filter: blur(10px);
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.lekala-video-toggle::before {
  content: "▶";
  margin-left: 3px;
  font-size: 17px;
  line-height: 1;
}
.lekala-video-toggle.is-playing::before {
  content: "Ⅱ";
  margin-left: 0;
  font-size: 16px;
  letter-spacing: -.18em;
  transform: translateX(-1px);
}
.lekala-video-toggle:hover {
  border-color: var(--lekala-green);
  background: rgba(12, 181, 99, .9);
  color: #07150e;
  transform: translateY(-2px);
}
.lekala-hero-media figcaption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  background: rgba(15, 12, 15, .84);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .26);
  backdrop-filter: blur(12px);
}
.lekala-hero-media figcaption span {
  display: block;
  margin-bottom: 5px;
  color: var(--lekala-green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.lekala-request {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
  padding: 96px clamp(24px, 5vw, 72px);
  border-radius: 30px;
  background: var(--lekala-light);
  color: var(--lekala-ink);
}
.lekala-section-heading { max-width: 800px; margin: 0 auto 50px; text-align: center; }
.lekala-section-heading--left { margin-inline: 0; text-align: left; }
.lekala-section-heading h2,
.lekala-for-pro h2,
.lekala-control h2,
.lekala-final h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
}
.lekala-section-heading > p:last-child,
.lekala-for-pro__intro > p:last-child,
.lekala-final > p {
  margin-bottom: 0;
  color: var(--lekala-muted);
  font-size: 17px;
  line-height: 1.65;
}
.lekala-request .lekala-kicker { color: #087b44; }
.lekala-request .lekala-section-heading > p:last-child { color: #555055; }

.lekala-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.lekala-form__trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.lekala-field,
.lekala-form__group { min-width: 0; margin: 0; }
.lekala-field--wide,
.lekala-form__group--wide { grid-column: 1 / -1; }
.lekala-field > span,
.lekala-form__group legend {
  display: block;
  margin-bottom: 9px;
  color: #373337;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}
.lekala-form__group { padding: 0; border: 0; }
.lekala-choice-row { display: flex; flex-wrap: wrap; gap: 10px; }
.lekala-choice-row label { cursor: pointer; }
.lekala-choice-row input { position: absolute; opacity: 0; pointer-events: none; }
.lekala-choice-row span {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid #d5d0d5;
  border-radius: 12px;
  background: #fff;
  color: #373337;
  font-size: 14px;
  font-weight: 700;
}
.lekala-choice-row input:checked + span { border-color: #087b44; background: #e3f7ed; color: #07542f; }
.lekala-choice-row input:focus-visible + span { outline: 3px solid var(--lekala-ink); outline-offset: 3px; }
.lekala-field input,
.lekala-field select,
.lekala-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d5d0d5;
  border-radius: 12px;
  background: #fff;
  color: var(--lekala-ink);
  outline: 0;
}
.lekala-field input,
.lekala-field select { height: 52px; padding: 0 14px; }
.lekala-field textarea { display: block; min-height: 116px; resize: vertical; padding: 14px; }
.lekala-field input:focus,
.lekala-field select:focus,
.lekala-field textarea:focus { border-color: #087b44; box-shadow: 0 0 0 4px rgba(12,181,99,.13); }
.lekala-field [aria-invalid="true"] { border-color: #b3261e; }
.lekala-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #514c51;
  font-size: 13px;
  line-height: 1.5;
}
.lekala-consent input { flex: 0 0 20px; width: 20px; height: 20px; margin: 0; accent-color: var(--lekala-green); }
.lekala-consent input {
  display: grid;
  border: 1px solid #8d878d;
  border-radius: 5px;
  appearance: none;
  -webkit-appearance: none;
  place-content: center;
  background: #fff;
  cursor: pointer;
}
.lekala-consent input::before {
  width: 10px;
  height: 6px;
  border: solid #fff;
  border-width: 0 0 2px 2px;
  content: "";
  opacity: 0;
  transform: rotate(-45deg) scale(.7);
  transition: opacity .15s ease, transform .15s ease;
}
.lekala-consent input:checked { border-color: #087b44; background: #087b44; }
.lekala-consent input:checked::before { opacity: 1; transform: rotate(-45deg) scale(1); }
.lekala-consent a { color: #075e35; }
.lekala-form__footer { display: grid; justify-items: start; gap: 12px; }
.lekala-form__footer p { max-width: 560px; margin: 0; color: #6b656b; font-size: 12px; line-height: 1.5; }
.lekala-form__message { display: none; width: 100%; padding: 12px 14px; border-radius: 10px; font-size: 14px; line-height: 1.45; }
.lekala-form__message.is-loading,
.lekala-form__message.is-success,
.lekala-form__message.is-error { display: block; }
.lekala-form__message.is-loading { background: #e8ecea; color: #373337; }
.lekala-form__message.is-success { background: #d9f4e7; color: #07542f; }
.lekala-form__message.is-error { background: #fbe1df; color: #7f1d18; }
.lekala-form__submit:disabled { opacity: .65; cursor: wait; transform: none; }
.lekala-field > span small {
  color: #6b656b;
  font-size: 11px;
  font-weight: 600;
}
.lekala-required {
  margin-left: .16em;
  color: #087b44;
  font-size: 1em;
  font-weight: 800;
}
.lekala-field__count {
  display: block;
  margin-top: 7px;
  color: #6b656b;
  font-size: 11px;
  line-height: 1.3;
  text-align: right;
}

body.lekala-modal-open { overflow: hidden; }
.lekala-modal[hidden] { display: none !important; }
.lekala-modal {
  position: fixed;
  z-index: 2147483000;
  inset: 0;
  display: grid;
  overflow-y: auto;
  padding: 24px;
  place-items: center;
  font-family: Montserrat, Arial, sans-serif;
}
.lekala-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 4, 5, .8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lekala-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: calc(100svh - 48px);
  padding: 42px;
  overflow-y: auto;
  border: 1px solid rgba(12, 181, 99, .34);
  border-radius: 24px;
  color: var(--lekala-ink);
  background:
    radial-gradient(circle at 96% 2%, rgba(12, 181, 99, .14), transparent 32%),
    var(--lekala-light);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .58);
}
.lekala-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #d5d0d5;
  border-radius: 50%;
  place-items: center;
  color: var(--lekala-ink);
  background: rgba(255, 255, 255, .72);
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}
.lekala-modal__close:hover {
  border-color: #087b44;
  background: #fff;
  transform: translateY(-1px);
}
.lekala-modal__close:focus-visible,
.lekala-modal input:focus-visible,
.lekala-modal textarea:focus-visible {
  outline-color: #087b44;
}
.lekala-modal__title {
  max-width: 540px;
  margin: 0 56px 0 0;
  color: var(--lekala-ink);
  font-family: DelaGothicOne, Arial, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}
.lekala-modal__lead {
  max-width: 560px;
  margin: 16px 0 0;
  color: #555055;
  font-size: 15px;
  line-height: 1.6;
}
.lekala-modal-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.lekala-modal-form .lekala-consent,
.lekala-modal-form .lekala-form__message,
.lekala-modal-form .lekala-form__submit { grid-column: 1 / -1; }
.lekala-modal-form .lekala-form__submit { width: 100%; }
.lekala-modal-form .lekala-form__message { margin: 0; }
.lekala-modal.is-open .lekala-modal__dialog { animation: lekala-modal-in .2s ease-out both; }
@keyframes lekala-modal-in {
  from { opacity: 0; transform: translateY(12px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.lekala-packages,
.lekala-process,
.lekala-faq { padding: 112px 0; }
.lekala-hero + .lekala-packages { padding-top: 0; }
.lekala-package-list {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border-top: 1px solid var(--lekala-line);
}
.lekala-package-list article {
  grid-column: span 4;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 32px 28px;
  border-right: 1px solid var(--lekala-line);
  border-bottom: 1px solid var(--lekala-line);
}
.lekala-package-list article:nth-child(3n) { border-right: 0; }
.lekala-package-list article > span { color: var(--lekala-green); font-size: 12px; font-weight: 800; }
.lekala-package-list h3 { margin: 42px 0 14px; font-size: 24px; line-height: 1.2; }
.lekala-package-list p { margin-bottom: 0; color: var(--lekala-muted); font-size: 14px; line-height: 1.6; }

.lekala-examples { padding: 0 0 112px; }
.lekala-examples__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--lekala-line);
  border-left: 1px solid var(--lekala-line);
}
.lekala-examples figure {
  min-width: 0;
  margin: 0;
  padding: 18px;
  border-right: 1px solid var(--lekala-line);
  border-bottom: 1px solid var(--lekala-line);
  background: #121012;
}
.lekala-examples img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--lekala-surface);
}
.lekala-examples figcaption {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding: 18px 4px 4px;
  color: var(--lekala-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}
.lekala-examples figcaption span {
  color: var(--lekala-green);
  font-size: 12px;
  font-weight: 800;
}

.lekala-order { padding: 0 0 112px; }
.lekala-order__shell {
  padding: clamp(38px, 6vw, 76px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 34px;
  background: #191719;
  box-shadow:
    -18px -18px 44px rgba(255, 255, 255, .035),
    22px 22px 54px rgba(0, 0, 0, .56);
}
.lekala-order__heading {
  max-width: 900px;
  margin-bottom: 42px;
}
.lekala-order__heading h2 {
  margin-bottom: 20px;
  font-family: DelaGothicOne, Arial, sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.06;
  text-transform: uppercase;
}
.lekala-order__heading p {
  max-width: 760px;
  margin-bottom: 0;
  color: #c9c6c9;
  font-size: 17px;
  line-height: 1.65;
}
.lekala-order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.lekala-order-form .lekala-field > span { color: #f3f1f3; }
.lekala-order-form .lekala-field > span small,
.lekala-order-form .lekala-field__count { color: #aaa5aa; }
.lekala-order-form .lekala-required { color: #4ee49b; }
.lekala-order-form .lekala-field input,
.lekala-order-form .lekala-field textarea {
  border-color: rgba(255, 255, 255, .15);
  background: #191719;
  color: #fff;
  box-shadow:
    inset 5px 5px 12px rgba(0, 0, 0, .58),
    inset -5px -5px 12px rgba(255, 255, 255, .035);
}
.lekala-order-form .lekala-field input::placeholder,
.lekala-order-form .lekala-field textarea::placeholder { color: #8f898f; opacity: 1; }
.lekala-order-form .lekala-field input:focus,
.lekala-order-form .lekala-field textarea:focus {
  border-color: var(--lekala-green);
  box-shadow:
    inset 4px 4px 10px rgba(0, 0, 0, .52),
    inset -4px -4px 10px rgba(255, 255, 255, .035),
    0 0 0 4px rgba(12, 181, 99, .18);
}
.lekala-order-form .lekala-field [aria-invalid="true"] { border-color: #ff7b73; }
.lekala-order-form .lekala-consent {
  grid-column: 1 / -1;
  color: #d0ccd0;
}
.lekala-order-form .lekala-consent input {
  border-color: rgba(255, 255, 255, .34);
  background: #191719;
  box-shadow:
    inset 3px 3px 7px rgba(0, 0, 0, .6),
    inset -3px -3px 7px rgba(255, 255, 255, .04);
}
.lekala-order-form .lekala-consent input:checked {
  border-color: var(--lekala-green);
  background: var(--lekala-green);
  box-shadow: 0 0 0 3px rgba(12, 181, 99, .16);
}
.lekala-order-form .lekala-consent a { color: #5ae8a4; }
.lekala-order-form .lekala-form__message,
.lekala-order-form .lekala-form__submit { grid-column: 1 / -1; }
.lekala-order-form .lekala-form__message { margin: 0; }
.lekala-order-form .lekala-form__message.is-loading { background: #2b292b; color: #f1eef1; }
.lekala-order-form .lekala-form__message.is-success { background: #123d29; color: #bff5d9; }
.lekala-order-form .lekala-form__message.is-error { background: #49201d; color: #ffd1cd; }
.lekala-order-form .lekala-form__submit {
  width: min(100%, 360px);
  margin-top: 4px;
  border-color: #18cf74;
  box-shadow:
    -8px -8px 20px rgba(255, 255, 255, .04),
    10px 10px 24px rgba(0, 0, 0, .48);
}
.lekala-order-form .lekala-form__submit:hover {
  box-shadow:
    -6px -6px 16px rgba(255, 255, 255, .045),
    8px 8px 18px rgba(0, 0, 0, .44);
}
.lekala-order-form .lekala-form__submit:active {
  transform: translateY(0);
  box-shadow:
    inset 3px 3px 8px rgba(0, 0, 0, .25),
    inset -2px -2px 7px rgba(255, 255, 255, .12);
}

.lekala-for-pro {
  padding: 92px clamp(24px, 5vw, 72px);
  background: var(--lekala-surface);
}
.lekala-for-pro__heading {
  max-width: 900px;
  margin: 0 auto 64px;
  text-align: center;
}
.lekala-for-pro__heading h2 { margin-bottom: 20px; }
.lekala-for-pro__heading p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--lekala-muted);
  font-size: 17px;
  line-height: 1.65;
}
.lekala-for-pro__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(52px, 7vw, 88px);
  align-items: stretch;
}
.lekala-for-pro__list {
  display: grid;
  align-content: stretch;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--lekala-line);
}
.lekala-for-pro__list > li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--lekala-line);
}
.lekala-for-pro__icon {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(12, 181, 99, .42);
  border-radius: 12px;
  place-items: center;
  color: var(--lekala-green);
  background: rgba(12, 181, 99, .09);
}
.lekala-for-pro__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}
.lekala-for-pro__item-copy { display: block; min-width: 0; }
.lekala-for-pro__item-copy strong {
  display: block;
  margin: 1px 0 7px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}
.lekala-for-pro__item-copy span {
  display: block;
  color: var(--lekala-muted);
  font-size: 14px;
  line-height: 1.6;
}
.lekala-for-pro__media {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--lekala-line);
  border-radius: 26px;
  background: #111;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .42);
}
.lekala-for-pro__media::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 7, 6, .78) 100%);
  content: "";
  pointer-events: none;
}
.lekala-for-pro__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
}
.lekala-for-pro__media figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.lekala-process__steps { padding: 0; margin-bottom: 0; list-style: none; border-top: 1px solid var(--lekala-line); }
.lekala-process__steps li { display: grid; grid-template-columns: 110px 1fr; gap: 30px; align-items: start; padding: 34px 0; border-bottom: 1px solid var(--lekala-line); counter-increment: none; }
.lekala-process__steps > li::before { content: none; display: none; }
.lekala-process__steps > li > span { color: var(--lekala-green); font-family: DelaGothicOne, Arial, sans-serif; font-size: 28px; }
.lekala-process__steps h3 { padding-top: 0; margin-bottom: 10px; font-size: 24px; }
.lekala-process__steps p { max-width: 760px; margin-bottom: 0; color: var(--lekala-muted); font-size: 15px; line-height: 1.6; }

.lekala-control {
  padding: 112px 0 56px;
}
.lekala-control__columns { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.lekala-control__columns article { padding-top: 24px; border-top: 2px solid var(--lekala-green); }
.lekala-control__columns h3 { padding-top: 0; margin-bottom: 14px; font-size: 22px; }
.lekala-control__columns p { margin-bottom: 0; color: var(--lekala-muted); font-size: 14px; line-height: 1.65; }

.lekala-films { padding: 112px 0 56px; }
.lekala-films .lekala-section-heading { max-width: 920px; }
.lekala-films .lekala-section-heading a {
  color: var(--lekala-green);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.lekala-films .lekala-section-heading a:hover { color: var(--lekala-green-hover); }
.lekala-films .lekala-section-heading a:focus-visible,
.lekala-film-card:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.lekala-films__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.lekala-film-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 18px;
  background: #191719;
  color: var(--lekala-text);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}
.lekala-film-card:hover {
  border-color: rgba(12, 181, 99, .72);
  background: #1d1b1d;
  transform: translateY(-4px);
}
.lekala-film-card:active { transform: translateY(-1px); }
.lekala-film-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #101010;
}
.lekala-film-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.lekala-film-card:hover .lekala-film-card__media img { transform: scale(1.025); }
.lekala-film-card__body {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  flex-direction: column;
  padding: 22px 20px 20px;
}
.lekala-film-card__kicker {
  margin-bottom: 7px;
  color: #928d92;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}
.lekala-film-card__title {
  padding-top: 0;
  margin-bottom: 12px;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
}
.lekala-film-card__lead {
  min-height: 2.7em;
  margin-bottom: 13px;
  color: var(--lekala-green);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}
.lekala-film-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 15px;
}
.lekala-film-card__specs > span {
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: #e4e1e4;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}
.lekala-film-card__desc {
  margin-bottom: 22px;
  color: var(--lekala-muted);
  font-size: 13px;
  line-height: 1.6;
}
.lekala-film-card__more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  color: var(--lekala-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.lekala-film-card__more > span {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  place-items: center;
  background: var(--lekala-green);
  color: #06140d;
  font-size: 20px;
  transition: background-color .2s ease;
}
.lekala-film-card:hover .lekala-film-card__more > span { background: var(--lekala-green-hover); }

.lekala-terms { padding: 112px 0 56px; }
.lekala-terms__table-wrap {
  border-radius: 18px;
  background: var(--lekala-surface);
}
.lekala-terms__table {
  width: 100%;
  border-collapse: collapse;
  color: var(--lekala-text);
  table-layout: fixed;
}
.lekala-terms__table caption {
  padding: 20px 24px;
  border-bottom: 1px solid var(--lekala-line);
  color: var(--lekala-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
}
.lekala-terms__table th,
.lekala-terms__table td {
  padding: 22px 24px;
  border-right: 1px solid var(--lekala-line);
  border-bottom: 1px solid var(--lekala-line);
  text-align: left;
  vertical-align: middle;
}
.lekala-terms__table tr > :last-child { border-right: 0; }
.lekala-terms__table tbody tr:last-child > * { border-bottom: 0; }
.lekala-terms__table thead th {
  background: rgba(255, 255, 255, .035);
  color: #d9d5d9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.35;
  text-transform: uppercase;
}
.lekala-terms__table tbody th {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}
.lekala-terms__table td {
  color: var(--lekala-muted);
  font-size: 14px;
  line-height: 1.5;
}
.lekala-terms__table td strong {
  color: var(--lekala-green);
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}
.lekala-page .lekala-terms__note {
  max-width: 860px;
  margin: 18px 0 44px;
  color: #8f8a8f;
  font-size: 12px;
  line-height: 1.55;
}
.lekala-terms__columns { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.lekala-terms__columns article { padding-top: 24px; border-top: 2px solid var(--lekala-green); }
.lekala-terms__columns h3 { padding-top: 0; margin-bottom: 14px; font-size: 22px; }
.lekala-terms__columns p { margin-bottom: 0; color: var(--lekala-muted); font-size: 14px; line-height: 1.65; }

.lekala-faq__list { border-top: 1px solid var(--lekala-line); }
.lekala-faq details { border-bottom: 1px solid var(--lekala-line); }
.lekala-faq summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 2px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}
.lekala-faq summary::-webkit-details-marker { display: none; }
.lekala-faq summary::after { content: "+"; flex: 0 0 auto; color: var(--lekala-green); font-size: 30px; font-weight: 400; }
.lekala-faq details[open] summary::after { content: "−"; }
.lekala-faq details > div { max-width: 860px; padding: 0 52px 24px 2px; }
.lekala-faq details p { margin-bottom: 0; color: var(--lekala-muted); font-size: 15px; line-height: 1.7; }

.lekala-final {
  margin-bottom: 112px;
  padding: 88px clamp(24px, 7vw, 96px);
  border: 1px solid rgba(12,181,99,.45);
  background: linear-gradient(120deg, #141814, #111011);
  text-align: center;
}
.lekala-final h2 { max-width: 900px; margin-inline: auto; }
.lekala-final > p { max-width: 690px; margin: 0 auto 30px; }

@media (max-width: 1000px) {
  .lekala-hero { grid-template-columns: 1fr; padding-top: 56px; }
  .lekala-hero-media { justify-self: center; }
  .lekala-request { grid-template-columns: 1fr; }
  .lekala-request .lekala-section-heading { max-width: 760px; }
  .lekala-package-list article { grid-column: span 6; }
  .lekala-package-list article:nth-child(3n) { border-right: 1px solid var(--lekala-line); }
  .lekala-package-list article:nth-child(2n) { border-right: 0; }
  .lekala-control__columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lekala-films__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .lekala-breadcrumbs,
  .lekala-hero,
  .lekala-request,
  .lekala-packages,
  .lekala-examples,
  .lekala-order,
  .lekala-for-pro,
  .lekala-process,
  .lekala-control,
  .lekala-films,
  .lekala-terms,
  .lekala-faq,
  .lekala-final { width: min(100% - 28px, 1240px); }
  .lekala-hero { gap: 46px; padding: 46px 0 76px; }
  .lekala-hero h1 { font-size: clamp(34px, 10.8vw, 48px); line-height: 1.03; }
  .lekala-actions { align-items: stretch; }
  .lekala-actions .lekala-button { width: 100%; }
  .lekala-hero-media { border-radius: 24px; padding: 8px; }
  .lekala-hero-video { border-radius: 17px; }
  .lekala-video-toggle { top: 22px; right: 22px; }
  .lekala-hero-media figcaption { right: 22px; bottom: 22px; left: 22px; }
  .lekala-request,
  .lekala-for-pro { padding: 68px 20px; border-radius: 22px; }
  .lekala-for-pro__shell { grid-template-columns: 1fr; gap: 48px; }
  .lekala-for-pro__media {
    width: min(560px, 100%);
    aspect-ratio: 4 / 4.7;
    justify-self: center;
  }
  .lekala-form { grid-template-columns: 1fr; }
  .lekala-field--wide,
  .lekala-form__group--wide { grid-column: auto; }
  .lekala-choice-row { display: grid; grid-template-columns: 1fr; }
  .lekala-choice-row span { justify-content: flex-start; }
  .lekala-form__submit { width: 100%; }
  .lekala-modal { padding: 14px; align-items: end; }
  .lekala-modal__dialog {
    width: 100%;
    max-height: calc(100svh - 28px);
    padding: 34px 20px 24px;
    border-radius: 22px;
  }
  .lekala-modal__close { top: 12px; right: 12px; }
  .lekala-modal__title { margin-right: 48px; font-size: 28px; }
  .lekala-modal__lead { margin-top: 12px; }
  .lekala-modal-form { grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
  .lekala-modal-form .lekala-consent,
  .lekala-modal-form .lekala-form__message,
  .lekala-modal-form .lekala-form__submit { grid-column: auto; }
  .lekala-packages,
  .lekala-examples,
  .lekala-order,
  .lekala-process,
  .lekala-faq { padding: 82px 0; }
  .lekala-examples { padding-top: 0; }
  .lekala-order { padding-top: 0; }
  .lekala-order__shell { padding: 44px 20px; border-radius: 22px; }
  .lekala-order__heading { margin-bottom: 30px; }
  .lekala-order__heading p { font-size: 15px; }
  .lekala-order-form { grid-template-columns: 1fr; gap: 18px; }
  .lekala-order-form .lekala-consent,
  .lekala-order-form .lekala-form__message,
  .lekala-order-form .lekala-form__submit { grid-column: auto; }
  .lekala-order-form .lekala-form__submit { width: 100%; }
  .lekala-section-heading { margin-bottom: 38px; }
  .lekala-package-list article,
  .lekala-package-list article:nth-child(n) { grid-column: 1 / -1; min-height: 245px; border-right: 0; }
  .lekala-examples__grid { grid-template-columns: 1fr; }
  .lekala-examples figure { padding: 12px; }
  .lekala-examples figcaption { padding: 16px 4px 5px; }
  .lekala-for-pro__heading { margin-bottom: 48px; }
  .lekala-for-pro__heading p { font-size: 15px; line-height: 1.55; }
  .lekala-for-pro__list > li { grid-template-columns: 40px minmax(0, 1fr); gap: 13px; padding: 18px 0; }
  .lekala-for-pro__icon { width: 38px; height: 38px; border-radius: 10px; }
  .lekala-for-pro__icon svg { width: 20px; height: 20px; }
  .lekala-for-pro__item-copy strong { margin-bottom: 5px; font-size: 16px; }
  .lekala-for-pro__item-copy span { font-size: 13px; line-height: 1.55; }
  .lekala-for-pro__media { border-radius: 20px; }
  .lekala-for-pro__media figcaption { right: 18px; bottom: 17px; left: 18px; font-size: 10px; }
  .lekala-process__steps li { grid-template-columns: 64px 1fr; gap: 18px; padding: 28px 0; }
  .lekala-process__steps > li > span { font-size: 21px; }
  .lekala-process__steps h3 { font-size: 20px; }
  .lekala-control,
  .lekala-films,
  .lekala-terms { padding-top: 82px; }
  .lekala-control__columns { grid-template-columns: 1fr; }
  .lekala-films__grid { grid-template-columns: 1fr; }
  .lekala-film-card__lead { min-height: 0; }
  .lekala-terms__columns { grid-template-columns: 1fr; }
  .lekala-terms__table-wrap { overflow: visible; border: 0; border-radius: 0; background: transparent; }
  .lekala-terms__table,
  .lekala-terms__table caption,
  .lekala-terms__table tbody,
  .lekala-terms__table tr,
  .lekala-terms__table th,
  .lekala-terms__table td { display: block; width: 100%; }
  .lekala-terms__table { table-layout: auto; }
  .lekala-terms__table caption {
    display: block;
    width: 100%;
    padding: 0 0 14px;
    border-bottom: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
  }
  .lekala-terms__table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .lekala-terms__table tbody tr {
    padding: 18px;
    margin-bottom: 12px;
    border: 1px solid var(--lekala-line);
    border-radius: 14px;
    background: var(--lekala-surface);
  }
  .lekala-terms__table tbody th {
    padding: 0 0 14px;
    border: 0;
    background: transparent;
    color: var(--lekala-green);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
  }
  .lekala-terms__table td {
    display: grid;
    grid-template-columns: minmax(104px, .85fr) minmax(0, 1.15fr);
    gap: 12px;
    padding: 7px 0;
    border: 0;
    font-size: 13px;
    line-height: 1.5;
  }
  .lekala-terms__table td::before {
    content: attr(data-label);
    color: #9e999e;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
  }
  .lekala-terms__table td strong { font-size: 14px; font-weight: 700; line-height: 1.5; white-space: normal; }
  .lekala-page .lekala-terms__note { margin-bottom: 38px; }
  .lekala-faq summary { min-height: 70px; font-size: 16px; }
  .lekala-faq details > div { padding-right: 20px; }
  .lekala-final { margin-bottom: 82px; padding: 64px 20px; }
}

@media (max-width: 390px) {
  .lekala-kicker { font-size: 11px; }
  .lekala-hero h1 { font-size: 32px; }
  .lekala-order__heading h2 { font-size: clamp(19px, 6vw, 24px); line-height: 1.15; }
  .lekala-section-heading h2,
  .lekala-for-pro h2,
  .lekala-control h2,
  .lekala-final h2 { font-size: 28px; }
  .lekala-hero-media figcaption { font-size: 12px; }
}

@media (max-width: 340px) {
  .lekala-terms__table td {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 8px 0;
  }
}

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