.kv {
  --kv-ink: var(--cl-d, #121717);
  --kv-muted: var(--cl-e, #434548);
  --kv-teal: var(--cl-l, #14828d);
  --kv-teal-lt: #3db4bf;
  --kv-teal-dk: #0e6a73;
  --kv-soft: var(--bg-b, #f0f4f6);
  --kv-paper: var(--bg-c, #faffff);
  --kv-white: #fff;
  --kv-line: rgba(18, 23, 23, 0.08);

  --kv-r-lg: clamp(24px, 2.4372vw, 3.2rem);
  --kv-r-md: clamp(20px, 1.8279vw, 2.4rem);
  --kv-r-sm: clamp(14px, 1.2186vw, 1.6rem);
  --kv-r-pill: 3.2rem;

  --kv-pad: clamp(20px, 2.4372vw, 3.2rem);
  --kv-pad-s: clamp(16px, 1.8279vw, 2.4rem);
  --kv-gap: clamp(16px, 1.8279vw, 2.4rem);

  --kv-sh: 0 0.4rem 3rem rgba(18, 23, 23, 0.06);
  --kv-sh-h: 0 0.8rem 4rem rgba(18, 23, 23, 0.12);

  --kv-ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --kv-grid: linear-gradient(rgba(20, 130, 141, 0.055) 0.1rem, transparent 0.1rem),
    linear-gradient(90deg, rgba(20, 130, 141, 0.055) 0.1rem, transparent 0.1rem);
  --kv-grid-inv: linear-gradient(rgba(255, 255, 255, 0.05) 0.1rem, transparent 0.1rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0.1rem, transparent 0.1rem);

  --kv-check: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 12.5l5 5L19.5 7'/%3E%3C/svg%3E");

  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.0465vw, 4rem);
  width: 100%;
  font-family: var(--font-family, "Montserrat", sans-serif);
  color: var(--kv-ink);
  font-size: clamp(14px, 1.2186vw, 1.6rem);
  line-height: 155%;
  -webkit-font-smoothing: antialiased;
}

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

.kv p {
  margin: 0;
}

.kv b,
.kv strong {
  font-weight: 700;
  color: var(--kv-ink);
}

.kv .hl {
  color: var(--kv-teal);
  font-weight: 700;
  white-space: nowrap;
}

.kv .kv-ico {
  display: block;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  fill: currentColor;
}

.kv h1,
.kv .kv-title {
  margin: 0;
  font-family: inherit;
  font-size: clamp(26px, 2.7418vw, 3.6rem);
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--kv-ink);
}

.kv h2 {
  position: relative;
  margin: 0;
  padding-top: clamp(14px, 1.3709vw, 1.8rem);
  font-family: inherit;
  font-size: clamp(22px, 2.1325vw, 2.8rem);
  font-weight: 700;
  line-height: 122%;
  letter-spacing: -0.01em;
  color: var(--kv-ink);
  scroll-margin-top: calc(var(--header-height, 95px) + 2rem);
}

.kv h3 {
  margin: 0;
  font-family: inherit;
  font-size: clamp(17px, 1.5232vw, 2rem);
  font-weight: 600;
  line-height: 130%;
  color: var(--kv-ink);
}

.kv .kv-lead {
  max-width: 96rem;
  font-size: clamp(15px, 1.2948vw, 1.7rem);
  line-height: 158%;
  color: var(--kv-muted);
}

.kv .kv-lead b {
  color: var(--kv-ink);
}

.kv .kv-sec {
  display: flex;
  flex-direction: column;
  gap: var(--kv-gap);
  padding: calc(clamp(90px, 10.1858vw, 10rem) / 2) 0;
}

.kv .answer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.2186vw, 1.6rem);
  padding: var(--kv-pad);
  overflow: hidden;
  background-color: var(--kv-soft);
  background-image: var(--kv-grid);
  background-size: 4.8rem 4.8rem;
  border-radius: var(--kv-r-lg);
}

.kv .answer::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -30%;
  right: -8%;
  width: clamp(200px, 24vw, 32rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(61, 180, 191, 0.28), rgba(61, 180, 191, 0) 65%);
  pointer-events: none;
}

.kv .answer__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
  padding: clamp(8px, 0.9139vw, 1.2rem) clamp(14px, 1.3709vw, 1.8rem);
  border-radius: var(--kv-r-pill);
  background: var(--kv-white);
  color: var(--kv-teal);
  font-size: clamp(12px, 1.0663vw, 1.4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  box-shadow: 0 0.4rem 2rem rgba(18, 23, 23, 0.06);
}

.kv .answer__badge .kv-ico {
  width: 1.8rem;
  height: 1.8rem;
}

.kv .answer__text {
  max-width: 96rem;
  font-size: clamp(15px, 1.3709vw, 1.8rem);
  line-height: 160%;
  color: var(--kv-ink);
}

.kv .upd {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  margin: 0;
  color: var(--kv-muted);
  font-size: clamp(12px, 1.0663vw, 1.4rem);
  font-weight: 500;
  line-height: 1;
  opacity: 0.85;
}

.kv .upd .kv-ico {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--kv-teal);
}

.kv .proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 1.2186vw, 1.6rem);
}

.kv .proof .p {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: clamp(16px, 1.8279vw, 2.4rem);
  overflow: hidden;
  background: var(--kv-white);
  border: 0.1rem solid var(--kv-line);
  border-radius: var(--kv-r-md);
  box-shadow: var(--kv-sh);
  transition: transform 0.4s var(--kv-ease), box-shadow 0.4s var(--kv-ease),
    border-color 0.4s var(--kv-ease);
}

.kv .proof .p::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 0.4rem;
  background: linear-gradient(90deg, var(--kv-teal-lt), var(--kv-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--kv-ease);
}

.kv .proof .p__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(36px, 3.3511vw, 4.4rem);
  height: clamp(36px, 3.3511vw, 4.4rem);
  margin-bottom: 0.4rem;
  border-radius: 50%;
  background: var(--kv-soft);
  color: var(--kv-teal);
  transition: background 0.4s var(--kv-ease), color 0.4s var(--kv-ease);
}

.kv .proof .p__ico .kv-ico {
  width: 52%;
  height: 52%;
}

.kv .proof .v {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  color: var(--kv-teal);
  font-size: clamp(24px, 2.7418vw, 3.6rem);
  font-weight: 700;
  line-height: 115%;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.kv .proof .v i {
  font-style: normal;
  font-size: clamp(13px, 1.1425vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0;
}

.kv .proof .l {
  color: var(--kv-muted);
  font-size: clamp(12px, 1.0663vw, 1.4rem);
  font-weight: 500;
  line-height: 140%;
}

@media (hover: hover) and (pointer: fine) {
  .kv .proof .p:hover {
    transform: translateY(-0.6rem);
    border-color: rgba(20, 130, 141, 0.28);
    box-shadow: var(--kv-sh-h);
  }
  .kv .proof .p:hover::before {
    transform: scaleX(1);
  }
  .kv .proof .p:hover .p__ico {
    background: var(--kv-teal);
    color: var(--kv-white);
  }
}

.kv .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  height: clamp(48px, 4.8743vw, 6.4rem);
  padding: 0 clamp(20px, 1.8279vw, 2.8rem);
  border: 0.2rem solid var(--kv-ink);
  border-radius: var(--kv-r-pill);
  background: var(--kv-ink);
  color: var(--kv-white);
  font-family: inherit;
  font-size: clamp(15px, 1.3709vw, 1.8rem);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.4s var(--kv-ease), border-color 0.4s var(--kv-ease),
    color 0.4s var(--kv-ease);
}

.kv .cta .kv-ico {
  width: 2rem;
  height: 2rem;
  transition: transform 0.4s var(--kv-ease);
}

@media (hover: hover) and (pointer: fine) {
  .kv .cta:hover {
    background: var(--kv-teal);
    border-color: var(--kv-teal);
    color: var(--kv-white);
  }
  .kv .cta:hover .kv-ico {
    transform: translateX(0.4rem);
  }
}

.kv .cta:focus-visible {
  outline: 0.3rem solid var(--kv-teal-lt);
  outline-offset: 0.3rem;
}

.kv .cta--white {
  background: var(--kv-white);
  border-color: var(--kv-white);
  color: var(--kv-ink);
}

@media (hover: hover) and (pointer: fine) {
  .kv .cta--white:hover {
    background: var(--kv-ink);
    border-color: var(--kv-ink);
    color: var(--kv-white);
  }
}

.kv .cta--ghost {
  background: transparent;
  color: var(--kv-ink);
}

@media (hover: hover) and (pointer: fine) {
  .kv .cta--ghost:hover {
    background: transparent;
    border-color: var(--kv-teal);
    color: var(--kv-teal);
  }
}

.kv .cta--lg {
  height: clamp(52px, 5.4836vw, 7.2rem);
  padding: 0 clamp(24px, 2.4372vw, 3.6rem);
}

.kv .ctaband {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 1.8279vw, 2.8rem);
  padding: var(--kv-pad);
  overflow: hidden;
  background: var(--kv-soft);
  border-radius: var(--kv-r-lg);
}

.kv .ctaband__text {
  display: flex;
  flex: 1 1 32rem;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 0;
}

.kv .ctaband__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  margin-bottom: 0.2rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--kv-r-pill);
  background: var(--kv-white);
  color: var(--kv-teal);
  font-size: clamp(11px, 0.9901vw, 1.3rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.kv .ctaband__chip .kv-ico {
  width: 1.6rem;
  height: 1.6rem;
}

.kv .ctaband__title {
  font-size: clamp(19px, 1.8279vw, 2.4rem);
  font-weight: 700;
  line-height: 128%;
  letter-spacing: -0.01em;
}

.kv .ctaband__sub {
  color: var(--kv-muted);
  font-size: clamp(13px, 1.1425vw, 1.5rem);
  line-height: 145%;
}

.kv .ctaband__actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
}

.kv .ctaband--accent {
  background-color: var(--kv-teal);
  background-image: var(--kv-grid-inv),
    linear-gradient(150deg, var(--kv-teal-lt) 0%, var(--kv-teal) 52%, var(--kv-teal-dk) 100%);
  background-size: 4.8rem 4.8rem, 4.8rem 4.8rem, auto;
  color: var(--kv-white);
}

.kv .ctaband--accent .ctaband__title,
.kv .ctaband--accent b {
  color: var(--kv-white);
}

.kv .ctaband--accent .ctaband__sub {
  color: rgba(255, 255, 255, 0.82);
}

.kv .ctaband--accent .ctaband__chip {
  background: rgba(255, 255, 255, 0.16);
  color: var(--kv-white);
}

.kv .ctaband--accent::before,
.kv .ctaband--accent::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.kv .ctaband--accent::before {
  right: -6rem;
  top: 50%;
  translate: 0 -50%;
  width: clamp(220px, 26vw, 36rem);
  aspect-ratio: 1;
  background: radial-gradient(circle at 32% 32%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 62%);
}

.kv .ctaband--accent::after {
  left: -5rem;
  bottom: -9rem;
  width: 20rem;
  aspect-ratio: 1;
  border: solid 3.2rem rgba(255, 255, 255, 0.07);
}

.kv .kv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.2186vw, 1.6rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.kv .kv-cards__item {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2186vw, 1.6rem);
  padding: clamp(18px, 1.8279vw, 2.4rem);
  background: var(--kv-white);
  border: 0.1rem solid var(--kv-line);
  border-radius: var(--kv-r-md);
  box-shadow: var(--kv-sh);
  transition: transform 0.4s var(--kv-ease), box-shadow 0.4s var(--kv-ease),
    border-color 0.4s var(--kv-ease);
}

.kv .kv-cards__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(44px, 4.265vw, 5.6rem);
  height: clamp(44px, 4.265vw, 5.6rem);
  border: solid 0.4rem var(--kv-paper);
  border-radius: 50%;
  background: var(--kv-teal);
  color: var(--kv-white);
  transition: transform 0.4s var(--kv-ease);
}

.kv .kv-cards__ico .kv-ico {
  width: 58%;
  height: 58%;
}

.kv .kv-cards__title {
  font-size: clamp(16px, 1.3709vw, 1.8rem);
  font-weight: 600;
  line-height: 130%;
}

.kv .kv-cards__text {
  color: var(--kv-muted);
  font-size: clamp(13px, 1.1425vw, 1.5rem);
  line-height: 148%;
}

@media (hover: hover) and (pointer: fine) {
  .kv .kv-cards__item:hover {
    transform: translateY(-0.6rem);
    border-color: rgba(20, 130, 141, 0.28);
    box-shadow: var(--kv-sh-h);
  }
  .kv .kv-cards__item:hover .kv-cards__ico {
    transform: scale(1.08);
  }
}

.kv .kv-note {
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 1.2186vw, 1.6rem);
  padding: clamp(16px, 1.8279vw, 2.4rem);
  background: var(--kv-soft);
  border-radius: var(--kv-r-md);
}

.kv .kv-note__ico {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: clamp(36px, 3.0465vw, 4rem);
  height: clamp(36px, 3.0465vw, 4rem);
  border-radius: 50%;
  background: var(--kv-white);
  color: var(--kv-teal);
}

.kv .kv-note__ico .kv-ico {
  width: 55%;
  height: 55%;
}

.kv .kv-note p {
  font-size: clamp(13px, 1.1425vw, 1.5rem);
  line-height: 152%;
  color: var(--kv-muted);
}

.kv .kv-note p b {
  color: var(--kv-ink);
}

.kv .kv-subjects {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 0.9139vw, 1.2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.kv .kv-subjects__link {
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.9139vw, 1.2rem);
  height: 100%;
  white-space: nowrap;
  padding: clamp(10px, 0.9139vw, 1.2rem) clamp(14px, 1.2186vw, 1.6rem);
  background: var(--kv-white);
  border: 0.1rem solid var(--kv-line);
  border-radius: var(--kv-r-pill);
  color: var(--kv-ink);
  font-size: clamp(14px, 1.2186vw, 1.6rem);
  font-weight: 600;
  line-height: 130%;
  text-decoration: none;
  box-shadow: var(--kv-sh);
  transition: transform 0.4s var(--kv-ease), border-color 0.4s var(--kv-ease),
    box-shadow 0.4s var(--kv-ease);
}

.kv .kv-subjects__ico {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: clamp(34px, 3.0465vw, 4rem);
  height: clamp(34px, 3.0465vw, 4rem);
  border-radius: 50%;
  background: var(--kv-soft);
  color: var(--kv-teal);
  transition: background 0.4s var(--kv-ease), color 0.4s var(--kv-ease);
}

.kv .kv-subjects__ico .kv-ico {
  width: 52%;
  height: 52%;
}

.kv .kv-subjects__arrow {
  margin-left: auto;
  color: var(--kv-teal);
  transition: transform 0.4s var(--kv-ease);
}

.kv .kv-subjects__arrow .kv-ico {
  width: 2rem;
  height: 2rem;
}

@media (hover: hover) and (pointer: fine) {
  .kv .kv-subjects__link:hover {
    transform: translateY(-0.4rem);
    border-color: rgba(20, 130, 141, 0.3);
    box-shadow: var(--kv-sh-h);
  }
  .kv .kv-subjects__link:hover .kv-subjects__ico {
    background: var(--kv-teal);
    color: var(--kv-white);
  }
  .kv .kv-subjects__link:hover .kv-subjects__arrow {
    transform: translateX(0.4rem);
  }
}

.kv .kv-price {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 1.2186vw, 1.6rem);
}

.kv .kv-price__card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: clamp(20px, 2.1325vw, 2.8rem);
  overflow: hidden;
  border-radius: var(--kv-r-lg);
}

.kv .kv-price__card--main {
  background-color: var(--kv-teal);
  background-image: var(--kv-grid-inv),
    linear-gradient(150deg, var(--kv-teal-lt) 0%, var(--kv-teal) 55%, var(--kv-teal-dk) 100%);
  background-size: 4.8rem 4.8rem, 4.8rem 4.8rem, auto;
  color: var(--kv-white);
}

.kv .kv-price__card--alt {
  background: var(--kv-soft);
  color: var(--kv-ink);
}

.kv .kv-price__label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  margin-bottom: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--kv-r-pill);
  font-size: clamp(11px, 0.9901vw, 1.3rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.kv .kv-price__card--main .kv-price__label {
  background: rgba(255, 255, 255, 0.18);
  color: var(--kv-white);
}

.kv .kv-price__card--alt .kv-price__label {
  background: var(--kv-white);
  color: var(--kv-muted);
}

.kv .kv-price__value {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  font-size: clamp(30px, 3.6558vw, 4.8rem);
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.kv .kv-price__value i {
  font-style: normal;
  font-size: clamp(15px, 1.5232vw, 2rem);
  font-weight: 600;
  letter-spacing: 0;
}

.kv .kv-price__card--alt .kv-price__value {
  color: var(--kv-muted);
  font-size: clamp(22px, 2.4372vw, 3.2rem);
}

.kv .kv-price__unit {
  font-size: clamp(13px, 1.1425vw, 1.5rem);
  line-height: 145%;
}

.kv .kv-price__card--main .kv-price__unit {
  color: rgba(255, 255, 255, 0.85);
}

.kv .kv-price__card--alt .kv-price__unit {
  color: var(--kv-muted);
}

.kv .kv-price__card--main::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -5rem;
  bottom: -7rem;
  width: 18rem;
  aspect-ratio: 1;
  border: solid 3rem rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.kv .kv-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.2186vw, 1.6rem);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: kvstep;
}

.kv .kv-steps__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2186vw, 1.6rem);
  padding: clamp(18px, 1.8279vw, 2.4rem);
  background: var(--kv-white);
  border: 0.1rem solid var(--kv-line);
  border-radius: var(--kv-r-md);
  box-shadow: var(--kv-sh);
  counter-increment: kvstep;
}

.kv .kv-steps__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 3.6558vw, 4.8rem);
  height: clamp(40px, 3.6558vw, 4.8rem);
  border: solid 0.4rem var(--kv-paper);
  border-radius: 50%;
  background: var(--kv-ink);
  color: var(--kv-white);
  font-size: clamp(14px, 1.2186vw, 1.6rem);
  font-weight: 700;
  line-height: 1;
}

.kv .kv-steps__num::before {
  content: counter(kvstep);
}

.kv .kv-steps__item:last-child .kv-steps__num {
  background: var(--kv-teal);
}

.kv .kv-steps__title {
  font-size: clamp(15px, 1.3709vw, 1.8rem);
  font-weight: 600;
  line-height: 130%;
}

.kv .kv-steps__text {
  color: var(--kv-muted);
  font-size: clamp(13px, 1.1425vw, 1.5rem);
  line-height: 148%;
}

.kv .kv-final {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(12px, 1.2186vw, 1.6rem) clamp(16px, 1.8279vw, 2.4rem);
}

.kv .kv-final__hint {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--kv-muted);
  font-size: clamp(13px, 1.1425vw, 1.5rem);
  line-height: 140%;
}

.kv .kv-final__hint .kv-ico {
  width: 2rem;
  height: 2rem;
  color: var(--kv-teal);
}

.kv-js .kv [data-kv-reveal] {
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity 0.7s var(--kv-ease), transform 0.7s var(--kv-ease);
  transition-delay: var(--kv-delay, 0s);
}

.kv-js .kv [data-kv-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1023.98px) {
  .kv {
    gap: clamp(24px, 4.17vw, 32px);
  }

  .kv .kv-price {
    grid-template-columns: 1fr;
  }

  .kv .ctaband {
    align-items: flex-start;
  }
}

@media (max-width: 743.98px) {
  .kv .proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .kv .kv-cards,
  .kv .kv-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .kv .kv-subjects__link {
    width: 100%;
  }
  .kv .kv-subjects > li {
    flex: 1 1 100%;
  }
}

@media (max-width: 575.98px) {
  .kv .answer,
  .kv .ctaband,
  .kv .kv-price__card {
    border-radius: 20px;
  }

  .kv .kv-cards,
  .kv .kv-steps {
    grid-template-columns: 1fr;
  }

  .kv .ctaband__actions,
  .kv .kv-final {
    width: 100%;
  }

  .kv .cta {
    height: auto;
    min-height: 48px;
    padding: 1.2rem 2rem;
    line-height: 1.3;
  }

  .kv .cta--lg {
    min-height: 52px;
  }

  .kv .ctaband__actions .cta,
  .kv .kv-final .cta {
    width: 100%;
  }

  .kv .kv-final__hint {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .kv .proof .p__ico {
    display: none;
  }
}

.kv .kv-sec p a:not([class]),
.kv .clean a:not([class]),
.kv .obj a:not([class]) {
  display: inline;
  color: var(--kv-teal);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 0.1rem;
  text-underline-offset: 0.3rem;
  transition: color 0.3s var(--kv-ease);
}

@media (hover: hover) and (pointer: fine) {
  .kv .kv-sec p a:not([class]):hover,
  .kv .clean a:not([class]):hover,
  .kv .obj a:not([class]):hover {
    color: var(--kv-ink);
  }
}

.kv .kv-table {
  position: relative;
  overflow: hidden;
  background: var(--kv-white);
  border: 0.1rem solid var(--kv-line);
  border-radius: var(--kv-r-lg);
  box-shadow: var(--kv-sh);
}

.kv .tbl-cst {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  font-size: clamp(13px, 1.1425vw, 1.5rem);
  line-height: 145%;
}

.kv .tbl-cst thead th {
  padding: clamp(14px, 1.5232vw, 2rem) clamp(12px, 1.3709vw, 1.8rem);
  background-color: var(--kv-teal);
  background-image: linear-gradient(150deg, var(--kv-teal-lt) 0%, var(--kv-teal) 60%, var(--kv-teal-dk) 100%);
  color: var(--kv-white);
  font-family: inherit;
  font-size: clamp(12px, 1.0663vw, 1.4rem);
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.01em;
  text-align: left;
  vertical-align: middle;
  border: 0;
}

.kv .tbl-cst thead th:first-child {
  width: 26%;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.kv .tbl-cst thead th.is-best {
  position: relative;
}

.kv .tbl-cst thead th.is-best::after {
  content: "";
  position: absolute;
  inset: 0.6rem 0.6rem 0.6rem 0.6rem;
  border: 0.2rem solid rgba(255, 255, 255, 0.55);
  border-radius: 1.2rem;
  pointer-events: none;
}

.kv .tbl-cst tbody td {
  padding: clamp(14px, 1.5232vw, 2rem) clamp(12px, 1.3709vw, 1.8rem);
  border: 0;
  border-bottom: 0.1rem solid var(--kv-line);
  color: var(--kv-muted);
  vertical-align: top;
}

.kv .tbl-cst tbody tr:last-child td {
  border-bottom: 0;
}

.kv .tbl-cst tbody td:first-child {
  color: var(--kv-ink);
  font-weight: 600;
}

.kv .tbl-cst tbody td:nth-child(2) {
  background: rgba(20, 130, 141, 0.05);
  color: var(--kv-ink);
  font-weight: 600;
}

.kv .tbl-cst tbody tr:last-child td:nth-child(2) {
  border-radius: 0 0 var(--kv-r-lg) 0;
}

.kv .tbl-cst .yes {
  color: var(--kv-teal) !important;
  font-weight: 700 !important;
}

.kv .tbl-cst .yes::before {
  content: "";
  display: inline-block;
  width: clamp(16px, 1.3709vw, 1.8rem);
  height: clamp(16px, 1.3709vw, 1.8rem);
  margin-right: 0.8rem;
  vertical-align: -0.25em;
  background: currentColor;
  -webkit-mask: var(--kv-check) center / contain no-repeat;
  mask: var(--kv-check) center / contain no-repeat;
}

.kv .kv-table__note {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--kv-muted);
  font-size: clamp(12px, 1.0663vw, 1.4rem);
  line-height: 140%;
}

.kv .kv-table__note .kv-ico {
  width: 1.8rem;
  height: 1.8rem;
  color: var(--kv-teal);
}

@media (max-width: 743.98px) {
  .kv .kv-table {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .kv .tbl-cst,
  .kv .tbl-cst tbody,
  .kv .tbl-cst tr,
  .kv .tbl-cst td {
    display: block;
    width: 100%;
  }

  .kv .tbl-cst thead {
    display: none;
  }

  .kv .tbl-cst tbody tr {
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--kv-white);
    border: 0.1rem solid var(--kv-line);
    border-radius: 20px;
    box-shadow: var(--kv-sh);
  }

  .kv .tbl-cst tbody tr:last-child {
    margin-bottom: 0;
  }

  .kv .tbl-cst tbody td:first-child {
    padding: 14px 16px;
    background-color: var(--kv-teal);
    background-image: linear-gradient(150deg, var(--kv-teal-lt) 0%, var(--kv-teal) 100%);
    color: var(--kv-white);
    font-size: 15px;
    font-weight: 700;
    border-bottom: 0;
  }

  .kv .tbl-cst tbody td:not(:first-child) {
    display: grid;
    grid-template-columns: auto 1fr;
    justify-items: start;
    align-items: baseline;
    gap: 2px 8px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .kv .tbl-cst tbody td:not(:first-child)::after {
    content: attr(data-th);
    order: -1;
    color: var(--kv-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    grid-column: 1 / -1;
  }

  .kv .tbl-cst tbody td:nth-child(2) {
    border-radius: 0;
  }

  .kv .tbl-cst tbody tr td:last-child {
    border-bottom: 0;
  }
}

.kv .obj {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 1.5232vw, 2rem);
  padding: var(--kv-pad);
  overflow: hidden;
  background: var(--kv-white);
  border: 0.1rem solid rgba(20, 130, 141, 0.22);
  border-radius: var(--kv-r-lg);
  box-shadow: var(--kv-sh);
}

.kv .obj::before {
  content: "";
  position: absolute;
  top: clamp(20px, 2.4372vw, 3.2rem);
  bottom: clamp(20px, 2.4372vw, 3.2rem);
  left: 0;
  width: 0.6rem;
  border-radius: 0 1.2rem 1.2rem 0;
  background: var(--kv-teal);
}

.kv .obj__ico {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 3.6558vw, 4.8rem);
  height: clamp(40px, 3.6558vw, 4.8rem);
  border: solid 0.4rem var(--kv-paper);
  border-radius: 50%;
  background: var(--kv-teal);
  color: var(--kv-white);
}

.kv .obj__ico .kv-ico {
  width: 58%;
  height: 58%;
}

.kv .obj__body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 96rem;
}

.kv .obj__answer {
  color: var(--kv-teal);
  font-size: clamp(18px, 1.6754vw, 2.2rem);
  font-weight: 700;
  line-height: 125%;
  letter-spacing: -0.01em;
}

.kv .obj p {
  font-size: clamp(14px, 1.2186vw, 1.6rem);
  line-height: 158%;
  color: var(--kv-muted);
}

.kv .obj p b {
  color: var(--kv-ink);
}

@media (max-width: 575.98px) {
  .kv .obj {
    flex-direction: column;
    gap: 12px;
    border-radius: 20px;
  }
}

.kv .clean {
  --kv-dot: clamp(28px, 2.4372vw, 3.2rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(20px, 2.4372vw, 3.2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.kv .clean li {
  position: relative;
  padding: clamp(14px, 1.3709vw, 1.8rem) 0 clamp(14px, 1.3709vw, 1.8rem)
    calc(var(--kv-dot) + clamp(12px, 1.2186vw, 1.6rem));
  border-bottom: 0.1rem solid var(--kv-line);
  color: var(--kv-muted);
  font-size: clamp(14px, 1.2186vw, 1.6rem);
  line-height: 150%;
}

.kv .clean li b {
  color: var(--kv-ink);
}

.kv .clean li::before {
  content: "";
  position: absolute;
  top: clamp(12px, 1.1425vw, 1.5rem);
  left: 0;
  width: var(--kv-dot);
  height: var(--kv-dot);
  border-radius: 50%;
  background: rgba(20, 130, 141, 0.1);
}

.kv .clean li::after {
  content: "";
  position: absolute;
  top: clamp(12px, 1.1425vw, 1.5rem);
  left: 0;
  width: var(--kv-dot);
  height: var(--kv-dot);
  background: var(--kv-teal);
  -webkit-mask: var(--kv-check) center / 52% no-repeat;
  mask: var(--kv-check) center / 52% no-repeat;
}

.kv .clean li:last-child,
.kv .clean li:nth-last-child(2):nth-child(odd) {
  border-bottom: 0;
}

@media (max-width: 743.98px) {
  .kv .clean {
    grid-template-columns: 1fr;
  }
  .kv .clean li:nth-last-child(2):nth-child(odd) {
    border-bottom: 0.1rem solid var(--kv-line);
  }
  .kv .clean li:last-child {
    border-bottom: 0;
  }
}

.kv .kv-results {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.1325vw, 2.8rem);
  padding: clamp(24px, 2.7418vw, 3.6rem) var(--kv-pad);
  overflow: hidden;
  background-color: var(--kv-teal);
  background-image: var(--kv-grid-inv),
    linear-gradient(150deg, var(--kv-teal-lt) 0%, var(--kv-teal) 55%, var(--kv-teal-dk) 100%);
  background-size: 4.8rem 4.8rem, 4.8rem 4.8rem, auto;
  border-radius: var(--kv-r-lg);
  color: var(--kv-white);
}

.kv .kv-results::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -6rem;
  top: -10rem;
  width: 24rem;
  aspect-ratio: 1;
  border: solid 3.6rem rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.kv .kv-results__item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: clamp(20px, 2.1325vw, 2.8rem);
}

.kv .kv-results__item::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  bottom: 0.4rem;
  left: 0;
  width: 0.1rem;
  background: rgba(255, 255, 255, 0.24);
}

.kv .kv-results__item:first-child {
  padding-left: 0;
}

.kv .kv-results__item:first-child::before {
  display: none;
}

.kv .kv-results__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(36px, 3.0465vw, 4rem);
  height: clamp(36px, 3.0465vw, 4rem);
  margin-bottom: 0.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--kv-white);
}

.kv .kv-results__ico .kv-ico {
  width: 52%;
  height: 52%;
}

.kv .kv-results__v {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  color: var(--kv-white);
  font-size: clamp(28px, 3.0465vw, 4rem);
  font-weight: 700;
  line-height: 112%;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.kv .kv-results__v i {
  font-style: normal;
  font-size: clamp(13px, 1.1425vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0;
}

.kv .kv-results__l {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(13px, 1.1425vw, 1.5rem);
  font-weight: 500;
  line-height: 142%;
}

@media (max-width: 1023.98px) {
  .kv .kv-results {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 3.13vw, 24px);
  }
  .kv .kv-results__item:nth-child(odd) {
    padding-left: 0;
  }
  .kv .kv-results__item:nth-child(odd)::before {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .kv .kv-results {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  .kv .kv-results__item {
    padding-left: 0;
    padding-top: 16px;
  }
  .kv .kv-results__item::before,
  .kv .kv-results__item:nth-child(odd)::before {
    display: block;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 0.1rem;
  }
  .kv .kv-results__item:first-child {
    padding-top: 0;
  }
  .kv .kv-results__item:first-child::before {
    display: none;
  }
  .kv .kv-results__ico {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kv *,
  .kv *::before,
  .kv *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .kv-js .kv [data-kv-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .kv .ctaband,
  .kv .kv-final {
    display: none;
  }
  .kv-js .kv [data-kv-reveal] {
    opacity: 1;
    transform: none;
  }
}
