@charset "UTF-8";
@font-face {
  font-family: 'Stolzl';
  src: url("../fonts/Stolzl-Regular.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Stolzl';
  src: url("../fonts/Stolzl-Bold.ttf");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Stolzl';
  src: url("../fonts/Stolzl-Light.ttf");
  font-weight: 300;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Stolzl';
  src: url("../fonts/Stolzl-Medium.ttf");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

:root {
  --bg-color: #fff;
  --font-family: 'Stolzl', 'sans-serif';
  --font-color: #282828;
  --light-font: #585858;
  --dark-font: #262626;
  --transition: .3s all;
  --popup-bg: rgba(255, 255, 255, 0.95); }

.container {
  max-width: 89.375rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0; }
  @media (max-width: 899px) {
    .container {
      padding: 0 4rem; } }
  @media (max-width: 699px) {
    .container {
      padding: 0 15px; } }

.container_fhd {
  width: 100%;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto; }

@media (max-width: 1920px) and (min-width: 900px) {
  html {
    font-size: 0.83333vw; } }

@media (max-width: 899px) {
  html {
    font-size: 10px; } }

@media (max-width: 699px) {
  html {
    font-size: 12px; } }

@media (max-width: 409px) {
  html {
    font-size: 10px; } }

body {
  margin: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  width: 100%;
  overflow-x: hidden;
  font-family: var(--font-family);
  font-weight: normal;
  font-style: normal;
  color: var(--font-color);
  background-color: var(--bg-color);
  position: relative; }

li {
  list-style: none; }

ul {
  margin: 0;
  padding: 0; }

p {
  margin: 0; }

a {
  text-decoration: none;
  outline: none;
  color: inherit; }

img {
  user-select: none; }

button, input {
  border: none;
  outline: none;
  background: none;
  padding: 0;
  font-family: inherit; }

button {
  cursor: pointer; }

* {
  box-sizing: border-box; }

h1, h2, h3, h4, h5, h6 {
  margin: 0; }

.text-center {
  text-align: center; }

.fw-bold {
  font-weight: bold; }

.fw-black {
  font-weight: 900; }

.fw-normal {
  font-weight: normal; }

.fw-medium {
  font-weight: 500; }

.crossed {
  text-decoration: line-through; }

.visually-hidden {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden; }

.decor {
  position: absolute; }

picture {
  display: block; }
  picture img {
    height: 100%;
    width: 100%;
    object-fit: contain; }

.slick-initialized .slick-slide {
  display: block;
  height: max-content; }

.slick-track {
  height: max-content; }

section {
  position: relative;
  z-index: 1; }

header, footer {
  z-index: 2; }

.logo, .logo__c {
  display: flex;
  align-items: center; }

.logo__img {
  width: 22rem;
  height: auto;
  max-width: 100%;
 }
 @media (max-width: 560px) {
  .logo__img {
    max-width: 10rem;
    height: auto;
   }
  } 

.logo__text {
  font-size: 2.875rem;
  font-weight: 300;
  margin-left: 1.125rem; }
  @media (max-width: 699px) {
    .logo__text {
      display: none; } }

.logo__desc {
  max-width: 14rem;
  font-size: 0.75rem;
  line-height: 1.33;
  color: var(--light-font);
  margin-left: 3.3rem;
margin-top: 1.3rem;}
  @media (max-width: 699px) {
    .logo__desc {
      display: none; } }

.btn {
  background-image: linear-gradient(to top, var(--grad-from), var(--grad-to));
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden; }
  .btn::before {
    margin-left: -30px;
    content: " ";
    width: 1.5rem;
    height: 300px;
    background: #fff;
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
    position: absolute;
    left: -40px;
    top: -70px;
    animation-timing-function: ease-in-out;
    transition: all 0.1s;
    animation-name: slideme;
    animation-duration: 3.5s;
    animation-iteration-count: infinite;
    transform: rotate(45deg);
    z-index: 5; }
  .btn span, .btn div {
    position: relative;
    z-index: 3; }
  .btn::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    border-radius: 7px; }
  .btn:hover::after, .btn:focus::after {
    opacity: 0.15; }
  .btn::after {
    z-index: 2;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 100ms linear;
    background-color: #fff; }
  .btn[disabled] {
    opacity: 0.5;
    cursor: no-drop; }
    .btn[disabled]::after, .btn[disabled]::before {
      display: none; }
.btn__load{
	display: none;
	height: 4rem;
	width: 4rem;
}

/* Final override: must stay after legacy <=699px rules. */
@media (min-width: 600px) and (max-width: 699px) {
  html { font-size: 10px !important; }
  .container,
  .first-screen .container,
  .work-steps .container,
  .portfolio .container,
  .editor.container {
    width: 565px !important;
    max-width: 565px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .first-screen {
    display: block !important;
    height: 410px !important;
    min-height: 410px !important;
    overflow: hidden !important;
    background: linear-gradient(115deg, #fff 0%, #f9fbff 48%, #edf5ff 100%) !important;
  }
  .first-screen::before {
    display: block !important;
    background:
      linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 39%, rgba(255,255,255,.25) 56%, rgba(255,255,255,0) 100%),
      radial-gradient(circle at 74% 36%, rgba(49,119,255,.13), rgba(49,119,255,0) 270px) !important;
  }
  .first-screen .first-screen__bg {
    position: absolute !important;
    order: initial !important;
    top: 43px !important;
    right: 0 !important;
    left: auto !important;
    width: 360px !important;
    height: 350px !important;
    margin: 0 !important;
    background-size: cover !important;
    background-position: center right !important;
    opacity: 1 !important;
  }
  .first-screen .first-screen__bg::after {
    display: block !important;
    background:
      linear-gradient(90deg, #fff 0%, rgba(255,255,255,.64) 15%, rgba(255,255,255,.04) 48%, rgba(255,255,255,.10) 100%),
      linear-gradient(0deg, rgba(255,255,255,.90) 0%, rgba(255,255,255,0) 20%, rgba(255,255,255,0) 76%, rgba(255,255,255,.28) 100%) !important;
  }
  .first-screen .first-screen__bg img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center right !important;
    transform: translate(48px, 0) scale(1.03) !important;
  }
  .first-screen header {
    order: initial !important;
    padding-top: 16px !important;
    padding-bottom: 0 !important;
  }
  .first-screen .header { display: block !important; position: relative !important; }
  .first-screen .logo__img {
    width: 130px !important;
    height: 38px !important;
    max-width: none !important;
    content: url("../img/vyveska-mos-logo-target.png") !important;
    object-fit: contain !important;
  }
  .first-screen .logo__text,
  .first-screen .logo__desc { display: none !important; }
  .first-screen .header__contact {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 286px !important;
    margin: 0 !important;
  }
  .first-screen .header__whatsapp {
    display: flex !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    gap: 12px !important;
    margin: 0 !important;
  }
  .first-screen .header__whatsapp__link {
    width: 76px !important;
    min-width: 76px !important;
    height: 32px !important;
    padding: 0 8px !important;
    border: 0 !important;
    border-radius: 7px !important;
    font-size: 6px !important;
  }
  .first-screen .header__whatsapp__link img,
  .first-screen .header__whatsapp__link svg {
    width: 17px !important;
    height: 17px !important;
    margin-right: 6px !important;
  }
  .first-screen .header__whatsapp__text {
    display: block !important;
    width: 106px !important;
    min-height: 32px !important;
    margin: 0 !important;
    padding: 8px 8px 0 33px !important;
    border-radius: 7px !important;
    font-size: 6px !important;
  }
  .first-screen .header__phone {
    position: absolute !important;
    top: -1px !important;
    right: 0 !important;
    text-align: right !important;
  }
  .first-screen .header__phone__online { font-size: 7px !important; justify-content: flex-end !important; }
  .first-screen .header__phone__link { font-size: 15px !important; }
  .first-screen .header__callback { display: block !important; font-size: 9px !important; color: #5130f5 !important; text-decoration: underline !important; }
  .first-screen .header__phone p { display: block !important; font-size: 9px !important; margin-top: 5px !important; }
  .first-screen .main {
    display: block !important;
    order: initial !important;
    min-height: 0 !important;
    padding-top: 16px !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
  }
  .first-screen .main__info {
    display: block !important;
    width: 286px !important;
    max-width: 286px !important;
    padding-bottom: 0 !important;
  }
  .first-screen .main__subtitle { margin-bottom: 8px !important; }
  .first-screen .main__title,
  .first-screen .main__info > h1.main__title[style] {
    max-width: 286px !important;
    font-size: 23px !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
  }
  .first-screen .main__lead {
    max-width: 255px !important;
    margin-top: 10px !important;
    font-size: 8px !important;
    line-height: 1.55 !important;
  }
  .first-screen .main__advantages {
    order: initial !important;
    display: grid !important;
    grid-template-columns: repeat(4, 60px) !important;
    gap: 10px !important;
    width: 270px !important;
    margin-top: 12px !important;
  }
  .first-screen .main__advantage,
  .first-screen .main__advantage:not(:last-child) {
    display: block !important;
    width: auto !important;
    min-height: 57px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  .first-screen .main__advantage img {
    width: 38px !important;
    height: 38px !important;
    padding: 8px !important;
    border-radius: 7px !important;
  }
  .first-screen .main__advantage p { font-size: 6.5px !important; margin-top: 6px !important; }
  .first-screen .main__btn-wrap {
    order: initial !important;
    display: grid !important;
    grid-template-columns: 151px 1fr !important;
    width: 263px !important;
    min-height: 103px !important;
    margin-top: 7px !important;
    padding: 15px 14px 12px !important;
    gap: 7px 12px !important;
  }
  .first-screen .main__cta-copy { font-size: 10px !important; line-height: 1.43 !important; }
  .first-screen .main__btn {
    width: 151px !important;
    height: 29px !important;
    min-height: 29px !important;
    padding: 0 9px !important;
    border-radius: 4px !important;
    background-image: linear-gradient(180deg, #6338ff 0%, #3d16f2 100%) !important;
    box-shadow: 0 8px 13px rgba(66,29,238,.28), 0 3px 0 #2b0fc0 !important;
  }
  .first-screen .main__btn__text { gap: 6px !important; font-size: 8px !important; }
  .first-screen .main__btn__text svg { width: 10px !important; height: 10px !important; margin: 0 !important; }
  .first-screen .main__btn__desc { width: 72px !important; margin: 0 0 0 24px !important; font-size: 6px !important; }
  .first-screen .main__btn__desc img { left: -25px !important; width: 21px !important; }
  .work-steps { padding: 21px 0 18px !important; border-top: 0 !important; }
  .work-steps__inner { display: block !important; }
  .work-steps__title { margin: 0 0 18px !important; text-align: center !important; font-size: 13px !important; }
  .work-steps__list {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 14px !important;
  }
  .work-steps__item {
    display: grid !important;
    grid-template-columns: 18px minmax(0, 1fr) !important;
    gap: 6px !important;
    min-height: 48px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  .work-steps__item:not(:last-child)::after {
    display: block !important;
    top: 10px !important;
    right: -28px !important;
    width: 45px !important;
  }
  .work-steps__num { width: 14px !important; height: 14px !important; font-size: 6px !important; }
  .work-steps__text { font-size: 6.5px !important; }
  .work-steps__desc { max-width: 62px !important; margin-top: 7px !important; font-size: 6px !important; }
  .portfolio { padding-top: 9px !important; padding-bottom: 18px !important; }
  .portfolio__title { margin-top: 0 !important; font-size: 13px !important; line-height: 1.1 !important; }
  .portfolio__slider__wrap { margin-top: 17px !important; margin-bottom: 19px !important; }
  .portfolio__slide { display: grid !important; grid-template-columns: 302px 1fr !important; gap: 28px !important; align-items: start !important; }
  .portfolio__slide__photo { width: 302px !important; min-width: 302px !important; }
  .portfolio__slide__photo--big { width: 302px !important; height: 183px !important; border-radius: 10px !important; }
  .portfolio__slide__photo__bottom { gap: 14px !important; margin-top: 12px !important; }
  .portfolio__slide__photo--sm,
  .portfolio__slide__photo--sm:not(:last-child) { width: 83px !important; height: 54px !important; margin: 0 !important; border-radius: 8px !important; }
  .portfolio__slide__info { margin: 28px 0 0 !important; }
  .portfolio__slide__title { font-size: 9px !important; }
  .portfolio__slide__place { margin-top: 17px !important; font-size: 5px !important; }
  .portfolio__slide__desc-title { margin-top: 16px !important; font-size: 6px !important; }
  .portfolio__slide__desc { max-width: 138px !important; margin-top: 7px !important; font-size: 5.5px !important; }
  .portfolio__slide__spec__name { font-size: 5.5px !important; }
  .portfolio__slide__spec__val { font-size: 10px !important; }
  .portfolio__slider__arrows { top: 132px !important; left: -40px !important; width: calc(100% + 80px) !important; transform: none !important; }
  .portfolio__slider__arrows .slick-arrow { width: 22px !important; height: 22px !important; background-size: 7px !important; }
  .portfolio__slider__dots ul { margin-top: 10px !important; }
  .portfolio__slider__dots button { width: 5px !important; height: 5px !important; }
  .editor { margin-top: -58px !important; }
  .editor .portfolio__title { margin-bottom: 15px !important; font-size: 13px !important; }
  .editor .wp-block-gallery,
  .editor .blocks-gallery-grid { display: grid !important; grid-template-columns: repeat(5, 1fr) !important; gap: 3px !important; }
  .editor .wp-block-gallery figure,
  .editor .blocks-gallery-item { width: auto !important; margin: 0 !important; }
  .editor .wp-block-gallery img,
  .editor .blocks-gallery-item img { width: 100% !important; height: 76px !important; object-fit: cover !important; }
  .open-quiz { padding-top: 23px !important; padding-bottom: 30px !important; }
  .open-quiz .portfolio__title { max-width: 335px !important; margin: 0 auto 12px !important; font-size: 13px !important; }
  .widget__wrap,
  .video-widget { display: none !important; }
}

/* Target icon replacement: purple outline set. */
@media (min-width: 600px) and (max-width: 699px) {
  .first-screen .main__advantage:nth-child(1) img {
    content: url("../img/openrouter-icon-measure.png") !important;
  }

  .first-screen .main__advantage:nth-child(2) img {
    content: url("../img/openrouter-icon-document.png") !important;
  }

  .first-screen .main__advantage:nth-child(3) img {
    content: url("../img/openrouter-icon-shield.png") !important;
  }

  .first-screen .main__advantage:nth-child(4) img {
    content: url("../img/openrouter-icon-design.png") !important;
  }

  .first-screen .main__advantage img {
    filter: none !important;
  }

  .first-screen .main__advantage:nth-child(1) {
    order: 1 !important;
  }

  .first-screen .main__advantage:nth-child(4) {
    order: 2 !important;
  }

  .first-screen .main__advantage:nth-child(2) {
    order: 3 !important;
  }

  .first-screen .main__advantage:nth-child(3) {
    order: 4 !important;
  }

  .work-steps__num::after {
    position: absolute;
    left: 22px;
    top: 0;
    width: 13px;
    height: 13px;
    background: #5a39ee;
    content: "";
    opacity: .9;
    mask: var(--step-icon) center / contain no-repeat;
    -webkit-mask: var(--step-icon) center / contain no-repeat;
  }

  .work-steps__item:nth-child(1) { --step-icon: url("../img/openrouter-icon-document.png"); }
  .work-steps__item:nth-child(2) { --step-icon: url("../img/openrouter-icon-measure.png"); }
  .work-steps__item:nth-child(3) { --step-icon: url("../img/openrouter-icon-shield.png"); }
  .work-steps__item:nth-child(4) { --step-icon: url("../img/openrouter-icon-document.png"); }
  .work-steps__item:nth-child(5) { --step-icon: url("../img/openrouter-icon-design.png"); }
}

@media (min-width: 600px) and (max-width: 699px) {
  .first-screen .first-screen__bg {
    top: 43px !important;
    width: 360px !important;
  }

  .first-screen .first-screen__bg img {
    transform: translate(48px, 0) scale(1.03) !important;
  }

  .first-screen .main {
    padding-top: 16px !important;
  }

  .first-screen .main__info {
    width: 286px !important;
    max-width: 286px !important;
  }

  .first-screen .main__title,
  .first-screen .main__info > h1.main__title[style] {
    max-width: 286px !important;
    font-size: 23px !important;
    line-height: 1.18 !important;
  }

  .first-screen .main__lead {
    margin-top: 9px !important;
  }

  .first-screen .main__advantages {
    margin-top: 12px !important;
  }

  .first-screen .main__btn-wrap {
    margin-top: 7px !important;
  }
}

@media (min-width: 600px) and (max-width: 699px) {
  .first-screen .first-screen__bg {
    top: 43px !important;
    width: 360px !important;
  }

  .first-screen .first-screen__bg img {
    transform: translate(48px, 0) scale(1.03) !important;
  }

  .first-screen .main {
    padding-top: 16px !important;
  }

  .first-screen .main__info {
    width: 286px !important;
    max-width: 286px !important;
  }

  .first-screen .main__title,
  .first-screen .main__info > h1.main__title[style] {
    max-width: 286px !important;
    font-size: 23px !important;
    line-height: 1.18 !important;
  }

  .first-screen .main__lead {
    margin-top: 9px !important;
  }

  .first-screen .main__advantages {
    margin-top: 12px !important;
  }

  .first-screen .main__btn-wrap {
    margin-top: 7px !important;
  }
}

/* 2026-06-27: reconstruction pass for Max target, 649x1280. */
@media (min-width: 600px) and (max-width: 699px) {
  html {
    font-size: 10px;
  }

  body {
    background: #fff;
  }

  .container,
  .first-screen .container,
  .work-steps .container,
  .portfolio .container,
  .editor.container,
  .open-quiz .container {
    width: 565px;
    max-width: 565px;
    padding-right: 0;
    padding-left: 0;
  }

  .first-screen {
    display: block;
    height: 410px;
    min-height: 410px;
    overflow: hidden;
    background: linear-gradient(115deg, #ffffff 0%, #f9fbff 48%, #edf5ff 100%);
  }

  .first-screen::before {
    display: block;
    z-index: 1;
    background:
      linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 39%, rgba(255,255,255,.26) 56%, rgba(255,255,255,0) 100%),
      radial-gradient(circle at 74% 36%, rgba(49,119,255,.13), rgba(49,119,255,0) 270px);
  }

  .first-screen .first-screen__bg {
    position: absolute;
    top: 53px;
    right: 0;
    left: auto;
    width: 365px;
    height: 350px;
    margin: 0;
    background-size: cover;
    background-position: center right;
    opacity: 1;
  }

  .first-screen .first-screen__bg::after {
    display: block;
    background:
      linear-gradient(90deg, #fff 0%, rgba(255,255,255,.64) 15%, rgba(255,255,255,.04) 48%, rgba(255,255,255,.10) 100%),
      linear-gradient(0deg, rgba(255,255,255,.90) 0%, rgba(255,255,255,0) 20%, rgba(255,255,255,0) 76%, rgba(255,255,255,.28) 100%);
  }

  .first-screen .first-screen__bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    transform: translate(28px, 4px) scale(1.04);
    filter: saturate(1.14) contrast(1.04);
  }

  .first-screen header {
    position: relative;
    z-index: 4;
    padding-top: 16px;
    padding-bottom: 0;
  }

  .first-screen .header {
    position: relative;
    display: block;
  }

  .first-screen .logo__img {
    width: 130px;
    height: 38px;
    max-width: none;
    object-fit: contain;
    content: url("../img/vyveska-mos-logo-target.png");
  }

  .first-screen .logo__desc,
  .first-screen .logo__text {
    display: none;
  }

  .first-screen .header__contact {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 330px;
  }

  .first-screen .header__whatsapp {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    gap: 12px;
    margin: 0;
  }

  .first-screen .header__whatsapp__link {
    width: 76px;
    min-width: 76px;
    height: 32px;
    padding: 0 8px;
    border: 0;
    border-radius: 7px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 8px 22px rgba(35,62,120,.08);
    color: #161821;
    font-size: 6px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
  }

  .first-screen .header__whatsapp__link img,
  .first-screen .header__whatsapp__link svg,
  .first-screen .header__whatsapp__link path {
    width: 17px;
    height: 17px;
    margin-right: 6px;
  }

  .first-screen .header__whatsapp__link::after {
    display: none;
  }

  .first-screen .header__whatsapp__text {
    position: relative;
    display: block;
    width: 106px;
    min-height: 32px;
    margin: 0;
    padding: 8px 8px 0 33px;
    border-radius: 7px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 8px 22px rgba(35,62,120,.08);
    color: #151821;
    font-size: 6px;
    font-weight: 600;
    line-height: 1.2;
  }

  .first-screen .header__whatsapp__text::before {
    position: absolute;
    left: 12px;
    top: 8px;
    width: 16px;
    height: 16px;
    border: 1.5px solid #5c47f4;
    border-radius: 50%;
    content: "";
  }

  .first-screen .header__phone {
    position: absolute;
    top: -1px;
    right: 0;
    text-align: right;
  }

  .first-screen .header__phone__online {
    justify-content: flex-end;
    font-size: 7px;
    font-weight: 700;
    line-height: 1.1;
    opacity: .85;
  }

  .first-screen .header__phone__online::before {
    width: 4px;
    min-width: 4px;
    height: 4px;
    margin-right: 4px;
  }

  .first-screen .header__phone__link {
    margin-top: 3px;
    color: #0a0b10;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
  }

  .first-screen .header__callback {
    display: block;
    margin-top: 5px;
    color: #5130f5;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: underline;
  }

  .first-screen .header__phone p {
    display: block;
    margin-top: 5px;
    color: #151821;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.1;
  }

  .first-screen .main {
    position: relative;
    z-index: 3;
    display: block;
    min-height: 0;
    padding-top: 34px;
    padding-bottom: 0;
  }

  .first-screen .main__info {
    display: block;
    width: 285px;
    max-width: 285px;
    padding-bottom: 0;
  }

  .first-screen .main__subtitle {
    width: max-content;
    height: 21px;
    margin: 0 0 8px;
    padding: 7px 11px 0;
    border: 0;
    border-radius: 8px;
    background: #f2edff;
    box-shadow: none;
    color: #5b42df;
    font-size: 7px;
    font-weight: 700;
    line-height: 1;
    transform: none;
  }

  .first-screen .main__subtitle--skew {
    transform: none;
  }

  .first-screen .main__title,
  .first-screen .main__info > h1.main__title[style] {
    max-width: 285px;
    color: #07080d;
    font-size: 24px !important;
    font-weight: 800;
    line-height: 1.20;
    letter-spacing: 0;
  }

  .first-screen .main__title .fw-bold {
    color: #4b23ff;
    font-weight: 800;
    text-transform: lowercase;
  }

  .first-screen .main__lead {
    max-width: 255px;
    margin-top: 11px;
    color: #333743;
    font-size: 8px;
    font-weight: 500;
    line-height: 1.55;
  }

  .first-screen .main__advantages {
    display: grid;
    grid-template-columns: repeat(4, 60px);
    gap: 10px;
    width: 270px;
    margin-top: 17px;
  }

  .first-screen .main__advantage,
  .first-screen .main__advantage:not(:last-child) {
    display: block;
    min-height: 57px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
  }

  .first-screen .main__advantage img {
    width: 38px;
    height: 38px;
    margin: 0 auto;
    padding: 8px;
    border-radius: 7px;
    background: rgba(238,233,255,.96);
    box-shadow: 0 6px 12px rgba(82,62,180,.08);
    object-fit: contain;
    filter: hue-rotate(225deg) saturate(1.3);
  }

  .first-screen .main__advantage::before {
    left: 39px;
    top: 30px;
    width: 9px;
    height: 9px;
  }

  .first-screen .main__advantage p {
    max-width: 58px;
    margin-top: 6px;
    color: #171923;
    font-size: 6.5px;
    font-weight: 700;
    line-height: 1.15;
  }

  .first-screen .main__btn-wrap {
    display: grid;
    grid-template-columns: 151px 1fr;
    gap: 7px 12px;
    align-items: center;
    width: 263px;
    min-height: 103px;
    margin-top: 12px;
    padding: 15px 14px 12px;
    border: 0;
    border-radius: 4px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 14px 32px rgba(36,52,88,.10);
  }

  .first-screen .main__cta-copy {
    grid-column: 1 / -1;
    max-width: 224px;
    margin: 0;
    color: #161821;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.43;
  }

  .first-screen .main__cta-copy .fw-bold,
  .first-screen .main__cta-copy strong,
  .first-screen .main__cta-copy b {
    color: #4b23ff;
    font-weight: 800;
  }

  .first-screen .main__btn {
    width: 151px;
    height: 29px;
    min-height: 29px;
    padding: 0 9px;
    border-radius: 4px;
    background-image: linear-gradient(180deg, #6338ff 0%, #3d16f2 100%);
    box-shadow: 0 8px 13px rgba(66,29,238,.28), 0 3px 0 #2b0fc0;
  }

  .first-screen .main__btn__text {
    gap: 6px;
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .02rem;
  }

  .first-screen .main__btn__text svg {
    width: 10px;
    height: 10px;
    margin: 0 !important;
  }

  .first-screen .main__btn__desc {
    width: 72px;
    margin: 0 0 0 24px;
    color: #151821;
    font-size: 6px;
    font-weight: 700;
    line-height: 1.15;
  }

  .first-screen .main__btn__desc img {
    left: -25px;
    width: 21px;
  }

  .first-screen .main__btn__desc::before {
    left: -7px;
    top: -2px;
    width: 8px;
    height: 8px;
  }

  .work-steps {
    padding: 21px 0 18px;
    border-top: 0;
    background: #fff;
  }

  .work-steps__inner {
    display: block;
  }

  .work-steps__title {
    margin: 0 0 18px;
    text-align: center;
    color: #11131b;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
  }

  .work-steps__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }

  .work-steps__item {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 6px;
    min-height: 48px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .work-steps__item:not(:last-child)::after {
    display: block;
    top: 10px;
    right: -28px;
    width: 45px;
    height: 1px;
    background: #dedee8;
  }

  .work-steps__num {
    width: 14px;
    height: 14px;
    margin-top: 0;
    background: linear-gradient(180deg, #5f3eff, #3720df);
    font-size: 6px;
    box-shadow: 0 5px 10px rgba(67,37,234,.28);
  }

  .work-steps__text {
    color: #161821;
    font-size: 6.5px;
    font-weight: 800;
    line-height: 1.15;
  }

  .work-steps__desc {
    max-width: 62px;
    margin-top: 7px;
    color: #22242c;
    font-size: 6px;
    font-weight: 500;
    line-height: 1.35;
  }

  .portfolio {
    padding-top: 9px;
    padding-bottom: 18px;
  }

  .portfolio__title {
    margin-top: 0;
    color: #171923;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.1;
  }

  .portfolio__slider__wrap {
    margin-top: 17px;
    margin-bottom: 19px;
  }

  .portfolio__slide {
    display: grid;
    grid-template-columns: 302px 1fr;
    align-items: start;
    gap: 28px;
  }

  .portfolio__slide__photo {
    width: 302px;
    min-width: 302px;
  }

  .portfolio__slide__photo--big {
    width: 302px;
    height: 183px;
    border-radius: 10px;
    overflow: hidden;
  }

  .portfolio__slide__photo img {
    border-radius: 10px;
  }

  .portfolio__slide__photo__bottom {
    display: flex;
    gap: 14px;
    margin-top: 12px;
  }

  .portfolio__slide__photo--sm,
  .portfolio__slide__photo--sm:not(:last-child) {
    width: 83px;
    height: 54px;
    margin: 0;
    border-radius: 8px;
  }

  .portfolio__slide__info {
    margin: 28px 0 0;
  }

  .portfolio__slide__title {
    font-size: 9px;
    font-weight: 700;
    line-height: 1.25;
  }

  .portfolio__slide__place {
    margin-top: 17px;
    font-size: 5px;
    line-height: 1.4;
  }

  .portfolio__slide__place svg {
    width: 10px;
    height: 10px;
    margin-right: 6px;
  }

  .portfolio__slide__desc-title {
    margin-top: 16px;
    font-size: 6px;
    font-weight: 700;
  }

  .portfolio__slide__desc {
    max-width: 138px;
    margin-top: 7px;
    font-size: 5.5px;
    line-height: 1.55;
    opacity: 1;
  }

  .portfolio__slide__spec {
    margin-top: 14px;
  }

  .portfolio__slide__spec__name {
    font-size: 5.5px;
  }

  .portfolio__slide__spec__val {
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.15;
  }

  .portfolio__slider__arrows {
    top: 132px;
    left: -40px;
    width: calc(100% + 80px);
    transform: none;
  }

  .portfolio__slider__arrows .slick-arrow {
    width: 22px;
    height: 22px;
    background-size: 7px;
  }

  .portfolio__slider__dots ul {
    margin-top: 10px;
  }

  .portfolio__slider__dots button {
    width: 5px;
    height: 5px;
  }

  .portfolio__slider__dots li:not(:last-child) {
    margin-right: 5px;
  }

  .editor {
    padding-top: 1px;
  }

  .editor .portfolio__title {
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 500;
  }

  .editor .wp-block-gallery,
  .editor .blocks-gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
  }

  .editor .wp-block-gallery figure,
  .editor .blocks-gallery-item {
    width: auto !important;
    margin: 0 !important;
  }

  .editor .wp-block-gallery img,
  .editor .blocks-gallery-item img {
    width: 100%;
    height: 76px;
    object-fit: cover;
  }

  .open-quiz {
    padding-top: 23px;
    padding-bottom: 30px;
  }

  .open-quiz .portfolio__title {
    max-width: 335px;
    margin: 0 auto 12px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
  }

  .widget__wrap,
  .video-widget {
    display: none !important;
  }
}
@keyframes slideme {
  0% {
    left: 10%;
	}
  30% {
    left: 110%; }
  100% {
    left: 110%;
	} 
}

.widget {
  width: 7rem;
  padding-top: 1.5rem;
  font-size: 0.625rem;
  text-align: center;
  color: var(--widget-color);
  text-transform: uppercase;
  position: relative;
  transition: var(--transition); }
  .widget.closed {
    opacity: 0;
    pointer-events: none; }
  .widget-close {
    width: 1.5rem;
    height: 1.438rem;
    border: solid 3px #fff;
    background-color: var(--grad-to);
    border-radius: 50%;
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition); }
    .widget-close.active {
      transform: translate(-50%, -50%) rotate(45deg); }
  .widget p {
    position: relative; }
  .widget__wrap {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 200; }
  .widget::before {
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 1rem;
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
    background-image: linear-gradient(to top, var(--grad-from), var(--grad-to)); }
  .widget__item {
    padding: 1rem;
    position: relative;
    cursor: not-allowed; }
    .widget__item::before {
      content: '';
      background-image: var(--widget-lock);
      height: 1.3rem;
      width: 1.3rem;
      background-position: center;
      background-repeat: no-repeat;
      position: absolute;
      left: 3.875rem;
      top: .5rem;
      background-size: contain; }
    .widget__item__icon {
      margin-bottom: 0.65rem; }
      .widget__item__icon img {
        width: 2rem;
        height: auto; }
    .widget__item:not(:last-child) {
      border-bottom: 1px solid #fff; }

.video-widget {
  position: fixed;
  left: 1.7rem;
  bottom: 2.25rem;
  z-index: 20; }
  .video-widget__link {
    width: 9.125rem;
    height: 13.688rem;
    border-radius: 15px;
    box-shadow: 0 0 81px 0 #3535354c;
    border: solid 3px #fff;
    background-color: #fff;
    display: block;
    position: relative;
    overflow: hidden; }
    .video-widget__link img {
      height: 100%;
      width: 100%;
      object-fit: cover; }
    .video-widget__link-wrap {
      position: relative; }
  .video-widget__play {
    width: 2.063rem;
    height: 2.063rem;
    background-color: #fe6155;
    border-radius: 50%;
    animation: pulse1 2s infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0.625rem;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 15.2 17' style='enable-background:new 0 0 15.2 17;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23FFFFFF;%7D%0A%3C/style%3E%3Cg%3E%3Cpath class='st0' d='M2.7,0.4C1.2-0.5,0,0.3,0,2v13c0,1.8,1.2,2.5,2.8,1.6l11.3-6.5c1.5-0.9,1.5-2.3,0-3.2L2.7,0.4z'/%3E%3C/g%3E%3C/svg%3E"); }
  .video-widget__close {
    z-index: 2;
    cursor: pointer;
    position: absolute;
    right: 0.77rem;
    top: 0.77rem;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 15.6 15.5' style='enable-background:new 0 0 15.6 15.5;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23FFFFFF;%7D%0A%3C/style%3E%3Crect x='-2.2' y='6.8' transform='matrix(0.7071 -0.7071 0.7071 0.7071 -3.2219 7.778)' class='st0' width='20' height='2'/%3E%3Crect x='6.8' y='-2.2' transform='matrix(0.7071 -0.7071 0.7071 0.7071 -3.2218 7.7782)' class='st0' width='2' height='20'/%3E%3C/svg%3E%0A"); }
  .video-widget__action {
    font-size: 0.688rem;
    font-weight: 500;
    letter-spacing: 0.28px;
    color: var(--accent-color);
    margin-bottom: 3.5rem;
    margin-left: 4.5rem;
    position: relative; }
    .video-widget__action img {
      position: absolute;
      left: -2.5rem;
      top: 0.5rem;
      height: 3.25rem;
      width: auto; }

header {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  position: relative; }

.header {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  /* @media (max-width: 560px) {
    .header {
      flex-direction: column; } } */
  .header__contact {
    display: flex;
    align-items: center; }
    @media (max-width: 560px) {
      .header__contact {
        margin-top: 0; } }
  .header__phone {
    text-align: right; }
    .header__phone__online {
      font-size: 0.844rem;
      letter-spacing: 0.1px;
      display: flex;
      justify-content: center;
      align-items: center; }
      .header__phone__online::before {
        width: 0.5rem;
        min-width: .5rem;
        height: 0.438rem;
        border-radius: 50%;
        content: '';
        margin-right: 0.375rem;
        background-color: #4ec35a;
        animation: shine2 1s cubic-bezier(1, 0, 0, 1) infinite; }
    .header__phone__link {
      font-size: 1.5rem;
      color: var(--dark-font);
      margin-top: 0.3rem;
      display: block; }
  .header__whatsapp {
    display: flex;
    align-items: center;
    margin-right: 4.44rem; }
    .header__wa-m{
      display: none;
    }
    @media (max-width: 699px) {
      .header__whatsapp {
        margin-right: 1.5rem; } }
    @media (max-width: 450px) {
        .header__whatsapp {
         display: none; } 
         .header__wa-m{
           display: block;
           margin-right: 1rem;
         }
         .header__wa-m svg{
          display: block;
          width: 2.5rem;
          height: 2.5rem;
        }
        }
    .header__whatsapp__link {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 8.5rem;
      height: 3.188rem;
      border-radius: 12px;
      border: solid 1px #dfdfdf;
      background-color: #fff;
      font-size: 0.625rem;
      letter-spacing: 0.0375rem;
      position: relative;
      color: #282728;
      transition: var(--transition);
      padding-left: 1rem;
      padding-right: 1rem; }
      .header__whatsapp__link img, .header__whatsapp__link svg, .header__whatsapp__link path {
        width: 2rem;
        height: 2rem;
        margin-right: 0.75rem; }
      .header__whatsapp__link:hover {
        background-color: var(--msg-color);
        border-color: var(--msg-color);
        color: #fff; }
      .header__whatsapp__link::after {
        width: 0.563rem;
        height: 0.563rem;
        border-radius: 50%;
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(50%, -50%);
        background-color: #4ec35a;
        animation: shine2 1s cubic-bezier(1, 0, 0, 1) infinite; }
    .header__whatsapp__text {
      margin-left: 1rem;
      font-size: 0.844rem;
      line-height: 1.26; }
      @media (max-width: 899px) {
        .header__whatsapp__text {
          display: none; } }

.first-screen {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  display: flex;
  flex-direction: column; }
  .first-screen__bg {
    background-size: cover;
    background-position: top center, top left, top right;
    background-repeat: no-repeat;
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%; }
.main{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}
.main__vid{
  width: 40%;
  position: relative;
  margin-left: 2rem;
  align-self: flex-start;
  margin-top: 7rem;
}
.main__vid_m{
  display: none;
}
.open-quiz .close{
  display: none;
}
@media (max-width: 850px) {
  .main__vid {
    display: none; } 
    .main__vid_m{
      position: relative;
      margin-top: 3rem;
      margin-bottom: 3rem;
      display: block;
    }
  }
.main__vid iframe,
.main__vid_m iframe
{
  width: 100%;
  height: auto;
  min-height: 20rem;
}
.main__info {
  position: relative;
  display: flex;
  flex-direction: column;
  /* flex-grow: 1; */
  width: 60%;
  justify-content: center;
  padding-bottom: 6rem; }
  @media (max-width: 850px) {
    .main__info {
      padding-bottom: 8rem;
      width: 100%; } }
  @media (max-width: 899px) {
    .main--thx {
      padding-bottom: 4rem; } }
  .main__subtitle {
    width: max-content;
    height: 3.75rem;
    padding: 1.25rem 2.313rem;
    border-radius: 10px;
    background-color: #feea8c;
    font-size: 1.281rem;
    text-align: center;
    transform: skew(-3deg);
    max-width: 100%;
    height: auto; }
    .main__subtitle--skew {
      position: relative;
      transform: skew(3deg);
      display: block; }
  .main__title {
    font-size: 3.125rem;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 2.9rem; }
    @media (max-width: 899px) {
      .main__title {
        width: 100%;
        max-width: 50rem; } }
    @media (max-width: 699px) {
      .main__title {
        font-size: 2.4rem; } }
  .main__btn {
    height: 7.875rem;
    padding: 0 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0px 19px 49px 0 #fe585119, 0px 4px 0 0 var(--darker-color-rgb);
    color: var(--btn-font-color); }
    .main__btn--min {
      padding: 0 3.3rem; }
    .main__btn__add-text {
      font-size: 0.875rem;
      letter-spacing: 0.35px;
      color: #fffefe;
       margin-top: 0.3rem;
    display: block;}
    .main__btn__text {
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.875rem;
      font-weight: 500;
      letter-spacing: 0.1rem;
      text-align: center;
      text-transform: uppercase; }
      .main__btn__text--min {
        font-size: 1.719rem; }
      .main__btn__text svg {
        height: 2.2rem;
        width: 2.2rem; }
        .main__btn__text svg.last {
          transform: scaleX(-1);
          margin-left: 1.4rem; }
        .main__btn__text svg.first {
          margin-right: 1.4rem; }
        .main__btn__text svg .st1, .main__btn__text svg .st2, .main__btn__text svg .st0 {
          animation: shine infinite 1.5s; }
        .main__btn__text svg .st0 {
          animation-delay: 0.6s; }
        .main__btn__text svg .st1 {
          animation-delay: .3s; }
    @media (max-width: 409px) {
      .main__btn {
        height: 7.2rem;
        padding: 2rem;
        font-size: 1.7rem; } }
    .main__btn-wrap {
      margin-top: 3.5rem;
      display: flex;
      align-items: center;
      position: relative; }
      @media (max-width: 699px) {
        .main__btn-wrap {
          flex-direction: column; } }
    .main__btn__arrow {
      position: absolute;
      left: 35rem;
      top: -3rem;
      width: 17.688rem; }
      @media (max-width: 899px) {
        .main__btn__arrow {
          display: none; } }
    .main__btn__desc {
      margin-left: 6.125rem;
      font-size: 0.875rem;
      letter-spacing: 0.35px;
      position: relative; }
      @media (max-width: 699px) {
        .main__btn__desc {
          margin-left: 3rem;
          margin-top: 5rem; } }
      .main__btn__desc img {
        position: absolute;
        left: -5.4rem;
        top: 50%;
        transform: translateY(-50%);
        width: 5.875rem;
        height: auto; }
      .main__btn__desc::before {
        width: 1.25rem;
        height: 1.25rem;
        content: '';
        position: absolute;
        left: -1.9rem;
        top: -0.3rem;
        background-image: url(../img/ok.png);
        background-size: contain;
        z-index: 4; }
  .main__advantages {
    display: flex;
    margin-top: 3rem; }
    @media (max-width: 699px) {
      .main__advantages {
        flex-wrap: wrap; } }
  .main__advantage {
    <!--display: flex;-->
    align-items: center;
    font-size: 0.875rem;
    letter-spacing: 0.35px;
    position: relative; }
    .main__advantage p {
		margin-top: 0.8rem; 
     <!--margin-left: 0.8rem;--> }
    .main__advantage:not(:last-child) {
      margin-right: 2.5rem; }
    @media (max-width: 699px) {
      .main__advantage {
        margin-bottom: 1.5rem; 
		width: 50%} 
				.main__advantage:not(:last-child){
			margin-right: 0;
		}
		}
    .main__advantage img {
      height: 4.5rem; }
    .main__advantage::before {
      width: 1.25rem;
      height: 1.25rem;
      content: '';
      position: absolute;
      background-image: url(../img/ok.png);
      background-size: contain;
      z-index: 4; }
    .main__advantage:nth-child(1)::before {
      left: 3rem;
      top: 2.5rem; }
    .main__advantage:nth-child(2)::before {
      left: 3rem;
      top: 2.5rem; }
    .main__advantage:nth-child(3)::before {
      left: 3rem;
      top: 2.5rem; }
    .main__advantage:nth-child(4)::before {
      left: 3rem;
      top: 2.5rem; } }


.v2 {
  padding-bottom: 9.75rem; }
  .v2__c {
    padding-top: 7rem; }
    .v2__c .main__subtitle {
      margin-right: auto;
      margin-left: auto; }
    .v2__c .main__title {
      width: 100%; }
  .v2 .quiz {
    margin-top: 9rem; }

.about {
  width: 100%;
  overflow: hidden; }
  .about__c {
    display: flex;
    align-items: center;
    position: relative; }
  .about__photo {
    width: 59.5rem;
    min-width: 59.5rem;
    height: 59.375rem;
    overflow: hidden;
    position: relative; }
    .about__photo__bg {
      object-fit: cover;
      object-position: top right; }
      .about__photo__bg--scale {
        animation: scale2 10s ease-in-out; }
    .about__photo__man {
      width: 37.5rem;
      height: auto;
      position: absolute;
      bottom: 0;
      left: 51%;
      transform: translateX(-50%); }
  .about__info {
    margin-left: 11.25rem;
    max-width: 29rem;
    position: relative; }
    .about__info--lg {
      font-size: 3.438rem;
      font-weight: 300;
      line-height: 1.27; }
    .about__info--sm {
      font-size: 1.125rem;
      font-weight: 300;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 2.3rem; }
  .about__logo {
    position: absolute;
    right: -.5rem;
    top: 50%;
    transform: translateY(-45%);
    width: 15rem; }
  .about__sign {
    position: absolute;
    top: 80%;
    width: 11.313rem;
    height: auto;
    right: 4rem;
    transform: translateY(-50%); }
  .about__person {
    position: absolute;
    text-align: right;
    top: 12.8rem;
    left: 13rem; }
    .about__person__name {
      font-size: 1.875rem;
      font-weight: bold;
      line-height: 0.9; }
    .about__person__desc {
      font-size: 1rem;
      font-weight: 300;
      margin-top: 0.75rem; }
  .about__circle {
    position: absolute;
    left: -16.7rem;
    top: calc(50% - 5.5rem); }
    .about__circle__img {
      width: 11rem;
      height: 11.063rem; }
    .about__circle__text {
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      animation: 20s linear 0s normal none infinite running roll; }
.open-quiz {
  padding-bottom: 6rem;
}
.portfolio {
  padding-top: 2.8rem;
  overflow: hidden;
  padding-bottom: 4.5rem; }
  .portfolio__title {
    font-size: 3.125rem;
    line-height: 1.2;
    font-weight: 300;
margin-top: 3rem;}
  .portfolio__slider__wrap {
    margin-top: 4rem;
    position: relative;
    margin-bottom: 6rem; }
  .portfolio__slider__arrows {
    position: absolute;
    width: 120%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    left: -10%;
    transform: translateY(-105%);
    pointer-events: none; }
    @media (max-width: 899px) {
      .portfolio__slider__arrows {
        width: 100%;
        left: 0; }
      .portfolio{
        padding-bottom: 0;
      } }
    @media (max-width: 449px) {
      .portfolio__slider__arrows {
        position: relative;
        top: 0;
        left: 0;
        transform: translateY(0);
        margin-top: 2rem; } }
    .portfolio__slider__arrows .slick-arrow {
      pointer-events: all;
      width: 4.375rem;
      height: 4.375rem;
      background-color: #e8e7e7;
      border-radius: 50%;
      background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 492.004 492.004' style='enable-background:new 0 0 492.004 492.004;' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M382.678,226.804L163.73,7.86C158.666,2.792,151.906,0,144.698,0s-13.968,2.792-19.032,7.86l-16.124,16.12 c-10.492,10.504-10.492,27.576,0,38.064L293.398,245.9l-184.06,184.06c-5.064,5.068-7.86,11.824-7.86,19.028 c0,7.212,2.796,13.968,7.86,19.04l16.124,16.116c5.068,5.068,11.824,7.86,19.032,7.86s13.968-2.792,19.032-7.86L382.678,265 c5.076-5.084,7.864-11.872,7.848-19.088C390.542,238.668,387.754,231.884,382.678,226.804z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E%0A");
      background-size: 1.25rem;
      background-repeat: no-repeat;
      background-position: center; }
      .portfolio__slider__arrows .slick-arrow:hover {
        background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 492.004 492.004' style='enable-background:new 0 0 492.004 492.004;' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M382.678,226.804L163.73,7.86C158.666,2.792,151.906,0,144.698,0s-13.968,2.792-19.032,7.86l-16.124,16.12 c-10.492,10.504-10.492,27.576,0,38.064L293.398,245.9l-184.06,184.06c-5.064,5.068-7.86,11.824-7.86,19.028 c0,7.212,2.796,13.968,7.86,19.04l16.124,16.116c5.068,5.068,11.824,7.86,19.032,7.86s13.968-2.792,19.032-7.86L382.678,265 c5.076-5.084,7.864-11.872,7.848-19.088C390.542,238.668,387.754,231.884,382.678,226.804z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E%0A"), linear-gradient(to top, var(--grad-from), var(--grad-to));
        background-size: 1.25rem, cover; }
      @media (max-width: 449px) {
        .portfolio__slider__arrows .slick-arrow {
          background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 492.004 492.004' style='enable-background:new 0 0 492.004 492.004;' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M382.678,226.804L163.73,7.86C158.666,2.792,151.906,0,144.698,0s-13.968,2.792-19.032,7.86l-16.124,16.12 c-10.492,10.504-10.492,27.576,0,38.064L293.398,245.9l-184.06,184.06c-5.064,5.068-7.86,11.824-7.86,19.028 c0,7.212,2.796,13.968,7.86,19.04l16.124,16.116c5.068,5.068,11.824,7.86,19.032,7.86s13.968-2.792,19.032-7.86L382.678,265 c5.076-5.084,7.864-11.872,7.848-19.088C390.542,238.668,387.754,231.884,382.678,226.804z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E%0A"), linear-gradient(to top, var(--grad-from), var(--grad-to));
          background-size: 1.25rem, cover; } }
    .portfolio__slider__arrows .slider-prev {
      transform: scaleX(-1); }
  .portfolio__slider__dots button {
    font-size: 0;
    width: 1.063rem;
    height: 1.063rem;
    border-radius: 50%;
    background-color: #e4e4e4;
    transition: var(--transition); }
  .portfolio__slider__dots li:not(:last-child) {
    margin-right: 0.94rem; }
  .portfolio__slider__dots ul {
    display: flex;
    justify-content: center;
    margin-top: 3.68rem; }
  .portfolio__slider__dots .slick-active button, .portfolio__slider__dots button:hover {
    background-color: var(--accent-color); }
  .portfolio__slide {
    display: flex;
    align-items: center; }
    @media (max-width: 699px) {
      .portfolio__slide {
        flex-wrap: wrap; } }
    .portfolio__slide__photo {
      width: 50.68rem;
      min-width: 50.68rem; }
      @media (max-width: 899px) {
        .portfolio__slide__photo {
          width: 45%;
          min-width: 45%; } }
      @media (max-width: 699px) {
        .portfolio__slide__photo {
          width: 100%; } }
      .portfolio__slide__photo img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 2.1875rem; }
      .portfolio__slide__photo--big {
        display: block;
        width: 100%;
        height: 39.25rem;
        border-radius: 2.1875rem;
        background-color: #fbfafa; }
        @media (max-width: 449px) {
          .portfolio__slide__photo--big {
            height: 27rem; } }
      .portfolio__slide__photo--sm {
        width: 15.266rem;
        height: 12.5rem;
        border-radius: 2.1875rem;
        background-color: #fbfafa;
        display: block; }
        .portfolio__slide__photo--sm:not(:last-child) {
          margin-right: 2.44rem; }
          @media (max-width: 899px) {
            .portfolio__slide__photo--sm:not(:last-child) {
              margin-right: 2%; } }
        @media (max-width: 899px) {
          .portfolio__slide__photo--sm {
            width: 32%; } }
        @media (max-width: 449px) {
          .portfolio__slide__photo--sm {
            height: 8rem; } }
      .portfolio__slide__photo__bottom {
        display: flex;
        margin-top: 2.313rem; }
    .portfolio__slide__info {
      margin-left: 5rem; }
      @media (max-width: 899px) {
        .portfolio__slide__info {
          margin-left: 2rem; } }
      @media (max-width: 699px) {
        .portfolio__slide__info {
          margin-left: 0;
          margin-top: 3rem; } }
    .portfolio__slide__title {
      font-size: 1.875rem;
      font-weight: 500;
      line-height: 1.6; }
    .portfolio__slide__place {
      font-size: 1.125rem;
      margin-top: 2.5rem;
      display: flex;
      align-items: center; }
      .portfolio__slide__place svg {
        height: 2.3rem;
        width: 2.3rem;
        margin-right: 1rem; }
    .portfolio__slide__desc-title {
      font-size: 1.5rem;
      font-weight: 500;
      margin-top: 2.5rem; }
    .portfolio__slide__desc {
      opacity: 0.65;
      font-size: 1.125rem;
      line-height: 1.67;
      margin-top: 1.75rem; }
    .portfolio__slide__spec {
      display: flex;
      margin-top: 3rem; 
    flex-wrap: wrap;}
      .portfolio__slide__spec__item {
        width: 33%;
        padding-right: 1rem; }
      @media (max-width: 899px){
        .portfolio__slide__spec__item {
          width: 50%;
          padding-right: 1rem;
        margin-bottom: 1.5rem; }
      }
      .portfolio__slide__spec__name {
        opacity: 0.65;
        font-size: 1rem; }
      .portfolio__slide__spec__val {
        font-size: 1.875rem;
        font-weight: 500;
        margin-top: 0.8rem; }
  .portfolio .main__btn-wrap {
    flex-direction: column;
    align-items: center; 
      padding-bottom: 8rem;
  }
  .portfolio .main__btn__desc {
    margin-left: 0;
    margin-top: 2.7rem;
    padding-left: 6rem; }
    .portfolio .main__btn__desc img {
      left: 0; }
  .portfolio .main__btn__desc::before {
    left: 3.6rem; }

.quiz {
  border-radius: 10px;
  box-shadow: 0 0 125px 0 #19191926;
  background-color: #fff;
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding-top: 1.813rem;
  padding-left: 2.563rem;
  padding-bottom: 2.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
  min-height: 56.25rem; }
  .quiz__left {
    width: 25rem;
    min-width: 25rem;
    border-radius: 30px;
    background-color: #fff;
    background-image: url(../img/quiz-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 2.875rem;
    padding-bottom: 1.75rem;
    position: relative; }
    @media (max-width: 899px) {
      .quiz__left {
        display: none; } }
  .quiz__manager {
    width: 13.375rem;
    height: 13.938rem;
    margin-right: auto;
    margin-left: auto; }
    .quiz__manager img {
      height: 100%;
      width: 100%;
      object-fit: contain;
      object-position: center bottom; }
    .quiz__manager__name {
      width: max-content;
      padding: .8rem 2.875rem .8rem 2.938rem;
      border-radius: 5px;
      background-color: #feea8c;
      transform: skew(-5deg);
      font-size: 1.125rem;
      letter-spacing: 0.45px;
      text-align: center;
      margin-right: auto;
      margin-left: auto; }
      .quiz__manager__name span {
        display: block;
        transform: skew(5deg); }
    .quiz__manager__post {
      font-size: 0.875rem;
      letter-spacing: 0.35px;
      text-align: center;
      margin-top: 0.5rem; }
  .quiz__help {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.1rem;
    min-height: 6rem; }
    .quiz__help img {
      width: 3.5rem;
      height: auto; }
    .quiz__help p {
      max-width: 14.5rem;
      margin-left: 1.188rem;
      font-size: 0.875rem; }
  .quiz__gift {
    margin-top: 2.1rem; }
    .quiz__gift__title {
      font-size: 1.125rem;
      text-transform: uppercase;
      text-align: center;
      text-transform: uppercase; }
    .quiz__gift ul {
      margin-top: 1.5rem; }
    .quiz__gift li {
      width: 21.875rem;
      height: 4.688rem;
      border-radius: 10px;
      margin-right: auto;
      margin-left: auto;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      padding-left: 3.813rem;
      cursor: not-allowed; }
      .quiz__gift li:not(:last-child) {
        margin-bottom: 1rem; }
      .quiz__gift li p {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 0.938rem;
        letter-spacing: 0.38px;
        color: #fff; }
        .quiz__gift li p::before {
          content: '';
          width: 1.438rem;
          height: 1.438rem;
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center;
          background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='486.733px' height='486.733px' viewBox='0 0 486.733 486.733' style='enable-background:new 0 0 486.733 486.733;' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M403.88,196.563h-9.484v-44.388c0-82.099-65.151-150.681-146.582-152.145c-2.225-0.04-6.671-0.04-8.895,0 C157.486,1.494,92.336,70.076,92.336,152.175v44.388h-9.485c-14.616,0-26.538,15.082-26.538,33.709v222.632 c0,18.606,11.922,33.829,26.539,33.829h321.028c14.616,0,26.539-15.223,26.539-33.829V230.272 C430.419,211.646,418.497,196.563,403.88,196.563z M273.442,341.362v67.271c0,7.703-6.449,14.222-14.158,14.222H227.45 c-7.71,0-14.159-6.519-14.159-14.222v-67.271c-7.477-7.36-11.83-17.537-11.83-28.795c0-21.334,16.491-39.666,37.459-40.513 c2.222-0.09,6.673-0.09,8.895,0c20.968,0.847,37.459,19.179,37.459,40.513C285.272,323.825,280.919,334.002,273.442,341.362z M331.886,196.563h-84.072h-8.895h-84.072v-44.388c0-48.905,39.744-89.342,88.519-89.342c48.775,0,88.521,40.437,88.521,89.342 V196.563z'/%3E%3C/g%3E%3C/svg%3E");
          filter: drop-shadow(0 0 1.25rem var(--grad-from));
          margin-right: 4.188rem; }
      .quiz__gift li::before {
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(40, 39, 40, 0.75);
        content: '';
        z-index: 1; }
      .quiz__gift li img {
        width: 11.875rem;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%); }
  .quiz__bar {
    width: 49.75rem;
    height: 3rem;
    padding: 0.29rem 0.34rem;
    border-radius: 24px;
    background-color: #f5f6f6;
    margin-left: 4.875rem;
    margin-top: 1.5rem;
    position: relative; }
    @media (max-width: 899px) {
      .quiz__bar {
        margin-left: 0;
        width: 100%; } }
    .quiz__bar--ln {
      width: 100%;
      margin-left: 0; }
    .quiz__bar__prg {
      width: 8.131rem;
      height: 100%;
      background-color: var(--accent-color);
      transition: var(--transition);
      border-radius: inherit;
      position: relative; }
      .quiz__bar__prg::after {
        content: "";
        display: block;
        transition: all .3s;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: url(../img/lines.png);
        background-size: 2.49rem;
        animation: moveIt 1.5s infinite linear; }
    .quiz__bar__text {
      font-size: 0.875rem;
      font-weight: 300;
      letter-spacing: 0.7px;
      text-align: center;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  .quiz__main {
    padding-right: 3.438rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem; }
    @media (max-width: 899px) {
      .quiz__main {
        padding-right: 0; } }
  .quiz__question {
    margin-top: 3.3rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    .quiz__question:not(.active) {
      display: none; }
    .quiz__question__head {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 4.896rem; }
      @media (max-width: 699px) {
        .quiz__question__head {
          flex-direction: column;
          padding: 0 1rem; } }
    .quiz__question__title {
      font-size: 1.5rem;
      line-height: 1.25;
      letter-spacing: 0.6px; }
      @media (max-width: 699px) {
        .quiz__question__title {
          text-align: center; } }
    .quiz__question__progress {
      width: 7.688rem;
      min-width: 7.688rem;
      height: 2.313rem;
      border-radius: 10px;
      background-color: #feea8c;
      display: flex;
      justify-content: center;
      align-items: center;
      transform: skew(-4deg);
      margin-right: 1.375rem;
      font-size: 0.781rem;
      letter-spacing: 0.13px;
      text-align: center; }
      @media (max-width: 699px) {
        .quiz__question__progress {
          margin-right: 0;
          margin-bottom: 2rem; } }
      .quiz__question__progress span {
        display: flex;
        transform: skew(4deg);
      margin-right: 0.3rem;
    margin-left: 0.3rem; }
  .quiz__answers {
    display: flex;
    flex-wrap: wrap;
    margin-left: 4.896rem;
    flex-grow: 1;
    padding-top: 2rem;
    padding-bottom: 2rem; }
    @media (max-width: 899px) {
      .quiz__answers {
        margin: auto;
        max-width: 55rem; } }
    .quiz__answers--img {
      height: 31.5rem;
      max-height: 31.5rem;
      overflow: auto;
      margin-top: -3rem;
      padding-left: 0.4rem; }
      .quiz__answers--img::-webkit-scrollbar {
        width: 0.934rem;
        background-color: #f5f6f6;
        border-radius: 7.5px; }
      .quiz__answers--img::-webkit-scrollbar-thumb {
        border-radius: 7.5px;
        background-color: #d3d5d5; }
      @media (max-width: 899px) {
        .quiz__answers--img {
          margin-top: 2rem; } }
      @media (max-width: 699px) {
        .quiz__answers--img {
          justify-content: space-between;
          padding-right: 1.5rem; } }
    .quiz__answers--desc {
      height: 34rem;
      max-height: 34rem;
      justify-content: center;
      margin-top: 0rem; }
      @media (max-width: 699px) {
        .quiz__answers--desc {
          justify-content: space-between; } }
    .quiz__answers--single {
      display: flex;
      align-items: center;
      justify-content: center; }
      @media (max-width: 699px) {
        .quiz__answers--single {
          justify-content: space-around; } }
    .quiz__answers--text {
      align-content: flex-start;
      justify-content: space-between;
      margin-top: 2.5rem;
      padding-right: 6rem;
      padding-left: 1rem; }
      @media (max-width: 699px) {
        .quiz__answers--text {
          padding-left: 0;
          padding-right: 0; } }
    .quiz__answers__img {
      margin-left: 2.25rem; }
      .quiz__answers__img img {
        width: 28.625rem;
        height: auto; }
      @media (max-width: 699px) {
        .quiz__answers__img {
          margin-left: 0;
          margin-top: 2rem; } }
  .quiz__answers--single .quiz__answer--txt:not(:last-child) {
    margin-bottom: 0.8rem; }
  .quiz__answer-img {
    width: 15.188rem;
    margin-bottom: 1.58rem;
    position: relative; }
    .quiz__answer-img:not(:nth-child(3n)), .quiz__answer-img:not(:last-child) {
      margin-right: 2.2rem; }
      @media (max-width: 699px) {
        .quiz__answer-img:not(:nth-child(3n)), .quiz__answer-img:not(:last-child) {
          margin-right: 0; } }
    @media (max-width: 699px) {
      .quiz__answer-img {
        width: 47%; } }
  .quiz__answers--text .quiz__answer--txt {
    margin-bottom: 0.94rem; }
  .quiz__answers__block .quiz__answer--txt__wrap:not(:last-child) {
    margin-bottom: 0.8rem; }
  @media (max-width: 699px) {
    .quiz__answers__block {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center; } }
  .quiz__answer--txt__wrap .quiz__answer__hint,
  .quiz__answer--txt__wrap .quiz__answer__video {
    top: -1rem;
    right: -1.7rem; }
  .quiz__answer--txt {
    display: flex;
    align-items: center;
    display: flex; }
    @media (max-width: 699px) {
      .quiz__answer--txt {
        width: 100%; } }
    .quiz__answer--txt__wrap {
      position: relative; }
      @media (max-width: 699px) {
        .quiz__answer--txt__wrap {
          width: 48.5%; } }
      @media (max-width: 449px) {
        .quiz__answer--txt__wrap {
          width: 100%; } }
    .quiz__answer--txt p {
      display: flex;
      align-items: center;
      display: flex;
      align-items: center;
      cursor: pointer;
      width: 21.938rem;
      height: 4.438rem;
      border-radius: 5px;
      background-color: #fff;
      border: solid 1px #d3d5d5;
      padding: 1rem 1.37rem;
      transition: var(--transition); }
      @media (max-width: 699px) {
        .quiz__answer--txt p {
          width: 100%; } }
      .quiz__answer--txt p::before {
        width: 2.313rem;
		min-width: 2.313rem;
        height: 2.313rem;
        border-radius: 50%;
        background-color: #f5f6f6;
        content: '';
        box-sizing: border-box;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 1rem;
        margin-right: 0.875rem;
        transition: var(--transition);
        background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 30 26.4' style='enable-background:new 0 0 30 26.4;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23dadcdc;%7D%0A%3C/style%3E%3Cpath class='st0' d='M27.5,6.2L25.3,4c-0.3-0.3-0.7-0.5-1.1-0.5c-0.4,0-0.8,0.2-1.1,0.5L12.4,14.7L7.6,9.9C7.3,9.6,6.9,9.4,6.5,9.4 S5.7,9.6,5.4,9.9l-2.2,2.2c-0.3,0.3-0.5,0.7-0.5,1.1c0,0.4,0.2,0.8,0.5,1.1l5.9,5.9l2.2,2.2c0.3,0.3,0.7,0.5,1.1,0.5 s0.8-0.2,1.1-0.5l2.2-2.2L27.5,8.4c0.3-0.3,0.5-0.7,0.5-1.1S27.8,6.5,27.5,6.2L27.5,6.2z'/%3E%3C/svg%3E"); }
      .quiz__answer--txt p:hover {
        box-shadow: 0px 0rem 1rem 0.3rem #3d3d3d23; }
    .quiz__answer--txt input[type="checkbox"] + p::before {
      border-radius: 5px; }
    .quiz__answer--txt input:checked + p::before {
      background-color: var(--accent-color);
      background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 30 26.4' style='enable-background:new 0 0 30 26.4;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23fff;%7D%0A%3C/style%3E%3Cpath class='st0' d='M27.5,6.2L25.3,4c-0.3-0.3-0.7-0.5-1.1-0.5c-0.4,0-0.8,0.2-1.1,0.5L12.4,14.7L7.6,9.9C7.3,9.6,6.9,9.4,6.5,9.4 S5.7,9.6,5.4,9.9l-2.2,2.2c-0.3,0.3-0.5,0.7-0.5,1.1c0,0.4,0.2,0.8,0.5,1.1l5.9,5.9l2.2,2.2c0.3,0.3,0.7,0.5,1.1,0.5 s0.8-0.2,1.1-0.5l2.2-2.2L27.5,8.4c0.3-0.3,0.5-0.7,0.5-1.1S27.8,6.5,27.5,6.2L27.5,6.2z'/%3E%3C/svg%3E"); }
    .quiz__answer--txt input:checked + p {
      border-color: var(--accent-color);
      text-shadow: 0 0 0.8px var(--font-color), 0 0 0.8px var(--font-color); }
  .quiz__answer__hint {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -1.6rem;
    right: 0.3rem;
    z-index: 3;
    cursor: help;
    padding: 1rem; }
    .quiz__answer__hint:hover .quiz__answer__hint--text {
      transform: scale(1); }
    .quiz__answer__hint--circle {
      width: 1.563rem;
      height: 1.563rem;
      background-color: var(--accent-color);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 0.75rem;
      font-weight: bold;
      text-align: center;
      color: #fff;
      animation: pulse1 2s infinite; }
    .quiz__answer__hint--text {
      position: absolute;
      width: 11rem;
      padding: 1rem;
      font-size: 0.65rem;
      background-color: #fff;
      right: 70%;
      top: 70%;
      transform: scale(0);
      transition: var(--transition);
      box-shadow: 0 0 20px 0 #19191955; }
  .quiz__answer__video {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -1.8rem;
    right: 1rem;
    z-index: 3;
    cursor: pointer;
    padding: 1rem; }
    .quiz__answer__video--circle {
      width: 2rem;
      height: 2rem;
      background-color: var(--accent-color);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      animation: pulse1 2s infinite;
      background-position: center;
      background-repeat: no-repeat;
      background-size: 0.625rem;
      background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 15.2 17' style='enable-background:new 0 0 15.2 17;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23FFFFFF;%7D%0A%3C/style%3E%3Cg%3E%3Cpath class='st0' d='M2.7,0.4C1.2-0.5,0,0.3,0,2v13c0,1.8,1.2,2.5,2.8,1.6l11.3-6.5c1.5-0.9,1.5-2.3,0-3.2L2.7,0.4z'/%3E%3C/g%3E%3C/svg%3E"); }
  .quiz__answer__label {
    width: 100%;
    display: block; }
  .quiz__answer__label:hover .quiz__answer__img {
    box-shadow: 0px 0rem 1rem .3rem #3d3d3d23; }
  .quiz__answer__box {
    width: 100%;
    cursor: pointer; }
  .quiz__answer__img {
    width: 100%;
    height: 11rem;
    border-radius: 5px;
    background-color: #fff;
    position: relative;
    transition: var(--transition); }
    .quiz__answer__img::before {
      width: 2.313rem;
	  min-width: 2.313rem;
      height: 2.313rem;
      border-radius: 50%;
      border: solid 0.375rem #fff;
      background-color: #f5f6f6;
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translate(-50%, 50%);
      box-sizing: border-box;
      background-position: center;
      background-repeat: no-repeat;
      background-size: .75rem;
      transition: var(--transition);
      background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 30 26.4' style='enable-background:new 0 0 30 26.4;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23dadcdc;%7D%0A%3C/style%3E%3Cpath class='st0' d='M27.5,6.2L25.3,4c-0.3-0.3-0.7-0.5-1.1-0.5c-0.4,0-0.8,0.2-1.1,0.5L12.4,14.7L7.6,9.9C7.3,9.6,6.9,9.4,6.5,9.4 S5.7,9.6,5.4,9.9l-2.2,2.2c-0.3,0.3-0.5,0.7-0.5,1.1c0,0.4,0.2,0.8,0.5,1.1l5.9,5.9l2.2,2.2c0.3,0.3,0.7,0.5,1.1,0.5 s0.8-0.2,1.1-0.5l2.2-2.2L27.5,8.4c0.3-0.3,0.5-0.7,0.5-1.1S27.8,6.5,27.5,6.2L27.5,6.2z'/%3E%3C/svg%3E"); }
    .quiz__answer__img img {
      border-radius: 5px;
      width: 100%;
      height: 100%;
      object-fit: inherit;
      object-fit: cover; }
    .quiz__answer__img--lg {
      height: 17.938rem; }
  input[type="checkbox"] + .quiz__answer__box .quiz__answer__img::before {
    border-radius: 0.625rem; }
  input:checked + .quiz__answer__box .quiz__answer__img {
    box-shadow: 0 0 0 2px var(--accent-color); }
    input:checked + .quiz__answer__box .quiz__answer__img::before {
      background-color: var(--accent-color);
      background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 30 26.4' style='enable-background:new 0 0 30 26.4;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23fff;%7D%0A%3C/style%3E%3Cpath class='st0' d='M27.5,6.2L25.3,4c-0.3-0.3-0.7-0.5-1.1-0.5c-0.4,0-0.8,0.2-1.1,0.5L12.4,14.7L7.6,9.9C7.3,9.6,6.9,9.4,6.5,9.4 S5.7,9.6,5.4,9.9l-2.2,2.2c-0.3,0.3-0.5,0.7-0.5,1.1c0,0.4,0.2,0.8,0.5,1.1l5.9,5.9l2.2,2.2c0.3,0.3,0.7,0.5,1.1,0.5 s0.8-0.2,1.1-0.5l2.2-2.2L27.5,8.4c0.3-0.3,0.5-0.7,0.5-1.1S27.8,6.5,27.5,6.2L27.5,6.2z'/%3E%3C/svg%3E"); }
  input:checked + .quiz__answer__box .quiz__answer__text,
  input:checked + .quiz__answer__box .quiz__answer__name {
    text-shadow: 0 0 0.8px var(--font-color), 0 0 0.8px var(--font-color); }
  .quiz__answer__text {
    font-size: 0.875rem;
    transition: var(--transition); }
  .quiz__answer__name {
    font-size: 0.875rem;
    line-height: 1.21;
    margin-top: 1.6rem; }
  .quiz__answer-img .quiz__answer__text {
    text-align: center;
    margin-top: 1.5rem; }
  .quiz__answer__desc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.8rem; }
  .quiz__answer__spec {
    font-size: 0.625rem;
    letter-spacing: 0.1px;
    color: #282728c0; }
  .quiz__answer__val {
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-color); }
  .quiz__buttons {
    display: flex;
    margin-top: 1rem;
    padding-right: 3.7rem;
    padding-left: 5.5rem; }
  .quiz__btn-next {
    width: 12.5rem;
    height: 4.125rem;
    border-radius: 15px;
    box-shadow: 0px 19px 49px 0 #fe585119, 0px 4px 0 0 var(--darker-color-rgb);
    font-size: 1rem;
    letter-spacing: 0.16px;
    text-align: left;
    color: var(--btn-font-color); }
    .quiz__btn-next span {
      display: flex;
      justify-content: center;
      align-items: center; }
      .quiz__btn-next span::after {
        content: '';
        margin-left: 0.5rem;
        background-image: var(--next-arrow);
        height: 1.5625rem;
        width: 1.5625rem;
        background-repeat: no-repeat;
        background-position: center; }
    .quiz__btn-next__wrap {
      margin-left: auto;
      position: relative; }
  .quiz__btn-next[disabled]:hover + .quiz__btn-help {
    transform: translate(-50%, -100%) scale(1); }
  .quiz__btn-help {
    width: 11.563rem;
    padding: 0.625rem 1rem;
    border-radius: 5px;
    box-shadow: 0 0 18px 0 #28272819;
    background-color: #fff;
    text-align: center;
    font-size: 0.5rem;
    line-height: 1.38;
    letter-spacing: 0.08px;
    color: #282728a6;
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translate(-50%, -100%) scale(0);
    transition: var(--transition); }
  .quiz__btn-prev {
    font-size: 1rem;
    letter-spacing: 0.16px;
    color: #282728c0; }
    .quiz__btn-prev span {
      display: flex;
      justify-content: center;
      align-items: center; }
      .quiz__btn-prev span::before {
        margin-right: 0.5rem;
        background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 21.8 14.1' style='enable-background:new 0 0 21.8 14.1;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill-rule:evenodd;clip-rule:evenodd;fill:%23282728;%7D .st1%7Bopacity:0.4;fill-rule:evenodd;clip-rule:evenodd;fill:%23282728;enable-background:new ;%7D .st2%7Bopacity:0.25;fill-rule:evenodd;clip-rule:evenodd;fill:%23282728;enable-background:new ;%7D%0A%3C/style%3E%3Cpath id='bupath-1' class='st0' d='M21.8,7.1L21.8,7.1l-6.9,7L13.8,13l5.9-5.9l-5.9-6L14.9,0L21.8,7.1L21.8,7.1z'/%3E%3Cpath id='bupath-1_1_' class='st1' d='M14.9,7.1L14.9,7.1l-6.9,7L6.9,13l5.9-5.9l-5.9-6L8,0L14.9,7.1L14.9,7.1z'/%3E%3Cpath id='bupath-1_2_' class='st2' d='M8,7.1L8,7.1l-6.9,7L0,13l5.9-5.9L0,1.1L1.1,0L8,7.1L8,7.1z'/%3E%3C/svg%3E%0A");
        height: 1.5625rem;
        width: 1.5625rem;
        content: '';
        background-repeat: no-repeat;
        background-position: center;
        transform: scaleX(-1); }
  .quiz__input {
    width: 18.813rem;
    height: 4.438rem;
    padding: 0 2.188rem;
    border-radius: 5px;
    border: solid 1px #d3d5d5;
    background-color: #fff; }
    .quiz__input__wrap:not(:last-child) {
      margin-bottom: 3.1rem; }
    .quiz__input__title {
      font-size: 1.156rem;
      line-height: 0.86;
      margin-bottom: 0.875rem; }
    .quiz__input__group {
      display: flex;
      align-items: center; }
    .quiz__input__ms {
      margin-left: .75rem; }
    .quiz__input, .quiz__input__ms {
      font-size: 0.875rem;
      line-height: 1.14;
      color: #282728; }
  .quiz__online {
    width: 6.25rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: #4ec35a;
    position: absolute;
    top: 1.3rem;
    right: 1.25rem;
    font-size: 0.844rem;
    letter-spacing: 0.41px;
    color: #fff; }
    .quiz__online::before {
      width: 0.5rem;
      height: 0.438rem;
      background-color: #fff;
      margin-right: 0.375rem;
      content: '';
      border-radius: 50%;
      animation: shine2 1s cubic-bezier(1, 0, 0, 1) infinite; }
  .quiz__final {
    width: 100%;
    padding-left: 3.3rem;
    padding-right: 5.875rem;
    padding-bottom: 2.2rem; }
    @media (max-width: 899px) {
      .quiz__final {
        padding-left: 0;
        padding-right: 0; } }
    .quiz__final:not(.active) {
      display: none; }
    .quiz__final__agreement {
      font-size: 0.688rem;
      color: #282728;
      margin-top: 1.125rem;
      display: flex;
      align-items: center; }
      .quiz__final__agreement a {
        font-weight: 500;
        text-decoration: underline; }
      .quiz__final__agreement__check {
        width: 1.125rem;
        height: 1.125rem;
        border-radius: 3px;
        background-color: var(--accent-color);
        margin-right: 0.44rem;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 0.55rem; }
      input:checked + .quiz__final__agreement__check {
        background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 30 26.4' style='enable-background:new 0 0 30 26.4;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23fff;%7D%0A%3C/style%3E%3Cpath class='st0' d='M27.5,6.2L25.3,4c-0.3-0.3-0.7-0.5-1.1-0.5c-0.4,0-0.8,0.2-1.1,0.5L12.4,14.7L7.6,9.9C7.3,9.6,6.9,9.4,6.5,9.4 S5.7,9.6,5.4,9.9l-2.2,2.2c-0.3,0.3-0.5,0.7-0.5,1.1c0,0.4,0.2,0.8,0.5,1.1l5.9,5.9l2.2,2.2c0.3,0.3,0.7,0.5,1.1,0.5 s0.8-0.2,1.1-0.5l2.2-2.2L27.5,8.4c0.3-0.3,0.5-0.7,0.5-1.1S27.8,6.5,27.5,6.2L27.5,6.2z'/%3E%3C/svg%3E"); }
    .quiz__final__form {
      max-width: 31.188rem;
      margin-top: 1.2rem; }
      .quiz__final__form__title {
        font-size: 1.875rem;
        line-height: 1.2;
        letter-spacing: 0.75px; }
      .quiz__final__form__input {
        width: 100%;
        height: 4.063rem;
        padding: 0 2.313rem;
        border-radius: 15px;
        background-color: #f6f6f6;
        font-size: 1rem;
        color: #282728;
        margin-top: 1.875rem; }
    .quiz__final__btn {
      width: 31.25rem;
      height: 5.688rem;
      border-radius: 15px;
      margin-top: 0.75rem;
      box-shadow: 0px 19px 49px 0 #fe585119, 0px 4px 0 0 var(--darker-color-rgb);
      font-size: 1.188rem;
      letter-spacing: 0.19px;
      color: var(--btn-font-color); }
.quiz__final__btn.loading{
	opacity: 1;
	cursor: wait;
}
      @media (max-width: 699px) {
        .quiz__final__btn {
          max-width: 100%; } }
      .quiz__final__btn__text {
        display: flex;
        align-items: center; }
      .quiz__final__btn--bonus {
        padding: 0.5rem;
        border-radius: 5px;
        background-color: #fff;
        color: #282728;
        margin-left: 0.75rem;
        display: block; }
    .quiz__final__gift {
      width: 100%;
      height: 9.938rem;
      border-radius: 10px;
      box-shadow: 0 0 70px 0 #28272826;
      background-color: #fff;
      display: flex;
      align-items: center;
      padding-left: 2.188rem;
      margin-top: 1.25rem; }
      @media (max-width: 699px) {
        .quiz__final__gift {
          max-width: 100%;
          height: auto;
          flex-wrap: wrap;
          padding-top: 2rem;
          padding-bottom: 2rem;
          justify-content: center;
          padding-left: 0; } }
      @media (max-width: 449px) {
        .quiz__final__gift {
          display: none; } }
      .quiz__final__gift__title {
        font-size: 1rem;
        text-transform: uppercase;
        margin-right: 1.875rem; }
        @media (max-width: 699px) {
          .quiz__final__gift__title {
            width: 100%;
            margin: 1rem 0;
            text-align: center; } }
      .quiz__final__gift__item {
        font-size: 0.875rem;
        letter-spacing: 0.35px; }
        .quiz__final__gift__item:not(:last-child) {
          margin-right: 1.2rem; }
      .quiz__final__gift__img {
        width: 5.5rem;
        height: 5rem;
        position: relative; }
        .quiz__final__gift__img::after {
          position: absolute;
          content: '';
          bottom: .4rem;
          left: 3rem;
          width: 1.75rem;
          height: 1.75rem;
          background-size: contain;
          background-repeat: no-repeat;
          background-image: url(../img/lock.png); }
        .quiz__final__gift__img img {
          max-width: 5.5rem;
          height: auto;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          position: absolute;
          max-width: 5.5rem;
          height: 100%;
          object-fit: contain; }
  .quiz__final .quiz__bar {
    width: 100%;
    margin-right: 0;
    margin-left: 0; }
  .quiz__final .quiz__question__progress {
    width: 11.25rem;
    height: 2.313rem;
    margin-top: 1.8rem; }
  .quiz__contact {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem; }
    .quiz__contact__box {
      width: 7.563rem;
      height: 8.563rem;
      border-radius: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      cursor: pointer;
      transition: var(--transition); }
    input:checked + .quiz__contact__box, .quiz__contact__box:hover {
      box-shadow: 0px 7px 27px 0 #28282819;
      background-color: #fff; }
    .quiz__contact__icon {
      width: 4.375rem;
      height: 4.438rem;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      margin-bottom: 0.8rem;
      background-color: var(--accent-color); }
      .quiz__contact__icon--wa {
        background-color: #25d266; }
      .quiz__contact__icon--viber {
        background-color: #7460f3; }
      .quiz__contact__icon--tg {
        background-color: #00a2f2; }
      .quiz__contact__icon img {
        height: 2.2rem;
        width: 2.2rem; }
  .quiz__hand {
    width: 40.5rem;
    height: auto;
    position: relative;
    bottom: -0.4rem; }
    .quiz__hand__wrap {
      position: absolute;
      bottom: 0;
      right: -1rem; }
      @media (max-width: 899px) {
        .quiz__hand__wrap {
          right: -4rem; } }
      @media (max-width: 699px) {
        .quiz__hand__wrap {
          position: relative;
          bottom: -6rem;
          max-width: 100%;
          margin-right: auto;
          margin-left: auto;
          right: 0; } }
    .quiz__hand__circle {
      width: 9.5rem;
      height: 9.438rem;
      background-color: #feea8c;
      border-radius: 50%;
      position: absolute;
      top: 0rem;
      right: 0rem;
      top: 8.5rem;
      right: 12.1rem; }
      @media (max-width: 699px) {
        .quiz__hand__circle {
          top: 2.5rem;
          right: -1.9rem; } }
      .quiz__hand__circle--roll {
        height: 100%;
        width: 100%;
        animation: 15s linear 0s normal none infinite running roll; }
      .quiz__hand__circle__text {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        font-size: 0.75rem;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
        .quiz__hand__circle__text--timer {
          font-size: 1.875rem;
          font-weight: 500;
          padding-left: 1.5rem;
          position: relative;
          margin: .3rem 0; }
          .quiz__hand__circle__text--timer::before {
            content: '';
            width: 3.3125rem;
            height: 2.25rem;
            background-image: url(../img/clock.png);
            position: absolute;
            background-size: contain;
            left: -1.3rem;
            top: 50%;
            transform: translate(0, -50%); }
  .quiz__arrow {
    position: absolute; }
    @media (max-width: 899px) {
      .quiz__arrow {
        display: none; } }
    .quiz__arrow-2 {
      left: 38rem;
      top: 30rem;
      width: 10.125rem;
      height: 4.625rem; }
    .quiz__arrow-1 {
      left: 38rem;
      top: 36rem;
      width: 2.5rem;
      height: 10.813rem; }
  .quiz__load {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 30;
    background-color: #fff;
    left: 0;
    top: 0; }
    .quiz__load p {
      font-size: 1.3rem;
      font-weight: 500; }

.popup {
  background-color: var(--popup-bg);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999;
  display: none; }
  .popup-wrap {
    width: 100%;
    height: 100%;
    overflow: auto; }
    .popup-wrap::-webkit-scrollbar {
      width: 0px; }
    .popup-wrap--center {
      display: flex;
      justify-content: center;
      align-items: center; }
  .popup .close {
    top: 1rem;
    right: 1rem;
    width: 24px;
    height: 23.008px;
    background-size: 8px; }
    @media (max-width: 449px) {
      .popup .close {
        top: 0.5rem;
        right: 0.5rem; } }

.v2 .close {
  display: none; }

.close {
  width: 24px;
  height: 23.008px;
  border: solid 0.1875rem #fff;
  background-color: var(--grad-to);
  border-radius: 50%;
  position: absolute;
  cursor: pointer;
  z-index: 5;
  background-size: 8px;
  background-repeat: no-repeat;
  background-position: 45% 45%;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 15.6 15.5' style='enable-background:new 0 0 15.6 15.5;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23FFFFFF;%7D%0A%3C/style%3E%3Crect x='-2.2' y='6.8' transform='matrix(0.7071 -0.7071 0.7071 0.7071 -3.2219 7.778)' class='st0' width='20' height='2'/%3E%3Crect x='6.8' y='-2.2' transform='matrix(0.7071 -0.7071 0.7071 0.7071 -3.2218 7.7782)' class='st0' width='2' height='20'/%3E%3C/svg%3E%0A"); }

footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  z-index: 19; }
  footer::before {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    content: '';
    position: absolute;
    background-color: var(--bg-color);
    filter: blur(1rem);
    opacity: 0.75; }

.footer {
  width: 100%;
  position: relative;
  z-index: 5;
  display: none; }
  .footer__c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    height: 6rem;
    font-size: 0.813rem;
    line-height: 1.54;
    letter-spacing: 0.33px; }
    @media (max-width: 699px) {
      .footer__c {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding-top: 2rem;
        padding-bottom: 2rem; } }
  .footer a {
    color: var(--accent-color);
    text-decoration: underline; }
  .footer__policy {
    text-align: center; }
    @media (max-width: 699px) {
      .footer__policy {
        margin: 2rem 0; } }
  .footer__dev {
    text-align: right; }
  .footer__btn {
    z-index: 6;
    top: 0;
    width: 1.938rem;
    height: 1.938rem;
    background-image: url(../img/arrow.png), linear-gradient(to top, #cecdcb, #fff);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 0.625rem, cover;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    transition: var(--transition); }
    .footer__btn:not(.active) {
      transform: translateX(-50%) rotate(180deg); }

.quiz__file-label p{
  display: block;
}

.quiz_answers-list{
  padding: 2rem;
}

.quiz__answ-list__item{
  margin-top: 2rem;
}

.policy {
  background: #fff;
  border-radius: 7px;
  padding: 3rem;
  padding-bottom: 2rem;
  margin-top: 4rem;
  margin-bottom: 3rem;
  position: relative;
  width: 80rem;
  max-width: 95%;
  margin-right: auto;
  margin-left: auto;
  box-shadow: 0 0 125px 0 #19191926;
  background-color: #fff;
  margin-top: 4rem;
  margin-bottom: 4rem; }
  .policy__title {
    font-weight: bold;
    font-size: 1.5rem; }
  .policy-text {
    font-size: 1rem;
    margin-top: 2rem; }
    .policy-text p {
      margin-bottom: 1rem; }
  @media (max-width: 699px) {
    .policy {
      padding-right: 1rem;
      padding-left: 1rem; } }

.editor{
  padding-top: 3rem;
  padding-bottom: 5rem;
}
.editor .portfolio__title{
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@keyframes slideme {
  0% {
    left: -30px;
    margin-left: 0px; }
  30% {
    left: 110%;
    margin-left: 80px; }
  100% {
    left: 110%;
    margin-left: 80px; } }

@keyframes shine {
  0% {
    opacity: 0.3; }
  100% {
    opacity: 1; } }

@keyframes shine2 {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes blink {
  from {
    transform: scale(0);
    opacity: 1; }
  50% {
    transform: scale(1);
    opacity: 0.8; }
  to {
    transform: scale(2);
    opacity: 0; } }

@keyframes nxt {
  from {
    transform: translateX(-0.1rem); }
  to {
    transform: translateX(0.1rem); } }

@keyframes pulsation {
  0% {
    opacity: 1;
    transform: scale(0); }
  75% {
    opacity: 0.6;
    transform: scale(0.75); }
  100% {
    opacity: 0;
    transform: scale(1); } }

@keyframes floating {
  0% {
    transform: translateY(0em); }
  100% {
    transform: translateY(0.8em); } }

@keyframes roll {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes pulse1 {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--accent-color-rgb), 0.6); }
  70% {
    box-shadow: 0 0 0 1rem rgba(var(--accent-color-rgb), 0); }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--accent-color-rgb), 0); } }

@keyframes pulse3 {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 146, 255, 0.6); }
  70% {
    box-shadow: 0 0 0 0.7rem rgba(0, 146, 255, 0); }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 146, 255, 0); } }

@keyframes progres {
  from {
    background-position: 0 0, 0 0; }
  to {
    background-position: 2000px 0, 0 0; } }

@keyframes moveIt {
  from {
    background-position: 0 center; }
  to {
    background-position: 2.49rem center; } }

@keyframes scale {
  from {
    transform: scale(1.3); }
  to {
    transform: scale(1); } }

@keyframes scale2 {
  from {
    transform: scale(1.1); }
  to {
    transform: scale(1); } }


.form-consult{
  width: 46.875rem;
  min-height: 40.625rem;
  padding-bottom: 3rem;
  border-radius: 25px;
  background-color: #ededed;
  margin: auto;
  // background-image: url(../img/popup-bg.png);
  background-size: cover;
  padding-top: 4.3rem;
  position: relative;
}

.form-consult--lg{
  width: 53.125rem;
  max-width: 100%;
  padding-left: 4.375rem;
  padding-right: 3.44rem;
}

.form-consult__c{
  display: flex;
}

.form-consult--lg .form-consult__form{
  margin-left: 0;
  width: 18rem;
  min-width: 18rem;
}

.form-consult .quiz__contact__box{
  width: 5.313rem;
  height: 5.938rem;
}
.form-consult .quiz__contact__icon{
  width: 3.063rem;
  height: 3.063rem;
}
.form-consult .quiz__contact__icon img{
  width: 1.8rem;
  height: 1.8rem;
}
.form-consult .quiz__contact__name{
  font-size: 0.719rem;
}
.form-consult .quiz__final__form__input{
  width: 100%;
  height: 3.188rem;
  padding-left: 1.625rem;
  font-size: 0.75rem;
  margin-top: 0.875rem;
}

.form-consult .btn{
  height: 3.938rem;
  width: 100%;
}

.form-consult .quiz__final__agreement{
  margin-right: auto;
  margin-left: auto;
  justify-content: center;
}

.form-consult__btn-text{
  font-size: 1rem;
  color: var(--btn-font-color);
}
.form-consult__contact-title{
  font-size: 0.875rem;
  color: rgb(40, 39, 40);
  text-align: center;
}

.form-consult__img{
  position: absolute;
  bottom: -1.5rem;
  right: -8rem;
  width: 26.625rem;
}

.form-consult__form{
  margin-left: 4.44rem;
  width: 22rem;
  margin-top: 2rem;
}

.popup-wrap--flex{
  display: flex;
}

.form-consult__title{
  font-size: 1.875rem;
  font-weight: 500;
  color: rgb(40, 40, 40);
  text-align: center;
}

.form-consult__subtitle{
  font-size: 0.906rem;
  text-align: center;
  color: rgb(40, 39, 40);
  width: max-content;
  height: 3.75rem;
  padding: 1rem 1.4rem;
  border-radius: 10px;
  background-color: #feea8c;
  transform: skew(-3deg);
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  margin-top: 1.6rem;
}

.popup--drk{
  background-color: rgba(0, 0, 0, .85);
}

.form-consult__subtitle--skew{
  position: relative;
  transform: skew(3deg);
  display: block;
}

.form-consult__title2{
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: rgb(40, 40, 40);
  max-width: 30rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 1rem;
}

.form-consult__list-title{
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.39;
  letter-spacing: 0.45px;
  color: rgb(40, 40, 40);
  margin-bottom: 2rem;
}

.form-consult__list{
  margin-top: 4rem;
}

.form-consult__list li{
  margin-top: 1.5rem;
  font-size: 0.938rem;
  line-height: 1.67;
  letter-spacing: 0.38px;
  color: rgb(40, 40, 40);
  display: flex;
  align-items: center;
}
.header__callback{
  color: var(--accent-color);
  text-decoration: underline;
  font-size: 1rem;
	margin-bottom: 1.5rem;
    margin-left: 0.5rem;
}
.form-consult__list li::before{
  min-width: 2.313rem;
  width: 2.313rem;
  height: 2.313rem;
  border-radius: 50%;
  background-color: var(--grad-from);
  margin-right: 1.2rem;
  content: '';
  background-size: 0.75rem;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 30 26.4' style='enable-background:new 0 0 30 26.4;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23fff;%7D%0A%3C/style%3E%3Cpath class='st0' d='M27.5,6.2L25.3,4c-0.3-0.3-0.7-0.5-1.1-0.5c-0.4,0-0.8,0.2-1.1,0.5L12.4,14.7L7.6,9.9C7.3,9.6,6.9,9.4,6.5,9.4 S5.7,9.6,5.4,9.9l-2.2,2.2c-0.3,0.3-0.5,0.7-0.5,1.1c0,0.4,0.2,0.8,0.5,1.1l5.9,5.9l2.2,2.2c0.3,0.3,0.7,0.5,1.1,0.5 s0.8-0.2,1.1-0.5l2.2-2.2L27.5,8.4c0.3-0.3,0.5-0.7,0.5-1.1S27.8,6.5,27.5,6.2L27.5,6.2z'/%3E%3C/svg%3E");
}

.form-consult__person{
  display: flex;
  align-items: center;
  margin-top: 1.3rem;
  color: rgb(40, 39, 40);
  margin-bottom: 1.5rem;
}

.form-consult__person__info{
  font-size: 0.75rem;
  margin-left: 1.75rem;
}

.form-consult__person__name{
  font-size: 1.5rem;
  font-weight: 500;
}
.form-consult__person__post{
  margin-top: 0.8rem;
}
.form-consult__person__photo{
  border-radius: 4rem;
  position: relative;
  width: 8.063rem;
  min-width: 8.063rem;
  height: 8.063rem;
  background-color: #fff;
}
.form-consult__person__photo img{
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  border-bottom-left-radius: 4rem;
  border-bottom-right-radius: 4rem;
}
@media (max-width: 699px){
  .form-consult{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .form-consult__form{
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
  }
  .form-consult__img{
    position: relative;
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
    max-width: 20rem;
  }
  .form-consult__img{
    bottom: 0;
    right: 0;
    width: 20rem;
  }
  .form-consult__list{
    display: none;
  }
  .form-consult--lg .form-consult__form{
    margin-left: auto;
    margin-right: auto;
  }
}

.editor h1, .editor h2, .editor h3, .editor h4, .editor h5, .editor h6, .editor p{
  margin: 1rem 0;
	margin-left: 0.5rem;
}

.editor p{
  font-size: 1.125rem;
  line-height: 1.5;
  margin: 1.75rem 0;
	margin-left: 0.5rem;
}

.editor blockquote{
	font-size: 1.125rem;
  line-height: 1.67;
  margin: 1.75rem 0;
}

.editor ul{
	font-size: 1.125rem;
	line-height: 1.67;
	margin: 1.75rem 0;
}
.editor li{
	display: flex;
	margin-bottom: 1rem;
	margin-left: 0.5rem;
	
}
.editor li::before{
	height: 0.4rem;
    width: 0.4rem;
	min-width: 0.4rem;
    content: '';
    border-radius: 50%;
    background-color: var(--accent-color);
    margin-right: 0.5rem;
    margin-top: 0.7rem;
}

.editor a{
	color: var(--accent-color);
	text-decoration: underline;
}

.quiz__file{
	display: flex;
    align-items: center;
    cursor: pointer;
    width: 21.938rem;
    height: 4.438rem;
    border-radius: 5px;
    background-color: #fff;
    border: solid 1px #d3d5d5;
    transition: var(--transition);
	margin-top: 1rem;
}

.quiz__file__text{
	width: 65%;
	display: flex;
    align-items: center;
	padding-left: 2rem;
	padding-right: 1rem;
}

.quiz__file__upl{
	width: 35%;
	height: 4.438rem;
	color: var(--btn-font-color);
	background-image: linear-gradient(to top, var(--grad-from), var(--grad-to));
	display: flex;
    align-items: center;
	justify-content: center;
}

.wp-block-media-text__media img, .wp-block-media-text__media video {
    height: auto;
}
.bb
{
    border-radius: 10px;
	margin-top: 2rem;
}

.cc
{
    text-align: center;
	margin-top: 6rem;
	font-size: 3.125em;
}

.quiz__contact__name{
    color: #282828;
}

/* 2026-06-26: homepage hero composition fix.
   Keep copy/icons/buttons intact; only stabilize layout, background safe zones and mobile flow. */
.first-screen .main,
.first-screen .main__info {
  position: relative;
  z-index: 3;
}

.first-screen .first-screen__bg {
  z-index: 0;
}

@media (min-width: 900px) {
  .first-screen {
    min-height: 100vh;
  }

  .first-screen header {
    padding-bottom: 1.7rem;
  }

  .first-screen .first-screen__bg {
    left: 48%;
    width: 52vw;
  }

  .first-screen .first-screen__bg img,
  .first-screen .first-screen__bg::after {
    object-position: top right;
  }

  .first-screen .main {
    align-items: flex-start;
    justify-content: flex-start;
    flex-grow: 0;
    padding-top: clamp(3.2rem, 4.8vh, 5.4rem);
  }

  .first-screen .main__info {
    width: min(64rem, 64%);
    padding-bottom: 0;
  }

  .first-screen .main__subtitle {
    margin-bottom: 0;
  }

  .first-screen .main__title {
    max-width: 60rem;
    margin-top: 2.6rem;
    line-height: 1.18;
  }

  .first-screen .main__advantages {
    width: min(52rem, 100%);
    justify-content: space-between;
    gap: 1.6rem;
    margin-top: 2.7rem;
  }

  .first-screen .main__advantage,
  .first-screen .main__advantage:not(:last-child) {
    margin-right: 0;
    text-align: center;
  }

  .first-screen .main__advantage p {
    line-height: 1.18;
  }

  .first-screen .main__info > .main__title[style] {
    max-width: 62rem;
    margin-top: 2.8rem;
    line-height: 1.25;
  }

  .first-screen .main__btn-wrap {
    margin-top: 3.2rem;
  }

  .first-screen .main__btn {
    min-width: 34.8rem;
  }

  .first-screen .main__btn__desc {
    margin-left: 5.4rem;
  }

  .first-screen .widget__wrap {
    right: 0.8rem;
  }
}

@media (max-width: 699px) {
  .widget__wrap {
    display: none;
  }

  .first-screen {
    min-height: auto;
    overflow: hidden;
  }

  .first-screen .first-screen__bg {
    top: 30.6rem;
    left: 0;
    width: 100vw;
    height: 21.5rem;
    background-size: cover;
    background-position: center top;
    background-image:
      linear-gradient(to bottom,
        var(--bg-color) 0%,
        rgba(var(--transparent)) 16%,
        rgba(var(--transparent)) 62%,
        var(--bg-color) 100%),
      linear-gradient(to right,
        rgba(var(--transparent)) 0%,
        rgba(var(--transparent)) 68%,
        var(--bg-color) 100%),
      var(--bg-main);
  }

  .first-screen .main {
    display: block;
    margin-top: 0 !important;
    padding-top: 4.2rem;
    padding-bottom: 3.4rem;
    flex-grow: 0;
  }

  .first-screen .main__info {
    width: 100%;
    padding-bottom: 0;
  }

  .first-screen .main__subtitle {
    margin-right: auto;
    margin-left: 0;
    padding: 1.15rem 2rem;
    font-size: 1.18rem;
  }

  .first-screen .main__title {
    width: 100%;
    max-width: none;
    margin-top: 3rem;
    font-size: clamp(2.45rem, 7.2vw, 3.05rem);
    line-height: 1.16;
  }

  .first-screen .main__advantages {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem 1.2rem;
    margin-top: 2.6rem;
  }

  .first-screen .main__advantage,
  .first-screen .main__advantage:not(:last-child) {
    width: auto;
    min-height: 9.2rem;
    margin: 0;
    text-align: center;
  }

  .first-screen .main__advantage img {
    display: block;
    height: 5rem;
    width: auto;
    margin-right: auto;
    margin-left: auto;
    object-fit: contain;
  }

  .first-screen .main__advantage p {
    max-width: 12rem;
    margin: 0.9rem auto 0;
    line-height: 1.22;
  }

  .first-screen .main__advantage::before {
    left: calc(50% + 1.15rem);
    top: 3.15rem;
    transform: none;
  }

  .first-screen .main__info > .main__title[style] {
    margin-top: 2.4rem;
    font-size: clamp(1.9rem, 5.6vw, 2.35rem) !important;
    line-height: 1.24;
  }

  .first-screen .main__btn-wrap {
    flex-direction: column;
    align-items: center;
    margin-top: 2.8rem;
  }

  .first-screen .main__btn {
    width: 100%;
    max-width: 34rem;
    height: 7.3rem;
    padding: 0 1.8rem;
  }

  .first-screen .main__btn__text {
    white-space: nowrap;
    font-size: clamp(1.55rem, 4.9vw, 1.875rem);
    letter-spacing: 0.06rem;
  }

  .first-screen .main__btn__text svg {
    width: 1.9rem;
    height: 1.9rem;
  }

  .first-screen .main__btn__text svg.first {
    margin-right: 1rem;
  }

  .first-screen .main__btn__text svg.last {
    margin-left: 1rem;
  }

  .first-screen .main__btn__desc {
    width: 12rem;
    margin: 2rem 0 0 5rem;
    line-height: 1.25;
  }
}

@media (max-width: 370px) {
  .first-screen .main__title {
    font-size: 2.25rem;
  }

  .first-screen .main__btn {
    height: 7rem;
    padding-right: 1.4rem;
    padding-left: 1.4rem;
  }

  .first-screen .main__btn__text {
    font-size: 1.42rem;
    letter-spacing: 0.04rem;
  }
}

/* 2026-06-26: design-v2 hero redesign.
   Reversible override: restores a clean premium first screen without changing copy/assets. */
.first-screen {
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 58%, #f4f9fc 100%);
}

.first-screen header,
.first-screen .main,
.first-screen .main__info {
  position: relative;
  z-index: 3;
}

.first-screen .first-screen__bg {
  z-index: 1;
}

.widget__wrap {
  display: none;
}

@media (min-width: 900px) {
  .first-screen {
    min-height: 100vh;
    overflow: hidden;
  }

  .first-screen header {
    padding-top: 2.2rem;
    padding-bottom: 1.6rem;
  }

  .first-screen .header {
    align-items: flex-start;
  }

  .first-screen .header__contact {
    align-items: flex-start;
  }

  .first-screen .first-screen__bg {
    top: 0;
    left: 54%;
    width: 46vw;
    height: 100%;
    background-image: var(--bg-main);
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
  }

  .first-screen .first-screen__bg::after {
    display: block;
    background-image:
      linear-gradient(to right,
        #ffffff 0%,
        rgba(255, 255, 255, 0.94) 9%,
        rgba(255, 255, 255, 0.45) 31%,
        rgba(255, 255, 255, 0) 64%),
      linear-gradient(to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 72%,
        #ffffff 100%);
  }

  .first-screen .first-screen__bg img {
    display: block;
    object-position: top right;
  }

  .first-screen .main {
    display: grid;
    grid-template-columns: minmax(0, 58rem) minmax(0, 1fr);
    align-items: start;
    justify-content: start;
    min-height: auto;
    padding-top: 4.2rem;
    padding-bottom: 4rem;
    flex-grow: 0;
  }

  .first-screen .main__info {
    width: 100%;
    padding-bottom: 0;
  }

  .first-screen .main__subtitle {
    padding: 1.05rem 2.1rem;
    border-radius: 0.85rem;
    font-size: 1.1rem;
    box-shadow: 0 1.1rem 2.4rem rgba(254, 234, 140, 0.34);
  }

  .first-screen .main__title {
    max-width: 48rem;
    margin-top: 2.8rem;
    font-size: 3.55rem;
    line-height: 1.14;
    letter-spacing: 0;
  }

  .first-screen .main__advantages {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(52rem, 100%);
    gap: 1.8rem;
    margin-top: 3.2rem;
  }

  .first-screen .main__advantage,
  .first-screen .main__advantage:not(:last-child) {
    min-width: 0;
    margin-right: 0;
    text-align: center;
  }

  .first-screen .main__advantage img {
    display: block;
    height: 5.25rem;
    width: auto;
    margin-right: auto;
    margin-left: auto;
    object-fit: contain;
  }

  .first-screen .main__advantage p {
    max-width: 12rem;
    margin: 0.85rem auto 0;
    font-size: 0.9rem;
    line-height: 1.22;
    letter-spacing: 0.02rem;
  }

  .first-screen .main__advantage::before {
    left: calc(50% + 1.1rem);
    top: 3.45rem;
    transform: none;
  }

  .first-screen .main__info > .main__title[style] {
    max-width: 56rem;
    margin-top: 3.25rem;
    font-size: 1.88rem !important;
    line-height: 1.32;
  }

  .first-screen .main__btn-wrap {
    align-items: center;
    margin-top: 3.15rem;
  }

  .first-screen .main__btn {
    width: 36rem;
    min-width: 0;
    height: 7.1rem;
    padding: 0 2.2rem;
    border-radius: 1.1rem;
    box-shadow: 0 1.4rem 3rem rgba(235, 44, 44, 0.18), 0 0.32rem 0 0 var(--darker-color-rgb);
  }

  .first-screen .main__btn__text {
    font-size: 1.82rem;
    letter-spacing: 0.07rem;
    white-space: nowrap;
  }

  .first-screen .main__btn__desc {
    margin-left: 5.5rem;
    line-height: 1.25;
  }

  .first-screen .main__vid {
    display: none;
  }
}

@media (min-width: 900px) and (max-width: 1279px) {
  .first-screen .main {
    grid-template-columns: minmax(0, 58rem) minmax(0, 1fr);
    padding-top: 3.5rem;
  }

  .first-screen .first-screen__bg {
    left: 57%;
    width: 43vw;
  }

  .first-screen .main__title {
    max-width: 58rem;
    font-size: 2.95rem;
  }

  .first-screen .main__advantages {
    width: min(50rem, 100%);
    gap: 1.3rem;
  }

  .first-screen .main__advantage img {
    height: 4.8rem;
  }

  .first-screen .main__advantage p {
    font-size: 0.84rem;
  }

  .first-screen .main__btn {
    width: 33rem;
  }

  .first-screen .main__btn__text {
    font-size: 1.62rem;
  }
}

@media (min-width: 1600px) {
  .first-screen .main {
    grid-template-columns: minmax(0, 62rem) minmax(0, 1fr);
    padding-top: 5rem;
  }

  .first-screen .main__title {
    max-width: 54rem;
  }
}

@media (max-width: 699px) {
  .first-screen {
    min-height: auto;
    overflow: hidden;
    background: #ffffff;
  }

  .first-screen header {
    padding-top: 2.4rem;
    padding-bottom: 2.2rem;
  }

  .first-screen .main {
    display: block;
    margin-top: 0 !important;
    padding-top: 3.3rem;
    padding-bottom: 3.4rem;
    flex-grow: 0;
  }

  .first-screen .first-screen__bg {
    top: 29.4rem;
    left: 0;
    width: 100vw;
    height: 18.5rem;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-image:
      linear-gradient(to bottom,
        #ffffff 0%,
        rgba(255, 255, 255, 0.96) 8%,
        rgba(255, 255, 255, 0.24) 28%,
        rgba(255, 255, 255, 0.22) 58%,
        #ffffff 100%),
      var(--bg-main);
  }

  .first-screen .first-screen__bg img,
  .first-screen .first-screen__bg::after {
    display: none;
  }

  .first-screen .main__info {
    width: 100%;
    padding-bottom: 0;
  }

  .first-screen .main__subtitle {
    margin-left: 0;
    padding: 1rem 1.7rem;
    border-radius: 0.85rem;
    font-size: 1.15rem;
  }

  .first-screen .main__title {
    width: 100%;
    max-width: none;
    margin-top: 2.6rem;
    font-size: 2.55rem;
    line-height: 1.16;
    letter-spacing: 0;
  }

  .first-screen .main__advantages {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 1rem;
    margin-top: 3.1rem;
  }

  .first-screen .main__advantage,
  .first-screen .main__advantage:not(:last-child) {
    width: auto;
    min-height: 8.5rem;
    margin: 0;
    text-align: center;
  }

  .first-screen .main__advantage img {
    display: block;
    height: 4.6rem;
    width: auto;
    margin-right: auto;
    margin-left: auto;
    object-fit: contain;
  }

  .first-screen .main__advantage p {
    max-width: 11.5rem;
    margin: 0.72rem auto 0;
    font-size: 0.82rem;
    line-height: 1.18;
    letter-spacing: 0.02rem;
  }

  .first-screen .main__advantage::before {
    left: calc(50% + 1rem);
    top: 2.9rem;
    transform: none;
  }

  .first-screen .main__info > .main__title[style] {
    margin-top: 2.3rem;
    font-size: 1.95rem !important;
    line-height: 1.25;
  }

  .first-screen .main__btn-wrap {
    flex-direction: column;
    align-items: center;
    margin-top: 2.9rem;
  }

  .first-screen .main__btn {
    width: 100%;
    max-width: 34rem;
    height: 7.15rem;
    padding: 0 1.55rem;
    border-radius: 1.15rem;
  }

  .first-screen .main__btn__text {
    font-size: 1.54rem;
    letter-spacing: 0.035rem;
    white-space: nowrap;
  }

  .first-screen .main__btn__text svg {
    width: 1.7rem;
    height: 1.7rem;
  }

  .first-screen .main__btn__text svg.first {
    margin-right: 0.85rem;
  }

  .first-screen .main__btn__text svg.last {
    margin-left: 0.85rem;
  }

  .first-screen .main__btn__desc {
    width: 12rem;
    margin: 2rem 0 0 5rem;
    line-height: 1.22;
  }

  .first-screen .main__vid,
  .first-screen .main__vid_m {
    display: none;
  }
}

@media (max-width: 370px) {
  .first-screen .main__title {
    font-size: 2.34rem;
  }

  .first-screen .main__btn {
    height: 6.95rem;
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }

  .first-screen .main__btn__text {
    font-size: 1.38rem;
    letter-spacing: 0.02rem;
  }
}

/* 2026-06-27: header alignment polish.
   Keep the existing content; only normalize vertical rhythm and contact stacking. */
.first-screen header {
  padding-top: clamp(1.35rem, 2vw, 2rem);
  padding-bottom: clamp(1.15rem, 1.7vw, 1.6rem);
}

.first-screen .header {
  align-items: center;
  gap: 2rem;
}

.first-screen .logo,
.first-screen .logo__c,
.first-screen .header__contact,
.first-screen .header__whatsapp {
  align-items: center;
}

.first-screen .logo__img {
  width: clamp(17rem, 19vw, 22rem);
}

.first-screen .header__contact {
  gap: 3rem;
}

.first-screen .header__whatsapp {
  margin-right: 0;
}

.first-screen .header__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.34rem;
  line-height: 1.1;
}

.first-screen .header__phone__online {
  justify-content: flex-end;
  line-height: 1.2;
}

.first-screen .header__phone__link {
  margin-top: 0;
  line-height: 1.15;
}

.first-screen .header__callback {
  margin: 0;
  line-height: 1.15;
}

.first-screen .header__phone p {
  margin: 0;
  line-height: 1.2;
}

.first-screen .header__phone p a {
  color: var(--dark-font);
}

@media (min-width: 900px) and (max-width: 1279px) {
  .first-screen .header__contact {
    gap: 2rem;
  }

  .first-screen .logo__img {
    width: clamp(16rem, 22vw, 20rem);
  }
}

@media (max-width: 699px) {
  .first-screen header {
    padding-top: 1.65rem;
    padding-bottom: 1.55rem;
  }

  .first-screen .header {
    align-items: center;
    gap: 1.1rem;
  }

  .first-screen .logo__img {
    width: clamp(9.4rem, 31vw, 10.6rem);
    max-width: none;
  }

  .first-screen .header__contact {
    align-items: center;
    gap: 0.8rem;
  }

  .first-screen .header__phone {
    gap: 0.28rem;
  }

  .first-screen .header__phone__online {
    font-size: 0.76rem;
    line-height: 1.15;
  }

  .first-screen .header__phone__link {
    font-size: clamp(1.36rem, 5vw, 1.55rem);
    line-height: 1.1;
  }

  .first-screen .header__callback {
    font-size: 0.86rem;
  }

  .first-screen .header__phone p {
    margin-top: 0;
    font-size: 0.92rem;
  }
}

/* 2026-06-27: restore original first headline font size. */
.first-screen .main__title {
  font-size: 3.125rem;
  line-height: 1.2;
}

@media (max-width: 699px) {
  .first-screen .main__title {
    font-size: 2.4rem;
    line-height: 1.2;
  }
}

/* 2026-06-27: match hero title/background to vyveska-mos.store reference. */
@media (min-width: 900px) {
  .first-screen {
    background: transparent;
  }

  .first-screen .first-screen__bg {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-image: var(--bg-main);
    background-size: cover;
    background-position: top center;
  }

  .first-screen .first-screen__bg::after {
    display: block;
  }

  .first-screen .first-screen__bg img {
    display: block;
    object-position: top center;
  }

  .first-screen .main__title {
    max-width: none;
    font-size: 3.125rem !important;
    line-height: 1.2;
  }

  .first-screen .main__info > h1.main__title[style] {
    max-width: none;
    font-size: 3.125rem !important;
    line-height: 1.2;
  }
}

@media (max-width: 699px) {
  .first-screen .first-screen__bg {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    min-height: 100%;
    background-size: cover;
    background-position: center bottom;
    background-image: linear-gradient(to bottom, var(--bg-color), var(--bg-color) 10%, rgba(var(--transparent))), var(--bg-main);
  }

  .first-screen .main {
    padding-top: 0;
  }

  .first-screen .main__title {
    max-width: 50rem;
    font-size: 2.4rem !important;
    line-height: 1.2;
  }

  .first-screen .main__info > h1.main__title[style] {
    max-width: 50rem;
    font-size: 2.4rem !important;
    line-height: 1.2;
  }
}

/* 2026-06-27: premium first-screen redesign from user brief. */
.first-screen {
  isolation: isolate;
  min-height: 100svh;
  background:
    radial-gradient(circle at 78% 30%, rgba(39, 128, 225, 0.18), rgba(39, 128, 225, 0) 33rem),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 45%, #eef7ff 100%);
}

.first-screen::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 36%, rgba(255, 255, 255, 0.58) 56%, rgba(255, 255, 255, 0.08) 100%),
    radial-gradient(circle at 18% 20%, rgba(103, 63, 255, 0.08), rgba(103, 63, 255, 0) 24rem);
}

.first-screen .first-screen__bg {
  z-index: 0;
  top: 0;
  right: 0;
  left: auto;
  width: 54vw;
  height: 100%;
  background-image: var(--bg-main);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.92;
}

.first-screen .first-screen__bg::after {
  display: block;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.62) 23%, rgba(255, 255, 255, 0.1) 58%, rgba(255, 255, 255, 0.28) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0) 78%, rgba(255, 255, 255, 0.72) 100%);
}

.first-screen .first-screen__bg img {
  display: block;
  object-position: center right;
  transform: scale(1.08);
  transform-origin: center right;
  filter: saturate(1.04) contrast(0.98);
}

.first-screen header {
  z-index: 4;
  padding-top: clamp(1.2rem, 1.7vw, 2rem);
  padding-bottom: clamp(1rem, 1.4vw, 1.55rem);
}

.first-screen .header {
  align-items: center;
  gap: 2rem;
}

.first-screen .logo__img {
  width: clamp(15.5rem, 17vw, 20.5rem);
}

.first-screen .header__contact {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.6vw, 2rem);
}

.first-screen .header__phone {
  order: 1;
  gap: 0.18rem;
}

.first-screen .header__phone__online {
  font-size: 0.76rem;
  opacity: 0.78;
}

.first-screen .header__phone__link {
  font-size: clamp(1.3rem, 1.35vw, 1.55rem);
  font-weight: 600;
}

.first-screen .header__callback {
  display: none;
}

.first-screen .header__phone p {
  display: block;
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  line-height: 1.2;
}

.first-screen .header__phone p a {
  color: rgba(21, 24, 33, 0.78);
}

.first-screen .header__whatsapp {
  order: 2;
  gap: 0.85rem;
  margin-right: 0;
}

.first-screen .header__whatsapp__link {
  width: auto;
  min-width: 8.8rem;
  height: 3.1rem;
  padding: 0 1.05rem;
  border: 1px solid rgba(79, 77, 232, 0.16);
  border-radius: 999px;
  box-shadow: 0 0.75rem 2rem rgba(44, 77, 130, 0.08);
}

.first-screen .header__whatsapp__text {
  order: 3;
  max-width: 8.8rem;
  margin-left: 0;
  font-size: 0.78rem;
  line-height: 1.25;
  color: rgba(38, 38, 38, 0.76);
}

.first-screen .main {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: center;
  min-height: calc(100svh - 7.4rem);
  padding-top: clamp(2rem, 3.6vh, 4rem);
  padding-bottom: clamp(3rem, 5vh, 5rem);
}

.first-screen .main__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 61rem);
  padding-bottom: 0;
}

.first-screen .main__subtitle {
  width: max-content;
  max-width: 100%;
  height: auto;
  margin: 0 0 1.8rem;
  padding: 0.72rem 1.08rem;
  border: 1px solid rgba(41, 100, 220, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0.9rem 2.2rem rgba(38, 82, 148, 0.08);
  color: #334066;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02rem;
  text-align: left;
  transform: none;
  backdrop-filter: blur(14px);
}

.first-screen .main__subtitle--skew {
  transform: none;
}

.first-screen .main__title,
.first-screen .main__info > h1.main__title[style] {
  max-width: 66rem;
  margin-top: 0;
  color: #151821;
  font-size: clamp(3.25rem, 3.65vw, 4.65rem) !important;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
}

.first-screen .main__title .fw-bold {
  color: #275ee8;
  font-weight: 700;
}

.first-screen .main__lead {
  max-width: 43rem;
  margin: 1.55rem 0 0;
  color: rgba(21, 24, 33, 0.72);
  font-size: clamp(1.04rem, 1.05vw, 1.25rem);
  line-height: 1.65;
}

.first-screen .main__advantages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(58rem, 100%);
  gap: 1rem;
  margin-top: 2.35rem;
}

.first-screen .main__advantage,
.first-screen .main__advantage:not(:last-child) {
  display: grid;
  grid-template-rows: 3.5rem auto;
  align-items: center;
  min-height: 9.2rem;
  margin: 0;
  padding: 1.15rem 0.9rem 1rem;
  border: 1px solid rgba(40, 90, 170, 0.1);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1rem 2.5rem rgba(23, 48, 90, 0.08);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(12px);
}

.first-screen .main__advantage:hover {
  transform: translateY(-0.18rem);
  border-color: rgba(39, 94, 232, 0.2);
  box-shadow: 0 1.3rem 3.2rem rgba(23, 48, 90, 0.12);
}

.first-screen .main__advantage img {
  display: block;
  width: auto;
  height: 3.25rem;
  margin: 0 auto;
  object-fit: contain;
}

.first-screen .main__advantage::before {
  left: calc(50% + 1.15rem);
  top: 3.35rem;
  transform: none;
}

.first-screen .main__advantage p {
  max-width: 10.5rem;
  margin: 0.72rem auto 0;
  color: #1f2430;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
}

.first-screen .main__btn-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: min(58rem, 100%);
  gap: 1.15rem 1.4rem;
  margin-top: 1.25rem;
  padding: 1.25rem;
  border: 1px solid rgba(40, 90, 170, 0.11);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1.4rem 4rem rgba(23, 48, 90, 0.12);
  backdrop-filter: blur(14px);
}

.first-screen .main__cta-copy {
  grid-column: 1 / -1;
  max-width: 47rem;
  margin: 0;
  color: rgba(21, 24, 33, 0.82);
  font-size: 1.08rem;
  line-height: 1.45;
}

.first-screen .main__btn {
  width: min(100%, 30rem);
  min-width: 0;
  height: 5.7rem;
  padding: 0 2.1rem;
  border-radius: 1.05rem;
  box-shadow: 0 1.1rem 2.5rem rgba(235, 44, 44, 0.22), 0 0.28rem 0 0 var(--darker-color-rgb);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.first-screen .main__btn:hover {
  transform: translateY(-0.16rem);
  box-shadow: 0 1.35rem 3.1rem rgba(235, 44, 44, 0.26), 0 0.28rem 0 0 var(--darker-color-rgb);
}

.first-screen .main__btn__text {
  font-size: clamp(1.28rem, 1.25vw, 1.58rem);
  letter-spacing: 0.055rem;
  white-space: nowrap;
}

.first-screen .main__btn__text svg {
  width: 1.55rem;
  height: 1.55rem;
}

.first-screen .main__btn__desc {
  width: 12rem;
  margin: 0 0 0 4.7rem;
  color: rgba(21, 24, 33, 0.72);
  font-size: 0.82rem;
  line-height: 1.28;
}

.first-screen .main__btn__desc img {
  width: 4.2rem;
  left: -4.4rem;
}

.first-screen .main__vid,
.first-screen .main__vid_m {
  display: none;
}

.work-steps {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 3vw, 3.2rem) 0;
  background: #ffffff;
  border-top: 1px solid rgba(39, 94, 232, 0.08);
}

.work-steps__inner {
  display: grid;
  grid-template-columns: minmax(15rem, 0.6fr) minmax(0, 3fr);
  align-items: start;
  gap: 2.2rem;
}

.work-steps__title {
  margin: 0;
  color: #151821;
  font-size: clamp(1.55rem, 2vw, 2.35rem);
  font-weight: 400;
  line-height: 1.1;
}

.work-steps__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-steps__item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.85rem;
  min-width: 0;
  min-height: 8.1rem;
  padding: 1.05rem;
  border: 1px solid rgba(39, 94, 232, 0.08);
  border-radius: 1.1rem;
  background: #ffffff;
  box-shadow: 0 0.85rem 2.1rem rgba(23, 48, 90, 0.06);
}

.work-steps__item:not(:last-child)::after {
  position: absolute;
  top: 2.25rem;
  right: -1rem;
  width: 1rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(39, 94, 232, 0.26), rgba(103, 63, 255, 0.08));
  content: "";
}

.work-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #275ee8, #7837ff);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 0.75rem 1.8rem rgba(39, 94, 232, 0.18);
}

.work-steps__text {
  display: block;
  color: #151821;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: normal;
}

.work-steps__desc {
  display: block;
  margin-top: 0.45rem;
  color: rgba(21, 24, 33, 0.62);
  font-size: 0.78rem;
  line-height: 1.35;
}

@media (max-width: 1199px) {
  .first-screen .main {
    grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
  }

  .first-screen .main__title,
  .first-screen .main__info > h1.main__title[style] {
    font-size: clamp(2.9rem, 3.8vw, 3.8rem) !important;
  }

  .first-screen .main__advantages,
  .first-screen .main__btn-wrap {
    width: min(54rem, 100%);
  }
}

@media (max-width: 899px) {
  .first-screen {
    min-height: auto;
  }

  .first-screen .header__whatsapp__text {
    display: none;
  }

  .first-screen .main {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .first-screen .main__advantages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-steps__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 699px) {
  .first-screen {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 68%, #ffffff 100%);
  }

  .first-screen::before {
    display: none;
  }

  .first-screen header {
    order: 1;
    padding-top: 1.35rem;
    padding-bottom: 1.1rem;
  }

  .first-screen .header {
    align-items: flex-start;
  }

  .first-screen .logo__img {
    width: clamp(9.4rem, 32vw, 11rem);
  }

  .first-screen .header__contact {
    gap: 0.6rem;
  }

  .first-screen .header__whatsapp {
    display: none;
  }

  .first-screen .header__wa-m {
    display: none;
  }

  .first-screen .header__phone__online {
    font-size: 0.7rem;
  }

  .first-screen .header__phone__link {
    font-size: clamp(1.25rem, 5vw, 1.52rem);
  }

  .first-screen .header__phone p {
    display: block;
    margin-top: 0.12rem;
    font-size: 0.72rem;
  }

  .first-screen .main {
    order: 2;
    display: block;
    padding-top: 2.1rem;
    padding-bottom: 1.6rem;
  }

  .first-screen .main__info {
    display: flex;
  }

  .first-screen .main__subtitle {
    order: 1;
    margin-bottom: 1.25rem;
    padding: 0.62rem 0.9rem;
    font-size: 0.78rem;
  }

  .first-screen .main__title,
  .first-screen .main__info > h1.main__title[style] {
    order: 2;
    max-width: 100%;
    font-size: clamp(2.65rem, 9vw, 3.35rem) !important;
    line-height: 1.08;
  }

  .first-screen .main__lead {
    order: 3;
    margin-top: 1.15rem;
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .first-screen .main__btn-wrap {
    order: 4;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.05rem;
    border-radius: 1.25rem;
  }

  .first-screen .main__cta-copy {
    font-size: 0.98rem;
    line-height: 1.4;
  }

  .first-screen .main__btn {
    width: 100%;
    height: 5.9rem;
    padding: 0 1.25rem;
  }

  .first-screen .main__btn__text {
    font-size: clamp(1.22rem, 4.7vw, 1.48rem);
    letter-spacing: 0.025rem;
  }

  .first-screen .main__btn__text svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .first-screen .main__btn__desc {
    justify-self: center;
    width: auto;
    margin: 0 0 0 4.1rem;
    font-size: 0.78rem;
  }

  .first-screen .main__advantages {
    order: 5;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0.85rem;
    margin-top: 1.2rem;
  }

  .first-screen .main__advantage,
  .first-screen .main__advantage:not(:last-child) {
    min-height: 8rem;
    padding: 0.95rem 0.65rem;
    border-radius: 1.05rem;
  }

  .first-screen .main__advantage img {
    height: 3rem;
  }

  .first-screen .main__advantage p {
    font-size: 0.74rem;
  }

  .first-screen .first-screen__bg {
    position: relative;
    order: 3;
    top: auto;
    right: auto;
    left: auto;
    width: 100vw;
    height: clamp(20rem, 62vw, 28rem);
    min-height: 0;
    margin-top: 0.5rem;
    background-size: cover;
    background-position: center;
    opacity: 1;
  }

  .first-screen .first-screen__bg::after {
    display: block;
    background:
      linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.18) 28%, rgba(255, 255, 255, 0.06) 70%, #ffffff 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.05) 52%, rgba(255, 255, 255, 0.58));
  }

  .first-screen .first-screen__bg img {
    display: block;
    transform: scale(1.04);
    object-position: center;
  }

  .work-steps {
    padding: 2rem 0;
  }

  .work-steps__list {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .work-steps__item:not(:last-child)::after {
    display: none;
  }

  .work-steps__item {
    min-height: 3.5rem;
    padding: 0.7rem 0.8rem;
    border: 1px solid rgba(39, 94, 232, 0.08);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 0.7rem 1.8rem rgba(23, 48, 90, 0.06);
  }

  .work-steps__desc {
    font-size: 0.76rem;
  }
}

/* 2026-06-27: pixel reconstruction pass for Max target.png, 1280x861. */
@media (min-width: 900px) {
  .first-screen .container,
  .work-steps .container {
    width: 1100px;
    max-width: 1100px;
    padding-right: 0;
    padding-left: 0;
  }

  .first-screen {
    height: 704px;
    min-height: 704px;
    overflow: hidden;
    background: linear-gradient(120deg, #ffffff 0%, #f8fbff 48%, #eef6ff 100%);
  }

  .first-screen::before {
    display: block;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 37%, rgba(255, 255, 255, 0.15) 55%, rgba(255, 255, 255, 0.02) 100%),
      radial-gradient(circle at 70% 38%, rgba(48, 123, 255, 0.14), rgba(48, 123, 255, 0) 34rem);
  }

  .first-screen .first-screen__bg {
    right: 0;
    left: auto;
    width: 59vw;
    height: 704px;
    opacity: 1;
    background-position: center right;
  }

  .first-screen .first-screen__bg::after {
    background:
      linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.72) 14%, rgba(255, 255, 255, 0.06) 42%, rgba(255, 255, 255, 0.02) 100%),
      linear-gradient(0deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 84%, rgba(255, 255, 255, 0.34) 100%);
  }

  .first-screen .first-screen__bg img {
    object-position: center right;
    transform: translate(28px, 26px) scale(0.96);
    filter: saturate(1.16) contrast(1.05);
  }

  .first-screen header {
    padding-top: 20px;
    padding-bottom: 0;
  }

  .first-screen .header {
    align-items: flex-start;
    gap: 24px;
    position: relative;
  }

  .first-screen .logo__img {
    width: 221px;
    max-width: none;
  }

  .first-screen .header__contact {
    display: block;
    position: absolute;
    top: 5px;
    right: 0;
    width: 668px;
    flex: none;
  }

  .first-screen .header__whatsapp {
    order: 1;
    margin-right: 0;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    gap: 24px;
  }

  .first-screen .header__whatsapp__link {
    width: 118px;
    min-width: 118px;
    height: 52px;
    padding: 0 13px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 30px rgba(28, 57, 120, 0.08);
    color: #161821;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0;
  }

  .first-screen .header__whatsapp__link img,
  .first-screen .header__whatsapp__link svg,
  .first-screen .header__whatsapp__link path {
    width: 25px;
    height: 25px;
    margin-right: 8px;
  }

  .first-screen .header__whatsapp__link::after {
    display: none;
  }

  .first-screen .header__whatsapp__text {
    order: 2;
    display: block;
    max-width: none;
    min-height: 52px;
    margin: 0;
    padding: 13px 18px 0 52px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 30px rgba(28, 57, 120, 0.08);
    color: #151821;
    font-size: 10px;
    line-height: 1.22;
    position: relative;
    width: 174px;
  }

  .first-screen .header__whatsapp__text::before {
    position: absolute;
    left: 18px;
    top: 15px;
    width: 25px;
    height: 25px;
    border: 2px solid #5c47f4;
    border-radius: 50%;
    content: "";
    opacity: 0.85;
  }

  .first-screen .header__phone {
    order: 3;
    gap: 4px;
    align-items: flex-end;
    padding-top: 0;
    position: absolute;
    right: 0;
    top: -5px;
  }

  .first-screen .header__phone__online {
    font-size: 10px;
    font-weight: 600;
    line-height: 1.1;
    opacity: 0.88;
  }

  .first-screen .header__phone__link {
    font-size: 20px;
    line-height: 1.08;
    font-weight: 700;
  }

  .first-screen .header__callback {
    display: block;
    margin: 0;
    color: #5333f2;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.15;
    text-decoration: underline;
  }

  .first-screen .header__phone p {
    display: block;
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.15;
    font-weight: 600;
  }

  .first-screen .header__phone p a {
    color: #151821;
  }

  .first-screen .main {
    display: block;
    min-height: 0;
    padding-top: 70px;
    padding-bottom: 0;
  }

  .first-screen .main__info {
    width: 520px;
    max-width: 520px;
  }

  .first-screen .main__subtitle {
    height: 31px;
    margin: 0 0 7px;
    padding: 9px 15px 0;
    border: 0;
    border-radius: 9px;
    background: #fff0df;
    box-shadow: none;
    color: #bc7634;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
  }

  .first-screen .main__title,
  .first-screen .main__info > h1.main__title[style] {
    max-width: 520px;
    color: #08090d;
    font-size: 34px !important;
    line-height: 1.34;
    font-weight: 800;
    letter-spacing: 0;
  }

  .first-screen .main__title .fw-bold {
    color: #4b23ff;
    font-weight: 800;
    text-transform: lowercase;
  }

  .first-screen .main__lead {
    max-width: 440px;
    margin-top: 12px;
    color: #30333d;
    font-size: 15px;
    line-height: 1.48;
    font-weight: 500;
  }

  .first-screen .main__advantages {
    display: grid;
    grid-template-columns: repeat(4, 90px);
    width: 480px;
    gap: 37px;
    margin-top: 25px;
  }

  .first-screen .main__advantage,
  .first-screen .main__advantage:not(:last-child) {
    display: block;
    min-height: 100px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .first-screen .main__advantage:hover {
    transform: none;
    box-shadow: none;
  }

  .first-screen .main__advantage img {
    width: 60px;
    height: 60px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(238, 233, 255, 0.92);
    box-shadow: 0 10px 22px rgba(82, 62, 180, 0.07);
  }

  .first-screen .main__advantage::before {
    left: 58px;
    top: 48px;
    width: 14px;
    height: 14px;
  }

  .first-screen .main__advantage p {
    max-width: 92px;
    margin-top: 10px;
    color: #171923;
    font-size: 12px;
    line-height: 1.18;
    font-weight: 600;
  }

  .first-screen .main__btn-wrap {
    display: grid;
    grid-template-columns: 316px 120px;
    gap: 8px 14px;
    align-items: center;
    width: 520px;
    min-height: 160px;
    margin-top: 8px;
    padding: 25px 25px 21px;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 22px 48px rgba(36, 52, 88, 0.1);
    backdrop-filter: none;
  }

  .first-screen .main__cta-copy {
    grid-column: 1 / -1;
    max-width: 470px;
    color: #161821;
    font-size: 17px;
    line-height: 1.34;
    font-weight: 500;
  }

  .first-screen .main__cta-copy .fw-medium,
  .first-screen .main__cta-copy strong,
  .first-screen .main__cta-copy b {
    color: #4b23ff;
    font-weight: 800;
  }

  .first-screen .main__btn {
    width: 316px;
    height: 58px;
    padding: 0 22px;
    border-radius: 6px;
    background-image: linear-gradient(180deg, #6237ff 0%, #3f16f4 100%);
    box-shadow: 0 13px 22px rgba(66, 29, 238, 0.28), 0 4px 0 #2b0fc0;
  }

  .first-screen .main__btn__text {
    font-size: 17px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.03rem;
  }

  .first-screen .main__btn__text svg {
    width: 18px;
    height: 18px;
  }

  .first-screen .main__btn__desc {
    width: 112px;
    margin-left: 0;
    color: #151821;
    font-size: 11px;
    line-height: 1.15;
    font-weight: 600;
  }

  .first-screen .main__btn__desc img {
    left: -34px;
    width: 30px;
  }

  .work-steps {
    padding: 17px 0 22px;
    border-top: 0;
    background: #ffffff;
  }

  .work-steps__inner {
    display: block;
  }

  .work-steps__title {
    margin: 0 0 20px;
    color: #08090d;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
  }

  .work-steps__list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
  }

  .work-steps__item {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    min-height: 74px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .work-steps__item:not(:last-child)::after {
    display: block;
    top: 13px;
    right: -22px;
    width: 86px;
    height: 1px;
    background: #dedee8;
  }

  .work-steps__num {
    width: 22px;
    height: 22px;
    margin-top: 0;
    background: linear-gradient(180deg, #5f3eff, #3720df);
    font-size: 10px;
    box-shadow: 0 7px 14px rgba(67, 37, 234, 0.28);
  }

  .work-steps__text {
    color: #161821;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
  }

  .work-steps__desc {
    max-width: 135px;
    margin-top: 9px;
    color: #22242c;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 500;
  }

  .portfolio .container,
  .editor.container,
  .open-quiz .container {
    width: min(1100px, calc(100vw - 180px));
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .portfolio__slider__arrows {
    left: -40px;
    width: calc(100% + 80px);
  }

  .portfolio__slide {
    display: grid !important;
    grid-template-columns: minmax(0, calc(50% - 24px)) minmax(0, 1fr) !important;
    gap: 48px !important;
    align-items: start !important;
  }

  .portfolio__slide__photo {
    width: 100% !important;
    min-width: 0 !important;
  }

  .portfolio__slide__photo--big {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1.32 / 1;
  }

  .portfolio__slide__photo__bottom {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px !important;
  }

  .portfolio__slide__photo--sm,
  .portfolio__slide__photo--sm:not(:last-child) {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1.54 / 1;
    margin: 0 !important;
  }
}

/* Final override: must stay after legacy <=699px rules. */
@media (min-width: 600px) and (max-width: 699px) {
  html { font-size: 10px !important; }
  .container,
  .first-screen .container,
  .work-steps .container,
  .portfolio .container,
  .editor.container {
    width: 565px !important;
    max-width: 565px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .first-screen {
    display: block !important;
    height: 410px !important;
    min-height: 410px !important;
    overflow: hidden !important;
    background: linear-gradient(115deg, #fff 0%, #f9fbff 48%, #edf5ff 100%) !important;
  }
  .first-screen::before {
    display: block !important;
    background:
      linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 39%, rgba(255,255,255,.25) 56%, rgba(255,255,255,0) 100%),
      radial-gradient(circle at 74% 36%, rgba(49,119,255,.13), rgba(49,119,255,0) 270px) !important;
  }
  .first-screen .first-screen__bg {
    position: absolute !important;
    order: initial !important;
    top: 43px !important;
    right: 0 !important;
    left: auto !important;
    width: 360px !important;
    height: 350px !important;
    margin: 0 !important;
    background-size: cover !important;
    background-position: center right !important;
    opacity: 1 !important;
  }
  .first-screen .first-screen__bg::after {
    display: block !important;
    background:
      linear-gradient(90deg, #fff 0%, rgba(255,255,255,.64) 15%, rgba(255,255,255,.04) 48%, rgba(255,255,255,.10) 100%),
      linear-gradient(0deg, rgba(255,255,255,.90) 0%, rgba(255,255,255,0) 20%, rgba(255,255,255,0) 76%, rgba(255,255,255,.28) 100%) !important;
  }
  .first-screen .first-screen__bg img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center right !important;
    transform: translate(48px, 0) scale(1.03) !important;
  }
  .first-screen header { order: initial !important; padding-top: 16px !important; padding-bottom: 0 !important; }
  .first-screen .header { display: block !important; position: relative !important; }
  .first-screen .logo__img {
    width: 130px !important;
    height: 38px !important;
    max-width: none !important;
    content: url("../img/vyveska-mos-logo-target.png") !important;
    object-fit: contain !important;
  }
  .first-screen .logo__text,
  .first-screen .logo__desc { display: none !important; }
  .first-screen .header__contact {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 286px !important;
    margin: 0 !important;
  }
  .first-screen .header__whatsapp {
    display: flex !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    gap: 12px !important;
    margin: 0 !important;
  }
  .first-screen .header__whatsapp__link {
    width: 76px !important;
    min-width: 76px !important;
    height: 32px !important;
    padding: 0 8px !important;
    border: 0 !important;
    border-radius: 7px !important;
    font-size: 6px !important;
  }
  .first-screen .header__whatsapp__link img,
  .first-screen .header__whatsapp__link svg {
    width: 17px !important;
    height: 17px !important;
    margin-right: 6px !important;
  }
  .first-screen .header__whatsapp__text {
    display: block !important;
    width: 106px !important;
    min-height: 32px !important;
    margin: 0 !important;
    padding: 8px 8px 0 33px !important;
    border-radius: 7px !important;
    font-size: 6px !important;
  }
  .first-screen .header__phone {
    position: absolute !important;
    top: -1px !important;
    right: 0 !important;
    text-align: right !important;
  }
  .first-screen .header__phone__online { font-size: 7px !important; justify-content: flex-end !important; }
  .first-screen .header__phone__link { font-size: 15px !important; }
  .first-screen .header__callback { display: block !important; font-size: 9px !important; color: #5130f5 !important; text-decoration: underline !important; }
  .first-screen .header__phone p { display: block !important; font-size: 9px !important; margin-top: 5px !important; }
  .first-screen .main {
    display: block !important;
    order: initial !important;
    min-height: 0 !important;
    padding-top: 16px !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
  }
  .first-screen .main__info {
    display: block !important;
    width: 286px !important;
    max-width: 286px !important;
    padding-bottom: 0 !important;
  }
  .first-screen .main__subtitle { margin-bottom: 8px !important; }
  .first-screen .main__title,
  .first-screen .main__info > h1.main__title[style] {
    max-width: 286px !important;
    font-size: 23px !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
  }
  .first-screen .main__lead {
    max-width: 255px !important;
    margin-top: 10px !important;
    font-size: 8px !important;
    line-height: 1.55 !important;
  }
  .first-screen .main__advantages {
    order: initial !important;
    display: grid !important;
    grid-template-columns: repeat(4, 60px) !important;
    gap: 10px !important;
    width: 270px !important;
    margin-top: 12px !important;
  }
  .first-screen .main__advantage,
  .first-screen .main__advantage:not(:last-child) {
    display: block !important;
    width: auto !important;
    min-height: 57px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  .first-screen .main__advantage img {
    width: 38px !important;
    height: 38px !important;
    padding: 8px !important;
    border-radius: 7px !important;
  }
  .first-screen .main__advantage p { font-size: 6.5px !important; margin-top: 6px !important; }
  .first-screen .main__btn-wrap {
    order: initial !important;
    display: grid !important;
    grid-template-columns: 151px 1fr !important;
    width: 263px !important;
    min-height: 103px !important;
    margin-top: 12px !important;
    padding: 15px 14px 12px !important;
    gap: 7px 12px !important;
  }
  .first-screen .main__cta-copy { font-size: 10px !important; line-height: 1.43 !important; }
  .first-screen .main__btn {
    width: 151px !important;
    height: 29px !important;
    min-height: 29px !important;
    padding: 0 9px !important;
    border-radius: 4px !important;
    background-image: linear-gradient(180deg, #6338ff 0%, #3d16f2 100%) !important;
    box-shadow: 0 8px 13px rgba(66,29,238,.28), 0 3px 0 #2b0fc0 !important;
  }
  .first-screen .main__btn__text { gap: 6px !important; font-size: 8px !important; }
  .first-screen .main__btn__text svg { width: 10px !important; height: 10px !important; margin: 0 !important; }
  .first-screen .main__btn__desc { width: 72px !important; margin: 0 0 0 24px !important; font-size: 6px !important; }
  .first-screen .main__btn__desc img { left: -25px !important; width: 21px !important; }
  .work-steps { padding: 21px 0 18px !important; border-top: 0 !important; }
  .work-steps__inner { display: block !important; }
  .work-steps__title { margin: 0 0 18px !important; text-align: center !important; font-size: 13px !important; }
  .work-steps__list { display: grid !important; grid-template-columns: repeat(5, 1fr) !important; gap: 14px !important; }
  .work-steps__item {
    display: grid !important;
    grid-template-columns: 18px minmax(0, 1fr) !important;
    gap: 6px !important;
    min-height: 48px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  .work-steps__item:not(:last-child)::after { display: block !important; top: 10px !important; right: -28px !important; width: 45px !important; }
  .work-steps__num { width: 14px !important; height: 14px !important; font-size: 6px !important; }
  .work-steps__text { font-size: 6.5px !important; }
  .work-steps__desc { max-width: 62px !important; margin-top: 7px !important; font-size: 6px !important; }
  .portfolio { padding-top: 9px !important; padding-bottom: 18px !important; }
  .portfolio__title { margin-top: 0 !important; font-size: 13px !important; line-height: 1.1 !important; }
  .portfolio__slider__wrap { margin-top: 17px !important; margin-bottom: 19px !important; }
  .portfolio__slide { display: grid !important; grid-template-columns: 302px 1fr !important; gap: 28px !important; align-items: start !important; }
  .portfolio__slide__photo { width: 302px !important; min-width: 302px !important; }
  .portfolio__slide__photo--big { width: 302px !important; height: 183px !important; border-radius: 10px !important; }
  .portfolio__slide__photo__bottom { gap: 14px !important; margin-top: 12px !important; }
  .portfolio__slide__photo--sm,
  .portfolio__slide__photo--sm:not(:last-child) { width: 83px !important; height: 54px !important; margin: 0 !important; border-radius: 8px !important; }
  .portfolio__slide__info { margin: 28px 0 0 !important; }
  .portfolio__slide__title { font-size: 9px !important; }
  .portfolio__slide__place { margin-top: 17px !important; font-size: 5px !important; }
  .portfolio__slide__desc-title { margin-top: 16px !important; font-size: 6px !important; }
  .portfolio__slide__desc { max-width: 138px !important; margin-top: 7px !important; font-size: 5.5px !important; }
  .portfolio__slide__spec__name { font-size: 5.5px !important; }
  .portfolio__slide__spec__val { font-size: 10px !important; }
  .portfolio__slider__arrows { top: 132px !important; left: -40px !important; width: calc(100% + 80px) !important; transform: none !important; }
  .portfolio__slider__arrows .slick-arrow { width: 22px !important; height: 22px !important; background-size: 7px !important; }
  .portfolio__slider__dots ul { margin-top: 10px !important; }
  .portfolio__slider__dots button { width: 5px !important; height: 5px !important; }
  .editor { margin-top: -58px !important; }
  .editor .portfolio__title { margin-bottom: 15px !important; font-size: 13px !important; }
  .editor .wp-block-gallery,
  .editor .blocks-gallery-grid { display: grid !important; grid-template-columns: repeat(5, 1fr) !important; gap: 3px !important; }
  .editor .wp-block-gallery figure,
  .editor .blocks-gallery-item { width: auto !important; margin: 0 !important; }
  .editor .wp-block-gallery img,
  .editor .blocks-gallery-item img { width: 100% !important; height: 76px !important; object-fit: cover !important; }
  .open-quiz { padding-top: 23px !important; padding-bottom: 30px !important; }
  .open-quiz .portfolio__title { max-width: 335px !important; margin: 0 auto 12px !important; font-size: 13px !important; }
  .widget__wrap,
  .video-widget { display: none !important; }
}

@media (min-width: 600px) and (max-width: 699px) {
  .first-screen .main__advantage img {
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    object-fit: contain !important;
    filter: none !important;
  }

  .work-steps__num::after {
    background-color: transparent !important;
    background-image: var(--step-icon) !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    mask: none !important;
    -webkit-mask: none !important;
  }
}

/* OpenRouter icon replacement for all viewport widths. */
.first-screen .main__advantage:nth-child(1) img {
  content: url("../img/openrouter-icon-measure.png") !important;
}

.first-screen .main__advantage:nth-child(2) img {
  content: url("../img/openrouter-icon-document.png") !important;
}

.first-screen .main__advantage:nth-child(3) img {
  content: url("../img/openrouter-icon-shield.png") !important;
}

.first-screen .main__advantage:nth-child(4) img {
  content: url("../img/openrouter-icon-design.png") !important;
}

.first-screen .main__advantage img {
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  object-fit: contain !important;
  filter: none !important;
}

@media (max-width: 699px) {
  .first-screen .header__contact {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    width: 176px !important;
  }

  .first-screen .header__phone {
    position: absolute !important;
    left: 15px !important;
    top: 41px !important;
    order: 1 !important;
    align-items: flex-start !important;
    text-align: left !important;
    width: max-content !important;
    min-width: 0 !important;
    z-index: 3 !important;
  }

  .first-screen .header__phone__online {
    display: none !important;
  }

  .first-screen .header__phone p {
    display: none !important;
  }

  .first-screen .header__phone__link {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 24px !important;
    padding: 4px 8px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 8px 20px rgba(28, 57, 120, 0.08) !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
  }

  .first-screen .header__phone__link,
  .first-screen .header__phone p,
  .first-screen .header__phone p a {
    white-space: nowrap !important;
  }

  .first-screen .header__whatsapp {
    position: static !important;
    order: 2 !important;
    display: flex !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    margin-top: 7px !important;
  }

  .first-screen .header__wa-m {
    display: none !important;
  }

  .first-screen .main__advantages {
    order: 4 !important;
    display: grid !important;
    grid-template-columns: repeat(4, 72px) !important;
    justify-content: start !important;
    gap: 8px !important;
    width: 312px !important;
    margin-top: 10px !important;
  }

  .first-screen .main__advantage,
  .first-screen .main__advantage:not(:last-child) {
    width: 72px !important;
    min-height: 68px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .first-screen .main__advantage img {
    width: 36px !important;
    height: 36px !important;
  }

  .first-screen .main__advantage p {
    max-width: 72px !important;
    margin-top: 5px !important;
    font-size: 6px !important;
    line-height: 1.15 !important;
  }

  .first-screen .main__btn-wrap {
    order: 5 !important;
  }

  .first-screen .main__btn {
    background-image: linear-gradient(180deg, #6338ff 0%, #3d16f2 100%) !important;
    box-shadow: 0 8px 13px rgba(66, 29, 238, 0.28), 0 3px 0 #2b0fc0 !important;
  }
}

/* 2026-06-28: on narrow phones the hero image is the title area's background,
   not a separate block below the heading. */
@media (max-width: 599px), (orientation: landscape) and (max-width: 932px) and (max-height: 480px) {
  .first-screen {
    min-height: auto !important;
    overflow: hidden !important;
    background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 76%, #ffffff 100%) !important;
  }

  .first-screen .main {
    position: relative !important;
    min-height: 560px !important;
    padding-top: 22px !important;
    padding-bottom: 24px !important;
    background-image:
      linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 44%, rgba(255, 255, 255, 0.38) 68%, rgba(255, 255, 255, 0.08) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 52%, #ffffff 100%),
      var(--bg-main) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: 58% top !important;
  }

  .first-screen .main__info {
    position: relative !important;
    z-index: 1 !important;
  }

  .first-screen .first-screen__bg {
    display: none !important;
  }

  .first-screen .main__advantages {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    width: min(337px, calc(100vw - 53px)) !important;
    gap: 8px !important;
    margin-top: 24px !important;
    margin-left: 11.5px !important;
    margin-right: 0 !important;
  }

  .first-screen .main__advantage,
  .first-screen .main__advantage:not(:last-child) {
    width: auto !important;
    min-height: 104px !important;
  }

  .first-screen .main__advantage img {
    width: 72px !important;
    height: 72px !important;
  }

  .first-screen .main__advantage p {
    max-width: 100% !important;
    margin-top: 7px !important;
    font-size: 7px !important;
  }

  .first-screen .main__cta-copy {
    font-size: 13.5px !important;
    line-height: 1.18 !important;
  }
}

.first-screen .header__telegram__text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1px;
  line-height: 1.05;
}

.header__burger,
.header__email-link {
  display: none;
}

/* 2026-06-28: fixed mobile header and readable three-line hero title. */
@media (max-width: 599px), (orientation: landscape) and (max-width: 932px) and (max-height: 480px) {
  .first-screen {
    padding-top: 116px !important;
  }

  .first-screen header {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 9000 !important;
    padding: 10px 0 9px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 10px 26px rgba(28, 57, 120, 0.08) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
  }

  .first-screen .header {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    width: calc(100vw - 30px) !important;
    max-width: calc(100vw - 30px) !important;
    padding: 0 !important;
  }

  .first-screen .header__contact {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    width: auto !important;
    margin: 0 !important;
  }

  .first-screen .header__phone {
    position: static !important;
    order: 1 !important;
    display: flex !important;
    align-items: flex-end !important;
    width: auto !important;
    margin: 0 0 6px !important;
    text-align: right !important;
  }

  .first-screen .header__phone__online,
  .first-screen .header__callback,
  .first-screen .header__phone p {
    display: none !important;
  }

  .first-screen .header__whatsapp {
    position: static !important;
    order: 2 !important;
    display: grid !important;
    grid-template-columns: repeat(2, 76px) !important;
    justify-content: end !important;
    gap: 8px !important;
    margin: 0 !important;
  }

  .first-screen .header__messenger-title {
    grid-column: 1 / -1 !important;
    margin: 0 0 -2px !important;
    color: #1b1d26 !important;
    font-size: 9px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    text-align: right !important;
  }

  .first-screen .main {
    padding-top: 18px !important;
  }

  .first-screen .main__title,
  .first-screen .main__info > h1.main__title[style] {
    font-size: 29px !important;
    line-height: 1.24 !important;
    letter-spacing: 0 !important;
  }
}

/* 2026-06-28: mobile header layout matched to reference screenshot. */
@media (max-width: 599px), (orientation: landscape) and (max-width: 932px) and (max-height: 480px) {
  .first-screen {
    padding-top: 139px !important;
  }

  .first-screen header {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 9000 !important;
    padding: 9px 0 10px !important;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(23, 33, 55, 0.08) !important;
    box-shadow: 0 10px 24px rgba(28, 57, 120, 0.08) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
  }

  .first-screen .header {
    display: grid !important;
    grid-template-columns: minmax(118px, 1fr) auto !important;
    grid-template-areas:
      "logo phone"
      "messengers messengers" !important;
    align-items: center !important;
    column-gap: 9px !important;
    row-gap: 11px !important;
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    padding: 0 !important;
  }

  .first-screen .logo {
    grid-area: logo !important;
    min-width: 0 !important;
  }

  .first-screen .logo__c {
    display: flex !important;
    align-items: center !important;
  }

  .first-screen .logo__img {
    width: 144px !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .first-screen .logo__text,
  .first-screen .logo__desc {
    display: none !important;
  }

  .first-screen .header__contact {
    display: contents !important;
  }

  .first-screen .header__phone {
    grid-area: phone !important;
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 0 !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    text-align: right !important;
  }

  .first-screen .header__phone::before {
    content: "" !important;
    display: none !important;
  }

  .first-screen .header__phone__online,
  .first-screen .header__callback,
  .first-screen .header__phone p {
    display: none !important;
  }

  .first-screen .header__phone__link {
    display: block !important;
    max-width: none !important;
    padding: 0 0 0 27px !important;
    overflow: hidden !important;
    color: #111827 !important;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.1 4.2 8.9 8c.3.7.2 1.5-.4 2l-1 1c1.2 2.3 3.1 4.2 5.5 5.5l1-1c.5-.5 1.3-.7 2-.4l3.8 1.8c.7.3 1.1 1.1 1 1.8l-.4 2.1c-.2.8-.9 1.3-1.7 1.3C9.4 22 2 14.6 2 5.3c0-.8.5-1.5 1.3-1.7l2.1-.4c.8-.1 1.5.3 1.8 1Z' stroke='%236338ff' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") left center / 20px 20px no-repeat !important;
    border: 0 !important;
    box-shadow: none !important;
    font-size: 16px !important;
    line-height: 1.05 !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .first-screen .header__burger {
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 5px !important;
    width: 30px !important;
    height: 30px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  .first-screen .header__burger span {
    display: block !important;
    width: 30px !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: #111827 !important;
  }

  .first-screen .header__whatsapp {
    grid-area: messengers !important;
    position: static !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 9px !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .first-screen .header__messenger-title {
    display: none !important;
  }

  .first-screen .header__whatsapp__link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 0 !important;
    width: auto !important;
    height: 56px !important;
    padding: 0 8px !important;
    color: #151823 !important;
    background: #ffffff !important;
    border: 1px solid rgba(23, 33, 55, 0.08) !important;
    border-radius: 13px !important;
    box-shadow: 0 8px 18px rgba(25, 48, 98, 0.08) !important;
    font-size: 12px !important;
    line-height: 1.08 !important;
    font-weight: 800 !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .first-screen .header__whatsapp__link img {
    flex: 0 0 27px !important;
    width: 27px !important;
    height: 27px !important;
    margin: 0 8px 0 0 !important;
  }

  .first-screen .header__telegram__text {
    display: inline !important;
  }

  .first-screen .header__email-link {
    gap: 7px !important;
  }

  .first-screen .header__email-icon {
    flex: 0 0 27px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 27px !important;
    height: 27px !important;
    color: #6338ff !important;
    border: 2px solid #6338ff !important;
    border-radius: 50% !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
  }

  .first-screen .header__email-text {
    min-width: 0 !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1px !important;
    overflow-wrap: normal !important;
    font-size: 8.8px !important;
    line-height: 1.08 !important;
    font-weight: 800 !important;
  }

  .first-screen .main {
    padding-top: 18px !important;
  }
}

/* 2026-06-29: keep CTA timer icon clear of the button and remove its check mark. */
@media (min-width: 900px) {
  .first-screen .main__btn__desc {
    position: relative !important;
    width: 132px !important;
    margin-left: 0 !important;
    padding-left: 38px !important;
    box-sizing: border-box !important;
  }

  .first-screen .main__btn__desc img {
    left: 0 !important;
    width: 30px !important;
  }

  .first-screen .main__btn__desc::before {
    content: none !important;
    display: none !important;
  }
}
/* 2026-07-28 task259: compact Vyveska-Mos hero header after logo swap. */
.first-screen header {
  padding-bottom: 0 !important;
}

.first-screen .logo__img {
  content: normal !important;
  width: clamp(10.5rem, 15vw, 13rem) !important;
  height: auto !important;
  max-height: 7.5rem !important;
  object-fit: contain !important;
}

.first-screen .main {
  padding-top: 0.65rem !important;
}

@media (max-width: 699px) {
  .first-screen .logo__img {
    width: clamp(8.5rem, 34vw, 10rem) !important;
    max-height: 5.8rem !important;
  }

  .first-screen .main {
    padding-top: 0.45rem !important;
  }
}
