

:root {

  --thm-brand: #c2272d;
  --thm-brand-dark: #a32126;
  --thm-brand-tint: #fbf2f2;
  --thm-brand-tint-2: #f5dcdd;
  --thm-navy: #003e65;
  --thm-navy-deep: #003251;

  --thm-ink: #000000;
  --thm-body: #2b2b2b;
  --thm-muted: #5f6b78;
  --thm-on-dark: #ffffff;
  --thm-on-dark-soft: rgba(255, 255, 255, 0.82);

  --thm-surface: #ffffff;
  --thm-line: #e8e8e8;

  --thm-fs-hero: 50px;
  --thm-fs-h2: 40px;
  --thm-fs-h3: 22px;
  --thm-fs-eyebrow: 18px;

  --thm-fs-body: 14px;
  --thm-lh-body: 24px;
  --thm-fs-btn: 14px;

  --thm-radius-card: 10px;
  --thm-radius-lg: 20px;
  --thm-radius-pill: 19.5px;
  --thm-shadow-card: 0 4px 15.7px 0 rgba(0, 0, 0, 0.25);
  --thm-shadow-soft: 0 4px 20px 0 rgba(0, 62, 101, 0.1);
  --thm-container: 1137px;
  --thm-section-y: 80px;
  --thm-lh-heading: 1.3;
}

@media (min-width: 1600px) {
  :root {
    --thm-fs-body: 16px;
    --thm-lh-body: 28px;
    --thm-fs-btn: 15px;
  }
}

.thm {

  --thm-font-display: var(--font-plex), "IBM Plex Sans", system-ui, sans-serif;
  --thm-font-text: var(--font-inter), "Inter", system-ui, sans-serif;

  font-family: var(--thm-font-text);
  font-size: var(--thm-fs-body);
  font-weight: 400;
  line-height: var(--thm-lh-body);
  color: var(--thm-body);
  overflow-x: clip;
}

.thm :where(p) {
  font-family: var(--thm-font-text);
  font-size: var(--thm-fs-body);
  font-weight: 400;
  line-height: var(--thm-lh-body);
  margin-bottom: 14px;
}

.thm :where(h1, h2, h3, h4, h5, h6) {
  font-family: var(--thm-font-display);
  font-weight: 600;
  line-height: var(--thm-lh-heading);
  color: var(--thm-ink);
  margin: 0;
}

.thm a {
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.thm img {
  max-width: 100%;
}

.thm-container {
  width: 100%;
  max-width: calc(var(--thm-container) + 32px);
  margin-inline: auto;
  padding-inline: 16px;
}

@media (min-width: 576px)  { :root { --thm-container: 540px; } }
@media (min-width: 768px)  { :root { --thm-container: 720px; } }
@media (min-width: 992px)  { :root { --thm-container: 960px; } }
@media (min-width: 1200px) { :root { --thm-container: 1137px; } }
@media (min-width: 1600px) { :root { --thm-container: 1320px; } }

.thm-section {
  position: relative;
  padding-block: var(--thm-section-y);
}

.thm-dark {
  background-color: var(--thm-navy);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  color: var(--thm-on-dark);
}

.thm-dark :where(h1, h2, h3, h4, h5, h6) {
  color: var(--thm-on-dark);
}

.thm-dark :where(p) {
  color: var(--thm-on-dark-soft);
}

.thm-wave-top,
.thm-wave-bottom {
  background-color: transparent;
}

.thm-wave-top {
  padding-top: calc(var(--thm-section-y) + 70px);
}

.thm-wave-bottom {
  padding-bottom: calc(var(--thm-section-y) + 70px);
}

.thm-sunburst {
  position: absolute;
  top: 0;
  z-index: 0;
  display: block;
  width: 145px;
  height: 148px;
  background-color: #ffffff;
  -webkit-mask: url("/theme/images/deco-sunburst.webp") no-repeat 0 0 / 100% 100%;
  mask: url("/theme/images/deco-sunburst.webp") no-repeat 0 0 / 100% 100%;
  pointer-events: none;
  user-select: none;
}

.thm-sunburst--left {
  left: 0;
  transform: scaleX(-1);
}

.thm-sunburst--right {
  right: 0;
}

.thm-footer .thm-sunburst {
  width: 290px;
  height: 296px;
}

.thm-flowlines {
  position: absolute;
  top: 0;
  z-index: 0;
  width: 46.875%;
  height: auto;
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
}

.thm-flowlines--right {
  left: 53.125%;
}

.thm-flowlines--right-inset {
  left: 46.875%;
}

.thm-flowlines--left {
  left: 0;
  transform: scaleX(-1);
}

.thm-dark > .thm-container,
.thm-hero > .thm-container,
.thm-footer > .thm-container,
.thm-footer > .thm-footer__bar {
  position: relative;
  z-index: 1;
}

.thm-eyebrow {
  display: block;
  font-family: var(--thm-font-display);
  font-weight: 500;
  font-size: var(--thm-fs-eyebrow);
  line-height: 1.3;
  color: var(--thm-brand);
  text-transform: capitalize;
  margin-bottom: 6px;
}

.thm-dark .thm-eyebrow {
  color: var(--thm-on-dark);
}

.thm-title {
  font-size: var(--thm-fs-h2);
  font-weight: 600;
  line-height: var(--thm-lh-heading);
  text-transform: capitalize;
}

.thm-divider {
  display: flex;
  width: 79px;
  align-items: center;
  gap: 1px;
  margin: 18px 0 20px;
}

.thm-divider::before,
.thm-divider::after {
  content: "";
  height: 6px;
  border-radius: 20px;
}

.thm-divider::before {
  width: 62px;
  background: var(--thm-brand);
}

.thm-divider::after {
  width: 16px;
  background: var(--thm-navy);
}

.thm-dark .thm-divider::after {
  background: var(--thm-on-dark);
}

.thm-divider--center {
  margin-inline: auto;
}

.thm-head--center {
  text-align: center;
  max-width: 1000px;
  margin-inline: auto;
}

.thm-title-wrap {
  position: relative;
  display: inline-block;
}

.thm-quill {
  width: 82px;
  height: 82px;
  object-fit: contain;
  vertical-align: middle;
  margin-left: 4px;
}

.thm-btn {
  --thm-btn-bg: var(--thm-brand);
  --thm-btn-fg: #ffffff;
  --thm-btn-ring: rgba(255, 255, 255, 0.9);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 26px;
  font-family: var(--thm-font-text);
  font-size: var(--thm-fs-btn);
  line-height: 1;
  white-space: nowrap;
  color: var(--thm-btn-fg);
  background: var(--thm-btn-bg);
  border: 0;
  border-radius: var(--thm-radius-pill);
  cursor: pointer;
  isolation: isolate;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.thm-btn::before {
  content: "";
  position: absolute;
  inset: 4.5px 6.5px;
  z-index: -1;
  border: 2px solid var(--thm-btn-ring);
  border-radius: var(--thm-radius-pill);
  pointer-events: none;
}

.thm-btn::after {
  content: "";
  position: absolute;
  left: 6.5px;
  right: 6.5px;
  top: 50%;
  z-index: -1;
  height: 11px;
  transform: translateY(-50%);
  background: var(--thm-btn-bg);
  pointer-events: none;
}

.thm-btn:hover {
  background: var(--thm-brand-dark);
  color: var(--thm-btn-fg);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(194, 39, 45, 0.32);
}

.thm-btn:focus-visible {
  outline: 2px solid var(--thm-navy);
  outline-offset: 3px;
}

.thm-btn--outline {
  --thm-btn-bg: var(--thm-brand);
  --thm-btn-fg: #ffffff;
  --thm-btn-ring: rgba(255, 255, 255, 0.95);
}

.thm-btn--invert {
  --thm-btn-bg: #ffffff;
  --thm-btn-fg: var(--thm-brand);
  --thm-btn-ring: var(--thm-brand);
}

.thm-btn--invert:hover {
  background: #fff5f2;
  color: var(--thm-brand);
}

.thm-btn--block {
  width: 100%;
}

.thm-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.thm-btn-row--center {
  justify-content: center;
}

.thm-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--thm-fs-btn);
  font-weight: 500;
  color: var(--thm-brand);
}

.thm-link img,
.thm-link svg {
  width: 13px;
  height: 16px;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.thm-link:hover {
  color: var(--thm-brand-dark);
}

.thm-link:hover img,
.thm-link:hover svg {
  transform: rotate(90deg) translateY(-4px);
}

.thm-scroll {
  position: relative;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 16px;

  scrollbar-width: none;
}

.thm-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.thm-scroll::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  border-radius: 2px;

  background: linear-gradient(
    to bottom,
    var(--thm-scroll-track, #acacac) 0 29%,
    var(--thm-brand) 29% 100%
  );
}

.lp-plan .thm-scroll::after {
  background: linear-gradient(
    to bottom,
    var(--thm-brand) 0 79%,
    #707070 79% 100%
  );
}

.thm-testi .thm-scroll::after {
  background: linear-gradient(
    to bottom,
    var(--thm-brand) 0 74%,
    var(--thm-scroll-track, #c2c2c2) 74% 100%
  );
}

.thm-card {
  position: relative;
  height: 100%;
  background: var(--thm-surface);
  border-radius: var(--thm-radius-card);
  box-shadow: var(--thm-shadow-card);
  padding: 26px 24px;
}

.thm-card__title {
  font-size: var(--thm-fs-h3);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--thm-ink);
}

.thm-card__text {
  color: var(--thm-body);
  margin-bottom: 14px;
}

.thm-card__icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 16px;
}

.thm-topbar {
  background: var(--thm-navy);
  color: #fff;
  font-size: 12px;
  line-height: 36px;
}

.thm-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 36px;
}

.thm-topbar a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 12px;
}

.thm-topbar a:hover {
  color: var(--thm-brand-tint-2);
}

.thm-topbar img {
  width: 20px;
  height: 20px;
}

.thm-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0, 62, 101, 0.08);
}

.thm-header,
.thm-header .thm-container {
  overflow: visible;
}

.thm-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 71px;

  padding-left: 156px;
}

.thm-brand {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 132px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.thm-brand img {
  width: 104px;
  height: 104px;
  object-fit: contain;
}

@media (hover: hover) {
  .thm-brand:hover img {
    transform: scale(1.03);
  }

  .thm-brand img {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.lp-header__logo {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
  .lp-header a:hover .lp-header__logo {
    transform: scale(1.04);
  }
}

.thm-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.thm-nav > li {
  position: relative;
}

.thm-nav a {
  font-family: var(--thm-font-text);
  font-size: 14px;
  color: var(--thm-navy);
  text-transform: capitalize;
  white-space: nowrap;
}

.thm-nav a:hover,
.thm-nav a.is-active {
  color: var(--thm-brand);
}

.thm-nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--thm-font-text);
  font-size: 14px;
  color: var(--thm-navy);
  cursor: pointer;
}

.thm-nav__toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.thm-nav__item--open > .thm-nav__toggle,
.thm-nav__toggle:hover {
  color: var(--thm-brand);
}

.thm-nav__item--open > .thm-nav__toggle::after {
  transform: rotate(225deg) translateY(-2px);
}

.thm-mega {
  position: absolute;
  top: calc(100% + 14px);

  --thm-mega-bridge: 18px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(560px, 84vw);
  background: #fff;
  border-radius: var(--thm-radius-card);
  box-shadow: var(--thm-shadow-soft);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  list-style: none;
  margin: 0;
  z-index: 20;
}

.thm-mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: var(--thm-mega-bridge);
}

.thm-nav__item--open .thm-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

@media (hover: hover) and (min-width: 992px) {
  .thm-nav > li:hover > .thm-mega,
  .thm-nav > li:focus-within > .thm-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .thm-nav > li:hover > .thm-nav__toggle,
  .thm-nav > li:focus-within > .thm-nav__toggle {
    color: var(--thm-brand);
  }

  .thm-nav > li:hover > .thm-nav__toggle::after,
  .thm-nav > li:focus-within > .thm-nav__toggle::after {
    transform: rotate(225deg) translateY(-2px);
  }
}

@media (min-width: 992px) {
  .thm-nav > li:hover .thm-mega,
  .thm-nav > li:focus-within .thm-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

.thm-mega a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--thm-navy);
}

.thm-mega a:hover,
.thm-mega a.is-active {
  background: var(--thm-brand-tint);
  color: var(--thm-brand);
}

.thm-header__aside {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 0 auto;
  margin-left: auto;
}

.thm-chat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--thm-navy);
}

.thm-chat img {
  width: 20px;
  height: 20px;
}

.thm-chat span {
  display: block;
  font-size: 14px;
  line-height: 1.3;
  text-transform: capitalize;
}

.thm-chat strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
}

.thm-burger {
  display: none;
  width: 42px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: var(--thm-brand);
  cursor: pointer;
  position: relative;
}

.thm-burger span,
.thm-burger::before,
.thm-burger::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.thm-burger::before {
  top: 12px;
}

.thm-burger span {
  top: 18px;
}

.thm-burger::after {
  top: 24px;
}

.thm-burger[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.thm-burger[aria-expanded="true"] span {
  opacity: 0;
}

.thm-burger[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.thm-hero {
  position: relative;
  background-image: url("/theme/images/hero-bg.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  color: #fff;
  padding-block: 76px 118px;
  overflow: hidden;
}

.thm-hero .thm-container {
  max-width: 1412px;
}

.thm-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 325px minmax(0, 674px) 325px;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.thm-hero__content {
  text-align: center;
}

.thm-hero__title {
  font-size: var(--thm-fs-hero);
  font-weight: 600;
  line-height: var(--thm-lh-heading);
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 18px;
}

.thm-hero__text {
  color: var(--thm-on-dark-soft);
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 26px;
}

.thm-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 28px;
}

.thm-trust img {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.thm-hero__books {
  position: relative;
  height: 442px;
  width: 325px;
}

.thm-hero__books img {
  position: absolute;
  width: 135px;
  height: 199px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
}

.thm-hero__books img:nth-child(1) { left: 0;     top: 0; }
.thm-hero__books img:nth-child(2) { left: 169px; top: 30px; }
.thm-hero__books img:nth-child(3) { left: 21px;  top: 213px; }
.thm-hero__books img:nth-child(4) { left: 190px; top: 243px; }

.thm-hero__books--right img:nth-child(1) { left: 190px; top: 0; }
.thm-hero__books--right img:nth-child(2) { left: 21px;  top: 30px; }
.thm-hero__books--right img:nth-child(3) { left: 169px; top: 213px; }
.thm-hero__books--right img:nth-child(4) { left: 0;     top: 243px; }

.thm-about {
  padding-block: var(--thm-section-y);
}

.thm-about__grid {
  position: relative;
  display: grid;

  grid-template-columns: 50.66% minmax(0, 1fr);
  align-items: center;
}

.thm-about__grid--flip {
  direction: rtl;
}

.thm-about__grid--flip > * {
  direction: ltr;
}

.thm-about__grid--flip .thm-about__card {
  margin-left: 0;
  margin-right: -40px;
}

.thm-about__media {
  position: relative;
  z-index: 1;
  border-radius: var(--thm-radius-lg);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 576 / 628;
}

.thm-about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thm-about__card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: var(--thm-radius-card);
  box-shadow: var(--thm-shadow-card);
  padding: 44px 26px 40px;
  margin-left: -40px;
}

.thm-about__card .thm-quill {
  position: absolute;
  top: 6px;
  right: 26px;
}

.thm-checks {
  list-style: none;
  margin: 22px 0 26px;
  padding: 0;
  display: grid;
  gap: 9px;
}

.thm-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 23px;
  color: var(--thm-ink);
}

.thm-checks img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 3px;
}

.thm-services__grid {
  position: relative;
  display: grid;

  grid-template-columns: 48.72% minmax(0, 1fr);
  gap: 5.45%;
  align-items: center;
}

.thm-services__slider {
  position: relative;
}

.thm-services__cards {
  display: flex;
  gap: 25px;
  align-items: stretch;

  min-height: 517px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding-block: 4px;
}

.thm-services__col {
  flex: 0 0 calc(50% - 12.5px);
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 25px;
  scroll-snap-align: start;
}

.thm-services__cards .thm-card {
  height: 100%;
  min-height: 0;
}

.thm-services__cards .thm-card__text {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
}

.thm-services__cards::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.thm-services__cards .thm-card {
  min-height: 246px;
  display: flex;
  flex-direction: column;
  padding: 21px 24px 20px;
}

.thm-services__cards .thm-card__icon {
  flex: 0 0 auto;
  width: 60px;
  height: 55px;
  margin-bottom: 10px;
}

.thm-services__cards .thm-card__title {
  flex: 0 0 auto;
  min-height: 58px;
  margin-bottom: 5px;
}

.thm-services__cards .thm-card__text {

  flex: 1 1 auto;
  min-height: calc(var(--thm-lh-body) * 2);
  margin-bottom: 0;
}

.thm-services__cards .thm-link {
  flex: 0 0 auto;
  margin-top: auto;
}

.thm-services__slider .thm-arrow--prev { left: -52px; }
.thm-services__slider .thm-arrow--next { right: -52px; }

@media (max-width: 1399.98px) {
  .thm-services__slider .thm-arrow--prev { left: -18px; }
  .thm-services__slider .thm-arrow--next { right: -18px; }
}

@media (max-width: 991.98px) {
  .thm-services__slider .thm-arrow--prev { left: -6px; }
  .thm-services__slider .thm-arrow--next { right: -6px; }
}

.thm-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s ease, transform 0.2s ease;
}

.thm-arrow img {
  width: 100%;
  height: 100%;
}

.thm-arrow:hover {
  transform: translateY(-50%) scale(1.08);
}

.thm-arrow--prev { left: -8px; }
.thm-arrow--next { right: -8px; }

.thm-portfolio__strip .thm-arrow--prev { left: 0; }
.thm-portfolio__strip .thm-arrow--next { right: 0; }

@media (min-width: 1250px) {
  .thm-portfolio__strip .thm-arrow--prev { left: -44px; }
  .thm-portfolio__strip .thm-arrow--next { right: -44px; }
}

.thm-arrow--prev img {
  transform: scaleX(-1);
}

.thm-portfolio {
  padding-block: 70px;
}

.thm-portfolio__strip {
  position: relative;
  margin-top: 34px;
}

.thm-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  margin-top: 46px;
}

.thm-step {
  background: #fff;
  border-radius: var(--thm-radius-card);
  box-shadow: var(--thm-shadow-card);
  min-height: 311px;
  padding: 22px 22px 26px;
}

.thm-step__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.thm-step__icon {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.thm-step__num {
  font-family: var(--thm-font-display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  color: var(--thm-brand);
}

.thm-step__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--thm-ink);
  margin-bottom: 10px;
}

.thm-step p {
  color: var(--thm-body);
  margin: 0;
}

.thm-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-top: 36px;
  align-items: stretch;
}

.thm-plan {
  background: var(--thm-brand-tint);
  border-radius: var(--thm-radius-lg);
  min-height: 605px;
  padding: 30px 28px 32px;
  height: 100%;
}

.thm-plan__title {
  font-size: var(--thm-fs-h3);
  font-weight: 600;
  color: var(--thm-ink);
  margin-bottom: 14px;
}

.thm-plan p {
  color: var(--thm-body);
}

.thm-plan__actions {
  display: grid;
  gap: 12px;
  margin: 22px 0 26px;
}

.thm-plan__rule {
  height: 1px;
  background: rgba(194, 39, 45, 0.35);
  margin-bottom: 22px;
}

.thm-plan__features-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--thm-ink);
}

.thm-plan__inherits {
  margin: -6px 0 12px;
  font-size: 14px;
  font-style: italic;
  color: var(--thm-muted, #5b6b78);
}

.thm-plan--featured .thm-plan__inherits {
  color: rgba(255, 255, 255, 0.82);
}

.thm-plan__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.thm-plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--thm-fs-body);
  line-height: 21px;
  color: var(--thm-body);
}

.thm-plan__features img {
  width: 16px;
  flex: 0 0 16px;
  margin-top: 3px;
}

.thm-plan--featured {
  background: var(--thm-brand);
}

.thm-plan--featured .thm-plan__title,
.thm-plan--featured .thm-plan__features-title {
  color: #fff;
}

.thm-plan--featured p,
.thm-plan--featured .thm-plan__features li {
  color: rgba(255, 255, 255, 0.94);
}

.thm-plan--featured .thm-plan__rule {
  background: rgba(255, 255, 255, 0.45);
}

.thm-why__grid {
  position: relative;
  display: grid;

  grid-template-columns: 46.53% minmax(0, 1fr);
  gap: 2.64%;
  align-items: start;
}

.thm-why__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.thm-why__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--thm-radius-card);
  box-shadow: var(--thm-shadow-card);

  min-height: 245px;
  margin: 28px 0 0 20px;
  padding: 52px 13px 38px;
}

.thm-why__icon {
  position: absolute;
  top: -28px;
  left: -20px;
  width: 66px;
  height: 71px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
}

.thm-why__card h3 {
  flex: 0 0 auto;
  min-height: 58px;
  font-size: var(--thm-fs-h3);
  font-weight: 600;
  line-height: 1.3;
  color: var(--thm-ink);
  margin-bottom: 5px;
}

.thm-why__card p {
  flex: 1 1 auto;
  min-height: calc(var(--thm-lh-body) * 4);
  color: var(--thm-body);
  margin: 0;
}

.thm-why__media {
  border-radius: var(--thm-radius-lg);
  overflow: hidden;
  box-shadow: var(--thm-shadow-card);
  aspect-ratio: 576 / 376;
}

.thm-why__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thm-why__intro {
  margin-bottom: 26px;
}

.thm-why__intro .thm-title {
  color: #fff;
  margin-bottom: 14px;
}

.thm-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 19px;
  align-items: start;
  margin-top: 36px;
}

.thm-faq__col {
  display: grid;
  gap: 12px;
  align-content: start;
}

.thm-acc {
  background: #fff;
  border: 1px solid var(--thm-line);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.thm-acc__btn {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 8px 8px 27px;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--thm-font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--thm-ink);
  text-transform: capitalize;
}

.thm-acc__sign {
  position: relative;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 8px;

  background: var(--thm-brand-tint-2);
  transition: background 0.2s ease;
}

.thm-acc__sign::before,
.thm-acc__sign::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--thm-brand);
  transform: translate(-50%, -50%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}

.thm-acc__sign::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.thm-acc.is-open .thm-acc__sign::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.thm-acc__btn:hover .thm-acc__sign {
  background: var(--thm-brand-tint);
}

.thm-acc__body {
  padding: 0 27px 22px;
  color: var(--thm-body);
}

.thm-acc__body p {
  margin: 0;
}

.thm-testi__viewport {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  margin-top: 24px;

  overflow: hidden;
  padding-top: 52px;}

.thm-testi__viewport::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.thm-testi__track {
  --thm-testi-gap: 25px;
  display: flex;
  align-items: flex-start;
  gap: var(--thm-testi-gap);
  width: max-content;
  padding-inline: 38px;
  will-change: transform;
}

@keyframes thm-testi-run {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-50% - var(--thm-testi-gap) / 2 - 38px), 0, 0); }
}

.thm-testi {
  position: relative;
  flex: 0 0 min(283px, 78vw);
  background: #fff;
  border-radius: var(--thm-radius-card);
  box-shadow: var(--thm-shadow-card);
  min-height: 238px;
  padding: 60px 22px 16px 21px;
  margin-top: 29px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
}

.thm-testi__track > *:nth-child(even) {
  margin-top: 0;
}

.thm-testi__avatar {
  position: absolute;
  top: -46px;
  left: 21px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.thm-testi p {
  --thm-scroll-track: #c2c2c2;
  flex: 1 1 auto;
  min-height: calc(var(--thm-lh-body) * 5);
  color: var(--thm-body);
  margin: 0 0 12px;
}

.thm-testi__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.thm-testi__name {
  display: block;
  min-width: 0;
  font-family: var(--thm-font-display);

  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--thm-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.thm-testi__stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  padding-bottom: 3px;
}

.thm-testi__stars img {
  width: 20px;
  height: 19px;
}

.thm-dots {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 46px;
}

.thm-dots button {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: none;
  line-height: 0;
  cursor: pointer;
}

.thm-dots span {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--thm-brand);
  opacity: 0.2;
  transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.thm-dots span.is-active {
  width: 24px;
  height: 24px;
  opacity: 1;
}

.thm-contact__card {
  background: #fff;
  border-radius: var(--thm-radius-lg);
  box-shadow: var(--thm-shadow-card);
  padding: 43px 20px 30px;
  margin-top: 36px;
}

.thm-field {
  width: 100%;
  height: 38px;
  padding: 0 16px;
  font-family: var(--thm-font-text);
  font-size: var(--thm-fs-body);
  color: var(--thm-ink);
  background: #fff;
  border: 1px solid rgba(194, 39, 45, 0.55);
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.thm-field::placeholder {
  color: #6f6f6f;
}

.thm-field:focus {
  outline: 0;
  border-color: var(--thm-brand);
  box-shadow: 0 0 0 3px rgba(194, 39, 45, 0.14);
}

textarea.thm-field {
  height: 134px;
  padding: 10px 16px;
  resize: vertical;
}

.thm-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.thm-form__grid > .thm-form__full {
  grid-column: 1 / -1;
}

.thm-consent {
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  color: var(--thm-body);
  margin: 22px auto 20px;
  max-width: 940px;
}

.thm-form__msg {
  text-align: center;
  font-size: 13px;
  margin-top: 14px;
}

.thm-form__msg--error { color: #c02a12; }
.thm-form__msg--ok { color: #1c7c3f; }

.thm-footer {
  position: relative;
  background-image: url("/theme/images/footer-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  color: #fff;
  padding-top: 128px;
  overflow: hidden;
}

.thm-footer__grid {
  display: grid;

  grid-template-columns: minmax(0, 344fr) minmax(0, 278fr) minmax(0, 95fr) minmax(0, 238fr);
  gap: 61px;
}

.thm-footer__logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 50%;
  padding: 5px;
}

.thm-footer p {
  color: var(--thm-on-dark-soft);
}

.thm-footer h4 {
  font-size: var(--thm-fs-h3);
  font-weight: 500;
  color: #fff;
  margin-bottom: 18px;
}

.thm-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.thm-footer__links--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
}

.thm-footer__links a {
  font-size: var(--thm-fs-body);
  color: var(--thm-on-dark-soft);
}

.thm-footer__links a:hover {
  color: var(--thm-brand);
}

.thm-contactlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.thm-contactlist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.thm-contactlist img {
  width: 18px;
  height: auto;
  flex: 0 0 18px;
  margin-top: 3px;
}

.thm-contactlist a,
.thm-contactlist span {
  font-size: var(--thm-fs-body);
  line-height: 21px;
  color: var(--thm-on-dark-soft);
}

.thm-contactlist a:hover {
  color: var(--thm-brand);
}

.thm-trustrow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
  margin-top: 52px;
}

.thm-trustrow__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.thm-trustrow__item img {
  width: 52px;
  flex: 0 0 52px;
  object-fit: contain;
}

.thm-trustrow__item h5 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.thm-trustrow__item p {
  margin: 0;
  font-size: var(--thm-fs-body);
}

.thm-pay {
  text-align: center;
}

.thm-pay h5 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.thm-pay__icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.thm-pay__icons img {
  height: 30px;
  width: auto;
  background: #fff;
  border-radius: 4px;
  padding: 3px 6px;
  object-fit: contain;
}

.thm-badges {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.thm-badges__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 421px;
  max-width: 100%;
  height: 42px;
  background: var(--thm-brand);
  border-radius: 12px;
}

.thm-badges__pill img {
  width: 399px;
  max-width: calc(100% - 22px);
  height: 36px;
  object-fit: contain;
}

.thm-footer__bar {
  background: var(--thm-brand);
  margin-top: 40px;
  padding-block: 14px;
}

.thm-footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: var(--thm-fs-body);
  color: #fff;
}

.thm-footer__bar a {
  color: #fff;
  text-decoration: underline;
  margin-left: 18px;
}

.thm-footer__bar a:hover {
  opacity: 0.85;
}

.thm-raildots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.thm-raildots button {
  display: inline-flex;
  align-items: center;
  padding: 6px 2px;
  border: 0;
  background: none;
  line-height: 0;
  cursor: pointer;
}

.thm-raildots span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--thm-brand);
  opacity: 0.25;
  transition: opacity 0.2s ease, width 0.2s ease;
}

.thm-raildots span.is-active {
  width: 22px;
  border-radius: 4px;
  opacity: 1;
}

.thm-dark .thm-raildots span {
  background: #fff;
}

.thm-dark .thm-raildots span.is-active {
  background: var(--thm-brand);
  opacity: 1;
}

.thm-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1199.98px) {
  .thm-about__grid,
  .thm-services__grid,
  .thm-why__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .thm-about__media {
    width: 100%;
  }

  .thm-services__cards .thm-card,
  .thm-step,
  .thm-plan,
  .thm-why__card {
    min-height: 0;
  }

  .thm-chat {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  :root {
    --thm-fs-hero: 40px;
    --thm-fs-h2: 32px;
    --thm-section-y: 72px;
  }

  .thm-hero__grid {
    grid-template-columns: 240px minmax(0, 1fr) 240px;
  }

  .thm-hero__books {
    width: 240px;
    height: 340px;
  }

  .thm-hero__books img {
    width: 104px;
    height: 153px;
  }

  .thm-hero__books img:nth-child(1) { left: 0;     top: 0; }
  .thm-hero__books img:nth-child(2) { left: 126px; top: 24px; }
  .thm-hero__books img:nth-child(3) { left: 16px;  top: 164px; }
  .thm-hero__books img:nth-child(4) { left: 142px; top: 188px; }

  .thm-hero__books--right img:nth-child(1) { left: 142px; top: 0; }
  .thm-hero__books--right img:nth-child(2) { left: 16px;  top: 24px; }
  .thm-hero__books--right img:nth-child(3) { left: 126px; top: 164px; }
  .thm-hero__books--right img:nth-child(4) { left: 0;     top: 188px; }

  .thm-nav {
    gap: 18px;
  }

  .thm-services__grid {
    gap: 34px;
  }

}

@media (max-width: 991.98px) {
  :root {
    --thm-fs-hero: 34px;
    --thm-fs-h2: 28px;
    --thm-fs-h3: 20px;
    --thm-fs-eyebrow: 16px;
    --thm-section-y: 58px;
  }

  .thm-burger {
    display: inline-block;
    margin-left: auto;
  }

  .thm-header__aside {
    display: none;
  }

  .thm-brand {
    position: static;
    width: auto;
    height: auto;
    padding-top: 0;
    background: none;
    border-radius: 0;

    box-shadow: none;
  }

  .thm-brand img {
    width: auto;
    height: 62px;
  }

  .thm-header__inner {
    flex-wrap: wrap;

    column-gap: 12px;
    row-gap: 0;
    align-content: center;
    padding-block: 10px;

    padding-left: 16px;
  }

  .thm-header__aside {
    flex-basis: 100%;
    margin-left: 0;
    justify-content: stretch;
  }

  .thm-header__aside .thm-btn {
    flex: 1;
  }

  .thm-nav {
    order: 4;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }

  .thm-nav.is-open {
    max-height: 90vh;
    overflow-y: auto;
    margin-top: 12px;
    padding-bottom: 14px;
  }

  .thm-nav > li {
    border-top: 1px solid var(--thm-line);
  }

  .thm-nav > li > a,
  .thm-nav__toggle {
    display: flex;
    width: 100%;
    padding: 13px 2px;
    justify-content: space-between;
  }

  .thm-mega {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    padding: 0 0 10px 12px;
    grid-template-columns: 1fr;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: max-height 0.25s ease;
  }

  .thm-nav__item--open .thm-mega {
    transform: none;
    max-height: 640px;
  }

  .thm-header__aside {
    gap: 12px;
  }

  .thm-chat {
    display: none;
  }

  .thm-hero {
    padding-block: 48px 110px;
  }

  .thm-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .thm-hero__books {
    display: none;
  }

  .thm-trust {
    gap: 20px;
  }

  .thm-trust img {
    height: 20px;
  }

  .thm-about__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .thm-about__media {
    aspect-ratio: 16 / 10;
  }

  .thm-about__card {
    margin-left: 0;
    margin-top: -34px;
    width: calc(100% - 24px);
    margin-inline: auto;
    padding: 32px 26px;
  }

  .thm-about__grid--flip {
    direction: ltr;
  }

  .thm-about__grid--flip .thm-about__card {
    margin-right: auto;
    margin-left: auto;
  }

  .thm-services__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .thm-arrow {
    display: none;
  }

  .thm-swipe.thm-swipe {
    display: flex;
    grid-template-columns: none;
    align-items: stretch;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-inline: -16px;

    padding: 4px 7% 4px;
    scroll-padding-inline: 7%;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
  }

  .thm-swipe.thm-swipe::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .thm-swipe.thm-swipe > * {
    flex: 0 0 86%;
    scroll-snap-align: center;
    margin-left: 0;
  }

  .thm-why__cards.thm-swipe.thm-swipe {
    padding-left: calc(7% + 20px);
  }

  .thm-step,
  .thm-plan {
    height: auto;
  }

  .thm-why__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .thm-faq__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .thm-footer {
    padding-top: 96px;
    background-image:
      url("/theme/images/footer-bg.webp"),
      linear-gradient(var(--thm-navy), var(--thm-navy));
    background-repeat: no-repeat, no-repeat;
    background-position: top center, bottom center;
    background-size: 100% auto, 100% calc(100% - 3.2vw);
  }

  .thm-pay__icons {
    flex-wrap: nowrap;
    gap: 6px;
  }

  .thm-pay__icons img {
    height: 26px;
    min-width: 0;
    padding: 2px 4px;
  }

  .thm-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thm-trustrow {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .thm-pay {
    text-align: left;
  }

  .thm-pay__icons {
    justify-content: flex-start;
  }

  .thm-badges {
    justify-content: flex-start;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .thm-swipe.thm-swipe > * {
    flex: 0 0 46%;
  }

  .thm-plans.thm-swipe.thm-swipe > * {
    flex: 0 0 60%;
  }
}

@media (max-width: 575.98px) {
  :root {
    --thm-fs-hero: 28px;
    --thm-fs-h2: 24px;
    --thm-section-y: 46px;
  }

  .thm-topbar__inner {
    justify-content: center;
    padding-block: 4px;
  }

  .thm-topbar .thm-topbar__mail {
    display: none;
  }

  .thm-topbar {
    line-height: 1.6;
  }

  .thm-quill {
    width: 54px;
    height: 54px;
  }

  .thm-about__card {
    padding: 26px 20px;
  }

  .thm-plans.thm-swipe.thm-swipe > * {
    flex: 0 0 90%;
  }

  .thm-form__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .thm-contact__card {
    padding: 28px 20px 26px;
  }

  .thm-footer__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .thm-footer__links--split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thm-footer__bar-inner {
    justify-content: center;
    text-align: center;
  }

  .thm-footer__bar a {
    margin: 0 9px;
  }

  .thm-btn-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .thm-btn-row .thm-btn {
    width: 100%;
    padding: 0 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thm *,
  .thm *::before,
  .thm *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

.thm-contactinfo__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.thm-contactinfo__card {
  background: #fff;
  border-radius: var(--thm-radius-card);
  box-shadow: var(--thm-shadow-card);
  padding: 30px 26px;
  text-align: center;
}

.thm-contactinfo__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--thm-brand-tint);
  margin-bottom: 16px;
}

.thm-contactinfo__card h3 {
  font-size: var(--thm-fs-h3);
  font-weight: 600;
  margin-bottom: 8px;
}

.thm-contactinfo__card a {
  font-size: var(--thm-fs-body);
  line-height: var(--thm-lh-body);
  color: var(--thm-body);
}

.thm-contactinfo__card a:hover {
  color: var(--thm-brand);
}

@media (max-width: 767.98px) {
  .thm-contactinfo__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.thm-process--light .thm-eyebrow {
  color: var(--thm-ink);
}

.thm-portfolio__cta {
  margin-top: 34px;
}

.lp-header {
  position: relative;
  z-index: 3;
  background: transparent;
}

.lp-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 84px;
  padding-block: 12px;
}

.lp-header__brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 116px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

.lp-header__logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.lp-header__aside {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.lp-chat,
.lp-chat strong {
  color: #fff;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 26px;
  font-family: var(--thm-font-text);
  font-size: 14px;
  line-height: 1;
  color: #fff;
  background: var(--thm-brand);
  border: 0;
  border-radius: 53px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-btn:hover {
  background: var(--thm-brand-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(194, 39, 45, 0.32);
}

.lp-btn--sm {
  min-height: 38px;
  padding: 0 20px;
  font-size: 13px;
}

.lp-btn--light {
  background: #fff;
  color: var(--thm-navy);
  font-weight: 600;
}

.lp-btn--light:hover {
  background: var(--thm-brand);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.lp-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.lp-topbar {

  background: var(--thm-navy);
  color: #fff;
  font-size: 12px;
  line-height: 36px;
}

.lp-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 36px;
}

.lp-topbar a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #fff;
}

.lp-topbar a:hover {
  opacity: 0.85;
}

.lp-topbar img {
  width: 24px;
  height: 24px;
}

.lp-form {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  background: transparent;
  border: 3px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
}

.lp-form__inner {
  padding: 22px 34px 30px;
}

.lp-form__title {
  font-family: var(--thm-font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.lp-form__title em {
  font-style: normal;
  color: var(--thm-brand);
}

.lp-field {
  display: block;
  width: 100%;
  height: 38px;
  margin-bottom: 15px;
  padding: 0 14px;
  font-family: var(--thm-font-text);
  font-size: 14px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 5px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-field::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.lp-field:focus {
  outline: 0;
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

.lp-field--area {
  height: 95px;
  padding: 10px 14px;

  resize: none;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.55) transparent;
}

.lp-field--area::-webkit-scrollbar {
  width: 4px;
}

.lp-field--area::-webkit-scrollbar-track {
  background: transparent;
}

.lp-field--area::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 4px;
}

.lp-form__submit {
  width: 100%;
  margin-top: 6px;
  font-size: 16px;
}

.lp-form .thm-form__msg {
  color: #fff;
  text-align: center;
}

.lp-hero {
  position: relative;
  background-color: var(--thm-navy);
  background-image: url("/theme/images/hero-bg.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  color: #fff;
  overflow: hidden;
}

.lp-hero__grid {
  display: grid;

  grid-template-columns: minmax(0, 608fr) minmax(0, 500fr);
  gap: 3%;
  align-items: center;

  padding-block: 92px 96px;
}

.lp-hero__eyebrow {
  display: block;
  font-family: var(--thm-font-display);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 10px;
}

.lp-hero__title {
  font-family: var(--thm-font-display);
  font-size: 45px;
  font-weight: 700;
  line-height: 1.22;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.lp-hero__title em {
  font-style: normal;
  color: var(--thm-brand);
}

.lp-hero__text {
  font-size: 14px;
  line-height: 24px;
  color: var(--thm-on-dark-soft);
  margin-bottom: 26px;
}

.lp-logos__head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.lp-logos__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 15px;
  margin-top: 34px;
}

.lp-logos__tile {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 177 / 109;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  padding: 16px;
}

.lp-logos__tile img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lp-title--upper {
  text-transform: uppercase;
}

.lp-about__head {
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 44px;
}

.lp-btn-row--center {
  justify-content: center;
}

.lp-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.lp-btn--ghost:hover {
  background: #fff;
  color: var(--thm-brand);
}

.lp-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.lp-about__sub {
  font-size: var(--thm-fs-h2);
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lp-about__features {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.lp-about__features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.lp-about__features img {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  object-fit: contain;
}

.lp-about__features h4 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 4px;
}

.lp-about__features p {
  margin: 0;
}

.lp-about__book img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.lp-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  margin-bottom: 40px;
}

.lp-services__grid > *:nth-child(even) {
  margin-top: 42px;
}

.lp-svccard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 239px;
  padding: 26px 18px;
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--thm-shadow-card);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-svccard p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--thm-muted, #5b6b78);
}

.lp-svccard img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.lp-svccard h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--thm-ink);
}

@media (hover: hover) {
  .lp-svccard:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  }
}

.lp-process__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 46px;
}

.lp-process__grid::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 7.48%;
  right: 14.25%;
  height: 2px;
  background-image: repeating-linear-gradient(
    to right,
    var(--thm-brand) 0 4px,
    transparent 4px 8px
  );
  z-index: 0;
}

.lp-step {
  position: relative;
  z-index: 1;
}

.lp-step__disc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--thm-brand);
  margin-bottom: 26px;
}

.lp-step__disc img {
  width: 49px;
  height: 49px;
  object-fit: contain;
}

.lp-step__num {
  display: block;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--thm-body);
  margin-bottom: 4px;
}

.lp-step h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lp-portfolio__rail {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
}

.lp-portfolio__track {
  --lp-cover: 248px;
  --lp-gap: 22px;
  display: flex;
  gap: var(--lp-gap);
  width: max-content;

  margin-left: calc(var(--lp-cover) * -0.319);
  will-change: transform;
}

@keyframes lp-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-50% - var(--lp-gap) / 2), 0, 0); }
}

.lp-portfolio__cover {
  flex: 0 0 var(--lp-cover);
  margin: 0;
}

.lp-portfolio__cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 248 / 410;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.lp-portfolio__cover:hover img {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.5);
}

.lp-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.lp-plan {
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--thm-shadow-card);
}

.lp-plan__top {
  background: var(--thm-brand-tint);
  border-radius: 0 0 50% 50% / 0 0 46% 46%;
  padding: 30px 28px 46px;
  text-align: center;
}

.lp-plan__top h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lp-plan__top p {
  margin: 0;
}

.lp-plan--featured .lp-plan__top {
  background: var(--thm-brand);
}

.lp-plan--featured .lp-plan__top h3,
.lp-plan--featured .lp-plan__top p {
  color: #fff;
}

.lp-plan__body {
  padding: 24px 28px 28px;
}

.lp-plan__body h4 {
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lp-plan__inherits {
  margin: -6px 0 10px;
  font-size: 14px;
  font-style: italic;
  opacity: 0.78;
}

.lp-plan__list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 8px;
  max-height: calc(var(--thm-lh-body) * 11);
}

.lp-plan__list li {
  position: relative;
  padding-left: 26px;
  line-height: var(--thm-lh-body);
}

.lp-plan__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.5em;
  width: 14px;
  height: 12px;
  background-color: #003e65;
  -webkit-mask: url("/theme/images/lp-pricing-03.svg") no-repeat center / 100% 100%;
  mask: url("/theme/images/lp-pricing-03.svg") no-repeat center / 100% 100%;
}

.lp-plan__cta {
  width: 100%;
}

.lp-lit__ring {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 30px;
}

.lp-lit__circle {
  display: none;
}

.lp-lit__item {
  text-align: center;
}

.lp-lit__disc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 103px;
  height: 103px;
  border-radius: 50%;
  background: var(--thm-brand);
  margin-bottom: 18px;
}

.lp-lit__disc img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.lp-lit__txt h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lp-lit__txt p {
  margin: 0;
}

@media (min-width: 1200px) {
  .lp-lit__ring {
    display: block;
    aspect-ratio: 1137 / 560;
    margin-top: 26px;
  }

  .lp-lit__circle {
    display: block;
    position: absolute;
    left: 32.9%;
    top: 25.89%;
    width: 34.3%;
    aspect-ratio: 1;
    background: url("/theme/images/lp-literature-09.svg") no-repeat center / 100% 100%;
  }

  .lp-lit__item {
    position: absolute;
    width: 9.059%;
    aspect-ratio: 1;
    text-align: left;
  }

  .lp-lit__disc {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    margin: 0;
  }

  .lp-lit__disc img {
    width: 54.4%;
    height: 54.4%;
  }

  .lp-lit__txt {
    position: absolute;
    top: -5.44%;
    left: 125.24%;
    width: 300.97%;
  }

  .lp-lit__txt h3 {
    font-size: 22px;
  }

  .lp-lit__item--1 { left: 45.47%; top: 18.82%; }
  .lp-lit__item--2 { left: 58.13%; top: 29.11%; }
  .lp-lit__item--3 { left: 61.57%; top: 56.61%; }
  .lp-lit__item--4 { left: 52.77%; top: 79.29%; }
  .lp-lit__item--5 { left: 38.7%;  top: 79.29%; }
  .lp-lit__item--6 { left: 29.64%; top: 55.54%; }
  .lp-lit__item--7 { left: 32.37%; top: 29.11%; }

  .lp-lit__item--1 .lp-lit__txt {
    left: -109.71%;
    top: -102.33%;
    width: 318.45%;
    text-align: center;
  }

  .lp-lit__item--4 .lp-lit__txt { top: 36.89%; width: 302.91%; }

  .lp-lit__item--5 .lp-lit__txt {
    left: -343.69%;
    top: 36.89%;
    width: 318.45%;
    text-align: right;
  }

  .lp-lit__item--6 .lp-lit__txt {
    left: -321.36%;
    top: 0;
    width: 296.12%;
    text-align: right;
  }

  .lp-lit__item--7 .lp-lit__txt {
    left: -343.69%;
    width: 318.45%;
    text-align: right;
  }
}

.lp-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 635fr) minmax(0, 434fr);
  gap: 60px;
  align-items: center;
}

.lp-faq__list {
  display: grid;
  gap: 14px;
}

.lp-acc {
  background: #fff;
  border: 1px solid var(--thm-line);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.lp-acc__btn {
  width: 100%;
  min-height: 59px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 10px 48px 10px 40px;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--thm-font-text);
  font-size: 14px;
  text-transform: uppercase;
  color: var(--thm-ink);
}

.lp-acc__sign {
  position: relative;
  flex: 0 0 31px;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--thm-brand);
}

.lp-acc__sign::before,
.lp-acc__sign::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}

.lp-acc__sign::before { width: 13px; height: 2px; }
.lp-acc__sign::after  { width: 2px; height: 13px; }

.lp-acc.is-open .lp-acc__sign::after { opacity: 0; }

.lp-acc__body {
  padding: 0 48px 18px 40px;
  color: var(--thm-body);
}

@media (max-width: 991.98px) {
  .lp-acc__btn {
    gap: 12px;
    padding: 12px 16px;
  }

  .lp-acc__body {
    padding: 0 16px 16px;
  }
}

@media (max-width: 575.98px) {
  .lp-acc__btn {
    padding: 11px 14px;
    font-size: 13px;
  }

  .lp-acc__sign {
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
  }

  .lp-acc__sign::before { width: 11px; }
  .lp-acc__sign::after  { height: 11px; }

  .lp-acc__body {
    padding: 0 14px 14px;
  }
}

.lp-acc__body p { margin: 0; }

.lp-faq__art img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.lp-testi__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.lp-tcard {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 266px;
  margin-top: 17px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--thm-shadow-card);
  padding: 26px 35px 19px;
  text-align: center;
}

.lp-tcard__quote {
  position: absolute;
  left: 50%;
  top: -17px;
  width: 46px;
  height: 33px;
  transform: translateX(-50%);
  background: url("/theme/images/lp-testi-08.svg") no-repeat center / 100% 100%;
}

.lp-tcard__stars {
  --lp-stars: 5;
  display: block;
  width: calc(132px * var(--lp-stars) / 5);
  height: 19px;
  margin: 0 auto 10px;
  background: url("/theme/images/lp-testi-07.svg") no-repeat left center / 132px 19px;
}

.lp-tcard p {
  flex: 1 1 auto;
  min-height: 0;
  color: var(--thm-body);
  margin: 0 0 16px;
}

.lp-tcard__foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: left;
}

.lp-tcard__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.lp-tcard__foot strong {
  display: block;
  font-family: var(--thm-font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--thm-ink);
}

.lp-tcard__foot span {
  font-size: 12px;
  color: var(--thm-muted);
}

.lp-consult__grid {
  display: grid;
  grid-template-columns: minmax(0, 541fr) minmax(0, 502fr);
  gap: 30px;
  align-items: stretch;
}

.lp-consult__form {
  border: 8px solid #003e65;
  border-radius: 10px;
  padding: 20px 27px;
  background-image:
    linear-gradient(rgba(0, 62, 101, 0.85), rgba(0, 62, 101, 0.85)),
    url("/theme/images/lp-consult-01.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.lp-consult__form h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.lp-consult__form .lp-field {
  height: 52px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 11.4px rgba(0, 0, 0, 0.25);
}

.lp-consult__form .lp-field--area {
  padding-top: 13px;
  transition: height 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.2s ease,
              box-shadow 0.2s ease;
}

.lp-consult__form .lp-field--area:focus {
  height: 122px;
}

.lp-consult__form .lp-form__submit {
  margin-top: 10px;
  border: 1px solid #fff;
  font-size: 20px;
}

.lp-consult__photo {
  border-radius: 10px;
  overflow: hidden;
}

.lp-consult__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-footer {
  background: var(--thm-brand);
  color: #fff;
  padding-block: 46px 20px;
}

.lp-footer__grid {
  display: grid;

  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 58px;
  align-items: center;
  padding-block: 8px;
}

.lp-footer__logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
}

.lp-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
}

.lp-footer__actions {
  display: grid;
  gap: 12px;
}

@media (max-width: 1199.98px) {
  .lp-footer__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    text-align: center;
  }

  .lp-footer__logo {
    margin-inline: auto;
  }

  .lp-footer__actions {
    grid-auto-flow: column;
    justify-content: center;
  }
}

.lp-footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: var(--thm-fs-body);
}

.lp-footer__bar a {
  color: #fff;
}

.lp-footer__bar a:hover {
  text-decoration: underline;
}

.lp-footer__bar i {
  font-style: normal;
  margin: 0 10px;
  opacity: 0.6;
}

@media (max-width: 991.98px) {
  .lp-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    padding-block: 56px 72px;
  }

  .lp-hero__title {
    font-size: 32px;
  }

  .lp-hero__eyebrow {
    font-size: 20px;
  }

  .lp-header__inner {
    flex-wrap: wrap;
    gap: 12px;
  }

  .lp-header__aside {
    gap: 18px;
  }

  .lp-logos__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-about__grid,
  .lp-faq__grid,
  .lp-consult__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .lp-about__book {
    max-width: 340px;
    margin-inline: auto;
  }

  .lp-lit__ring {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 20px;
  }

  .lp-process__grid::before {
    display: none;
  }

  .lp-services__grid > *:nth-child(even) {
    margin-top: 0;
  }

  .lp-portfolio__track {
    --lp-cover: 180px;
    --lp-gap: 16px;
  }

  .lp-footer__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    text-align: center;
  }

  .lp-footer__logo {
    margin-inline: auto;
  }

  .lp-footer__actions {
    max-width: 260px;
    margin-inline: auto;
  }
}

@media (max-width: 575.98px) {
  .lp-hero__title {
    font-size: 26px;
  }

  .lp-btn-row {
    flex-direction: column;
    gap: 12px;
  }

  .lp-btn-row .lp-btn {
    width: 100%;
  }

  .lp-logos__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-lit__ring {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-portfolio__track {
    --lp-cover: 140px;
    --lp-gap: 12px;
  }

  .lp-about__book {
    max-width: 260px;
  }

  .lp-about__sub {
    font-size: 26px;
  }

  .lp-header__aside .thm-chat {
    display: none;
  }
}

.lp-hero__arrow {
  display: block;
  width: 177px;
  height: 54px;
  margin: 42px -6.1% 0 auto;
  background: url("/theme/images/lp-hero-arrow.svg") no-repeat center / 100% 100%;
}

@media (max-width: 991.98px) {
  .lp-hero__arrow {
    display: none;
  }
}

.lp-about__book {
  position: relative;
}

.lp-about__rings,
.lp-about__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lp-about__book img {
  position: relative;
  z-index: 1;
}

.lp-ring {
  position: absolute;
  left: 51.45%;
  top: 54.32%;
  background: no-repeat center / 100% 100%;
  transform: translate(-50%, -50%) rotate(9.19deg);
}

.lp-ring--1 {
  left: 51.33%;
  top: 51.2%;
  width: 88.14%;
  height: 94.38%;
  transform: translate(-50%, -50%) rotate(9.13deg);
  background-image: url("/theme/images/lp-about-01.webp");
}

.lp-ring--2 {
  width: 97.58%;
  height: 104.22%;
  transform: translate(-50%, -50%) rotate(10.91deg);
  background-image: url("/theme/images/lp-about-02.webp");
}

.lp-ring--3 {
  width: 112.11%;
  height: 119.88%;
  background-image: url("/theme/images/lp-about-03.webp");
}

.lp-ring--4 {
  width: 121.05%;
  height: 129.44%;
  background-image: url("/theme/images/lp-about-04.webp");
}

.lp-dot {
  position: absolute;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--thm-brand);
}

.lp-dot--a { left: 23%;     top: -2.61%;  width: 9.2%; }
.lp-dot--b { left: 17.19%;  top: -6.83%;  width: 6.78%; }
.lp-dot--c { left: 17.68%;  top: 5.82%;   width: 6.78%; }
.lp-dot--d { left: 21.31%;  top: 13.65%;  width: 4.36%; }

.lp-dot--e { left: 10.65%;  top: 85.14%;  width: 2.91%; }
.lp-dot--f { left: 9.69%;   top: 98.39%;  width: 2.91%; }
.lp-dot--g { left: 20.82%;  top: 111.85%; width: 2.91%; }
.lp-dot--h { left: 73.85%;  top: 95.58%;  width: 2.91%; }
.lp-dot--i { left: 73.85%;  top: 104.42%; width: 2.91%; }

.lp-blob {
  position: absolute;
  top: -33px;
  width: 313px;
  height: 287px;
  background-color: var(--thm-brand);
  opacity: 0.1;
  -webkit-mask: url("/theme/images/lp-corner-blob.webp") no-repeat center / 100% 100%;
  mask: url("/theme/images/lp-corner-blob.webp") no-repeat center / 100% 100%;
  pointer-events: none;
  z-index: 0;
}

.lp-blob--left {
  left: -5.72%;
  transform: rotate(-15.83deg) scaleX(-1);
}

.lp-blob--right {
  left: 83.98%;
  transform: rotate(15.83deg);
}

.lp-blob ~ .thm-container {
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .lp-blob {
    display: none;
  }
}

.lp-portfolio__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.lp-portfolio__dots i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--thm-brand);
  opacity: 0.3;
}

.lp-portfolio__dots i.is-on {
  width: 24px;
  height: 24px;
  opacity: 1;
}

.lp-testi__stage {
  position: relative;
}

.lp-testi__arrow {
  display: none;
  position: absolute;
  top: 50%;
  width: 43px;
  height: 43px;
  margin-top: -21.5px;
  background: no-repeat center / 100% 100%;
  pointer-events: none;
}

.lp-testi__arrow--prev {
  right: 100%;
  margin-right: 20px;
  background-image: url("/theme/images/lp-testi-05.svg");
}

.lp-testi__arrow--next {
  left: 100%;
  margin-left: 20px;
  background-image: url("/theme/images/lp-testi-06.svg");
}

@media (min-width: 1300px) {
  .lp-testi__arrow {
    display: block;
  }
}

.thm-tgrid__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 62px 25px;
  margin-top: 70px;
}

.thm-tcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--thm-radius-card);
  box-shadow: var(--thm-shadow-card);
  padding: 60px 24px 22px;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s ease;
}

@media (hover: hover) {
  .thm-tcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  }
}

.thm-tcard::before {
  content: "\201C";
  position: absolute;
  top: 26px;
  right: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 86px;
  line-height: 1;
  color: var(--thm-brand);
  opacity: 0.16;
  pointer-events: none;
}

.thm-tcard__avatar {
  position: absolute;
  top: -46px;
  left: 24px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.thm-tcard__text {
  flex: 1 1 auto;
  margin: 0 0 18px;
  padding-right: 14px;
  border-right: 3px solid var(--thm-brand);
  color: var(--thm-body);
}

.thm-tcard__foot {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--thm-line);
}

.thm-tcard__name {
  font-family: var(--thm-font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--thm-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.thm-tcard__stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}

.thm-tcard__stars img {
  width: 20px;
  height: 19px;
}

@media (max-width: 991.98px) {
  .thm-tgrid__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 58px 18px;
  }
}

@media (max-width: 575.98px) {
  .thm-tgrid__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.thm-pgrid__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 15px;
}

.thm-pgrid__grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 177 / 270;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}

@media (hover: hover) {
  .thm-pgrid__grid img:hover {
    transform: translateY(-6px);
  }
}

.thm-sgrid__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.thm-sgrid__grid .thm-card {
  min-height: 246px;
  display: flex;
  flex-direction: column;
  padding: 21px 24px 20px;
}

.thm-sgrid__grid .thm-card__icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
}

.thm-sgrid__grid .thm-card__title {
  flex: 0 0 auto;
  min-height: 29px;
  margin-bottom: 6px;
}

.thm-sgrid__grid .thm-card__text {
  flex: 1 1 auto;
  min-height: 0;
  margin-bottom: 0;
}

.thm-sgrid__grid .thm-link {
  flex: 0 0 auto;
  margin-top: auto;
}

.thm-prose {
  max-width: var(--thm-container);
  margin-top: 34px;
}

.thm-prose p {
  margin-bottom: 16px;
}

@media (max-width: 1199.98px) {
  .thm-pgrid__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .thm-pgrid__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 479.98px) {
  .thm-pgrid__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.thm-svcintro__grid {
  display: grid;
  grid-template-columns: minmax(0, 570fr) minmax(0, 500fr);
  gap: 5.9%;
  align-items: start;
}

.thm-svcintro__copy .thm-title {
  margin-bottom: 22px;
}

.thm-svcintro__copy p {

  margin-bottom: 18px;
}

.thm-svcintro__copy .thm-scroll {
  max-height: calc(var(--thm-lh-body) * 14);
}

.thm-svcform {
  background: #fff;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 4px 11.4px 0 rgba(0, 0, 0, 0.25);

  padding: 26px 38px 30px;
}

.thm-svcform__title {
  font-family: var(--thm-font-display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  color: var(--thm-ink);
  margin-bottom: 22px;
}

.thm-svcfield {
  display: block;
  width: 100%;
  height: 38px;
  margin-bottom: 15px;
  padding: 0 12px;
  font-family: var(--thm-font-text);
  font-size: 14px;
  color: var(--thm-ink);
  background: #fff;
  border: 0.6px solid #000;
  border-radius: 4px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.thm-svcfield::placeholder {
  color: #6f6f6f;
}

.thm-svcfield:focus {
  outline: 0;
  border-color: var(--thm-brand);
  box-shadow: 0 0 0 3px rgba(194, 39, 45, 0.14);
}

.thm-svcfield--area {
  height: 95px;
  padding: 10px 12px;
  resize: vertical;
}

.thm-svcform__submit {
  height: 44px;
  min-height: 44px;
  margin-top: 9px;
  border-radius: 53px;
  font-size: 18px;
}

.thm-svcform__submit::before {
  inset: 6.5px 15px;
}

.thm-svcform__submit::after {
  left: 15px;
  right: 15px;
}

.thm-svccards__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.thm-svccard {
  display: flex;
  flex-direction: column;
  min-height: 311px;
  background: #fff;
  border: 1px solid var(--thm-brand);
  border-radius: 15px;
  box-shadow: var(--thm-shadow-card);
  padding: 40px 22px 26px;
  text-align: center;
}

.thm-svccard h3 {
  flex: 0 0 auto;
  min-height: 58px;
  font-size: var(--thm-fs-h3);
  font-weight: 600;
  line-height: 1.3;
  color: var(--thm-ink);
  margin-bottom: 12px;
}

.thm-svccard p {
  flex: 1 1 auto;
  min-height: 0;
  margin: 0;
  color: var(--thm-ink);
}

.thm-svccard .thm-scroll {
  padding-right: 14px;
}

@media (max-width: 1199.98px) {
  .thm-svcintro__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .thm-svcform {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .thm-svccard {
    height: auto;
    min-height: 311px;
  }
}

.thm-innerhero {
  position: relative;
  background-image: url("/theme/images/hero-bg.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  color: #fff;
  padding-block: 74px 132px;
  overflow: hidden;
}

.thm-innerhero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
}

.thm-innerhero__title {
  font-family: var(--thm-font-display);
  font-size: var(--thm-fs-h2);
  font-weight: 600;
  line-height: var(--thm-lh-heading);
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 14px;
}

.thm-innerhero__text {
  color: var(--thm-on-dark-soft);
  margin-bottom: 26px;
}

.thm-innerhero .thm-btn-row {
  justify-content: center;
}

.thm-crumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 14px;
  font-family: var(--thm-font-display);
  font-weight: 500;
  font-size: var(--thm-fs-eyebrow);
  text-transform: capitalize;
}

.thm-crumb a {
  color: #fff;
}

.thm-crumb a:hover {
  color: var(--thm-brand);
}

.thm-crumb span[aria-current] {
  color: var(--thm-brand);
}

.thm-crumb span[aria-hidden] {
  color: rgba(255, 255, 255, 0.55);
}

.thm-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  text-align: center;
}

.thm-cta__inner .thm-title {
  color: #fff;
}

.thm-cta__inner p {
  margin-bottom: 24px;
}

@media (max-width: 991.98px) {
  .thm-innerhero {
    padding-block: 52px 104px;
  }
}

html {

  scroll-behavior: smooth;

  scroll-padding-top: 96px;
}

html.thm-lerp {
  scroll-behavior: auto;
}

.thm-anim {
  scroll-behavior: smooth;
}

html {
  scroll-padding-top: 120px;
}

.thm-anim [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

@media (min-width: 1250px) {
  .thm-anim [data-reveal="left"]  { transform: translateX(-34px); }
  .thm-anim [data-reveal="right"] { transform: translateX(34px); }
}
.thm-anim [data-reveal="zoom"]  { transform: scale(0.955); }
.thm-anim [data-reveal="fade"]  { transform: none; }

.thm-anim [data-reveal][data-in] {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.thm-anim [data-stagger] > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.thm-anim [data-stagger][data-in] > * {
  opacity: 1;
  transform: none;
}

.thm-anim [data-stagger][data-in] > *:nth-child(1) { transition-delay: 0ms; }
.thm-anim [data-stagger][data-in] > *:nth-child(2) { transition-delay: 90ms; }
.thm-anim [data-stagger][data-in] > *:nth-child(3) { transition-delay: 180ms; }
.thm-anim [data-stagger][data-in] > *:nth-child(4) { transition-delay: 270ms; }
.thm-anim [data-stagger][data-in] > *:nth-child(5) { transition-delay: 360ms; }
.thm-anim [data-stagger][data-in] > *:nth-child(6) { transition-delay: 450ms; }
.thm-anim [data-stagger][data-in] > *:nth-child(7) { transition-delay: 540ms; }
.thm-anim [data-stagger][data-in] > *:nth-child(n + 8) { transition-delay: 600ms; }

.thm-anim .thm-swipe[data-stagger][data-in] > * {
  transition-duration: 0.45s;
}

@keyframes thm-rise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

@keyframes thm-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.thm-anim .thm-hero__content > * {
  animation: thm-rise 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) backwards;
}

.thm-anim .thm-hero__title      { animation-delay: 0.05s; }
.thm-anim .thm-hero__text       { animation-delay: 0.18s; }
.thm-anim .thm-trust            { animation-delay: 0.3s; }
.thm-anim .thm-hero__content .thm-btn-row { animation-delay: 0.42s; }

.thm-anim .thm-hero__books img {
  animation: thm-float 7s ease-in-out infinite;
}

.thm-anim .thm-hero__books img:nth-child(2) { animation-delay: -1.6s; animation-duration: 8s; }
.thm-anim .thm-hero__books img:nth-child(3) { animation-delay: -3.2s; animation-duration: 6.5s; }
.thm-anim .thm-hero__books img:nth-child(4) { animation-delay: -4.8s; animation-duration: 7.5s; }

.thm-card,
.thm-step,
.thm-why__card,
.thm-plan,
.thm-testi {
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.35s ease;
}

@media (hover: hover) {
  .thm-card:hover,
  .thm-step:hover,
  .thm-why__card:hover,
  .thm-testi:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  }

  .thm-plan:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(194, 39, 45, 0.22);
  }

  .thm-about__media img,
  .thm-why__media img {
    transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .thm-about__media:hover img,
  .thm-why__media:hover img {
    transform: scale(1.05);
  }

  .thm-card:hover .thm-card__icon {
    transform: translateY(-3px) rotate(-4deg);
  }

  .thm-why__card:hover .thm-why__icon {
    transform: translateY(-3px);
  }
}

.thm-card__icon,
.thm-why__icon {
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.thm-nav > li > a {
  position: relative;
}

.thm-nav > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -5px;
  height: 2px;
  background: var(--thm-brand);
  border-radius: 2px;
  transition: left 0.25s ease, right 0.25s ease;
}

.thm-nav > li > a:hover::after,
.thm-nav > li > a.is-active::after {
  left: 0;
  right: 0;
}

.thm-step__num {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (hover: hover) {
  .thm-step:hover .thm-step__num {
    transform: scale(1.12);
  }
}

.thm-acc__body {
  animation: thm-acc-open 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes thm-acc-open {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .lp-portfolio__track {
    --lp-cover: 200px;
    --lp-gap: 18px;
  }

  .lp-services__grid {
    gap: 16px;
  }

  .lp-svccard {
    min-height: 210px;
    padding-inline: 12px;
  }

  .lp-process__grid {
    gap: 26px;
  }

  .lp-step__disc {
    width: 78px;
    height: 78px;
    margin-bottom: 20px;
  }

  .lp-step__disc img {
    width: 42px;
    height: 42px;
  }

  .lp-process__grid::before {
    top: 39px;
  }

  .lp-plans {
    gap: 14px;
  }

  .lp-logos__grid {
    gap: 12px;
  }

  .lp-lit__ring {
    gap: 32px 22px;
  }

  .lp-about__grid {
    gap: 20px;
  }

  .lp-faq__grid,
  .lp-consult__grid {
    gap: 34px;
  }

  .lp-consult__form {
    padding: 18px 22px;
  }

  .lp-consult__form h3 {
    font-size: 32px;
    margin-bottom: 22px;
  }

  .lp-hero__title {
    font-size: 38px;
  }
}

@media (min-width: 1200px) {
  .lp-portfolio__track {
    --lp-cover: 248px;
    --lp-gap: 22px;
  }
}

@media (max-width: 991.98px) {
  .lp-plans.thm-swipe.thm-swipe > * {
    flex: 0 0 60%;
  }

  .lp-plan__top {
    padding: 22px 20px 28px;
    border-radius: 0 0 50% 50% / 0 0 24% 24%;
  }

  .lp-plan__top h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .lp-plan__top p {
    font-size: 13px;
    line-height: 21px;
  }

  .lp-plan__body {
    padding: 16px 20px 20px;
  }

  .lp-plan__body h4 {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .lp-plan__list {
    gap: 5px;
    margin-bottom: 16px;
    max-height: calc(21px * 12);
  }

  .lp-plan__list li {
    font-size: 13px;
    line-height: 21px;
    padding-left: 22px;
  }

  .lp-plan__list li::before {
    left: 0;
    top: 0.4em;
    width: 12px;
    height: 10px;
  }

  .lp-plan__cta {
    min-height: 40px;
    font-size: 13px;
  }
}

@media (max-width: 575.98px) {

  .lp-plans.thm-swipe.thm-swipe > * {
    flex: 0 0 88%;
  }

  .lp-plan__top {
    padding: 20px 18px 26px;
  }

  .lp-plan__body {
    padding: 14px 18px 18px;
  }
}

.thm-books__rail {
  overflow: hidden;
  margin-top: 34px;
}

.thm-books {
  --thm-cover: 155px;
  --thm-cover-gap: 9px;
  display: flex;
  gap: var(--thm-cover-gap);
  width: max-content;
  will-change: transform;
}

@keyframes thm-books-run {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-50% - var(--thm-cover-gap) / 2), 0, 0); }
}

.thm-books__cover {
  flex: 0 0 var(--thm-cover);
  margin: 0;
}

.thm-books__cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 155 / 236;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

@media (hover: hover) {
  .thm-books__cover:hover img {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 767.98px) {
  .thm-books {
    --thm-cover: 118px;
    --thm-cover-gap: 8px;
  }
}

@keyframes thm-shine {
  0%        { background-position: 180% 0; }
  55%, 100% { background-position: -80% 0; }
}

@keyframes thm-throb {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.045); }
}

.thm-anim .lp-form__title em,
.thm-anim .lp-hero__title em,
.thm-anim .thm-hero__title em {
  background-image: linear-gradient(
    100deg,
    currentColor 0 38%,
    rgba(255, 255, 255, 0.92) 48%,
    currentColor 58% 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: thm-shine 4.5s ease-in-out infinite;
}

.thm-anim .lp-form__title em {
  display: inline-block;
  animation: thm-shine 3.6s ease-in-out infinite, thm-throb 3.6s ease-in-out infinite;
}

.thm-anim .lp-hero__title em { animation-duration: 5.5s; }

@keyframes thm-btn-sweep {
  from { transform: translateX(-120%) skewX(-18deg); }
  to   { transform: translateX(320%) skewX(-18deg); }
}

.lp-btn {
  position: relative;
  overflow: hidden;
}

@media (hover: hover) {
  .thm-anim .lp-btn:hover::after,
  .thm-anim .lp-plan__cta:hover::after {
    animation: thm-btn-sweep 0.7s ease-out;
  }

  .thm-anim .lp-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 34%;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0.38) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: translateX(-140%) skewX(-18deg);
    pointer-events: none;
  }
}

.thm-legal h2 {
  font-size: var(--thm-fs-h3);
  font-weight: 600;
  margin: 34px 0 12px;
}

.thm-legal > div:first-child h2 {
  margin-top: 0;
}

.thm-legal__list {
  margin: 0 0 16px;
  padding-left: 22px;
}

.thm-legal__list li {
  margin-bottom: 6px;
  line-height: var(--thm-lh-body);
}

.thm-legal__contact {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--thm-line);
}

.thm-legal__contact a {
  color: var(--thm-brand);
  font-weight: 600;
}

.lp-consult__lead {
  max-width: 720px;
  margin: 16px auto 0;
  text-align: center;
}

.thm-plan__price,
.lp-plan__price {
  margin: 0 0 10px;
  line-height: 1.2;
}

.thm-plan__price span,
.lp-plan__price span {
  display: block;
  font-family: var(--thm-font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--thm-brand);
}

.thm-plan__price small,
.lp-plan__price small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--thm-muted);
}

.thm-plan--featured .thm-plan__price span,
.lp-plan--featured .lp-plan__price span {
  color: #fff;
}

.thm-plan--featured .thm-plan__price small,
.lp-plan--featured .lp-plan__price small {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 991.98px) {
  .thm-plan__price span,
  .lp-plan__price span {
    font-size: 22px;
  }
}

.lp-trust {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;

  gap: 14px 30px;
  margin: 30px 0 0;
}

.lp-trust img {
  display: block;
  height: 24px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.lp-trust img[alt="Clutch"] {
  height: 21px;
}

.lp-hero__arrow {
  margin-top: 26px;
}

@media (max-width: 1199.98px) {
  .lp-trust {
    gap: 12px 24px;
  }

  .lp-trust img { height: 21px; }
  .lp-trust img[alt="Clutch"] { height: 18px; }
}

@media (max-width: 991.98px) {
  .lp-trust {
    justify-content: center;
    gap: 14px 26px;
  }
}

@media (max-width: 575.98px) {
  .lp-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
    align-items: center;
    gap: 16px 18px;
    margin-top: 24px;
  }

  .lp-trust img { height: 19px; }
  .lp-trust img[alt="Clutch"] { height: 16px; }
}

.thm-anim .lp-portfolio__track {
  animation: lp-marquee 90s linear infinite;
}

@media (hover: hover) {
  .lp-portfolio__rail:hover .lp-portfolio__track,
  .lp-portfolio__rail:focus-within .lp-portfolio__track {
    animation-play-state: paused;
  }
}

@keyframes lp-orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.thm-anim .lp-about__rings {
  animation: lp-orbit 80s linear infinite;
}

.thm-anim .lp-hero__eyebrow,
.thm-anim .lp-hero__title,
.thm-anim .lp-hero__text,
.thm-anim .lp-hero .lp-btn-row,
.thm-anim .lp-hero__arrow {
  animation: thm-rise 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) backwards;
}

.thm-anim .lp-hero__title      { animation-delay: 0.08s; }
.thm-anim .lp-hero__text       { animation-delay: 0.2s; }
.thm-anim .lp-hero .lp-btn-row { animation-delay: 0.32s; }

.thm-anim .lp-hero__arrow {
  animation-delay: 0.5s, 1.3s;
  animation-name: thm-rise, lp-nudge;
  animation-duration: 0.8s, 2.6s;
  animation-iteration-count: 1, infinite;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1), ease-in-out;
}

@keyframes lp-nudge {
  0%, 100% { translate: 0 0; }
  50%      { translate: -8px 0; }
}

.lp-svccard,
.lp-step,
.lp-plan,
.lp-tcard,
.lp-logos__tile,
.lp-lit__item {
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.35s ease;
}

.lp-step__disc,
.lp-lit__disc {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
}

@media (hover: hover) {
  .lp-svccard:hover,
  .lp-tcard:hover,
  .lp-logos__tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  }

  .lp-plan:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(194, 39, 45, 0.24);
  }

  .lp-step:hover .lp-step__disc,
  .lp-lit__item:hover .lp-lit__disc {
    transform: scale(1.08);
    box-shadow: 0 12px 26px rgba(194, 39, 45, 0.42);
  }

  .lp-about__features li img {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .lp-about__features li:hover img {
    transform: scale(1.12) rotate(-4deg);
  }
}

@media (min-width: 1200px) {
  .lp-lit__item:hover {
    transform: none;
  }
}

@media (min-width: 1200px) {
  .thm-anim .lp-lit__circle {
    opacity: 0;
    transform: rotate(-120deg) scale(0.72);
    transition: opacity 0.9s ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .thm-anim .lp-lit__ring[data-in] .lp-lit__circle {
    opacity: 1;
    transform: none;
  }

  .thm-anim .lp-lit__ring[data-stagger] > .lp-lit__item {
    opacity: 0;
    transform: scale(0.3);
    transition: opacity 0.45s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .thm-anim .lp-lit__ring[data-stagger][data-in] > .lp-lit__item {
    opacity: 1;
    transform: none;
  }

  .thm-anim .lp-lit__ring[data-stagger][data-in] > *:nth-child(2) { transition-delay: 0.35s; }
  .thm-anim .lp-lit__ring[data-stagger][data-in] > *:nth-child(3) { transition-delay: 0.44s; }
  .thm-anim .lp-lit__ring[data-stagger][data-in] > *:nth-child(4) { transition-delay: 0.53s; }
  .thm-anim .lp-lit__ring[data-stagger][data-in] > *:nth-child(5) { transition-delay: 0.62s; }
  .thm-anim .lp-lit__ring[data-stagger][data-in] > *:nth-child(6) { transition-delay: 0.71s; }
  .thm-anim .lp-lit__ring[data-stagger][data-in] > *:nth-child(7) { transition-delay: 0.8s; }
  .thm-anim .lp-lit__ring[data-stagger][data-in] > *:nth-child(8) { transition-delay: 0.89s; }

  .thm-anim .lp-lit__txt {
    opacity: 0;
    transform: translateX(-22px);
    transition: opacity 0.55s ease 0.55s,
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.55s;
  }

  .thm-anim .lp-lit__item--5 .lp-lit__txt,
  .thm-anim .lp-lit__item--6 .lp-lit__txt,
  .thm-anim .lp-lit__item--7 .lp-lit__txt {
    transform: translateX(22px);
  }

  .thm-anim .lp-lit__item--1 .lp-lit__txt {
    transform: translateY(18px);
  }

  .thm-anim .lp-lit__ring[data-in] .lp-lit__txt {
    opacity: 1;
    transform: none;
  }

  .lp-lit__circle::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
      from 0deg,
      rgba(194, 39, 45, 0) 0deg,
      rgba(194, 39, 45, 0.9) 40deg,
      rgba(194, 39, 45, 0) 90deg,
      rgba(194, 39, 45, 0) 360deg
    );
    -webkit-mask: url("/theme/images/lp-literature-09.svg") no-repeat center / 100% 100%;
    mask: url("/theme/images/lp-literature-09.svg") no-repeat center / 100% 100%;
    opacity: 0;
    transition: opacity 0.8s ease 1.4s;
  }

  .thm-anim .lp-lit__ring[data-in] .lp-lit__circle::after {
    opacity: 0.85;
    animation: lp-orbit 9s linear infinite;
  }
}

.thm-anim .lp-process__grid::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.3s;
}

.thm-anim .lp-process__grid[data-in]::before {
  transform: scaleX(1);
}

.thm-anim .lp-process__grid[data-stagger] > * > .lp-step__disc {
  opacity: 0;
  transform: scale(0.4) translateY(-14px);
  transition: opacity 0.4s ease, transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thm-anim .lp-process__grid[data-stagger][data-in] > * > .lp-step__disc {
  opacity: 1;
  transform: none;
}

.thm-anim .lp-process__grid[data-in] > *:nth-child(1) > .lp-step__disc { transition-delay: 0.35s; }
.thm-anim .lp-process__grid[data-in] > *:nth-child(2) > .lp-step__disc { transition-delay: 0.62s; }
.thm-anim .lp-process__grid[data-in] > *:nth-child(3) > .lp-step__disc { transition-delay: 0.89s; }
.thm-anim .lp-process__grid[data-in] > *:nth-child(4) > .lp-step__disc { transition-delay: 1.16s; }

.thm-anim .lp-services__grid[data-stagger] > * {
  transform: perspective(900px) rotateX(14deg) translateY(34px);
  transform-origin: 50% 100%;
  transition: opacity 0.6s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.thm-anim .lp-services__grid[data-stagger][data-in] > * {
  transform: perspective(900px) rotateX(0deg) translateY(0);
}

@keyframes lp-breathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-6px) scale(1.04); }
}

.thm-anim .lp-services__grid[data-in] .lp-svccard img {
  animation: lp-breathe 5.5s ease-in-out infinite;
}

.thm-anim .lp-svccard:nth-child(2) img { animation-delay: -0.7s; animation-duration: 6.2s; }
.thm-anim .lp-svccard:nth-child(3) img { animation-delay: -1.4s; animation-duration: 5s; }
.thm-anim .lp-svccard:nth-child(4) img { animation-delay: -2.1s; animation-duration: 6.6s; }
.thm-anim .lp-svccard:nth-child(5) img { animation-delay: -2.8s; animation-duration: 5.3s; }
.thm-anim .lp-svccard:nth-child(6) img { animation-delay: -3.5s; animation-duration: 6s; }
.thm-anim .lp-svccard:nth-child(7) img { animation-delay: -4.2s; animation-duration: 5.7s; }
.thm-anim .lp-svccard:nth-child(8) img { animation-delay: -4.9s; animation-duration: 6.4s; }

@media (hover: hover) {
  .lp-svccard:hover img {
    animation-play-state: paused;
  }

  .thm-anim .lp-services__grid[data-stagger][data-in] > *:hover {
    transform: perspective(900px) rotateX(0deg) translateY(-6px);
  }
}

.thm-progress {
  display: none;
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 2000;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--thm-brand), #ff8a63);
  pointer-events: none;
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {

    @keyframes thm-progress {
      from { transform: scaleX(0); }
      to   { transform: scaleX(1); }
    }

    .thm-progress {
      display: block;
      animation: thm-progress linear both;
      animation-timeline: scroll(root block);
    }

    @keyframes thm-rule-draw {
      from { transform: scaleX(0.15); }
      to   { transform: scaleX(1); }
    }

    .thm-anim .thm-divider {
      transform-origin: center;
      animation: thm-rule-draw linear both;
      animation-timeline: view();
      animation-range: entry 20% cover 34%;
    }
  }
}

.thm-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow: hidden auto;
  overscroll-behavior: contain;
  background: rgba(4, 18, 30, 0.66);
  -webkit-backdrop-filter: blur(7px) saturate(120%);
  backdrop-filter: blur(7px) saturate(120%);
  animation: thm-modal-veil 0.26s ease both;
}

.thm-modal.is-closing {
  animation: thm-modal-veil 0.22s ease reverse both;
}

@keyframes thm-modal-veil {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.thm-modal__dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 380px);

  width: min(680px, calc(100vw - 40px));
  margin: auto;
  background: var(--thm-surface, #fff);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(2, 12, 22, 0.5);
  animation: thm-modal-rise 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.thm-modal.is-closing .thm-modal__dialog {
  animation: thm-modal-rise 0.22s ease reverse both;
}

@keyframes thm-modal-rise {
  from { opacity: 0; transform: translateY(30px) scale(0.93); }
  to   { opacity: 1; transform: none; }
}

.thm-modal__aside {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 112px 26px 28px;
  background: var(--thm-navy);
  color: #fff;
  overflow: hidden;
}

.thm-modal__shelf {
  position: absolute;
  inset: -14% -30% -6% -12%;
  z-index: -2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  transform: rotate(-11deg);
  opacity: 0.5;
}

.thm-modal__shelf img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.thm-modal__aside::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    195deg,
    rgba(0, 62, 101, 0.62) 0%,
    rgba(0, 62, 101, 0.94) 58%,
    var(--thm-navy) 100%
  );
}

.thm-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 5px 12px 5px 9px;
  font-family: var(--thm-font-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #fff;
  background: var(--thm-brand);
  border-radius: 40px;
}

.thm-modal__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: thm-modal-pulse 1.9s ease-in-out infinite;
}

@keyframes thm-modal-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.7); }
}

.thm-modal__head h2 {
  font-family: var(--thm-font-display);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 10px;
}

.thm-modal__head h2 em {
  font-style: normal;
  color: #ffb4b4;
}

.thm-modal__head p {
  font-size: 13px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.thm-modal__points {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.thm-modal__points li {
  position: relative;
  padding-left: 24px;
  font-size: 12.5px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.thm-modal__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--thm-brand);
  -webkit-mask: url("/theme/images/icon-check-tick.svg") no-repeat center / 9px 9px;
  mask: url("/theme/images/icon-check-tick.svg") no-repeat center / 9px 9px;
  box-shadow: inset 0 0 0 20px var(--thm-brand);
}

.thm-modal__body {
  padding: 30px 30px 28px;
}

.thm-modal__body h3 {
  font-family: var(--thm-font-display);
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 18px;
  color: var(--thm-ink);
}

.thm-modal__fields {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.thm-modal__field {
  position: relative;
}

.thm-modal__field input,
.thm-modal__field textarea {
  width: 100%;
  height: 48px;
  padding: 18px 14px 6px;
  font-family: var(--thm-font-text);
  font-size: 14px;
  color: var(--thm-ink);
  background: #f5f6f8;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.thm-modal__field textarea {
  height: 86px;
  padding-top: 22px;
  resize: none;
}

.thm-modal__field label {
  position: absolute;
  left: 15px;
  top: 15px;
  font-size: 14px;
  color: var(--thm-muted);
  pointer-events: none;
  transform-origin: 0 0;
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), color 0.18s ease;
}

.thm-modal__field input:focus,
.thm-modal__field textarea:focus {
  outline: 0;
  background: #fff;
  border-color: var(--thm-brand);
  box-shadow: 0 0 0 3px rgba(194, 39, 45, 0.14);
}

.thm-modal__field input:focus + label,
.thm-modal__field textarea:focus + label,
.thm-modal__field input:not(:placeholder-shown) + label,
.thm-modal__field textarea:not(:placeholder-shown) + label {
  transform: translateY(-9px) scale(0.76);
  color: var(--thm-brand);
}

.thm-modal__submit {
  width: 100%;
}

.thm-modal__note {
  margin: 14px 0 0;
  font-size: 12.5px;
  text-align: center;
  color: var(--thm-muted);
}

.thm-modal__note a {
  color: var(--thm-brand);
  font-weight: 600;
}

.thm-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.thm-modal__close:hover {
  background: var(--thm-brand);
  transform: rotate(90deg);
}

.thm-modal__close span {
  grid-area: 1 / 1;
  width: 13px;
  height: 2px;
  border-radius: 2px;
  background: var(--thm-ink);
  transition: background 0.2s ease;
}

.thm-modal__close:hover span {
  background: #fff;
}

.thm-modal__close span:first-child { transform: rotate(45deg); }
.thm-modal__close span:last-child  { transform: rotate(-45deg); }

.thm-anim .thm-modal__eyebrow,
.thm-anim .thm-modal__head h2,
.thm-anim .thm-modal__head p,
.thm-anim .thm-modal__points li,
.thm-anim .thm-modal__body h3,
.thm-anim .thm-modal__fields > *,
.thm-anim .thm-modal__submit,
.thm-anim .thm-modal__note {
  animation: thm-modal-field 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes thm-modal-field {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.thm-anim .thm-modal__eyebrow        { animation-delay: 0.14s; }
.thm-anim .thm-modal__head h2        { animation-delay: 0.2s; }
.thm-anim .thm-modal__head p         { animation-delay: 0.26s; }
.thm-anim .thm-modal__points li:nth-child(1) { animation-delay: 0.32s; }
.thm-anim .thm-modal__points li:nth-child(2) { animation-delay: 0.38s; }
.thm-anim .thm-modal__points li:nth-child(3) { animation-delay: 0.44s; }
.thm-anim .thm-modal__body h3        { animation-delay: 0.22s; }
.thm-anim .thm-modal__fields > *:nth-child(1) { animation-delay: 0.28s; }
.thm-anim .thm-modal__fields > *:nth-child(2) { animation-delay: 0.34s; }
.thm-anim .thm-modal__fields > *:nth-child(3) { animation-delay: 0.4s; }
.thm-anim .thm-modal__fields > *:nth-child(4) { animation-delay: 0.46s; }
.thm-anim .thm-modal__submit         { animation-delay: 0.52s; }
.thm-anim .thm-modal__note           { animation-delay: 0.58s; }

.thm--lp .thm-modal__submit::before,
.thm--lp .thm-modal__submit::after {
  content: none;
}

.thm--lp .thm-modal__submit {
  background: var(--thm-brand);
  border-radius: 53px;
  min-height: 46px;
}

.thm--lp .thm-modal__submit:hover {
  background: var(--thm-brand-dark);
}

@media (max-width: 767.98px) {
  .thm-modal {
    padding: 12px;
    place-items: end center;
  }

  .thm-modal__dialog {
    grid-template-columns: minmax(0, 1fr);
    width: min(440px, calc(100vw - 24px));
    border-radius: 18px;
  }

  .thm-modal__aside {
    padding: 20px 20px 18px;
  }

  .thm-modal__eyebrow {
    margin-bottom: 10px;
    padding: 4px 11px 4px 8px;
    font-size: 10.5px;
  }

  .thm-modal__head h2 {
    font-size: 21px;
    margin-bottom: 6px;
  }

  .thm-modal__head p {
    font-size: 12.5px;
    line-height: 18px;
  }

  .thm-modal__points {
    display: none;
  }

  .thm-modal__body {
    padding: 18px 20px 20px;
  }

  .thm-modal__body h3 {
    font-size: 17px;
    margin-bottom: 13px;
  }

  .thm-modal__fields {
    gap: 9px;
    margin-bottom: 12px;
  }

  .thm-modal__field input,
  .thm-modal__field textarea {
    height: 44px;
    padding: 16px 13px 5px;
  }

  .thm-modal__field textarea {
    height: 62px;
    padding-top: 20px;
  }

  .thm-modal__field label {
    top: 13px;
    font-size: 13.5px;
  }

  .thm-modal__note {
    margin-top: 10px;
    font-size: 12px;
  }

  .thm-modal__close {
    background: rgba(255, 255, 255, 0.18);
  }

  .thm-modal__close span {
    background: #fff;
  }
}

@media (max-height: 700px) {
  .thm-modal {
    place-items: center;
    padding: 10px;
  }

  .thm-modal__points,
  .thm-modal__sig {
    display: none;
  }

  .thm-modal__aside {
    padding: 18px 20px 16px;
  }

  .thm-modal__head h2 {
    font-size: 20px;
  }

  .thm-modal__body {
    padding: 16px 20px 18px;
  }

  .thm-modal__field textarea {
    height: 58px;
  }

  .thm-modal__mark {
    width: 52px;
    height: 52px;
    top: 14px;
    left: 18px;
  }
}

.thm-legal h2 {
  font-size: var(--thm-fs-h3);
  font-weight: 600;
  margin: 34px 0 12px;
}

.thm-legal > div:first-child h2 {
  margin-top: 0;
}

.thm-legal__list {
  margin: 0 0 16px;
  padding-left: 22px;
}

.thm-legal__list li {
  margin-bottom: 6px;
  line-height: var(--thm-lh-body);
}

.thm-legal__contact {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--thm-line);
}

.thm-legal__contact a {
  color: var(--thm-brand);
  font-weight: 600;
}

.lp-consult__lead {
  max-width: 720px;
  margin: 16px auto 0;
  text-align: center;
}

.thm-plan__price,
.lp-plan__price {
  margin: 0 0 10px;
  line-height: 1.2;
}

.thm-plan__price span,
.lp-plan__price span {
  display: block;
  font-family: var(--thm-font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--thm-brand);
}

.thm-plan__price small,
.lp-plan__price small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--thm-muted);
}

.thm-plan--featured .thm-plan__price span,
.lp-plan--featured .lp-plan__price span {
  color: #fff;
}

.thm-plan--featured .thm-plan__price small,
.lp-plan--featured .lp-plan__price small {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 991.98px) {
  .thm-plan__price span,
  .lp-plan__price span {
    font-size: 22px;
  }
}

.lp-trust {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;

  gap: 14px 30px;
  margin: 30px 0 0;
}

.lp-trust img {
  display: block;
  height: 24px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.lp-trust img[alt="Clutch"] {
  height: 21px;
}

.lp-hero__arrow {
  margin-top: 26px;
}

@media (max-width: 1199.98px) {
  .lp-trust {
    gap: 12px 24px;
  }

  .lp-trust img { height: 21px; }
  .lp-trust img[alt="Clutch"] { height: 18px; }
}

@media (max-width: 991.98px) {
  .lp-trust {
    justify-content: center;
    gap: 14px 26px;
  }
}

@media (max-width: 575.98px) {
  .lp-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
    align-items: center;
    gap: 16px 18px;
    margin-top: 24px;
  }

  .lp-trust img { height: 19px; }
  .lp-trust img[alt="Clutch"] { height: 16px; }
}

.thm-anim .lp-portfolio__track {
  animation: lp-marquee 90s linear infinite;
}

@media (hover: hover) {
  .lp-portfolio__rail:hover .lp-portfolio__track,
  .lp-portfolio__rail:focus-within .lp-portfolio__track {
    animation-play-state: paused;
  }
}

@keyframes lp-orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.thm-anim .lp-about__rings {
  animation: lp-orbit 80s linear infinite;
}

.thm-anim .lp-hero__eyebrow,
.thm-anim .lp-hero__title,
.thm-anim .lp-hero__text,
.thm-anim .lp-hero .lp-btn-row,
.thm-anim .lp-hero__arrow {
  animation: thm-rise 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) backwards;
}

.thm-anim .lp-hero__title      { animation-delay: 0.08s; }
.thm-anim .lp-hero__text       { animation-delay: 0.2s; }
.thm-anim .lp-hero .lp-btn-row { animation-delay: 0.32s; }

.thm-anim .lp-hero__arrow {
  animation-delay: 0.5s, 1.3s;
  animation-name: thm-rise, lp-nudge;
  animation-duration: 0.8s, 2.6s;
  animation-iteration-count: 1, infinite;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1), ease-in-out;
}

@keyframes lp-nudge {
  0%, 100% { translate: 0 0; }
  50%      { translate: -8px 0; }
}

.lp-svccard,
.lp-step,
.lp-plan,
.lp-tcard,
.lp-logos__tile,
.lp-lit__item {
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.35s ease;
}

.lp-step__disc,
.lp-lit__disc {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
}

@media (hover: hover) {
  .lp-svccard:hover,
  .lp-tcard:hover,
  .lp-logos__tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  }

  .lp-plan:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(194, 39, 45, 0.24);
  }

  .lp-step:hover .lp-step__disc,
  .lp-lit__item:hover .lp-lit__disc {
    transform: scale(1.08);
    box-shadow: 0 12px 26px rgba(194, 39, 45, 0.42);
  }

  .lp-about__features li img {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .lp-about__features li:hover img {
    transform: scale(1.12) rotate(-4deg);
  }
}

@media (min-width: 1200px) {
  .lp-lit__item:hover {
    transform: none;
  }
}

@media (min-width: 1200px) {
  .thm-anim .lp-lit__circle {
    opacity: 0;
    transform: rotate(-120deg) scale(0.72);
    transition: opacity 0.9s ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .thm-anim .lp-lit__ring[data-in] .lp-lit__circle {
    opacity: 1;
    transform: none;
  }

  .thm-anim .lp-lit__ring[data-stagger] > .lp-lit__item {
    opacity: 0;
    transform: scale(0.3);
    transition: opacity 0.45s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .thm-anim .lp-lit__ring[data-stagger][data-in] > .lp-lit__item {
    opacity: 1;
    transform: none;
  }

  .thm-anim .lp-lit__ring[data-stagger][data-in] > *:nth-child(2) { transition-delay: 0.35s; }
  .thm-anim .lp-lit__ring[data-stagger][data-in] > *:nth-child(3) { transition-delay: 0.44s; }
  .thm-anim .lp-lit__ring[data-stagger][data-in] > *:nth-child(4) { transition-delay: 0.53s; }
  .thm-anim .lp-lit__ring[data-stagger][data-in] > *:nth-child(5) { transition-delay: 0.62s; }
  .thm-anim .lp-lit__ring[data-stagger][data-in] > *:nth-child(6) { transition-delay: 0.71s; }
  .thm-anim .lp-lit__ring[data-stagger][data-in] > *:nth-child(7) { transition-delay: 0.8s; }
  .thm-anim .lp-lit__ring[data-stagger][data-in] > *:nth-child(8) { transition-delay: 0.89s; }

  .thm-anim .lp-lit__txt {
    opacity: 0;
    transform: translateX(-22px);
    transition: opacity 0.55s ease 0.55s,
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.55s;
  }

  .thm-anim .lp-lit__item--5 .lp-lit__txt,
  .thm-anim .lp-lit__item--6 .lp-lit__txt,
  .thm-anim .lp-lit__item--7 .lp-lit__txt {
    transform: translateX(22px);
  }

  .thm-anim .lp-lit__item--1 .lp-lit__txt {
    transform: translateY(18px);
  }

  .thm-anim .lp-lit__ring[data-in] .lp-lit__txt {
    opacity: 1;
    transform: none;
  }

  .lp-lit__circle::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
      from 0deg,
      rgba(194, 39, 45, 0) 0deg,
      rgba(194, 39, 45, 0.9) 40deg,
      rgba(194, 39, 45, 0) 90deg,
      rgba(194, 39, 45, 0) 360deg
    );
    -webkit-mask: url("/theme/images/lp-literature-09.svg") no-repeat center / 100% 100%;
    mask: url("/theme/images/lp-literature-09.svg") no-repeat center / 100% 100%;
    opacity: 0;
    transition: opacity 0.8s ease 1.4s;
  }

  .thm-anim .lp-lit__ring[data-in] .lp-lit__circle::after {
    opacity: 0.85;
    animation: lp-orbit 9s linear infinite;
  }
}

.thm-anim .lp-process__grid::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.3s;
}

.thm-anim .lp-process__grid[data-in]::before {
  transform: scaleX(1);
}

.thm-anim .lp-process__grid[data-stagger] > * > .lp-step__disc {
  opacity: 0;
  transform: scale(0.4) translateY(-14px);
  transition: opacity 0.4s ease, transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thm-anim .lp-process__grid[data-stagger][data-in] > * > .lp-step__disc {
  opacity: 1;
  transform: none;
}

.thm-anim .lp-process__grid[data-in] > *:nth-child(1) > .lp-step__disc { transition-delay: 0.35s; }
.thm-anim .lp-process__grid[data-in] > *:nth-child(2) > .lp-step__disc { transition-delay: 0.62s; }
.thm-anim .lp-process__grid[data-in] > *:nth-child(3) > .lp-step__disc { transition-delay: 0.89s; }
.thm-anim .lp-process__grid[data-in] > *:nth-child(4) > .lp-step__disc { transition-delay: 1.16s; }

.thm-anim .lp-services__grid[data-stagger] > * {
  transform: perspective(900px) rotateX(14deg) translateY(34px);
  transform-origin: 50% 100%;
  transition: opacity 0.6s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.thm-anim .lp-services__grid[data-stagger][data-in] > * {
  transform: perspective(900px) rotateX(0deg) translateY(0);
}

@keyframes lp-breathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-6px) scale(1.04); }
}

.thm-anim .lp-services__grid[data-in] .lp-svccard img {
  animation: lp-breathe 5.5s ease-in-out infinite;
}

.thm-anim .lp-svccard:nth-child(2) img { animation-delay: -0.7s; animation-duration: 6.2s; }
.thm-anim .lp-svccard:nth-child(3) img { animation-delay: -1.4s; animation-duration: 5s; }
.thm-anim .lp-svccard:nth-child(4) img { animation-delay: -2.1s; animation-duration: 6.6s; }
.thm-anim .lp-svccard:nth-child(5) img { animation-delay: -2.8s; animation-duration: 5.3s; }
.thm-anim .lp-svccard:nth-child(6) img { animation-delay: -3.5s; animation-duration: 6s; }
.thm-anim .lp-svccard:nth-child(7) img { animation-delay: -4.2s; animation-duration: 5.7s; }
.thm-anim .lp-svccard:nth-child(8) img { animation-delay: -4.9s; animation-duration: 6.4s; }

@media (hover: hover) {
  .lp-svccard:hover img {
    animation-play-state: paused;
  }

  .thm-anim .lp-services__grid[data-stagger][data-in] > *:hover {
    transform: perspective(900px) rotateX(0deg) translateY(-6px);
  }
}

.thm-progress {
  display: none;
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 2000;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--thm-brand), #ff8a63);
  pointer-events: none;
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {

    @keyframes thm-progress {
      from { transform: scaleX(0); }
      to   { transform: scaleX(1); }
    }

    .thm-progress {
      display: block;
      animation: thm-progress linear both;
      animation-timeline: scroll(root block);
    }

    @keyframes thm-rule-draw {
      from { transform: scaleX(0.15); }
      to   { transform: scaleX(1); }
    }

    .thm-anim .thm-divider {
      transform-origin: center;
      animation: thm-rule-draw linear both;
      animation-timeline: view();
      animation-range: entry 20% cover 34%;
    }
  }
}

.thm-hero__title span {
  display: inline-block;
}

.thm-hero__title span.is-lit {
  color: var(--thm-brand);
}

@keyframes thm-word-in {
  from { opacity: 0; transform: translateY(22px) rotate(2deg); filter: blur(4px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}

.thm-anim .thm-hero__title span {
  animation: thm-word-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) backwards;

  animation-delay: calc(0.07s * var(--i) + 0.1s);
}

.thm-anim .thm-hero__title span.is-lit {
  background-image: linear-gradient(
    100deg,
    currentColor 0 40%,
    #ffd9d9 50%,
    currentColor 60% 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    thm-word-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) backwards,
    thm-shine 5s ease-in-out 1.4s infinite;
}

.thm-anim .thm-books {
  animation: thm-books-run 70s linear infinite;
}

.thm-anim .thm-books--back {
  animation-direction: reverse;
}

.thm-anim .thm-testi__track {
  animation: thm-testi-run 60s linear infinite;
}

@media (hover: hover) {
  .thm-books__rail:hover .thm-books,
  .thm-books__rail:focus-within .thm-books,
  .thm-testi__viewport:hover .thm-testi__track,
  .thm-testi__viewport:focus-within .thm-testi__track {
    animation-play-state: paused;
  }
}

@media (max-width: 767.98px) {
  .thm-services__col {
    flex: 0 0 100%;
  }

  .thm-services__slider .thm-arrow--prev { left: -4px; }
  .thm-services__slider .thm-arrow--next { right: -4px; }
}

@media (max-width: 991.98px) {
  .thm-nav li a,
  .thm-nav__toggle {
    padding-inline: 2px;
  }
}

@media (max-width: 575.98px) {
  .lp-topbar__inner {
    justify-content: center;
    gap: 0;
  }

  .lp-topbar a:first-child {
    display: none;
  }

  .lp-topbar a {
    font-size: 11.5px;
    white-space: nowrap;
  }

  .lp-topbar img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 575.98px) {
  .lp-form__inner {
    padding: 20px 18px 24px;
  }

  .lp-form__title {
    font-size: 25px;
    margin-bottom: 16px;
  }
}

.thm-raildots {
  margin-bottom: 26px;
}

.lp-services .thm-raildots {
  margin-bottom: 34px;
}

@media (max-width: 767.98px) {
  .lp-consult__form {
    padding: 20px 18px;
    border-width: 5px;
  }

  .lp-consult__form h3 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .lp-consult__lead {
    font-size: 13px;
  }
}

.lp-acc__btn > span:first-child {
  font-family: var(--thm-font-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

@media (max-width: 767.98px) {
  .lp-acc__btn {
    gap: 10px;
    padding: 13px 12px;
  }

  .lp-acc__btn > span:first-child {
    font-size: 14px;
  }

  .lp-acc__body {
    padding: 0 12px 14px;
  }
}

@media (max-width: 991.98px) {
  .thm-plans.thm-swipe.thm-swipe > * {
    flex: 0 0 76%;
  }

  .thm-plan {
    padding: 24px 18px 26px;
  }

  .thm-plan__features li {
    padding-left: 22px;
  }
}

@media (max-width: 575.98px) {
  .thm-plans.thm-swipe.thm-swipe > * {
    flex: 0 0 92%;
  }

  .thm-plan {
    padding: 22px 15px 24px;
  }

  .thm-plan__title {
    font-size: 21px;
  }
}

.thm-modal__mark {
  position: absolute;
  top: 22px;
  left: 26px;
  z-index: 2;
  width: 74px;
  height: 74px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 6px 18px rgba(2, 12, 22, 0.28);
}

.thm-modal__sig {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 767.98px) {
  .thm-modal__mark,
  .thm-modal__sig {
    display: none;
  }
}

.thm-services__list {
  list-style: none;
  margin: 26px 0 30px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  max-width: 460px;
}

.thm-services__list a {
  position: relative;
  display: block;
  padding-left: 20px;
  font-size: 14px;
  line-height: 20px;
  color: var(--thm-on-dark-soft);
  transition: color 0.2s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.thm-services__list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid var(--thm-brand);
  transition: background 0.2s ease;
}

@media (hover: hover) {
  .thm-services__list a:hover {
    color: #fff;
    transform: translateX(3px);
  }

  .thm-services__list a:hover::before {
    background: var(--thm-brand);
  }
}

@media (max-width: 991.98px) {
  .thm-services__list {
    margin: 22px 0 26px;
  }
}

@media (max-width: 420px) {
  .thm-services__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
}

.thm-nav > li.thm-nav__item--closing > .thm-mega,
.thm-nav > li.thm-nav__item--closing:hover > .thm-mega,
.thm-nav > li.thm-nav__item--closing:focus-within > .thm-mega {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px) scale(0.98);
  transition: opacity 0.26s ease, transform 0.3s cubic-bezier(0.4, 0, 1, 1), visibility 0.3s;
}

.thm-nav > li.thm-nav__item--closing:hover > .thm-nav__toggle {
  color: var(--thm-navy);
}

.thm-nav > li.thm-nav__item--closing:hover > .thm-nav__toggle::after {
  transform: rotate(45deg);
}

html {
  scrollbar-width: auto;
  scrollbar-color: var(--thm-brand) rgba(0, 62, 101, 0.1);
}

::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 62, 101, 0.08);
}

::-webkit-scrollbar-thumb {
  background: var(--thm-brand);
  border-radius: 10px;

  border: 2px solid transparent;
  background-clip: padding-box;
  min-height: 40px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--thm-brand-dark);
  background-clip: padding-box;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

.thm-swipe.thm-swipe,
.thm-scroll,
.thm-services__cards,
.thm-books__rail,
.lp-portfolio__rail,
.thm-testi__viewport {
  scrollbar-width: none;
}

.thm-swipe.thm-swipe::-webkit-scrollbar,
.thm-scroll::-webkit-scrollbar,
.thm-services__cards::-webkit-scrollbar,
.thm-books__rail::-webkit-scrollbar,
.lp-portfolio__rail::-webkit-scrollbar,
.thm-testi__viewport::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.thm-link,
.thm-footer__links a,
.lp-footer__legal a,
.thm-legal__contact a,
.thm-modal__note a {
  position: relative;
}

.thm-link::after,
.thm-footer__links a::after,
.lp-footer__legal a::after,
.thm-legal__contact a::after,
.thm-modal__note a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
  .thm-link:hover::after,
  .thm-footer__links a:hover::after,
  .lp-footer__legal a:hover::after,
  .thm-legal__contact a:hover::after,
  .thm-modal__note a:hover::after {
    transform: scaleX(1);
  }

  .thm-link img {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .thm-link:hover img {
    transform: translateX(5px);
  }
}

.thm-nav > li > a,
.thm-nav__toggle {
  position: relative;
}

@media (hover: hover) and (min-width: 992px) {
  .thm-nav > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--thm-brand);
    transform: scaleX(0);
    transform-origin: 50% 50%;
    transition: transform 0.26s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .thm-nav > li > a:hover::after {
    transform: scaleX(1);
  }

  .thm-nav > li > a.is-active::after {
    content: none;
  }
}

@media (hover: hover) {
  .thm-pgrid__grid img,
  .thm-tgrid__card {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  }

  .thm-pgrid__grid img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .thm-tgrid__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
  }
}

.thm-input,
.thm-form input,
.thm-form textarea,
.thm-form select,
.thm-svcform input,
.thm-svcform textarea {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.thm-form input:focus,
.thm-form textarea:focus,
.thm-form select:focus,
.thm-svcform input:focus,
.thm-svcform textarea:focus {
  outline: 0;
  border-color: var(--thm-brand);
  box-shadow: 0 0 0 3px rgba(194, 39, 45, 0.14);
}

.thm-anim [data-reveal] .thm-divider,
.thm-anim [data-reveal] > .thm-divider {
  transform-origin: 0 50%;
  transform: scaleX(0.12);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.18s;
}

.thm-anim [data-reveal][data-in] .thm-divider,
.thm-anim [data-reveal][data-in] > .thm-divider {
  transform: scaleX(1);
}

.thm-anim [data-reveal] .thm-divider--center,
.thm-anim [data-reveal] > .thm-divider--center {
  transform-origin: 50% 50%;
}

@media (hover: hover) {
  .thm-step__icon,
  .thm-card__icon,
  .thm-why__icon {
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .thm-step:hover .thm-step__icon,
  .thm-card:hover .thm-card__icon,
  .thm-why__card:hover .thm-why__icon {
    transform: scale(1.12) rotate(-5deg);
  }

  .lp-logos__tile img {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s ease;
    filter: grayscale(0.35);
  }

  .lp-logos__tile:hover img {
    transform: scale(1.06);
    filter: grayscale(0);
  }
}

.thm-btn:active,
.lp-btn:active,
.thm-arrow:active {
  transform: translateY(1px) scale(0.985);
}

.thm-arrow {
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

@media (hover: hover) {
  .thm-arrow:hover {
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  }

  .thm-services__slider .thm-arrow:hover,
  .thm-portfolio__strip .thm-arrow:hover {
    transform: translateY(-50%) scale(1.12);
  }
}

@media (hover: hover) {
  .thm-topbar a,
  .lp-topbar a {
    transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .thm-topbar a:hover,
  .lp-topbar a:hover {
    transform: translateY(-1px);
  }
}

@media (hover: hover) {
  .thm-trust img,
  .lp-trust img {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .thm-trust img:hover,
  .lp-trust img:hover {
    transform: translateY(-3px) scale(1.05);
  }
}

button.thm-btn,
button.lp-btn,
button.lp-svccard {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  font: inherit;
  text-align: center;
  cursor: pointer;
}

button.lp-svccard {
  width: 100%;
  text-align: inherit;
}

@media (max-width: 767.98px) {
  .thm-services__cards {
    min-height: 0;
  }

  .thm-services__col {
    grid-template-rows: repeat(2, minmax(0, 1fr));
    min-height: 500px;
  }
}

@media (max-width: 991.98px) {
  .lp-header__logo {
    width: 86px;
    height: 86px;
  }

  .lp-header__inner {
    min-height: 86px;
  }
}

@media (max-width: 575.98px) {

  .lp-header__logo {
    width: 86px;
    height: 86px;
    padding: 5px;
  }

  .lp-header__inner {
    min-height: 86px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thm-anim {
    scroll-behavior: auto;
  }

  .thm-modal,
  .thm-modal__dialog {
    animation-duration: 0.01ms !important;
  }

  .thm-anim [data-reveal] .thm-divider,
  .thm-anim [data-reveal] > .thm-divider,
  .thm-anim [data-reveal],
  .thm-anim [data-stagger] > *,
  .thm-anim .lp-lit__circle,
  .thm-anim .lp-lit__txt,
  .thm-anim .lp-step__disc {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .thm-anim .lp-process__grid::before {
    transform: none !important;
    transition: none !important;
  }

  html { scroll-behavior: auto; }

  .thm-anim .thm-hero__title span,
  .thm-anim .thm-hero__content > *,
  .thm-anim .thm-hero__books img,
  .thm-anim .thm-modal__head > *,
  .thm-anim .thm-modal__fields > *,
  .thm-anim .thm-modal__submit,
  .thm-anim .thm-modal__note,
  .thm-anim .lp-portfolio__track,
  .thm-anim .thm-books,
  .thm-anim .thm-testi__track,
  .thm-anim .lp-form__title em,
  .thm-anim .lp-hero__title em,
  .thm-anim .thm-hero__title em,
  .thm-anim .lp-about__rings,
  .thm-anim .lp-lit__circle::after,
  .thm-anim .lp-services__grid[data-in] .lp-svccard img,
  .thm-anim .lp-hero__eyebrow,
  .thm-anim .lp-hero__title,
  .thm-anim .lp-hero__text,
  .thm-anim .lp-hero .lp-btn-row,
  .thm-anim .lp-hero__arrow,
  .thm-acc__body {
    animation: none !important;
  }
}

.rev-mq {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.rev-mq__track {
  display: flex;
  gap: 26px;
  width: max-content;
  padding: 6px 0 10px;

  animation: rev-run 150s linear infinite;
}

@keyframes rev-run {
  to { transform: translateX(-50%); }
}

@media (hover: hover) {
  .rev-mq:hover .rev-mq__track {
    animation-play-state: paused;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rev-mq__track { animation: none; }
}

.rev-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
}

.rev-card {

  height: 330px;
  flex: 0 0 360px;
  width: 360px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 28px 24px 22px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  text-decoration: none;
  color: var(--thm-ink);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rev-card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 22px;
  font-family: var(--thm-font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--thm-brand);
  opacity: 0.18;
}

@media (hover: hover) {
  .rev-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 56px rgba(0, 0, 0, 0.24);
  }
}

.rev-card__stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 3px;
}

.rev-card__text {
  margin: 0;

  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 10px;
  font-size: 15px;
  line-height: 1.62;
  color: var(--thm-ink);
  scrollbar-width: thin;
  scrollbar-color: var(--thm-brand) rgba(0, 0, 0, 0.08);
}

.rev-card__text::-webkit-scrollbar {
  width: 6px;
}

.rev-card__text::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.rev-card__text::-webkit-scrollbar-thumb {
  background: var(--thm-brand);
  border-radius: 4px;
}

.rev-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}

.rev-card__who {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.rev-card__name {
  font-weight: 700;
  color: var(--thm-navy);
}

.rev-card__loc {
  font-size: 12px;
  color: var(--thm-muted, #6b7684);
}

.rev-card__src {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 600;
  color: #00b67a;
}

.rev-card__src::before {
  content: "\2605";
  font-size: 13px;
}

.rev-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 30px auto 0;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #00b67a;
  border-radius: 40px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.rev-more::before {
  content: "\2605";
}

.rev-more:hover {
  background: #019d69;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 182, 122, 0.35);
}

.rev-morewrap {
  text-align: center;
}

.thm-tgrid .rev-card {
  background: var(--thm-brand-tint, #fbf2f2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 575.98px) {
  .rev-card {
    flex-basis: 88vw;
    width: 88vw;
    height: 320px;
    padding: 24px 20px 20px;
  }
}

.thm-header--min .thm-header__aside {
  display: flex;
}

@media (max-width: 1199.98px) {
  .thm-header--min .thm-header__inner {
    flex-wrap: nowrap;
    align-items: center;
  }

  .thm-header--min .thm-header__aside {
    flex-basis: auto;
    width: auto;
    margin-left: auto;
    justify-content: flex-end;
    gap: 10px;
  }

  .thm-header--min .thm-chat {
    display: none;
  }

  .thm-header--min .thm-header__aside .thm-btn {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 18px;
    font-size: 13px;
    white-space: nowrap;
  }
}

@media (max-width: 400px) {
  .thm-header--min .thm-header__aside .thm-btn {
    padding: 0 13px;
    font-size: 12px;
  }
}

.lp-whatsapp {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lp-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.lp-whatsapp svg {
  position: relative;
  z-index: 1;
}

.lp-whatsapp__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.55;
  animation: lp-wa-pulse 2.2s ease-out infinite;
}

@keyframes lp-wa-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-whatsapp__pulse { animation: none; opacity: 0; }
}

@media (max-width: 575.98px) {
  .lp-whatsapp {
    left: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}
